/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.16-MariaDB, for Linux (x86_64)
--
-- Host: 127.0.0.1    Database: rachel_craft
-- ------------------------------------------------------
-- 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 `addresses`
--

DROP TABLE IF EXISTS `addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `addresses` (
  `id` int(11) NOT NULL,
  `primaryOwnerId` int(11) DEFAULT NULL,
  `fieldId` int(11) DEFAULT NULL,
  `countryCode` varchar(255) NOT NULL,
  `administrativeArea` varchar(255) DEFAULT NULL,
  `locality` varchar(255) DEFAULT NULL,
  `dependentLocality` varchar(255) DEFAULT NULL,
  `postalCode` varchar(255) DEFAULT NULL,
  `sortingCode` varchar(255) DEFAULT NULL,
  `addressLine1` varchar(255) DEFAULT NULL,
  `addressLine2` varchar(255) DEFAULT NULL,
  `addressLine3` varchar(255) DEFAULT NULL,
  `organization` varchar(255) DEFAULT NULL,
  `organizationTaxId` varchar(255) DEFAULT NULL,
  `fullName` varchar(255) DEFAULT NULL,
  `firstName` varchar(255) DEFAULT NULL,
  `lastName` varchar(255) DEFAULT NULL,
  `latitude` varchar(255) DEFAULT NULL,
  `longitude` varchar(255) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_zdmwgposfpccidebkwzqrtnnvpopjqbsbfxm` (`primaryOwnerId`),
  CONSTRAINT `fk_bsithlhlouevgxpwdrxspyhhfenxpjxjqquz` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zdmwgposfpccidebkwzqrtnnvpopjqbsbfxm` FOREIGN KEY (`primaryOwnerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `announcements`
--

DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `pluginId` int(11) DEFAULT NULL,
  `heading` varchar(255) NOT NULL,
  `body` text NOT NULL,
  `unread` tinyint(1) NOT NULL DEFAULT 1,
  `dateRead` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_mklbdqamtkteskakzxsyarlnwzoxhtoiozfq` (`userId`,`unread`,`dateRead`,`dateCreated`),
  KEY `idx_dklwvipvirfjcjjgipltsgfdljbytswpkllc` (`dateRead`),
  KEY `fk_dmeewltiiutgpncuvojoeohvrvqbhbqphgwa` (`pluginId`),
  CONSTRAINT `fk_dmeewltiiutgpncuvojoeohvrvqbhbqphgwa` FOREIGN KEY (`pluginId`) REFERENCES `plugins` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rmovfvpvhalcutocaffkohyeobbvxrvqxycz` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `assetindexdata`
--

DROP TABLE IF EXISTS `assetindexdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `assetindexdata` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sessionId` int(11) NOT NULL,
  `volumeId` int(11) NOT NULL,
  `uri` text DEFAULT NULL,
  `size` bigint(20) unsigned DEFAULT NULL,
  `timestamp` datetime DEFAULT NULL,
  `isDir` tinyint(1) DEFAULT 0,
  `recordId` int(11) DEFAULT NULL,
  `isSkipped` tinyint(1) DEFAULT 0,
  `inProgress` tinyint(1) DEFAULT 0,
  `completed` tinyint(1) DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_zulywgubfvfcisiddarnfciqzfcclpupymbj` (`sessionId`,`volumeId`),
  KEY `idx_ijcdzbcobuyzxkudooippypemmethtzuxolh` (`volumeId`),
  CONSTRAINT `fk_rhzsrzgnbqjpjrqtclnbthvwtgnqylahwzxi` FOREIGN KEY (`sessionId`) REFERENCES `assetindexingsessions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zfiykujxpitgeezuphjolrlxwhwouwsybnkl` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `assetindexingsessions`
--

DROP TABLE IF EXISTS `assetindexingsessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `assetindexingsessions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `indexedVolumes` text DEFAULT NULL,
  `totalEntries` int(11) DEFAULT NULL,
  `processedEntries` int(11) NOT NULL DEFAULT 0,
  `cacheRemoteImages` tinyint(1) DEFAULT NULL,
  `listEmptyFolders` tinyint(1) DEFAULT 0,
  `isCli` tinyint(1) DEFAULT 0,
  `actionRequired` tinyint(1) DEFAULT 0,
  `processIfRootEmpty` tinyint(1) DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `assets`
--

DROP TABLE IF EXISTS `assets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `assets` (
  `id` int(11) NOT NULL,
  `volumeId` int(11) DEFAULT NULL,
  `folderId` int(11) NOT NULL,
  `uploaderId` int(11) DEFAULT NULL,
  `filename` varchar(255) NOT NULL,
  `mimeType` varchar(255) DEFAULT NULL,
  `kind` varchar(50) NOT NULL DEFAULT 'unknown',
  `alt` text DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `size` bigint(20) unsigned DEFAULT NULL,
  `focalPoint` varchar(13) DEFAULT NULL,
  `deletedWithVolume` tinyint(1) DEFAULT NULL,
  `keptFile` tinyint(1) DEFAULT NULL,
  `dateModified` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_vlvixnyaxnvjsikslumberbvicklpyvnsgqd` (`filename`,`folderId`),
  KEY `idx_pubqgaryiywxgyebqptqanbyamvrpxdefjdf` (`folderId`),
  KEY `idx_bnsdxnuapyqhwxjllziulmbwvaybixatwijr` (`volumeId`),
  KEY `fk_nmgkhdoeagmnmkjrstjoemrwvhchagykjbtv` (`uploaderId`),
  CONSTRAINT `fk_flsxhfiptaftftsxtmzqqtcjchgbihvsryvb` FOREIGN KEY (`folderId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_kftxzcqzdwoowmbkgkbjnkjflrctwwwwsdmf` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_nmgkhdoeagmnmkjrstjoemrwvhchagykjbtv` FOREIGN KEY (`uploaderId`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_nsmkgfwfcpwvrnuyklmegsekhcoaayootttr` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `assets_sites`
--

DROP TABLE IF EXISTS `assets_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `assets_sites` (
  `assetId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `alt` text DEFAULT NULL,
  PRIMARY KEY (`assetId`,`siteId`),
  KEY `fk_zhsjlxwjzwhfrwpsgucomntdrccfltyckrys` (`siteId`),
  CONSTRAINT `fk_kzpkumidbmspuxgolsnybcgjmworgtygqxnm` FOREIGN KEY (`assetId`) REFERENCES `assets` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zhsjlxwjzwhfrwpsgucomntdrccfltyckrys` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `authenticator`
--

DROP TABLE IF EXISTS `authenticator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `authenticator` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `auth2faSecret` varchar(255) DEFAULT NULL,
  `oldTimestamp` int(11) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_sfzdticnywnkcmsompnuvbopuxcdijhgyvqu` (`userId`),
  CONSTRAINT `fk_sfzdticnywnkcmsompnuvbopuxcdijhgyvqu` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `bulkopevents`
--

DROP TABLE IF EXISTS `bulkopevents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bulkopevents` (
  `key` char(10) NOT NULL,
  `senderClass` varchar(255) NOT NULL,
  `eventName` varchar(255) NOT NULL,
  `timestamp` datetime NOT NULL,
  PRIMARY KEY (`key`,`senderClass`,`eventName`),
  KEY `idx_aoaoczojdlzjykzkyzlvptvxgseekrzveqqf` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
  `id` int(11) NOT NULL,
  `groupId` int(11) NOT NULL,
  `parentId` int(11) DEFAULT NULL,
  `deletedWithGroup` tinyint(1) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_uxtwgzceyyumeovymzxkjbupvmtvvldnbvcg` (`groupId`),
  KEY `fk_chkmvvjcyygskrqswerhhlcjnilpgxmirauv` (`parentId`),
  CONSTRAINT `fk_chkmvvjcyygskrqswerhhlcjnilpgxmirauv` FOREIGN KEY (`parentId`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_mcecwffrqwgtvfglqvgqkteqotzenjynyisg` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zmqzwepqqsacwuhdaiwldksspajcluhqwkul` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `categorygroups`
--

DROP TABLE IF EXISTS `categorygroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `categorygroups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `structureId` int(11) NOT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `defaultPlacement` enum('beginning','end') NOT NULL DEFAULT 'end',
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_dqrhjvrasarzqchgigoryignazlxzksewzfi` (`name`),
  KEY `idx_mhstbqaqxtgjaftdhxjyivqxsyjhekmmmlzx` (`handle`),
  KEY `idx_atjkiyzxmtiesmrhaxcnlhaxgmnmdxyztyfh` (`structureId`),
  KEY `idx_lqrxrbbfnylxekzebvaqzxexnwjjkaeltgos` (`fieldLayoutId`),
  KEY `idx_inzhwuwsdhwqhacqwpkxlkottwifbhhznxji` (`dateDeleted`),
  CONSTRAINT `fk_flopklptqxwtsnxhdoduennphxobhqpgmpzl` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_waqyecduuxeprkjrkdxpcmyazletozrbndqx` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `categorygroups_sites`
--

DROP TABLE IF EXISTS `categorygroups_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `categorygroups_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `hasUrls` tinyint(1) NOT NULL DEFAULT 1,
  `uriFormat` text DEFAULT NULL,
  `template` varchar(500) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ihercnnjrjkfetiamsruvbzxbauvqqvtisps` (`groupId`,`siteId`),
  KEY `idx_tgdgxwsjgvhwfexgalyebslfvjnuinzusyay` (`siteId`),
  CONSTRAINT `fk_teffynlgbdlhxcqfeqenfeuvpuyxujbjfwmn` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_ystabqcvsslretmuhmsfxlkaokkszsuwqeme` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `changedattributes`
--

DROP TABLE IF EXISTS `changedattributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `changedattributes` (
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `attribute` varchar(255) NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `propagated` tinyint(1) NOT NULL,
  `userId` int(11) DEFAULT NULL,
  PRIMARY KEY (`elementId`,`siteId`,`attribute`),
  KEY `idx_mwjdsaplrkmtofqhxcbwfxsvzsvndjngrotk` (`elementId`,`siteId`,`dateUpdated`),
  KEY `fk_kacmnyasgozdzaehvmtneskpqlbltmbihnwe` (`siteId`),
  KEY `fk_eikaxcmzhiqfnrzsbrdjaplrtiilhdjwvywn` (`userId`),
  CONSTRAINT `fk_eikaxcmzhiqfnrzsbrdjaplrtiilhdjwvywn` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `fk_kacmnyasgozdzaehvmtneskpqlbltmbihnwe` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_ogykxmuugyieyiiornesjicucmbziztbxluf` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `changedfields`
--

DROP TABLE IF EXISTS `changedfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `changedfields` (
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  `layoutElementUid` char(36) NOT NULL DEFAULT '0',
  `dateUpdated` datetime NOT NULL,
  `propagated` tinyint(1) NOT NULL,
  `userId` int(11) DEFAULT NULL,
  PRIMARY KEY (`elementId`,`siteId`,`fieldId`,`layoutElementUid`),
  KEY `idx_rftqkdqgvhowoyxdxixoknhyggpzljuxjedw` (`elementId`,`siteId`,`dateUpdated`),
  KEY `fk_ctbpohmpfvbeovlpxrhgpzrbrmgmfjzjdehd` (`siteId`),
  KEY `fk_pavvtyikagwuontlckirmevdimuqxjhdjqot` (`fieldId`),
  KEY `fk_tomyiketmirkgusmylzdmkpapayxpsrfsory` (`userId`),
  CONSTRAINT `fk_ctbpohmpfvbeovlpxrhgpzrbrmgmfjzjdehd` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_pavvtyikagwuontlckirmevdimuqxjhdjqot` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_tgvcrpfmptkbgqbpwugegbnynkvkxoreeghc` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_tomyiketmirkgusmylzdmkpapayxpsrfsory` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `contentblocks`
--

DROP TABLE IF EXISTS `contentblocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `contentblocks` (
  `id` int(11) NOT NULL,
  `primaryOwnerId` int(11) DEFAULT NULL,
  `fieldId` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_wuhbxnokvbohjafkbfgeexcxfzarqdfpejfg` (`primaryOwnerId`),
  KEY `idx_qnjtjjvrqoprqxjvjdclpjcxvrhnpfkmpmjy` (`fieldId`),
  CONSTRAINT `fk_vlulrleqaymhoghjtjcjmfwslwavkxskqjmu` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xczefrtgsnxqjlfzwgsyqhovsnqeaxzhvytf` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ymkqtalsvguokxftyyjkiwmicwrkskivwuew` FOREIGN KEY (`primaryOwnerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `craftidtokens`
--

DROP TABLE IF EXISTS `craftidtokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `craftidtokens` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `accessToken` text NOT NULL,
  `expiryDate` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_leuoppilurzvrvbztmcagcopjhtmvmmrlmxx` (`userId`),
  CONSTRAINT `fk_leuoppilurzvrvbztmcagcopjhtmvmmrlmxx` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `deprecationerrors`
--

DROP TABLE IF EXISTS `deprecationerrors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `deprecationerrors` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `key` varchar(255) NOT NULL,
  `fingerprint` varchar(255) NOT NULL,
  `lastOccurrence` datetime NOT NULL,
  `file` varchar(255) NOT NULL,
  `line` smallint(6) unsigned DEFAULT NULL,
  `message` text DEFAULT NULL,
  `traces` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`traces`)),
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_mpjqrgckoxzpqzitnhokddvlibrnhhkonfji` (`key`,`fingerprint`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `drafts`
--

DROP TABLE IF EXISTS `drafts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `drafts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `canonicalId` int(11) DEFAULT NULL,
  `creatorId` int(11) DEFAULT NULL,
  `provisional` tinyint(1) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `notes` text DEFAULT NULL,
  `trackChanges` tinyint(1) NOT NULL DEFAULT 0,
  `dateLastMerged` datetime DEFAULT NULL,
  `saved` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `idx_veswlpapdjvrbmuphfntnwbvaguxgzgxwtld` (`creatorId`,`provisional`),
  KEY `idx_wpsnwweqpjngwklpavctmaknzhlllesbmnlf` (`saved`),
  KEY `fk_vbqzmwnbehvdiorxapcrptbcbharwuzcgyrs` (`canonicalId`),
  CONSTRAINT `fk_ufojkyddasthniyekoftotmlnthamhipfzmh` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_vbqzmwnbehvdiorxapcrptbcbharwuzcgyrs` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `elementactivity`
--

DROP TABLE IF EXISTS `elementactivity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `elementactivity` (
  `elementId` int(11) NOT NULL,
  `userId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `draftId` int(11) DEFAULT NULL,
  `type` varchar(255) NOT NULL,
  `timestamp` datetime DEFAULT NULL,
  PRIMARY KEY (`elementId`,`userId`,`type`),
  KEY `idx_oqmdaziyutcmogxexwidcoivgkjmauvdwybo` (`elementId`,`timestamp`,`userId`),
  KEY `fk_vrsvffcukifftdqbvfarndbkcestlrurqadl` (`userId`),
  KEY `fk_nkwlupzbfchehzhzxeqnhmiwleqrkbegpblg` (`siteId`),
  KEY `fk_jsumhuuohcqnretoxqxfarwveptauqucobnf` (`draftId`),
  CONSTRAINT `fk_fqqzxhfaxzddijxwnideirineolqilbljqzo` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_jsumhuuohcqnretoxqxfarwveptauqucobnf` FOREIGN KEY (`draftId`) REFERENCES `drafts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_nkwlupzbfchehzhzxeqnhmiwleqrkbegpblg` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_vrsvffcukifftdqbvfarndbkcestlrurqadl` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `elements`
--

DROP TABLE IF EXISTS `elements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `elements` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `canonicalId` int(11) DEFAULT NULL,
  `draftId` int(11) DEFAULT NULL,
  `revisionId` int(11) DEFAULT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `type` varchar(255) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `archived` tinyint(1) NOT NULL DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateLastMerged` datetime DEFAULT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `deletedWithOwner` tinyint(1) DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_nvwwaevufnqmvoweqpyklqudmlhujsuplqxh` (`dateDeleted`),
  KEY `idx_blcwpkbejwuxzuvufhymprppxgdslqbbfmtp` (`fieldLayoutId`),
  KEY `idx_uexmvmhdfxtysbjvqrlscpveivtjbgrtnsqe` (`type`),
  KEY `idx_jwjxyxubrmkatsvejllatnkzsqapoulahfso` (`enabled`),
  KEY `idx_xmtlpclmwbnqbgedftqntyulpkknmlejpdtw` (`canonicalId`),
  KEY `idx_xapzimabtxitydzgqvtvucfvvkofvgkrzcsl` (`archived`,`dateCreated`),
  KEY `idx_dxclfmfeovvttenrzbqlagkomttrythmjrzq` (`archived`,`dateDeleted`,`draftId`,`revisionId`,`canonicalId`),
  KEY `idx_ofrzuuzdynhywzajefoszvicyfncsiaohmmj` (`archived`,`dateDeleted`,`draftId`,`revisionId`,`canonicalId`,`enabled`),
  KEY `fk_blvglbedvwhwqvmcgtiefwsjatjcezzpzids` (`draftId`),
  KEY `fk_tfwhnwcjfmwalwdpbbhmehqzkcxothtamlxq` (`revisionId`),
  CONSTRAINT `fk_bfpytikgrxpvzzlnddnkpzmwztmgpnuebxhv` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_blvglbedvwhwqvmcgtiefwsjatjcezzpzids` FOREIGN KEY (`draftId`) REFERENCES `drafts` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_glqzcpwnvubhdrazelgtmnmxecrhzericpll` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_tfwhnwcjfmwalwdpbbhmehqzkcxothtamlxq` FOREIGN KEY (`revisionId`) REFERENCES `revisions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8517 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `elements_bulkops`
--

DROP TABLE IF EXISTS `elements_bulkops`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `elements_bulkops` (
  `elementId` int(11) NOT NULL,
  `key` char(10) NOT NULL,
  `timestamp` datetime NOT NULL,
  PRIMARY KEY (`elementId`,`key`),
  KEY `idx_bfptlwjutmygiypnpcjxevxjgmhdkddnugoc` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `elements_owners`
--

DROP TABLE IF EXISTS `elements_owners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `elements_owners` (
  `elementId` int(11) NOT NULL,
  `ownerId` int(11) NOT NULL,
  `sortOrder` smallint(6) unsigned NOT NULL,
  PRIMARY KEY (`elementId`,`ownerId`),
  KEY `fk_ekfhmzctoxtlrxfwpskuvwvpblgnrwhtmgaf` (`ownerId`),
  KEY `idx_wxoihvjujgakznvzmehqaktxiqxygmuihjbc` (`sortOrder`),
  CONSTRAINT `fk_bspfcbwczypkvnhqlqcstskmxwbhhkasskrv` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ekfhmzctoxtlrxfwpskuvwvpblgnrwhtmgaf` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `elements_sites`
--

DROP TABLE IF EXISTS `elements_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `elements_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `uri` varchar(255) DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`content`)),
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_efcuofowhrhzikdgtjicyuabojsweoztqavv` (`elementId`,`siteId`),
  KEY `idx_rdzvewgawxvgmkslkxuorbzeolgxfpbkwbbb` (`siteId`),
  KEY `idx_batcepytslwagbkhbitvcqpaimtvzwnivpsl` (`title`,`siteId`),
  KEY `idx_stajadtrcucmiobmsibykrphzcbaakxrsebk` (`slug`,`siteId`),
  KEY `idx_womkcttvsgxxuotkojhtgsjshpavbytleaqu` (`enabled`),
  KEY `idx_mivmpqkdsxhfwhasjimdmalpcvagwjirngck` (`uri`,`siteId`),
  CONSTRAINT `fk_dvmwawixerfzsiwnlrjwbvsmqwrlvypvtvse` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_hmwdbvskpfbhfdafhvdnjygnwbxrazooyzbg` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8517 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `entries`
--

DROP TABLE IF EXISTS `entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `entries` (
  `id` int(11) NOT NULL,
  `sectionId` int(11) DEFAULT NULL,
  `parentId` int(11) DEFAULT NULL,
  `primaryOwnerId` int(11) DEFAULT NULL,
  `fieldId` int(11) DEFAULT NULL,
  `typeId` int(11) NOT NULL,
  `postDate` datetime DEFAULT NULL,
  `expiryDate` datetime DEFAULT NULL,
  `status` enum('live','pending','expired') NOT NULL DEFAULT 'live',
  `deletedWithEntryType` tinyint(1) DEFAULT NULL,
  `deletedWithSection` tinyint(1) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_ghsqutqdhikvnhedptigtthjjyywkhqvccvo` (`postDate`),
  KEY `idx_fnqafbskciycshvpoldicrprhdkrnijzqvif` (`expiryDate`),
  KEY `idx_tvnjhymudznavghyujygmrwfiajsremnzuhy` (`status`),
  KEY `idx_mxuvuwqnkfzzznutebvjbzshlskurntywvmg` (`sectionId`),
  KEY `idx_jvtomhtriilnyjyfeupvxprvqdllykcuilbe` (`typeId`),
  KEY `idx_yserypidaqmkzysnojcdqkfuytifyvwotbfq` (`primaryOwnerId`),
  KEY `idx_aedjnftjiryategkbptopwjltsgdkguiaurz` (`fieldId`),
  KEY `fk_zoybixiasvkrzmwaibtwmexzrkduyvvmaugv` (`parentId`),
  CONSTRAINT `fk_nqmivwclbbgowvyupxbixcmmetdylkglwucx` FOREIGN KEY (`typeId`) REFERENCES `entrytypes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_pagvcmqyirvircusivndvqbcbtjbkgujgtno` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_pbeczqdftgxyfymczbovqefnozqicpsdgszf` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_quhjuqxxywtmmygepnjxggwqochjrxnkqdwk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_vfwcycsbireidkwsxubtwzryrtdnedylnrnw` FOREIGN KEY (`primaryOwnerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zoybixiasvkrzmwaibtwmexzrkduyvvmaugv` FOREIGN KEY (`parentId`) REFERENCES `entries` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `entries_authors`
--

DROP TABLE IF EXISTS `entries_authors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `entries_authors` (
  `entryId` int(11) NOT NULL,
  `authorId` int(11) NOT NULL,
  `sortOrder` smallint(6) unsigned NOT NULL,
  PRIMARY KEY (`entryId`,`authorId`),
  KEY `idx_xjmjjrgfdwfoqvxzprrmhbyqcjkfcwcifmbf` (`authorId`),
  KEY `idx_xzinpaxvoclmegydufckoxbmzbkkbbkuxzzh` (`entryId`,`sortOrder`),
  CONSTRAINT `fk_epvgjaannswjlcwxdwicnsuknjhddqpvzoms` FOREIGN KEY (`entryId`) REFERENCES `entries` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_fmscwdhgdjpwfrydxturrpxfvlxfeavjkzka` FOREIGN KEY (`authorId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `entrytypes`
--

DROP TABLE IF EXISTS `entrytypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `entrytypes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `color` varchar(255) DEFAULT NULL,
  `uiLabelFormat` varchar(255) NOT NULL DEFAULT '{title}',
  `hasTitleField` tinyint(1) NOT NULL DEFAULT 1,
  `titleTranslationMethod` varchar(255) NOT NULL DEFAULT 'site',
  `titleTranslationKeyFormat` text DEFAULT NULL,
  `titleFormat` varchar(255) DEFAULT NULL,
  `showSlugField` tinyint(1) DEFAULT 1,
  `slugTranslationMethod` varchar(255) NOT NULL DEFAULT 'site',
  `slugTranslationKeyFormat` text DEFAULT NULL,
  `showStatusField` tinyint(1) DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `allowLineBreaksInTitles` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_mrqtbjugumthezcaitskluxeemmswcycuduj` (`fieldLayoutId`),
  KEY `idx_ukuhlqjfpiaksxwzvytscjtizwrzcmmzsowz` (`dateDeleted`),
  CONSTRAINT `fk_vrlgodufdobdcwdgvindkjliwrbymqljihac` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `fieldlayouts`
--

DROP TABLE IF EXISTS `fieldlayouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fieldlayouts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL,
  `config` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`config`)),
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_iqetdlxcpkrthhcfokyyvdjxkdcnqnjmhdxk` (`dateDeleted`),
  KEY `idx_xrpgwtifenterxevtvsstlbelpoagyzbhfwu` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `fields`
--

DROP TABLE IF EXISTS `fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` text NOT NULL,
  `handle` varchar(64) NOT NULL,
  `context` varchar(255) NOT NULL DEFAULT 'global',
  `columnSuffix` char(8) DEFAULT NULL,
  `instructions` text DEFAULT NULL,
  `searchable` tinyint(1) NOT NULL DEFAULT 1,
  `translationMethod` varchar(255) NOT NULL DEFAULT 'none',
  `translationKeyFormat` text DEFAULT NULL,
  `type` varchar(255) NOT NULL,
  `settings` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_fiqmkqyfzrkykdmijuckwwlzexxwvmugyuxx` (`handle`,`context`),
  KEY `idx_yphoaczljttrbgdxhxnjaxefnnsiuihfebso` (`context`),
  KEY `idx_zdkwtgeziacxmjdeeqdpwnzuqrxbgcymcbhz` (`dateDeleted`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_crm_fields`
--

DROP TABLE IF EXISTS `freeform_crm_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_crm_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `label` text NOT NULL,
  `handle` varchar(255) NOT NULL,
  `type` varchar(50) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `required` tinyint(1) DEFAULT 0,
  `options` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_crm_fields_type_idx` (`type`),
  KEY `freeform_crm_fields_integrationId_category_idx` (`integrationId`,`category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_email_marketing_fields`
--

DROP TABLE IF EXISTS `freeform_email_marketing_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_email_marketing_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mailingListId` int(11) NOT NULL,
  `label` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `type` varchar(50) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `required` tinyint(1) DEFAULT 0,
  `options` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_email_marketing_fields_type_idx` (`type`),
  KEY `freeform_email_marketing_fields_mailingListId_category_idx` (`mailingListId`,`category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_email_marketing_lists`
--

DROP TABLE IF EXISTS `freeform_email_marketing_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_email_marketing_lists` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `resourceId` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `memberCount` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_email_marketing_lists_integrationId_resourceId_unq_idx` (`integrationId`,`resourceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_export_notifications`
--

DROP TABLE IF EXISTS `freeform_export_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_export_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `profileId` int(11) NOT NULL,
  `enabled` tinyint(1) DEFAULT 1,
  `name` varchar(255) NOT NULL,
  `fileType` varchar(30) NOT NULL,
  `fileName` varchar(255) DEFAULT NULL,
  `frequency` varchar(20) NOT NULL,
  `recipients` longtext NOT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `freeform_export_notifications_profileId_fk` (`profileId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_export_profiles`
--

DROP TABLE IF EXISTS `freeform_export_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_export_profiles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `limit` int(11) DEFAULT NULL,
  `dateRange` varchar(255) DEFAULT NULL,
  `rangeStart` varchar(255) DEFAULT NULL,
  `rangeEnd` varchar(255) DEFAULT NULL,
  `fields` longtext NOT NULL,
  `filters` longtext DEFAULT NULL,
  `statuses` text NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `freeform_export_profiles_formId_fk` (`formId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_export_settings`
--

DROP TABLE IF EXISTS `freeform_export_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_export_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `setting` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_export_settings_userId_fk` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_favorite_fields`
--

DROP TABLE IF EXISTS `freeform_favorite_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_favorite_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) DEFAULT NULL,
  `label` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `metadata` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_favorite_fields_userId_fk` (`userId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_feed_messages`
--

DROP TABLE IF EXISTS `freeform_feed_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_feed_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `feedId` int(11) NOT NULL,
  `message` text NOT NULL,
  `conditions` longtext NOT NULL,
  `type` varchar(255) NOT NULL,
  `seen` tinyint(1) NOT NULL DEFAULT 0,
  `issueDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_feed_messages_feedId_fk` (`feedId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_feeds`
--

DROP TABLE IF EXISTS `freeform_feeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_feeds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(255) NOT NULL,
  `min` varchar(255) DEFAULT NULL,
  `max` varchar(255) DEFAULT NULL,
  `issueDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_feeds_hash_unq_idx` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_fields_type_groups`
--

DROP TABLE IF EXISTS `freeform_fields_type_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_fields_type_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `color` varchar(10) DEFAULT NULL,
  `label` varchar(255) DEFAULT NULL,
  `types` longtext NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms`
--

DROP TABLE IF EXISTS `freeform_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(200) NOT NULL,
  `name` varchar(100) NOT NULL,
  `handle` varchar(100) NOT NULL,
  `spamBlockCount` int(11) unsigned NOT NULL DEFAULT 0,
  `metadata` longtext DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `createdByUserId` int(11) DEFAULT NULL,
  `updatedByUserId` int(11) DEFAULT NULL,
  `dateArchived` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`),
  KEY `freeform_forms_order_idx` (`order`),
  KEY `freeform_forms_createdByUserId_fk` (`createdByUserId`),
  KEY `freeform_forms_updatedByUserId_fk` (`updatedByUserId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_fields`
--

DROP TABLE IF EXISTS `freeform_forms_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `metadata` longtext DEFAULT NULL,
  `rowId` int(11) DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_fields_rowId_order_idx` (`rowId`,`order`),
  KEY `freeform_forms_fields_formId_fk` (`formId`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_groups`
--

DROP TABLE IF EXISTS `freeform_forms_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `siteId` int(11) NOT NULL,
  `label` varchar(255) DEFAULT NULL,
  `order` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_groups_siteId_fk` (`siteId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_groups_entries`
--

DROP TABLE IF EXISTS `freeform_forms_groups_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_groups_entries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupId` int(11) NOT NULL,
  `formId` int(11) NOT NULL,
  `order` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_groups_entries_groupId_fk` (`groupId`),
  KEY `freeform_forms_groups_entries_formId_fk` (`formId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_integrations`
--

DROP TABLE IF EXISTS `freeform_forms_integrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_integrations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `formId` int(11) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `metadata` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_integrations_integrationId_fk` (`integrationId`),
  KEY `freeform_forms_integrations_formId_fk` (`formId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_layouts`
--

DROP TABLE IF EXISTS `freeform_forms_layouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_layouts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_layouts_formId_idx` (`formId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_notifications`
--

DROP TABLE IF EXISTS `freeform_forms_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `class` varchar(255) NOT NULL,
  `formId` int(11) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `metadata` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_notifications_formId_fk` (`formId`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_pages`
--

DROP TABLE IF EXISTS `freeform_forms_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `layoutId` int(11) NOT NULL,
  `label` varchar(255) NOT NULL,
  `order` int(11) DEFAULT NULL,
  `metadata` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_pages_formId_order_idx` (`formId`,`order`),
  KEY `freeform_forms_pages_layoutId_fk` (`layoutId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_rows`
--

DROP TABLE IF EXISTS `freeform_forms_rows`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_rows` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `layoutId` int(11) NOT NULL,
  `order` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_forms_rows_formId_order_idx` (`formId`,`order`),
  KEY `freeform_forms_rows_layoutId_fk` (`layoutId`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_sites`
--

DROP TABLE IF EXISTS `freeform_forms_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_forms_sites_siteId_formId_unq_idx` (`siteId`,`formId`),
  KEY `freeform_forms_sites_formId_fk` (`formId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms_translations`
--

DROP TABLE IF EXISTS `freeform_forms_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_forms_translations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `translations` longtext NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_forms_translations_formId_siteId_unq_idx` (`formId`,`siteId`),
  KEY `freeform_forms_translations_siteId_fk` (`siteId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_integrations`
--

DROP TABLE IF EXISTS `freeform_integrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_integrations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enabled` tinyint(1) DEFAULT 1,
  `legacy` tinyint(1) DEFAULT 0,
  `connectionEstablished` tinyint(1) DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `type` varchar(50) NOT NULL,
  `class` varchar(255) DEFAULT NULL,
  `metadata` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`),
  KEY `freeform_integrations_type_idx` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_integrations_queue`
--

DROP TABLE IF EXISTS `freeform_integrations_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_integrations_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `integrationType` varchar(50) NOT NULL,
  `status` varchar(50) NOT NULL,
  `fieldHash` varchar(20) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_integrations_queue_status_idx` (`status`),
  KEY `freeform_integrations_queue_submissionId_fk` (`submissionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_limited_users`
--

DROP TABLE IF EXISTS `freeform_limited_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_limited_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `settings` longtext NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_notification_log`
--

DROP TABLE IF EXISTS `freeform_notification_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_notification_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(30) NOT NULL,
  `identifier` varchar(100) DEFAULT NULL,
  `digestDate` date DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_notification_log_idx_type_identifier_name_digestDate` (`type`,`identifier`,`name`,`dateCreated`),
  KEY `freeform_notification_log_type_dateCreated_idx` (`type`,`dateCreated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_notification_template_wrappers`
--

DROP TABLE IF EXISTS `freeform_notification_template_wrappers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_notification_template_wrappers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `content` longtext NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_notification_template_wrappers_handle` (`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_notification_templates`
--

DROP TABLE IF EXISTS `freeform_notification_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_notification_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) DEFAULT NULL,
  `wrapperId` int(11) DEFAULT NULL,
  `pdfTemplateIds` text DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `fromName` varchar(255) NOT NULL,
  `fromEmail` varchar(255) NOT NULL,
  `replyToName` varchar(255) DEFAULT NULL,
  `replyToEmail` varchar(255) DEFAULT NULL,
  `cc` varchar(255) DEFAULT NULL,
  `bcc` varchar(255) DEFAULT NULL,
  `bodyHtml` mediumtext DEFAULT NULL,
  `bodyText` mediumtext DEFAULT NULL,
  `autoText` tinyint(1) NOT NULL DEFAULT 1,
  `includeAttachments` tinyint(1) DEFAULT 1,
  `presetAssets` varchar(255) DEFAULT NULL,
  `sortOrder` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_notification_templates_formId` (`formId`),
  KEY `fk_wrapperId` (`wrapperId`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_payments`
--

DROP TABLE IF EXISTS `freeform_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  `submissionId` int(11) NOT NULL,
  `resourceId` varchar(50) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `status` varchar(40) DEFAULT NULL,
  `link` varchar(255) DEFAULT NULL,
  `metadata` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_payments_integrationId_resourceId_unq_idx` (`integrationId`,`resourceId`),
  KEY `freeform_payments_integrationId_type_idx` (`integrationId`,`type`),
  KEY `freeform_payments_resourceId_idx` (`resourceId`),
  KEY `freeform_payments_fieldId_fk` (`fieldId`),
  KEY `freeform_payments_submissionId_fk` (`submissionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_pdf_templates`
--

DROP TABLE IF EXISTS `freeform_pdf_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_pdf_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `fileName` text NOT NULL,
  `body` longtext NOT NULL,
  `sortOrder` int(11) NOT NULL DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules`
--

DROP TABLE IF EXISTS `freeform_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `combinator` varchar(20) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_buttons`
--

DROP TABLE IF EXISTS `freeform_rules_buttons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_buttons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pageId` int(11) NOT NULL,
  `button` varchar(30) NOT NULL,
  `display` varchar(10) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_rrzhpvhnnpxoafekzpztmuelbtxevrjzxrwj` (`pageId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_conditions`
--

DROP TABLE IF EXISTS `freeform_rules_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_conditions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ruleId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  `operator` varchar(20) NOT NULL,
  `value` text NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_rules_conditions_ruleId_fk` (`ruleId`),
  KEY `fk_vludfwtdxbpufyniuozlfqynxkbkyidwhuym` (`fieldId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_fields`
--

DROP TABLE IF EXISTS `freeform_rules_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  `display` varchar(10) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_odrqruywtfibnvhexvspikuigxwbeqxnzucb` (`fieldId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_integrations`
--

DROP TABLE IF EXISTS `freeform_rules_integrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_integrations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `push` tinyint(1) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_integrationId` (`integrationId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_notifications`
--

DROP TABLE IF EXISTS `freeform_rules_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `notificationId` int(11) NOT NULL,
  `send` tinyint(1) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_notificationId` (`notificationId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_pages`
--

DROP TABLE IF EXISTS `freeform_rules_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pageId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_wsfpsiacqqpngpzfjmxzlzdgofxyuaatruho` (`pageId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_rules_submit_form`
--

DROP TABLE IF EXISTS `freeform_rules_submit_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_rules_submit_form` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_iqqpmlyvlgvxulkyuyvbxkpovdmslyoilvbj` (`formId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_saved_forms`
--

DROP TABLE IF EXISTS `freeform_saved_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_saved_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sessionId` varchar(100) DEFAULT NULL,
  `formId` int(11) NOT NULL,
  `token` varchar(100) NOT NULL,
  `payload` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_saved_forms_token_idx` (`token`),
  KEY `freeform_saved_forms_dateCreated_idx` (`dateCreated`),
  KEY `freeform_saved_forms_sessionId_idx` (`sessionId`),
  KEY `freeform_saved_forms_formId_fk` (`formId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_session_context`
--

DROP TABLE IF EXISTS `freeform_session_context`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_session_context` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contextKey` varchar(100) NOT NULL,
  `sessionId` varchar(100) NOT NULL,
  `formId` int(11) NOT NULL,
  `propertyBag` longtext DEFAULT NULL,
  `attributeBag` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_session_context_contextKey_formId_idx` (`contextKey`,`formId`),
  KEY `freeform_session_context_sessionId_idx` (`sessionId`),
  KEY `freeform_session_context_formId_fk` (`formId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_spam_reason`
--

DROP TABLE IF EXISTS `freeform_spam_reason`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_spam_reason` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `reasonType` varchar(100) NOT NULL,
  `reasonMessage` text DEFAULT NULL,
  `reasonValue` longtext DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_spam_reason_submissionId_reasonType_idx` (`submissionId`,`reasonType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_statuses`
--

DROP TABLE IF EXISTS `freeform_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_statuses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `color` varchar(30) DEFAULT NULL,
  `sortOrder` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submission_notes`
--

DROP TABLE IF EXISTS `freeform_submission_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_submission_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `note` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_submission_notes_submissionId_fk` (`submissionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions`
--

DROP TABLE IF EXISTS `freeform_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_submissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `incrementalId` int(11) NOT NULL,
  `userId` int(11) DEFAULT NULL,
  `statusId` int(11) DEFAULT NULL,
  `formId` int(11) NOT NULL,
  `token` varchar(100) NOT NULL,
  `ip` varchar(46) DEFAULT NULL,
  `isSpam` tinyint(1) DEFAULT 0,
  `isHidden` tinyint(1) DEFAULT 0,
  `idempotencyKey` varchar(255) DEFAULT NULL,
  `requestId` varchar(255) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_submissions_incrementalId_unq_idx` (`incrementalId`),
  UNIQUE KEY `freeform_submissions_token_unq_idx` (`token`),
  UNIQUE KEY `freeform_submissions_idempotencyKey_formId_dateCreated_unq_idx` (`idempotencyKey`,`formId`,`dateCreated`),
  KEY `freeform_submissions_userId_fk` (`userId`),
  KEY `freeform_submissions_formId_fk` (`formId`),
  KEY `freeform_submissions_statusId_fk` (`statusId`)
) ENGINE=InnoDB AUTO_INCREMENT=5391 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions_contact_form_1`
--

DROP TABLE IF EXISTS `freeform_submissions_contact_form_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_submissions_contact_form_1` (
  `id` int(11) NOT NULL,
  `your_name_1` text DEFAULT NULL,
  `your_number_2` text DEFAULT NULL,
  `email_3` text DEFAULT NULL,
  `your_message_4` text DEFAULT NULL,
  `hidden_6` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions_tracking_parameters`
--

DROP TABLE IF EXISTS `freeform_submissions_tracking_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_submissions_tracking_parameters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `value` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_submissions_tracking_parameters_submissionId_name` (`submissionId`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_survey_preferences`
--

DROP TABLE IF EXISTS `freeform_survey_preferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_survey_preferences` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  `chartType` varchar(200) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_survey_preferences_userId_fk` (`userId`),
  KEY `fk_zdazjwqtzdodqjpsegkrhembcdfgzbsdczft` (`fieldId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_unfinalized_files`
--

DROP TABLE IF EXISTS `freeform_unfinalized_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `freeform_unfinalized_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assetId` int(11) NOT NULL,
  `fieldHandle` varchar(255) DEFAULT NULL,
  `formToken` varchar(255) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_unfinalized_files_fieldHandle_formToken_idx` (`fieldHandle`,`formToken`),
  KEY `freeform_unfinalized_files_assetId_fk` (`assetId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `globalsets`
--

DROP TABLE IF EXISTS `globalsets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `globalsets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_bqyvdbivovmmxiqgaiebpbtolupygjatrwbq` (`name`),
  KEY `idx_xqmmocnodzbiijvsslwzprwsbutmxyvpoutg` (`handle`),
  KEY `idx_boeazmyagdyuffnbhyqpfrhvrwsqesevlood` (`fieldLayoutId`),
  KEY `idx_rqqjpzsgyiegnoehilxrydbxngogcqxzowkk` (`sortOrder`),
  CONSTRAINT `fk_gkkfcfaahrwemkihuqbtzrcffnesrqfazzzq` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_jrxepgarssphyxgwsvcloxdjuioxzpwhcuqt` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=244 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `gqlschemas`
--

DROP TABLE IF EXISTS `gqlschemas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `gqlschemas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `scope` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`scope`)),
  `isPublic` tinyint(1) NOT NULL DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `gqltokens`
--

DROP TABLE IF EXISTS `gqltokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `gqltokens` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `accessToken` varchar(255) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `expiryDate` datetime DEFAULT NULL,
  `lastUsed` datetime DEFAULT NULL,
  `schemaId` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_cfmbawllobvribbshngpmlpdjsicunogekaq` (`accessToken`),
  UNIQUE KEY `idx_byskmldbrltivceshyvdiizzealxipdkcyrs` (`name`),
  KEY `fk_gdwwtnepqbvnhcwmwwjialokhzoiwadxqduo` (`schemaId`),
  CONSTRAINT `fk_gdwwtnepqbvnhcwmwwjialokhzoiwadxqduo` FOREIGN KEY (`schemaId`) REFERENCES `gqlschemas` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `imagetransformindex`
--

DROP TABLE IF EXISTS `imagetransformindex`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `imagetransformindex` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assetId` int(11) NOT NULL,
  `transformer` varchar(255) DEFAULT NULL,
  `filename` varchar(255) DEFAULT NULL,
  `format` varchar(255) DEFAULT NULL,
  `transformString` varchar(255) NOT NULL,
  `fileExists` tinyint(1) NOT NULL DEFAULT 0,
  `inProgress` tinyint(1) NOT NULL DEFAULT 0,
  `error` tinyint(1) NOT NULL DEFAULT 0,
  `dateIndexed` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_tlbmueqhfznyakmyaasbwxmcimocahyyswal` (`assetId`,`transformString`)
) ENGINE=InnoDB AUTO_INCREMENT=1756 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `imagetransforms`
--

DROP TABLE IF EXISTS `imagetransforms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `imagetransforms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `mode` enum('stretch','fit','crop','letterbox') NOT NULL DEFAULT 'crop',
  `position` enum('top-left','top-center','top-right','center-left','center-center','center-right','bottom-left','bottom-center','bottom-right') NOT NULL DEFAULT 'center-center',
  `width` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `format` varchar(255) DEFAULT NULL,
  `quality` int(11) DEFAULT NULL,
  `interlace` enum('none','line','plane','partition') NOT NULL DEFAULT 'none',
  `fill` varchar(11) DEFAULT NULL,
  `upscale` tinyint(1) NOT NULL DEFAULT 1,
  `parameterChangeTime` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_aozleuujjuygooqmwgstitahuxymmvsferqh` (`name`),
  KEY `idx_wfnmscjgypytofrnjvhfmxfajprzzvnclqsu` (`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `info`
--

DROP TABLE IF EXISTS `info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `info` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `version` varchar(50) NOT NULL,
  `schemaVersion` varchar(15) NOT NULL,
  `maintenance` tinyint(1) NOT NULL DEFAULT 0,
  `configVersion` char(12) NOT NULL DEFAULT '000000000000',
  `fieldVersion` char(12) NOT NULL DEFAULT '000000000000',
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `track` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `applyTime` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_frtmogqlcnptiqgcyskdlsdujpusdsoxozmr` (`track`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `navigation_navs`
--

DROP TABLE IF EXISTS `navigation_navs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `navigation_navs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `structureId` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `instructions` text DEFAULT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `propagationMethod` varchar(255) NOT NULL DEFAULT 'all',
  `maxNodes` int(11) DEFAULT NULL,
  `maxNodesSettings` text DEFAULT NULL,
  `permissions` text DEFAULT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `defaultPlacement` enum('beginning','end') NOT NULL DEFAULT 'end',
  `showSiteMenu` tinyint(1) DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_wtjhxoitihfnaegucgwkncjjrzcaimvorpey` (`handle`),
  KEY `idx_gxxfcvqviyscyouxkmxdqnjroqsovvuyyryz` (`structureId`),
  KEY `idx_crvcpkagzkyomqaxeyufasteutzyqgvdqufl` (`fieldLayoutId`),
  KEY `idx_keglioislfzxfhwxbbhpeosexjfscezlumvo` (`dateDeleted`),
  CONSTRAINT `fk_czeeoccjdemybylbjomfqkxmlintyvslkxah` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_dvaemhlwnjaisujlugtssyuprehrxuabdnje` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `navigation_navs_sites`
--

DROP TABLE IF EXISTS `navigation_navs_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `navigation_navs_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `navId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_xhrchyrhdoepqwwylzbionyizguhrbhlyiiv` (`navId`,`siteId`),
  KEY `idx_fsmdtqdkwvejkidbubwsnuneoychpstnfpap` (`siteId`),
  CONSTRAINT `fk_fhsevpugwmdtznuourruemtwsckxnhyqjmoj` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_ilinjvrtldfmhzvlzwfsotbyqctfzjxuhouq` FOREIGN KEY (`navId`) REFERENCES `navigation_navs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `navigation_nodes`
--

DROP TABLE IF EXISTS `navigation_nodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `navigation_nodes` (
  `id` int(11) NOT NULL,
  `elementId` int(11) DEFAULT NULL,
  `navId` int(11) NOT NULL,
  `parentId` int(11) DEFAULT NULL,
  `url` text DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `classes` varchar(255) DEFAULT NULL,
  `urlSuffix` varchar(255) DEFAULT NULL,
  `customAttributes` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  `newWindow` tinyint(1) DEFAULT 0,
  `deletedWithNav` tinyint(1) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_cdcibdzsmkvcqhspskgcctxyilwkouklrznd` (`navId`),
  KEY `fk_ciitpgkragbpnjgmfzpdbokzduvagoprprwo` (`elementId`),
  CONSTRAINT `fk_ciitpgkragbpnjgmfzpdbokzduvagoprprwo` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_ljyyoelftulemqupjvjtzocidjekumuprmnm` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_yqupblnqkysvppvgrahssbgvlmzinjkkmuri` FOREIGN KEY (`navId`) REFERENCES `navigation_navs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `plugins`
--

DROP TABLE IF EXISTS `plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `plugins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `handle` varchar(255) NOT NULL,
  `version` varchar(255) NOT NULL,
  `schemaVersion` varchar(255) NOT NULL,
  `installDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_lbmvglbtrtlquvpuxfrpqgnegcmuabwwlczd` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `projectconfig`
--

DROP TABLE IF EXISTS `projectconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `projectconfig` (
  `path` varchar(255) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `queue`
--

DROP TABLE IF EXISTS `queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `channel` varchar(255) NOT NULL DEFAULT 'queue',
  `job` longblob NOT NULL,
  `description` text DEFAULT NULL,
  `timePushed` int(11) NOT NULL,
  `ttr` int(11) NOT NULL,
  `delay` int(11) NOT NULL DEFAULT 0,
  `priority` int(11) unsigned NOT NULL DEFAULT 1024,
  `dateReserved` datetime DEFAULT NULL,
  `timeUpdated` int(11) DEFAULT NULL,
  `progress` smallint(6) NOT NULL DEFAULT 0,
  `progressLabel` varchar(255) DEFAULT NULL,
  `attempt` int(11) DEFAULT NULL,
  `fail` tinyint(1) DEFAULT 0,
  `dateFailed` datetime DEFAULT NULL,
  `error` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_lmsqfzjpfygzawlllrvplogmwtuuobtmcxvc` (`channel`,`fail`,`timeUpdated`,`timePushed`),
  KEY `idx_pkeexhkdqbmoactlxrhwgvdtsepjujsjoqmn` (`channel`,`fail`,`timeUpdated`,`delay`)
) ENGINE=InnoDB AUTO_INCREMENT=15229 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `recoverycodes`
--

DROP TABLE IF EXISTS `recoverycodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `recoverycodes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `recoveryCodes` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `relations`
--

DROP TABLE IF EXISTS `relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `relations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  `sourceId` int(11) NOT NULL,
  `sourceSiteId` int(11) DEFAULT NULL,
  `targetId` int(11) NOT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_dleixvlgxooqxhemitpssepvjstexcrukurn` (`fieldId`,`sourceId`,`sourceSiteId`,`targetId`),
  KEY `idx_kceajelblnanotqapzgfzwzswxfxhviabaov` (`sourceId`),
  KEY `idx_hedvenhbpyepkfvuvhulguqdcrxrcdrbcqbi` (`targetId`),
  KEY `idx_vxnhzkmoluzltuziwgaysqyccfttsjrphatm` (`sourceSiteId`),
  CONSTRAINT `fk_gsnsleyffnttbjzbptiuxrcndjdbnmzfhtkt` FOREIGN KEY (`sourceId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_nfmtpwsmlyjwzfnmrhfglniohxkcnxmxybrd` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xkhiokrqrbaqzhxeifrzpfkwicmtnwcdshgh` FOREIGN KEY (`sourceSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3951 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `resourcepaths`
--

DROP TABLE IF EXISTS `resourcepaths`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resourcepaths` (
  `hash` varchar(255) NOT NULL,
  `path` varchar(255) NOT NULL,
  PRIMARY KEY (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `revisions`
--

DROP TABLE IF EXISTS `revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `revisions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `canonicalId` int(11) NOT NULL,
  `creatorId` int(11) DEFAULT NULL,
  `num` int(11) NOT NULL,
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_hhykgnwvwqrobpcjwaeiyohqguadtqkobqtn` (`canonicalId`,`num`),
  KEY `fk_hjuuvvwncupflwkrdkpkhpgvpbmxbsrlaugb` (`creatorId`),
  CONSTRAINT `fk_hjuuvvwncupflwkrdkpkhpgvpbmxbsrlaugb` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_vssiwxivbmuyqtljodaxjdijwnthwdobdzle` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3680 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `searchindex`
--

DROP TABLE IF EXISTS `searchindex`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `searchindex` (
  `elementId` int(11) NOT NULL,
  `attribute` varchar(25) NOT NULL,
  `fieldId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `keywords` text NOT NULL,
  PRIMARY KEY (`elementId`,`attribute`,`fieldId`,`siteId`),
  FULLTEXT KEY `idx_fkttjpdfugjydauoptxhafjztgxxrxagovyo` (`keywords`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `searchindexqueue`
--

DROP TABLE IF EXISTS `searchindexqueue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `searchindexqueue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `reserved` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `idx_zwztawggpdjdsxzetnxlkiydpomrqyxwvnlu` (`elementId`,`siteId`,`reserved`)
) ENGINE=InnoDB AUTO_INCREMENT=7499 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `searchindexqueue_fields`
--

DROP TABLE IF EXISTS `searchindexqueue_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `searchindexqueue_fields` (
  `jobId` int(11) NOT NULL,
  `fieldHandle` varchar(255) NOT NULL,
  PRIMARY KEY (`jobId`,`fieldHandle`),
  UNIQUE KEY `idx_rocjvxeoygmxmfydiachlqdgdrgnnxfbxlbb` (`jobId`,`fieldHandle`),
  CONSTRAINT `fk_yqultvrtuoeozzhbhghytzkpypmyokjficyl` FOREIGN KEY (`jobId`) REFERENCES `searchindexqueue` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sections`
--

DROP TABLE IF EXISTS `sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `structureId` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `type` enum('single','channel','structure') NOT NULL DEFAULT 'channel',
  `enableVersioning` tinyint(1) NOT NULL DEFAULT 0,
  `maxAuthors` smallint(6) unsigned DEFAULT NULL,
  `propagationMethod` varchar(255) NOT NULL DEFAULT 'all',
  `defaultPlacement` enum('beginning','end') NOT NULL DEFAULT 'end',
  `previewTargets` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`previewTargets`)),
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_zaxrafjcxrzrpkkyfbqvnzuogitauzxunwyb` (`handle`),
  KEY `idx_mblhycraflysmpqubfubqhwbzlbuhwpfsdpz` (`name`),
  KEY `idx_aexitlmqzvoklzflbfnsukiaqvgsvlpdsvwh` (`structureId`),
  KEY `idx_ioybdkqpmcrlluhhtwuwimahwrzzfzerxzik` (`dateDeleted`),
  CONSTRAINT `fk_qinukfukjjvohxbdlqiemhmelbytxcfhyzdp` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sections_entrytypes`
--

DROP TABLE IF EXISTS `sections_entrytypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections_entrytypes` (
  `sectionId` int(11) NOT NULL,
  `typeId` int(11) NOT NULL,
  `sortOrder` smallint(6) unsigned NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `handle` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`sectionId`,`typeId`),
  KEY `fk_akkdhlowhnoobzltejwwgqwksypgbkivprnu` (`typeId`),
  CONSTRAINT `fk_akkdhlowhnoobzltejwwgqwksypgbkivprnu` FOREIGN KEY (`typeId`) REFERENCES `entrytypes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_fkcainukgubcrbmzaedliulnnrrrydjqybyy` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sections_sites`
--

DROP TABLE IF EXISTS `sections_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sections_sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sectionId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `hasUrls` tinyint(1) NOT NULL DEFAULT 1,
  `uriFormat` text DEFAULT NULL,
  `template` varchar(500) DEFAULT NULL,
  `enabledByDefault` tinyint(1) NOT NULL DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_eckmdbfahktnombjmesswnygsvilvebpvuzb` (`sectionId`,`siteId`),
  KEY `idx_tqzrqdnvrzzyulykmwceohcpmohwdhwgdnwm` (`siteId`),
  CONSTRAINT `fk_iyolzndetivamasofswvmnupvrvsvneihthl` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xhctmzxtzqfslbqldfigohurbioowtpkcxvd` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `seomatic_metabundles`
--

DROP TABLE IF EXISTS `seomatic_metabundles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `seomatic_metabundles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `bundleVersion` varchar(255) NOT NULL DEFAULT '',
  `sourceBundleType` varchar(255) NOT NULL DEFAULT '',
  `sourceId` int(11) DEFAULT NULL,
  `sourceName` varchar(255) NOT NULL DEFAULT '',
  `sourceHandle` varchar(255) NOT NULL DEFAULT '',
  `sourceType` varchar(64) NOT NULL DEFAULT '',
  `typeId` int(11) DEFAULT NULL,
  `sourceTemplate` varchar(500) DEFAULT '',
  `sourceSiteId` int(11) DEFAULT NULL,
  `sourceAltSiteSettings` text DEFAULT NULL,
  `sourceDateUpdated` datetime NOT NULL,
  `metaGlobalVars` text DEFAULT NULL,
  `metaSiteVars` text DEFAULT NULL,
  `metaSitemapVars` text DEFAULT NULL,
  `metaContainers` text DEFAULT NULL,
  `redirectsContainer` text DEFAULT NULL,
  `frontendTemplatesContainer` text DEFAULT NULL,
  `metaBundleSettings` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_unhyecqkkdoxfmrsvwrzdtczkluxvralccxj` (`sourceBundleType`),
  KEY `idx_cvkvpkwxbqbblcrbwvfaizctdarsidgsthob` (`sourceId`),
  KEY `idx_wuvkgqreahaqgteohfmaovqbzpgyjhzotbbm` (`sourceSiteId`),
  KEY `idx_jdvkhpvndrbzyufeszdsqyytizqdexjiminn` (`sourceHandle`),
  CONSTRAINT `fk_iimraqwrhyvccsstdefyteehxqkpqwktnvuw` FOREIGN KEY (`sourceSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sequences`
--

DROP TABLE IF EXISTS `sequences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sequences` (
  `name` varchar(255) NOT NULL,
  `next` int(11) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sessions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `token` char(100) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_hswjhcqvtzfburcmwpphiwtriwraccywpfyr` (`uid`),
  KEY `idx_cteoionsituxuythoiayhexqtlhgnquxnavc` (`token`),
  KEY `idx_owomkrfxlargzfbxmjvqkewzfugzpdmwvqpa` (`dateUpdated`),
  KEY `idx_bbjitwmtxvylxswbhlzasvbydgolzvcfkemy` (`userId`),
  CONSTRAINT `fk_ygutjharsfjhihxshsalfzqvnqhsmgutyqxs` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=148 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `shunnedmessages`
--

DROP TABLE IF EXISTS `shunnedmessages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `shunnedmessages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `message` varchar(255) NOT NULL,
  `expiryDate` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_murryzfcmdwmxubimtrleryfblnddohrpofx` (`userId`,`message`),
  CONSTRAINT `fk_cyxhavwdvemxijqbgprseisstfkpybstiglb` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sitegroups`
--

DROP TABLE IF EXISTS `sitegroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sitegroups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_bzvoyjwgaxwinzwqbkkqmkvpngrdgxjhcxpy` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sites`
--

DROP TABLE IF EXISTS `sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupId` int(11) NOT NULL,
  `primary` tinyint(1) NOT NULL,
  `enabled` varchar(255) NOT NULL DEFAULT 'true',
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `language` varchar(255) NOT NULL,
  `hasUrls` tinyint(1) NOT NULL DEFAULT 0,
  `baseUrl` varchar(255) DEFAULT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_qodxumaofhaqrqiyixwqwirvvdtwtzvcqyco` (`dateDeleted`),
  KEY `idx_ycofujlgfqztoyvyzdhsznyfkykjdddlbftf` (`handle`),
  KEY `idx_izxfexpkkytvndpdvvcooabxysbmsplmmzgl` (`sortOrder`),
  KEY `fk_uyndnfmsbltwopqnxinsxbncylieinifsvqy` (`groupId`),
  CONSTRAINT `fk_uyndnfmsbltwopqnxinsxbncylieinifsvqy` FOREIGN KEY (`groupId`) REFERENCES `sitegroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sso_identities`
--

DROP TABLE IF EXISTS `sso_identities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sso_identities` (
  `provider` varchar(255) NOT NULL,
  `identityId` varchar(255) NOT NULL,
  `userId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`provider`,`identityId`,`userId`),
  KEY `fk_cdosuuwqnpddbwowyyocfqksitgigfmuqrvz` (`userId`),
  CONSTRAINT `fk_cdosuuwqnpddbwowyyocfqksitgigfmuqrvz` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `structureelements`
--

DROP TABLE IF EXISTS `structureelements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `structureelements` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `structureId` int(11) NOT NULL,
  `elementId` int(11) DEFAULT NULL,
  `root` int(11) unsigned DEFAULT NULL,
  `lft` int(11) unsigned NOT NULL,
  `rgt` int(11) unsigned NOT NULL,
  `level` smallint(6) unsigned NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_miyrgccwkfjhrjxifksjvylfjplbyrfovgxn` (`structureId`,`elementId`),
  KEY `idx_ubjohwatfgdorkkhmabagzapavuosafsftbm` (`root`),
  KEY `idx_rxnqsjqsqygvdwcttjxxbsibipqlngbqhnxr` (`lft`),
  KEY `idx_outwofjsgoffuzskqixlxdqlawhjjfzdifqk` (`rgt`),
  KEY `idx_rujartbsrtqnuxgbpwqawzijoxbnnpsjyamz` (`level`),
  KEY `idx_ewiglwowuovpykautncbvohonbscpwqkitxm` (`elementId`),
  CONSTRAINT `fk_gznivcfwgxqnslvunjtoprqacleqkxzeggbv` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `structures`
--

DROP TABLE IF EXISTS `structures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `structures` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `maxLevels` smallint(6) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_eusnvoethnwxvmutbpkqpxcingkmcdtftfgb` (`dateDeleted`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `systemmessages`
--

DROP TABLE IF EXISTS `systemmessages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `systemmessages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `language` varchar(255) NOT NULL,
  `key` varchar(255) NOT NULL,
  `subject` text NOT NULL,
  `body` text NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ceutupfowtqgzvqozxhcpsookvuhjckpzokv` (`key`,`language`),
  KEY `idx_ikrvnxeqpbixzbipcppxlsmquonzqkpmufiz` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `taggroups`
--

DROP TABLE IF EXISTS `taggroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `taggroups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_izebrjzivrrbfqtdzpvqexvpwbdbyztfuage` (`name`),
  KEY `idx_jmswvtxdfatprgwyfziibabghjpjfbtsqbzh` (`handle`),
  KEY `idx_pswyikqcvxxgppompfrxfiqqzsccztedjtgk` (`dateDeleted`),
  KEY `fk_sdrvhbxkonfxjfqkapkigjducgdvrtlsdkgd` (`fieldLayoutId`),
  CONSTRAINT `fk_sdrvhbxkonfxjfqkapkigjducgdvrtlsdkgd` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `tags`
--

DROP TABLE IF EXISTS `tags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tags` (
  `id` int(11) NOT NULL,
  `groupId` int(11) NOT NULL,
  `deletedWithGroup` tinyint(1) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_lyqyicbtsxhgjcplydtbeuywqvumyhiifvdo` (`groupId`),
  CONSTRAINT `fk_hhjykwpltxiwkljvaexrktrjqtaiovbzcbjd` FOREIGN KEY (`groupId`) REFERENCES `taggroups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_lcarrafuhmpqhyduhtmwtbitnwlqrpezqonk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `tokens`
--

DROP TABLE IF EXISTS `tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tokens` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `token` char(32) NOT NULL,
  `route` text DEFAULT NULL,
  `usageLimit` tinyint(3) unsigned DEFAULT NULL,
  `usageCount` tinyint(3) unsigned DEFAULT NULL,
  `expiryDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ixmfklpkprhmzofhrtmfdjxgvibnlbkpizeb` (`token`),
  KEY `idx_wijzrvzrmrovqylhvumolriokzzinhsrraoj` (`expiryDate`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `usergroups`
--

DROP TABLE IF EXISTS `usergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `usergroups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_jtxvuaocmgpmiafqjpnjewpkjsmuyowwvsut` (`handle`),
  KEY `idx_wpvnhgkuaiewanhhnwdfxwqynzqplzouhztg` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `usergroups_users`
--

DROP TABLE IF EXISTS `usergroups_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `usergroups_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `groupId` int(11) NOT NULL,
  `userId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_bopfhzsnlesikmvmnnawfjxfabzprzrppqby` (`groupId`,`userId`),
  KEY `idx_evpjprisvgsyokywoppepwahlokrqcmlvryo` (`userId`),
  CONSTRAINT `fk_ikswmvvxndtohismwaocrdrkuqliatxulnoy` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zxsvwtlpfzujefxibnfaqgrwpzlyxycryuky` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `userpermissions`
--

DROP TABLE IF EXISTS `userpermissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `userpermissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_smwkoqxjjtioxpidhvokqcdsrtefwbptnkrw` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `userpermissions_usergroups`
--

DROP TABLE IF EXISTS `userpermissions_usergroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `userpermissions_usergroups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `permissionId` int(11) NOT NULL,
  `groupId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_eomihphyscckjnvlqatyhrqnnzjjxtjzkhnl` (`permissionId`,`groupId`),
  KEY `idx_vtarqwsnmlenwrylosqitvxeetrzyksfiyvd` (`groupId`),
  CONSTRAINT `fk_gwlujavssavavmfibuwehtiygnhquaumedan` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xcfqfmpmjkxsnaufijnkfrsfyngldmcmsfmx` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `userpermissions_users`
--

DROP TABLE IF EXISTS `userpermissions_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `userpermissions_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `permissionId` int(11) NOT NULL,
  `userId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_pfbgrixzbtynocqwixsrvmcvunipxdmhajsy` (`permissionId`,`userId`),
  KEY `idx_kmfiztazqycxsewdlvfuqdgzoiflypzvcokh` (`userId`),
  CONSTRAINT `fk_gitnooapwdowazqxrxzphnxeuakugziupmmb` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_jqpkiyameirvzapyvcqvvdpxlbrajmvrjdpg` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `userpreferences`
--

DROP TABLE IF EXISTS `userpreferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `userpreferences` (
  `userId` int(11) NOT NULL AUTO_INCREMENT,
  `preferences` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`preferences`)),
  PRIMARY KEY (`userId`),
  CONSTRAINT `fk_ochchfuzboemdqklocfbmeviomvsfqlmfowo` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
  `id` int(11) NOT NULL,
  `photoId` int(11) DEFAULT NULL,
  `affiliatedSiteId` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `pending` tinyint(1) NOT NULL DEFAULT 0,
  `locked` tinyint(1) NOT NULL DEFAULT 0,
  `suspended` tinyint(1) NOT NULL DEFAULT 0,
  `admin` tinyint(1) NOT NULL DEFAULT 0,
  `username` varchar(255) DEFAULT NULL,
  `fullName` varchar(255) DEFAULT NULL,
  `firstName` varchar(255) DEFAULT NULL,
  `lastName` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `lastLoginDate` datetime DEFAULT NULL,
  `lastLoginAttemptIp` varchar(45) DEFAULT NULL,
  `invalidLoginWindowStart` datetime DEFAULT NULL,
  `invalidLoginCount` tinyint(3) unsigned DEFAULT NULL,
  `lastInvalidLoginDate` datetime DEFAULT NULL,
  `lockoutDate` datetime DEFAULT NULL,
  `hasDashboard` tinyint(1) NOT NULL DEFAULT 0,
  `verificationCode` varchar(255) DEFAULT NULL,
  `verificationCodeIssuedDate` datetime DEFAULT NULL,
  `unverifiedEmail` varchar(255) DEFAULT NULL,
  `passwordResetRequired` tinyint(1) NOT NULL DEFAULT 0,
  `lastPasswordChangeDate` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_lnlqvofnuoqdxcnjnugzpbcjqmtajydmbbyn` (`active`),
  KEY `idx_ebzojebzrrxnijbazmpaunbthstjvntfivst` (`locked`),
  KEY `idx_tdeioxcjewjmwzetadgexcgajshmfzahpaam` (`pending`),
  KEY `idx_jktieojbrfgiitgdmrzijdtlwywrhrdzewdt` (`suspended`),
  KEY `idx_ukcnigukjvanvcoidqytwhbpnozgzlwqndva` (`verificationCode`),
  KEY `idx_jelqxwpfvkmtcezhocxaklcirzaxmtfqimap` (`email`),
  KEY `idx_pwgqzcydyoywhjchlyrdjphjerzzvjrqaxqw` (`username`),
  KEY `fk_aynphcyquycxzkzvgkrbtjmpkfewihqdzybd` (`photoId`),
  KEY `fk_rmhxpvqabrklvfuxeqwxhbcirtjapalbabaq` (`affiliatedSiteId`),
  CONSTRAINT `fk_aynphcyquycxzkzvgkrbtjmpkfewihqdzybd` FOREIGN KEY (`photoId`) REFERENCES `assets` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_rmhxpvqabrklvfuxeqwxhbcirtjapalbabaq` FOREIGN KEY (`affiliatedSiteId`) REFERENCES `sites` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_sgctzwbuiuxfvokjhzlwacwkbykmemqhjlkz` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `volumefolders`
--

DROP TABLE IF EXISTS `volumefolders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `volumefolders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parentId` int(11) DEFAULT NULL,
  `volumeId` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `path` varchar(255) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ttvfnzsftxcdpitrzfttxpuswugcipweetoq` (`name`,`parentId`,`volumeId`),
  KEY `idx_vmkdtqtzfvrjurprscjizvauherelrncusxy` (`parentId`),
  KEY `idx_tnymthcvphdaeznmmdkbppisvepybnpeiiey` (`volumeId`),
  CONSTRAINT `fk_ockgnuyxeksxicnmewwxwcfwsdlfrotnfmqv` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_vknjkvkigdaqyocfqylmgsouhfbudjlfowpw` FOREIGN KEY (`parentId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `volumes`
--

DROP TABLE IF EXISTS `volumes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `volumes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `fs` varchar(255) NOT NULL,
  `subpath` varchar(255) DEFAULT NULL,
  `transformFs` varchar(255) DEFAULT NULL,
  `transformSubpath` varchar(255) DEFAULT NULL,
  `titleTranslationMethod` varchar(255) NOT NULL DEFAULT 'site',
  `titleTranslationKeyFormat` text DEFAULT NULL,
  `altTranslationMethod` varchar(255) NOT NULL DEFAULT 'site',
  `altTranslationKeyFormat` text DEFAULT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_newmjvftulzawptovlptfdqwzvibdfzmjooq` (`name`),
  KEY `idx_uxmltstetpackdlsfuimwpfxpxwddqhwxvon` (`handle`),
  KEY `idx_wsfovkewqvzvbdahbbgfqunpmignnmrebakp` (`fieldLayoutId`),
  KEY `idx_jumrfoojblurapwyucfuxeqydcsxxftxayzv` (`dateDeleted`),
  CONSTRAINT `fk_thlnxcsamrsaycrqmrojeibrrgpcqsghoakm` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `webauthn`
--

DROP TABLE IF EXISTS `webauthn`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `webauthn` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `credentialId` varchar(255) DEFAULT NULL,
  `credential` text DEFAULT NULL,
  `credentialName` varchar(255) DEFAULT NULL,
  `dateLastUsed` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_swfsvkahdmhljxqueatabttmfabocssasapd` (`userId`),
  CONSTRAINT `fk_swfsvkahdmhljxqueatabttmfabocssasapd` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `widgets`
--

DROP TABLE IF EXISTS `widgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `widgets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `colspan` tinyint(3) DEFAULT NULL,
  `settings` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`settings`)),
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_qwrdyrxeewhlhrlfymfjlzvikzcohlojvyty` (`userId`),
  CONSTRAINT `fk_dntvapvgspvhuwiiafhhodobvatvzovldywr` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping routines for database 'rachel_craft'
--
/*!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-04-20 20:58:19
/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.16-MariaDB, for Linux (x86_64)
--
-- Host: 127.0.0.1    Database: rachel_craft
-- ------------------------------------------------------
-- 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_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 */;

--
-- Dumping data for table `addresses`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `addresses` WRITE;
/*!40000 ALTER TABLE `addresses` DISABLE KEYS */;
/*!40000 ALTER TABLE `addresses` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `announcements`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `assetindexingsessions`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `assetindexingsessions` WRITE;
/*!40000 ALTER TABLE `assetindexingsessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `assetindexingsessions` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `assets`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `assets` WRITE;
/*!40000 ALTER TABLE `assets` DISABLE KEYS */;
INSERT INTO `assets` VALUES
(7,1,3,1,'logo.png','image/png','image',NULL,1285,645,17237,NULL,NULL,NULL,'2025-11-30 11:19:43','2025-11-30 11:19:43','2025-11-30 11:19:43'),
(36,1,3,1,'logob.png','image/png','image','',1285,645,20567,NULL,NULL,NULL,'2025-11-30 14:11:48','2025-11-30 14:11:48','2026-03-20 00:34:58'),
(48,1,3,1,'shutterstock_1956162976-1-2048x1366.jpg','image/jpeg','image',NULL,2048,1366,100494,NULL,NULL,NULL,'2025-11-30 19:44:26','2025-11-30 19:44:26','2025-11-30 19:44:26'),
(81,1,3,1,'Baton-Rouge-Office.JPG.webp','image/webp','image',NULL,1200,795,102578,NULL,NULL,NULL,'2026-02-21 15:54:43','2025-11-30 20:19:00','2026-02-21 15:54:43'),
(90,1,3,1,'before4.jpg','image/jpeg','image',NULL,1035,1508,128249,NULL,NULL,NULL,'2025-12-02 15:40:05','2025-12-02 15:40:05','2025-12-02 15:40:05'),
(91,1,3,1,'after4.jpg','image/jpeg','image',NULL,1035,1508,122700,NULL,NULL,NULL,'2025-12-02 15:40:14','2025-12-02 15:40:14','2025-12-02 15:40:14'),
(312,1,3,1,'drrach-home-banner.jpg','image/jpeg','image',NULL,633,699,47285,NULL,NULL,NULL,'2025-12-04 08:44:27','2025-12-04 08:44:27','2025-12-04 08:44:27'),
(320,1,3,1,'Ellipse-9.png','image/png','image',NULL,160,160,39642,NULL,NULL,NULL,'2025-12-04 17:56:44','2025-12-04 17:56:44','2025-12-04 17:56:44'),
(757,1,3,1,'DrRach_Web-95.jpg','image/jpeg','image',NULL,1365,2048,95014,NULL,NULL,NULL,'2025-12-07 14:21:18','2025-12-07 14:21:18','2025-12-07 14:21:18'),
(821,1,3,1,'DrRach_Web-17-12.jpg','image/jpeg','image',NULL,581,647,176782,NULL,NULL,NULL,'2025-12-08 10:05:35','2025-12-08 10:05:35','2025-12-08 10:05:35'),
(1037,1,3,1,'Baton-Rouge-Office.JPG_2026-02-21-155437_ezuv.webp','image/webp','image',NULL,1200,795,104498,NULL,0,0,'2026-02-21 15:54:37','2026-02-21 15:54:37','2026-02-21 15:54:37'),
(1503,1,3,1,'jalupro.jpg','image/jpeg','image',NULL,1200,942,243662,NULL,NULL,NULL,'2026-03-02 17:11:08','2026-03-02 17:11:08','2026-03-02 17:11:08'),
(1638,1,3,1,'jalupro-2.jpg','image/jpeg','image',NULL,715,1272,195334,NULL,NULL,NULL,'2026-03-02 18:18:10','2026-03-02 18:18:10','2026-03-02 18:18:10'),
(1640,1,3,1,'jalupro3.jpg','image/jpeg','image',NULL,1100,778,175763,NULL,NULL,NULL,'2026-03-02 18:22:29','2026-03-02 18:22:29','2026-03-02 18:22:29'),
(1691,1,3,1,'jalupro4.jpg','image/jpeg','image',NULL,1272,715,167635,NULL,NULL,NULL,'2026-03-02 18:43:07','2026-03-02 18:43:07','2026-03-02 18:43:07'),
(1749,1,3,1,'jalupro5.jpg','image/jpeg','image',NULL,918,1000,206608,NULL,NULL,NULL,'2026-03-02 19:44:29','2026-03-02 19:44:29','2026-03-02 19:44:29'),
(1937,1,3,1,'DrRach_Web-169.jpg','image/jpeg','image',NULL,2048,1365,365701,NULL,NULL,NULL,'2026-03-02 21:36:48','2026-03-02 21:36:48','2026-03-02 21:36:48'),
(1939,1,3,1,'DrRach_Web-132.jpg','image/jpeg','image',NULL,600,900,121340,NULL,NULL,NULL,'2026-03-02 21:40:26','2026-03-02 21:40:26','2026-03-02 21:40:26'),
(1941,1,3,1,'DrRach_Web-187.jpg','image/jpeg','image',NULL,667,1000,173804,NULL,NULL,NULL,'2026-03-02 21:42:24','2026-03-02 21:42:24','2026-03-02 21:42:24'),
(1946,1,3,1,'DrRach_Web-192.jpg','image/jpeg','image',NULL,800,1200,211874,NULL,NULL,NULL,'2026-03-02 21:44:02','2026-03-02 21:44:02','2026-03-02 21:44:02'),
(2006,1,3,1,'DrRach_Web-107.jpg','image/jpeg','image',NULL,2048,1365,542750,NULL,NULL,NULL,'2026-03-02 21:48:54','2026-03-02 21:48:54','2026-03-02 21:48:54'),
(2034,1,3,1,'DrRach_Web-110.jpg','image/jpeg','image',NULL,960,1200,289162,NULL,NULL,NULL,'2026-03-02 21:58:05','2026-03-02 21:58:05','2026-03-02 21:58:05'),
(2036,1,3,1,'DSC02593.jpg','image/jpeg','image',NULL,850,1272,211113,NULL,NULL,NULL,'2026-03-02 21:59:05','2026-03-02 21:59:05','2026-03-02 21:59:05'),
(2341,1,3,1,'DrRach_Web-38.jpg','image/jpeg','image',NULL,800,1200,236261,NULL,NULL,NULL,'2026-03-02 22:53:00','2026-03-02 22:53:00','2026-03-02 22:53:00'),
(2342,1,3,1,'DrRach_Web-43.jpg','image/jpeg','image',NULL,667,1000,139743,NULL,NULL,NULL,'2026-03-02 22:53:00','2026-03-02 22:53:00','2026-03-02 22:53:00'),
(2343,1,3,1,'DrRach_Web-55.jpg','image/jpeg','image',NULL,800,1200,171242,NULL,NULL,NULL,'2026-03-02 22:53:01','2026-03-02 22:53:01','2026-03-02 22:53:01'),
(2578,1,3,1,'DrRach_Web-38_2026-03-02-234722_daka.jpg','image/jpeg','image',NULL,800,1200,236261,NULL,NULL,NULL,'2026-03-02 23:47:22','2026-03-02 23:47:22','2026-03-02 23:47:22'),
(2579,1,3,1,'DrRach_Web-43_2026-03-02-234722_dlxi.jpg','image/jpeg','image',NULL,667,1000,139743,NULL,NULL,NULL,'2026-03-02 23:47:22','2026-03-02 23:47:22','2026-03-02 23:47:22'),
(2580,1,3,1,'DrRach_Web-55_2026-03-02-234722_thvg.jpg','image/jpeg','image',NULL,800,1200,171242,NULL,NULL,NULL,'2026-03-02 23:47:22','2026-03-02 23:47:22','2026-03-02 23:47:22'),
(2581,1,3,1,'DSC04503.jpg','image/jpeg','image',NULL,968,1200,255147,NULL,NULL,NULL,'2026-03-02 23:48:07','2026-03-02 23:48:07','2026-03-02 23:48:07'),
(2582,1,3,1,'DSC04614.jpg','image/jpeg','image',NULL,808,1105,168315,NULL,NULL,NULL,'2026-03-02 23:48:07','2026-03-02 23:48:07','2026-03-02 23:48:07'),
(2583,1,3,1,'DSC04657.jpg','image/jpeg','image',NULL,715,1272,175963,NULL,NULL,NULL,'2026-03-02 23:48:07','2026-03-02 23:48:07','2026-03-02 23:48:07'),
(2698,1,3,1,'DSC03184.jpg','image/jpeg','image',NULL,1103,782,147553,NULL,NULL,NULL,'2026-03-03 00:06:55','2026-03-03 00:06:55','2026-03-03 00:06:55'),
(2711,1,3,1,'DSC03248.jpg','image/jpeg','image',NULL,715,1272,204824,NULL,NULL,NULL,'2026-03-03 00:12:08','2026-03-03 00:12:08','2026-03-03 00:12:08'),
(2712,1,3,1,'DSC03641.jpg','image/jpeg','image',NULL,782,1111,196190,NULL,NULL,NULL,'2026-03-03 00:12:18','2026-03-03 00:12:18','2026-03-03 00:12:18'),
(3953,1,3,1,'who-should-consider-this-treatment.jpg','image/jpeg','image',NULL,1365,2048,1062076,NULL,NULL,NULL,'2026-03-16 21:32:15','2026-03-16 21:32:15','2026-03-16 21:32:15'),
(3956,1,3,1,'Sunekos-Eye-Treatment-2.jpg','image/jpeg','image',NULL,1000,562,270978,NULL,NULL,NULL,'2026-03-16 21:34:44','2026-03-16 21:34:44','2026-03-16 21:34:44'),
(3957,1,3,1,'Sunekos-Eye-Treatment.jpg','image/jpeg','image',NULL,1000,1090,605038,NULL,NULL,NULL,'2026-03-16 21:34:45','2026-03-16 21:34:45','2026-03-16 21:34:45'),
(4082,1,3,1,'anti-wrinkle-injection-rachel.jpg','image/jpeg','image',NULL,1200,1078,611674,NULL,NULL,NULL,'2026-03-18 10:21:12','2026-03-18 10:21:12','2026-03-18 10:21:12'),
(4083,1,3,1,'Anti-wrinkle-injection-wirral.jpg','image/jpeg','image',NULL,1200,675,377599,NULL,0,0,'2026-03-18 10:21:13','2026-03-18 10:21:13','2026-03-18 10:21:13'),
(4084,1,3,1,'Anti-wrinkle-injection.jpg','image/jpeg','image',NULL,1200,827,540911,NULL,NULL,NULL,'2026-03-18 10:21:13','2026-03-18 10:21:13','2026-03-18 10:21:13'),
(4088,1,3,1,'Anti-wrinkle-injection-wirral-uk.jpg','image/jpeg','image',NULL,1200,1027,756403,NULL,0,0,'2026-03-18 10:23:31','2026-03-18 10:23:31','2026-03-18 10:23:31'),
(4089,1,3,1,'DSC02607.jpg','image/jpeg','image',NULL,1200,1707,1014895,NULL,0,0,'2026-03-18 10:24:41','2026-03-18 10:24:41','2026-03-18 10:24:41'),
(4090,1,3,1,'Anti-wrinkle-injection-wirral.jpg','image/jpeg','image',NULL,1200,1913,1208832,NULL,NULL,NULL,'2026-03-18 10:26:26','2026-03-18 10:26:26','2026-03-18 10:26:26'),
(4105,1,3,1,'anti-wrinkle-injection-client.jpg','image/jpeg','image',NULL,1304,1171,730183,NULL,NULL,NULL,'2026-03-18 11:18:33','2026-03-18 11:18:33','2026-03-18 11:18:33'),
(4118,1,3,1,'Aesthetics-by-rachel-banner.jpg','image/jpeg','image',NULL,2048,1365,629876,NULL,NULL,NULL,'2026-03-18 11:45:04','2026-03-18 11:45:04','2026-03-18 11:45:04'),
(4126,1,3,1,'Aesthetics-by-rachel-home-banner.jpg','image/jpeg','image',NULL,2048,1365,1261971,NULL,NULL,NULL,'2026-03-18 11:47:11','2026-03-18 11:47:11','2026-03-18 11:47:11'),
(4355,1,3,1,'chemical-peel-wirral.jpg','image/jpeg','image',NULL,1365,2048,1348584,NULL,NULL,NULL,'2026-03-18 23:07:37','2026-03-18 23:07:37','2026-03-18 23:07:37'),
(4372,1,3,1,'chemical-peels-wirral-by-dr-rachel.jpg','image/jpeg','image',NULL,1365,2048,1217980,NULL,NULL,NULL,'2026-03-18 23:23:32','2026-03-18 23:23:32','2026-03-18 23:23:32'),
(4373,1,3,1,'chemical-peels-wirral.jpg','image/jpeg','image',NULL,2048,1365,829538,NULL,NULL,NULL,'2026-03-18 23:23:33','2026-03-18 23:23:33','2026-03-18 23:23:33'),
(4375,1,3,1,'chemical-peels-wirral-by-rachel-aesthetics.jpg','image/jpeg','image',NULL,1365,2048,1276818,NULL,NULL,NULL,'2026-03-18 23:25:44','2026-03-18 23:25:44','2026-03-18 23:25:44'),
(4446,1,3,1,'Microneedling-Wirral-Featured-Image.jpg','image/jpeg','image',NULL,1365,2048,1388887,NULL,NULL,NULL,'2026-03-19 10:17:08','2026-03-19 10:17:08','2026-03-19 10:17:08'),
(4447,1,3,1,'Microneedling-Wirral-Patient.jpg','image/jpeg','image',NULL,2048,1365,1274693,'0.2542;0.2810',NULL,NULL,'2026-03-19 10:17:09','2026-03-19 10:17:09','2026-04-15 15:12:23'),
(4448,1,3,1,'Microneedling-Wirral-Treatment.jpg','image/jpeg','image',NULL,1365,2048,1176154,NULL,NULL,NULL,'2026-03-19 10:17:10','2026-03-19 10:17:10','2026-03-19 10:17:10'),
(4531,1,3,1,'Microneedling-Wirral-happy-patient.jpg','image/jpeg','image',NULL,1365,2048,938990,NULL,NULL,NULL,'2026-03-19 10:57:23','2026-03-19 10:57:23','2026-03-19 10:57:23'),
(4536,1,3,1,'Skin-Booster-in-Wirral-Patient.jpg','image/jpeg','image',NULL,1347,1842,1254367,NULL,NULL,NULL,'2026-03-19 15:41:33','2026-03-19 15:41:33','2026-03-19 15:41:33'),
(4537,1,3,1,'Skin-Booster-in-Wirral.jpg','image/jpeg','image',NULL,1052,1304,754261,NULL,NULL,NULL,'2026-03-19 15:41:33','2026-03-19 15:41:34','2026-03-19 15:41:34'),
(4538,1,3,1,'Skin-Booster-injection.jpg','image/jpeg','image',NULL,1192,2120,1353416,NULL,NULL,NULL,'2026-03-19 15:41:34','2026-03-19 15:41:34','2026-03-19 15:41:34'),
(4539,1,3,1,'Skin-Booster-Featured-Image.jpg','image/jpeg','image',NULL,1416,1610,950156,NULL,NULL,NULL,'2026-03-19 15:41:35','2026-03-19 15:41:35','2026-03-19 15:41:35'),
(4623,1,3,1,'Skin-Booster-in-Wirral-Patient_2026-03-19-160130_wzqx.jpg','image/jpeg','image',NULL,1347,1842,1254367,NULL,0,0,'2026-03-19 16:01:30','2026-03-19 16:01:30','2026-03-19 16:01:30'),
(4624,1,3,1,'Skin-Booster-in-Wirral_2026-03-19-160131_sunv.jpg','image/jpeg','image',NULL,1052,1304,754261,NULL,0,0,'2026-03-19 16:01:31','2026-03-19 16:01:31','2026-03-19 16:01:31'),
(4625,1,3,1,'Skin-Booster-injection_2026-03-19-160131_ommu.jpg','image/jpeg','image',NULL,1192,2120,1353416,NULL,0,0,'2026-03-19 16:01:31','2026-03-19 16:01:32','2026-03-19 16:01:32'),
(4626,1,3,1,'Skin-Booster-Featured-Image_2026-03-19-160132_hjhh.jpg','image/jpeg','image',NULL,1416,1610,950156,NULL,0,0,'2026-03-19 16:01:32','2026-03-19 16:01:32','2026-03-19 16:01:32'),
(4627,1,3,1,'polynucleotides-in-wirral-featured.jpg','image/jpeg','image',NULL,1416,1610,950156,NULL,NULL,NULL,'2026-03-19 16:03:06','2026-03-19 16:03:07','2026-03-19 16:03:07'),
(4628,1,3,1,'polynucleotides-in-wirral-uk.jpg','image/jpeg','image',NULL,1875,1353,1464245,NULL,NULL,NULL,'2026-03-19 16:03:07','2026-03-19 16:03:08','2026-03-19 16:03:08'),
(4629,1,3,1,'polynucleotides-in-wirral.jpg','image/jpeg','image',NULL,1192,2120,1419035,NULL,NULL,NULL,'2026-03-19 16:03:08','2026-03-19 16:03:08','2026-03-19 16:03:08'),
(4630,1,3,1,'polynucleotides-treatment-in-wirral.jpg','image/jpeg','image',NULL,1347,1842,1254367,NULL,NULL,NULL,'2026-03-19 16:03:09','2026-03-19 16:03:09','2026-03-19 16:03:09'),
(4752,1,3,1,'dermal-fillers-treatement-wirral.jpg','image/jpeg','image',NULL,1192,2120,1355256,NULL,NULL,NULL,'2026-03-19 18:45:19','2026-03-19 18:45:19','2026-03-19 18:45:19'),
(4753,1,3,1,'dermal-fillers-wirral.jpg','image/jpeg','image',NULL,819,1024,450939,NULL,NULL,NULL,'2026-03-19 18:45:19','2026-03-19 18:45:19','2026-03-19 18:45:19'),
(4754,1,3,1,'dermal-fillers-wirral-fetured-image.jpg','image/jpeg','image',NULL,1957,1304,1294155,NULL,NULL,NULL,'2026-03-19 18:45:20','2026-03-19 18:45:20','2026-03-19 18:45:20'),
(4886,1,3,1,'cryotherapy-in-wirral.jpg','image/jpeg','image',NULL,1500,1123,781875,NULL,NULL,NULL,'2026-03-19 19:23:10','2026-03-19 19:23:10','2026-03-19 19:23:10'),
(4887,1,3,1,'cryotherapy-treatment-in-wirral-clinic.jpg','image/jpeg','image',NULL,1365,2048,1013867,NULL,NULL,NULL,'2026-03-19 19:23:11','2026-03-19 19:23:11','2026-03-19 19:23:11'),
(4888,1,3,1,'cryotherapy-treatment-in-wirral.jpg','image/jpeg','image',NULL,1365,2048,845570,NULL,NULL,NULL,'2026-03-19 19:23:11','2026-03-19 19:23:11','2026-03-19 19:23:11'),
(4893,1,3,1,'Skin-booster-in-Wirral-fetured-image.jpg','image/jpeg','image',NULL,1365,2048,1505105,NULL,NULL,NULL,'2026-03-19 19:41:00','2026-03-19 19:41:00','2026-03-19 19:41:00'),
(4948,1,3,1,'Skin-Consultation-Wirral-by-dr-rachel.jpg','image/jpeg','image',NULL,1229,1536,1018233,NULL,NULL,NULL,'2026-03-19 20:04:28','2026-03-19 20:04:28','2026-03-19 20:04:28'),
(4949,1,3,1,'Skin-Consultation-Wirral-featured-image.jpg','image/jpeg','image',NULL,1229,1536,955406,NULL,NULL,NULL,'2026-03-19 20:04:28','2026-03-19 20:04:28','2026-03-19 20:04:28'),
(4950,1,3,1,'Skin-Consultation-Wirral.jpg','image/jpeg','image',NULL,1024,1536,1219921,NULL,NULL,NULL,'2026-03-19 20:04:29','2026-03-19 20:04:29','2026-03-19 20:04:29'),
(4980,1,3,1,'sunekos-treatment-wirral-fetured-image.jpg','image/jpeg','image',NULL,1192,2120,1365341,NULL,NULL,NULL,'2026-03-19 20:07:35','2026-03-19 20:07:35','2026-03-19 20:07:35'),
(4994,1,3,1,'dr-rachel.jpg','image/jpeg','image',NULL,1365,2048,1239687,NULL,NULL,NULL,'2026-03-19 21:58:46','2026-03-19 21:58:46','2026-03-19 21:58:46'),
(5070,1,3,1,'Rosacea-Codition.png','image/png','image',NULL,800,500,452734,NULL,NULL,NULL,'2026-03-19 22:36:26','2026-03-19 22:36:26','2026-03-19 22:36:26'),
(5071,1,3,1,'Rosacea-Condition-2.png','image/png','image',NULL,800,500,302038,NULL,NULL,NULL,'2026-03-19 22:36:29','2026-03-19 22:36:29','2026-03-19 22:36:29'),
(5075,1,3,1,'Aesthetics-by-Dr-Rachel-clinic.jpg','image/jpeg','image',NULL,2048,1365,1254426,NULL,NULL,NULL,'2026-03-19 22:38:46','2026-03-19 22:38:46','2026-03-19 22:38:46'),
(5076,1,3,1,'Aesthetics-by-Dr-Rachel.jpg','image/jpeg','image',NULL,1365,2048,774460,NULL,NULL,NULL,'2026-03-19 22:38:46','2026-03-19 22:38:47','2026-03-19 22:38:47'),
(5372,1,3,1,'Rectangle-80.jpg','image/jpeg','image',NULL,479,413,131506,NULL,NULL,NULL,'2026-03-20 12:54:18','2026-03-20 12:54:18','2026-03-20 12:54:18'),
(5373,1,3,1,'Rectangle-81.jpg','image/jpeg','image',NULL,481,413,93354,NULL,NULL,NULL,'2026-03-20 12:54:18','2026-03-20 12:54:18','2026-03-20 12:54:18'),
(5374,1,3,1,'Rectangle-82.jpg','image/jpeg','image',NULL,480,413,127745,NULL,NULL,NULL,'2026-03-20 12:54:19','2026-03-20 12:54:19','2026-03-20 12:54:19'),
(6337,1,3,1,'polynucleotides-treatment-wirral.jpg','image/jpeg','image',NULL,1000,1507,468369,NULL,NULL,NULL,'2026-03-30 18:01:06','2026-03-30 18:01:06','2026-03-30 18:01:06'),
(6338,1,3,1,'sunekos-treatment-wirral.jpg','image/jpeg','image',NULL,1000,667,241700,NULL,NULL,NULL,'2026-03-30 18:01:07','2026-03-30 18:01:07','2026-03-30 18:01:07'),
(6344,1,3,1,'chemicla-peel-in-the-wirral.png','image/jpeg','image',NULL,2048,1365,2150584,NULL,NULL,NULL,'2026-03-30 18:31:21','2026-03-30 18:31:21','2026-03-30 18:31:21'),
(6347,1,3,1,'home-rachel1.jpg','image/jpeg','image',NULL,1365,2048,190207,NULL,NULL,NULL,'2026-03-31 09:16:56','2026-03-31 09:16:56','2026-03-31 09:16:56'),
(6531,1,3,1,'neck-lines-condition-1.png','image/png','image',NULL,540,675,618703,NULL,0,0,'2026-04-01 10:03:41','2026-04-01 10:03:41','2026-04-01 10:03:41'),
(6532,1,3,1,'neck-lines-condition-3.png','image/png','image',NULL,540,675,555967,NULL,0,0,'2026-04-01 10:03:47','2026-04-01 10:03:47','2026-04-01 10:03:47'),
(6533,1,3,1,'neck-lines-condition2.png','image/png','image',NULL,540,675,544850,NULL,NULL,NULL,'2026-04-01 10:03:52','2026-04-01 10:03:52','2026-04-01 10:03:52'),
(6537,1,3,1,'neck-lines-condition-1.png','image/png','image',NULL,540,653,613356,NULL,NULL,NULL,'2026-04-01 10:06:34','2026-04-01 10:06:34','2026-04-01 10:06:34'),
(6538,1,3,1,'neck-lines-condition-3.png','image/png','image',NULL,540,661,551695,NULL,NULL,NULL,'2026-04-01 10:06:39','2026-04-01 10:06:39','2026-04-01 10:06:39'),
(6565,1,3,1,'aging-skin-condition-wirral-1.png','image/png','image',NULL,540,675,599493,NULL,NULL,NULL,'2026-04-01 10:11:38','2026-04-01 10:11:38','2026-04-01 10:11:38'),
(6566,1,3,1,'aging-skin-condition-wirral-3.png','image/png','image',NULL,540,675,645349,NULL,NULL,NULL,'2026-04-01 10:11:40','2026-04-01 10:11:40','2026-04-01 10:11:40'),
(6567,1,3,1,'aging-skin-condition-wirral.png','image/png','image',NULL,540,675,554707,NULL,NULL,NULL,'2026-04-01 10:11:46','2026-04-01 10:11:46','2026-04-01 10:11:46'),
(6684,1,3,1,'lines-and-wrinkles-condition-2.png','image/png','image',NULL,540,609,527763,NULL,NULL,NULL,'2026-04-01 17:43:14','2026-04-01 17:43:14','2026-04-01 17:43:14'),
(6685,1,3,1,'lines-and-wrinkles-condition-3.png','image/png','image',NULL,540,357,343230,NULL,NULL,NULL,'2026-04-01 17:43:16','2026-04-01 17:43:16','2026-04-01 17:43:16'),
(6686,1,3,1,'lines-and-wrinkles-condition.png','image/png','image',NULL,540,425,434692,NULL,NULL,NULL,'2026-04-01 17:43:18','2026-04-01 17:43:18','2026-04-01 17:43:18'),
(6726,1,3,1,'dar-circles-aroung-the-eyes-2.png','image/png','image',NULL,540,347,345896,NULL,NULL,NULL,'2026-04-01 18:17:05','2026-04-01 18:17:05','2026-04-01 18:17:05'),
(6727,1,3,1,'dar-circles-aroung-the-eyes.png','image/png','image',NULL,540,412,367657,NULL,NULL,NULL,'2026-04-01 18:17:08','2026-04-01 18:17:08','2026-04-01 18:17:08'),
(6785,1,3,1,'Creepy-skin-condition-1.png','image/png','image',NULL,540,675,567851,NULL,NULL,NULL,'2026-04-01 18:46:35','2026-04-01 18:46:35','2026-04-01 18:46:35'),
(6786,1,3,1,'Creepy-skin-condition-2.png','image/png','image',NULL,540,675,609195,NULL,NULL,NULL,'2026-04-01 18:46:40','2026-04-01 18:46:40','2026-04-01 18:46:40'),
(6787,1,3,1,'Creepy-skin-condition-3.png','image/png','image',NULL,540,675,532372,NULL,NULL,NULL,'2026-04-01 18:46:46','2026-04-01 18:46:46','2026-04-01 18:46:46'),
(6846,1,3,1,'hyperpigmentaion-condition-1.png','image/png','image',NULL,810,1013,983053,NULL,NULL,NULL,'2026-04-01 19:24:03','2026-04-01 19:24:03','2026-04-01 19:24:03'),
(6847,1,3,1,'hyperpigmentaion-condition-2.png','image/png','image',NULL,810,1013,1238094,NULL,NULL,NULL,'2026-04-01 19:24:05','2026-04-01 19:24:05','2026-04-01 19:24:05'),
(6848,1,3,1,'hyperpigmentaion-condition-3.png','image/png','image',NULL,810,1013,1116951,NULL,NULL,NULL,'2026-04-01 19:24:13','2026-04-01 19:24:13','2026-04-01 19:24:13'),
(6849,1,3,1,'hyperpigmentaion-condition.png','image/png','image',NULL,810,1013,1049130,NULL,NULL,NULL,'2026-04-01 19:24:15','2026-04-01 19:24:15','2026-04-01 19:24:15'),
(6960,1,3,1,'Acne-Scarring-2.png','image/png','image',NULL,810,1013,1242227,NULL,NULL,NULL,'2026-04-03 10:34:47','2026-04-03 10:34:47','2026-04-03 10:34:47'),
(6961,1,3,1,'Acne-Scarring-3.png','image/png','image',NULL,810,1013,1152930,NULL,NULL,NULL,'2026-04-03 10:34:52','2026-04-03 10:34:52','2026-04-03 10:34:52'),
(6962,1,3,1,'Acne-Scarring-4.png','image/png','image',NULL,810,1013,1020411,NULL,NULL,NULL,'2026-04-03 10:35:02','2026-04-03 10:35:02','2026-04-03 10:35:02'),
(6963,1,3,1,'Acne-Scarring.png','image/png','image',NULL,810,1013,1119779,NULL,NULL,NULL,'2026-04-03 10:35:15','2026-04-03 10:35:15','2026-04-03 10:35:15'),
(7013,1,3,1,'acne-2.png','image/png','image',NULL,810,1013,1412354,NULL,NULL,NULL,'2026-04-03 10:58:11','2026-04-03 10:58:11','2026-04-03 10:58:11'),
(7014,1,3,1,'acne-3.png','image/png','image',NULL,810,1013,1636647,NULL,NULL,NULL,'2026-04-03 10:58:16','2026-04-03 10:58:16','2026-04-03 10:58:16'),
(7015,1,3,1,'acne-4.png','image/png','image',NULL,810,1013,1493782,NULL,NULL,NULL,'2026-04-03 10:58:19','2026-04-03 10:58:19','2026-04-03 10:58:19'),
(7016,1,3,1,'Acne.png','image/png','image',NULL,810,1013,1223475,NULL,NULL,NULL,'2026-04-03 10:58:34','2026-04-03 10:58:34','2026-04-03 10:58:34'),
(7110,1,3,1,'upper-lip-2-1.jpg','image/jpeg','image',NULL,656,985,549286,NULL,NULL,NULL,'2026-04-03 11:54:30','2026-04-03 11:54:30','2026-04-03 11:54:30'),
(7112,1,3,1,'upper-lip-3.jpg','image/jpeg','image',NULL,750,1125,667129,NULL,NULL,NULL,'2026-04-03 11:54:59','2026-04-03 11:54:59','2026-04-03 11:54:59'),
(7113,1,3,1,'upper-lip-4.jpg','image/jpeg','image',NULL,1448,2172,875901,NULL,NULL,NULL,'2026-04-03 11:55:00','2026-04-03 11:55:00','2026-04-03 11:55:00'),
(7114,1,3,1,'upper-lip.jpg','image/jpeg','image',NULL,857,1286,673493,NULL,NULL,NULL,'2026-04-03 11:55:01','2026-04-03 11:55:01','2026-04-03 11:55:01'),
(7858,1,3,1,'JULAINE-vial.jpg','image/jpeg','image',NULL,400,400,24048,NULL,NULL,NULL,'2026-04-15 15:02:13','2026-04-15 15:02:13','2026-04-15 15:02:13'),
(7876,1,3,1,'radiant-skin-glow.jpg','image/jpeg','image',NULL,900,700,35195,NULL,NULL,NULL,'2026-04-15 15:25:56','2026-04-15 15:25:56','2026-04-15 15:25:56'),
(8195,1,3,1,'Crows-Feet-Treatment-before.jpg','image/jpeg','image',NULL,1240,1748,677126,NULL,NULL,NULL,'2026-04-17 11:47:07','2026-04-17 11:47:07','2026-04-17 11:47:07'),
(8196,1,3,1,'Crows-Feet-Treatment-after.jpg','image/jpeg','image',NULL,1240,1748,658018,NULL,NULL,NULL,'2026-04-17 11:47:17','2026-04-17 11:47:17','2026-04-17 11:47:17'),
(8199,1,3,1,'phformula-resurfacing-after.jpg','image/jpeg','image',NULL,1240,1748,554255,NULL,NULL,NULL,'2026-04-17 11:53:41','2026-04-17 11:53:41','2026-04-17 11:53:41'),
(8200,1,3,1,'phformula-resurfacing-before.jpg','image/jpeg','image',NULL,1240,1748,541020,NULL,NULL,NULL,'2026-04-17 11:54:28','2026-04-17 11:54:28','2026-04-17 11:54:28'),
(8203,1,3,1,'polynucleotides-before.jpg','image/jpeg','image',NULL,1240,1748,608447,NULL,NULL,NULL,'2026-04-17 12:06:19','2026-04-17 12:06:19','2026-04-17 12:06:19'),
(8204,1,3,1,'polynucleotides-after.jpg','image/jpeg','image',NULL,1240,1748,562642,NULL,NULL,NULL,'2026-04-17 12:06:29','2026-04-17 12:06:29','2026-04-17 12:06:29');
/*!40000 ALTER TABLE `assets` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `assets_sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `assets_sites` WRITE;
/*!40000 ALTER TABLE `assets_sites` DISABLE KEYS */;
INSERT INTO `assets_sites` VALUES
(7,1,NULL),
(36,1,''),
(48,1,NULL),
(81,1,NULL),
(90,1,NULL),
(91,1,NULL),
(312,1,NULL),
(320,1,NULL),
(757,1,NULL),
(821,1,NULL),
(1037,1,NULL),
(1503,1,NULL),
(1638,1,NULL),
(1640,1,NULL),
(1691,1,NULL),
(1749,1,NULL),
(1937,1,NULL),
(1939,1,NULL),
(1941,1,NULL),
(1946,1,NULL),
(2006,1,NULL),
(2034,1,NULL),
(2036,1,NULL),
(2341,1,NULL),
(2342,1,NULL),
(2343,1,NULL),
(2578,1,NULL),
(2579,1,NULL),
(2580,1,NULL),
(2581,1,NULL),
(2582,1,NULL),
(2583,1,NULL),
(2698,1,NULL),
(2711,1,NULL),
(2712,1,NULL),
(3953,1,NULL),
(3956,1,NULL),
(3957,1,NULL),
(4082,1,NULL),
(4083,1,NULL),
(4084,1,NULL),
(4088,1,NULL),
(4089,1,NULL),
(4090,1,NULL),
(4105,1,NULL),
(4118,1,NULL),
(4126,1,NULL),
(4355,1,NULL),
(4372,1,NULL),
(4373,1,NULL),
(4375,1,NULL),
(4446,1,NULL),
(4447,1,NULL),
(4448,1,NULL),
(4531,1,NULL),
(4536,1,NULL),
(4537,1,NULL),
(4538,1,NULL),
(4539,1,NULL),
(4623,1,NULL),
(4624,1,NULL),
(4625,1,NULL),
(4626,1,NULL),
(4627,1,NULL),
(4628,1,NULL),
(4629,1,NULL),
(4630,1,NULL),
(4752,1,NULL),
(4753,1,NULL),
(4754,1,NULL),
(4886,1,NULL),
(4887,1,NULL),
(4888,1,NULL),
(4893,1,NULL),
(4948,1,NULL),
(4949,1,NULL),
(4950,1,NULL),
(4980,1,NULL),
(4994,1,NULL),
(5070,1,NULL),
(5071,1,NULL),
(5075,1,NULL),
(5076,1,NULL),
(5372,1,NULL),
(5373,1,NULL),
(5374,1,NULL),
(6337,1,NULL),
(6338,1,NULL),
(6344,1,NULL),
(6347,1,NULL),
(6531,1,NULL),
(6532,1,NULL),
(6533,1,NULL),
(6537,1,NULL),
(6538,1,NULL),
(6565,1,NULL),
(6566,1,NULL),
(6567,1,NULL),
(6684,1,NULL),
(6685,1,NULL),
(6686,1,NULL),
(6726,1,NULL),
(6727,1,NULL),
(6785,1,NULL),
(6786,1,NULL),
(6787,1,NULL),
(6846,1,NULL),
(6847,1,NULL),
(6848,1,NULL),
(6849,1,NULL),
(6960,1,NULL),
(6961,1,NULL),
(6962,1,NULL),
(6963,1,NULL),
(7013,1,NULL),
(7014,1,NULL),
(7015,1,NULL),
(7016,1,NULL),
(7110,1,NULL),
(7112,1,NULL),
(7113,1,NULL),
(7114,1,NULL),
(7858,1,NULL),
(7876,1,NULL),
(8195,1,NULL),
(8196,1,NULL),
(8199,1,NULL),
(8200,1,NULL),
(8203,1,NULL),
(8204,1,NULL);
/*!40000 ALTER TABLE `assets_sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `authenticator`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `authenticator` WRITE;
/*!40000 ALTER TABLE `authenticator` DISABLE KEYS */;
/*!40000 ALTER TABLE `authenticator` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `bulkopevents`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `bulkopevents` WRITE;
/*!40000 ALTER TABLE `bulkopevents` DISABLE KEYS */;
/*!40000 ALTER TABLE `bulkopevents` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `categories`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `categorygroups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `categorygroups` WRITE;
/*!40000 ALTER TABLE `categorygroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `categorygroups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `categorygroups_sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `categorygroups_sites` WRITE;
/*!40000 ALTER TABLE `categorygroups_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `categorygroups_sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `changedattributes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `changedattributes` WRITE;
/*!40000 ALTER TABLE `changedattributes` DISABLE KEYS */;
INSERT INTO `changedattributes` VALUES
(1,1,'fieldLayoutId','2026-04-20 19:38:20',0,1),
(1,1,'fullName','2026-04-20 19:38:20',0,1),
(1,1,'lastName','2026-04-20 19:38:20',0,1),
(1,1,'username','2026-04-20 19:38:20',0,1),
(2,1,'title','2025-11-30 12:26:41',0,1),
(2,1,'url','2026-04-20 20:40:51',0,1),
(3,1,'url','2026-04-20 20:41:07',0,1),
(4,1,'url','2026-04-20 20:41:20',0,1),
(5,1,'title','2025-11-30 12:11:53',0,1),
(5,1,'url','2026-02-21 23:51:33',0,1),
(6,1,'url','2026-04-20 20:41:01',0,1),
(8,1,'newWindow','2026-04-17 12:11:32',0,1),
(8,1,'title','2025-11-30 11:53:51',0,1),
(8,1,'url','2026-04-17 12:11:32',0,1),
(11,1,'title','2026-02-21 23:07:43',0,1),
(11,1,'url','2026-02-21 23:07:16',0,1),
(26,1,'title','2025-11-30 12:11:09',0,1),
(26,1,'url','2025-11-30 12:11:09',0,1),
(35,1,'url','2026-04-20 20:41:14',0,1),
(37,1,'title','2025-11-30 19:26:58',0,1),
(38,1,'fieldLayoutId','2025-12-02 17:23:22',0,1),
(38,1,'title','2025-12-07 08:38:43',0,1),
(38,1,'typeId','2025-12-02 17:23:22',0,1),
(43,1,'primaryOwnerId','2025-11-30 20:10:08',0,1),
(61,1,'primaryOwnerId','2025-11-30 20:09:31',0,1),
(61,1,'title','2025-11-30 20:09:31',0,1),
(89,1,'postDate','2025-12-02 15:40:41',0,1),
(89,1,'slug','2025-12-02 15:40:41',0,1),
(89,1,'title','2026-04-17 12:06:35',0,1),
(99,1,'postDate','2025-12-02 15:42:45',0,1),
(99,1,'slug','2025-12-02 15:42:45',0,1),
(99,1,'title','2026-04-17 11:54:44',0,1),
(112,1,'postDate','2025-12-02 16:26:11',0,1),
(112,1,'slug','2025-12-02 16:26:11',0,1),
(112,1,'title','2026-04-17 11:47:28',0,1),
(143,1,'primaryOwnerId','2026-04-16 14:52:31',0,1),
(143,1,'title','2025-12-07 14:39:54',0,1),
(144,1,'primaryOwnerId','2026-04-16 14:52:31',0,1),
(145,1,'primaryOwnerId','2026-04-16 14:52:31',0,1),
(235,1,'title','2026-03-31 10:01:17',0,1),
(235,1,'url','2026-04-20 19:25:06',0,1),
(239,1,'title','2025-12-02 22:25:52',0,1),
(244,1,'postDate','2025-12-02 22:09:17',0,1),
(244,1,'slug','2025-12-02 22:09:17',0,1),
(244,1,'status','2025-12-02 22:09:17',0,1),
(244,1,'title','2026-03-20 00:20:46',0,1),
(245,1,'postDate','2025-12-02 22:09:29',0,1),
(245,1,'slug','2025-12-02 22:09:29',0,1),
(245,1,'status','2025-12-02 22:09:29',0,1),
(245,1,'title','2026-03-20 00:20:52',0,1),
(246,1,'postDate','2025-12-02 22:10:43',0,1),
(246,1,'slug','2025-12-02 22:10:43',0,1),
(246,1,'status','2025-12-02 22:10:43',0,1),
(246,1,'title','2025-12-02 22:10:32',0,1),
(247,1,'postDate','2025-12-02 22:11:01',0,1),
(247,1,'slug','2025-12-02 22:11:01',0,1),
(247,1,'status','2025-12-02 22:11:01',0,1),
(247,1,'title','2025-12-02 22:10:50',0,1),
(250,1,'postDate','2026-04-15 15:01:22',0,1),
(250,1,'slug','2026-04-15 15:03:09',0,1),
(250,1,'title','2026-04-15 14:53:22',0,1),
(250,1,'uri','2026-04-15 15:03:09',0,1),
(252,1,'postDate','2026-04-15 15:19:04',0,1),
(252,1,'slug','2026-04-15 15:18:25',0,1),
(252,1,'title','2026-04-15 15:18:25',0,1),
(252,1,'uri','2025-12-03 07:54:07',0,1),
(255,1,'primaryOwnerId','2026-03-26 10:01:25',0,1),
(261,1,'slug','2025-12-03 17:04:29',0,1),
(261,1,'title','2025-12-03 17:04:29',0,1),
(262,1,'slug','2025-12-03 17:07:02',0,1),
(262,1,'title','2025-12-03 17:07:02',0,1),
(266,1,'slug','2025-12-03 17:10:36',0,1),
(266,1,'title','2025-12-03 17:10:36',0,1),
(267,1,'slug','2025-12-03 17:10:31',0,1),
(267,1,'title','2025-12-03 17:10:31',0,1),
(268,1,'slug','2025-12-03 17:10:25',0,1),
(268,1,'title','2025-12-03 17:10:25',0,1),
(274,1,'primaryOwnerId','2026-04-16 14:54:00',0,1),
(274,1,'title','2026-03-31 09:53:06',0,1),
(275,1,'primaryOwnerId','2025-12-03 19:05:19',0,1),
(302,1,'primaryOwnerId','2026-04-16 14:54:00',0,1),
(302,1,'title','2026-03-26 08:31:58',0,1),
(319,1,'postDate','2025-12-04 17:56:51',0,1),
(319,1,'slug','2025-12-04 17:56:51',0,1),
(319,1,'title','2026-03-26 10:45:00',0,1),
(322,1,'postDate','2025-12-04 18:18:56',0,1),
(322,1,'slug','2025-12-04 17:57:32',0,1),
(322,1,'status','2025-12-04 18:18:56',0,1),
(322,1,'title','2026-03-26 10:42:34',0,1),
(324,1,'postDate','2025-12-04 17:57:55',0,1),
(324,1,'slug','2025-12-04 17:57:55',0,1),
(324,1,'status','2025-12-04 17:57:55',0,1),
(324,1,'title','2026-03-26 10:44:18',0,1),
(326,1,'postDate','2025-12-04 18:18:04',0,1),
(326,1,'slug','2025-12-04 17:58:29',0,1),
(326,1,'title','2026-03-26 10:40:38',0,1),
(330,1,'primaryOwnerId','2026-03-26 09:55:54',0,1),
(330,1,'title','2026-03-26 09:55:54',0,1),
(343,1,'title','2025-12-04 19:31:05',0,1),
(358,1,'primaryOwnerId','2025-12-07 08:38:43',0,1),
(358,1,'title','2025-12-07 08:38:44',0,1),
(359,1,'primaryOwnerId','2025-12-07 08:32:56',0,1),
(359,1,'title','2025-12-07 08:32:56',0,1),
(395,1,'primaryOwnerId','2025-12-06 20:31:20',0,1),
(395,1,'title','2025-12-06 20:31:20',0,1),
(411,1,'primaryOwnerId','2025-12-06 20:23:08',0,1),
(412,1,'primaryOwnerId','2025-12-06 20:23:08',0,1),
(555,1,'title','2025-12-07 00:22:49',0,1),
(556,1,'title','2025-12-07 00:22:46',0,1),
(592,1,'primaryOwnerId','2025-12-07 08:41:49',0,1),
(592,1,'title','2025-12-07 08:42:38',0,1),
(594,1,'primaryOwnerId','2025-12-07 08:41:57',0,1),
(594,1,'title','2025-12-07 08:42:33',0,1),
(604,1,'primaryOwnerId','2026-03-31 10:00:26',0,1),
(654,1,'primaryOwnerId','2026-03-31 10:00:26',0,1),
(655,1,'primaryOwnerId','2025-12-07 09:17:46',0,1),
(655,1,'title','2025-12-07 09:17:46',0,1),
(656,1,'primaryOwnerId','2026-03-31 09:41:19',0,1),
(656,1,'title','2026-03-31 09:41:19',0,1),
(657,1,'primaryOwnerId','2026-03-31 10:00:26',0,1),
(665,1,'primaryOwnerId','2026-03-31 09:58:12',0,1),
(665,1,'title','2026-03-31 09:58:12',0,1),
(698,1,'primaryOwnerId','2026-03-31 09:58:12',0,1),
(698,1,'title','2026-03-31 09:58:12',0,1),
(699,1,'primaryOwnerId','2026-03-31 09:58:12',0,1),
(750,1,'primaryOwnerId','2026-03-26 08:54:11',0,1),
(750,1,'title','2026-03-26 08:54:11',0,1),
(755,1,'title','2025-12-07 13:55:48',0,1),
(761,1,'primaryOwnerId','2026-04-03 14:06:16',0,1),
(774,1,'primaryOwnerId','2026-03-26 09:58:08',0,1),
(774,1,'title','2026-03-26 08:33:13',0,1),
(785,1,'primaryOwnerId','2026-04-13 12:45:34',0,1),
(786,1,'primaryOwnerId','2026-04-13 12:45:34',0,1),
(788,1,'primaryOwnerId','2026-04-13 12:45:34',0,1),
(788,1,'title','2026-04-13 12:45:34',0,1),
(789,1,'primaryOwnerId','2026-03-31 10:00:26',0,1),
(793,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(843,1,'primaryOwnerId','2026-04-01 14:52:28',0,1),
(843,1,'title','2026-03-20 10:38:31',0,1),
(849,1,'primaryOwnerId','2026-02-03 08:48:06',0,1),
(850,1,'primaryOwnerId','2026-02-03 08:48:06',0,1),
(850,1,'title','2026-02-03 08:48:06',0,1),
(867,1,'primaryOwnerId','2026-04-17 12:19:22',0,1),
(887,1,'fieldLayoutId','2026-02-08 09:21:04',0,1),
(887,1,'typeId','2026-02-08 09:21:04',0,1),
(903,1,'primaryOwnerId','2026-04-02 09:00:45',0,1),
(903,1,'title','2026-03-19 23:23:38',0,1),
(918,1,'title','2026-02-21 15:05:37',0,1),
(1061,1,'title','2026-02-21 16:12:02',0,1),
(1098,1,'postDate','2026-02-21 22:49:52',0,1),
(1098,1,'slug','2026-02-21 22:49:52',0,1),
(1098,1,'title','2026-03-25 17:43:35',0,1),
(1099,1,'postDate','2026-02-21 22:48:40',0,1),
(1099,1,'slug','2026-02-21 22:48:40',0,1),
(1099,1,'status','2026-02-21 22:48:40',0,1),
(1099,1,'title','2026-02-21 22:48:23',0,1),
(1100,1,'postDate','2026-02-21 22:49:25',0,1),
(1100,1,'slug','2026-02-21 22:49:25',0,1),
(1100,1,'status','2026-02-21 22:49:25',0,1),
(1100,1,'title','2026-02-21 22:49:17',0,1),
(1101,1,'postDate','2026-02-21 22:49:36',0,1),
(1101,1,'slug','2026-02-21 22:49:36',0,1),
(1101,1,'status','2026-02-21 22:49:36',0,1),
(1101,1,'title','2026-02-21 22:49:34',0,1),
(1102,1,'postDate','2026-02-21 22:49:48',0,1),
(1102,1,'slug','2026-02-21 22:49:48',0,1),
(1102,1,'status','2026-02-21 22:49:48',0,1),
(1102,1,'title','2026-02-21 22:49:41',0,1),
(1108,1,'postDate','2026-02-21 22:56:39',0,1),
(1108,1,'slug','2026-02-21 22:56:39',0,1),
(1108,1,'title','2026-02-21 22:50:07',0,1),
(1109,1,'postDate','2026-02-21 22:51:15',0,1),
(1109,1,'slug','2026-02-21 22:51:15',0,1),
(1109,1,'status','2026-02-21 22:51:15',0,1),
(1109,1,'title','2026-02-21 22:51:01',0,1),
(1110,1,'postDate','2026-02-21 22:51:27',0,1),
(1110,1,'slug','2026-02-21 22:51:27',0,1),
(1110,1,'status','2026-02-21 22:51:27',0,1),
(1110,1,'title','2026-02-21 22:51:25',0,1),
(1111,1,'postDate','2026-02-21 22:51:44',0,1),
(1111,1,'slug','2026-02-21 22:51:44',0,1),
(1111,1,'status','2026-02-21 22:51:44',0,1),
(1111,1,'title','2026-02-21 22:51:39',0,1),
(1112,1,'postDate','2026-02-21 22:51:56',0,1),
(1112,1,'slug','2026-02-21 22:51:56',0,1),
(1112,1,'status','2026-02-21 22:51:56',0,1),
(1112,1,'title','2026-02-21 22:51:52',0,1),
(1118,1,'postDate','2026-02-21 22:58:49',0,1),
(1118,1,'slug','2026-02-21 22:58:49',0,1),
(1118,1,'title','2026-02-21 22:57:07',0,1),
(1119,1,'postDate','2026-02-21 22:58:21',0,1),
(1119,1,'slug','2026-02-21 22:58:21',0,1),
(1119,1,'status','2026-02-21 22:58:21',0,1),
(1119,1,'title','2026-02-21 22:58:18',0,1),
(1120,1,'postDate','2026-02-21 22:58:30',0,1),
(1120,1,'slug','2026-02-21 22:58:30',0,1),
(1120,1,'status','2026-02-21 22:58:30',0,1),
(1120,1,'title','2026-02-21 22:58:29',0,1),
(1121,1,'postDate','2026-02-21 22:58:41',0,1),
(1121,1,'slug','2026-02-21 22:58:41',0,1),
(1121,1,'status','2026-02-21 22:58:41',0,1),
(1121,1,'title','2026-02-21 22:58:38',0,1),
(1122,1,'postDate','2026-02-21 22:58:48',0,1),
(1122,1,'slug','2026-02-21 22:58:48',0,1),
(1122,1,'status','2026-02-21 22:58:48',0,1),
(1122,1,'title','2026-02-21 22:58:47',0,1),
(1128,1,'postDate','2026-02-21 22:59:24',0,1),
(1128,1,'slug','2026-02-21 22:59:24',0,1),
(1128,1,'title','2026-02-21 22:59:01',0,1),
(1129,1,'postDate','2026-02-21 22:59:22',0,1),
(1129,1,'slug','2026-02-21 22:59:22',0,1),
(1129,1,'status','2026-02-21 22:59:22',0,1),
(1129,1,'title','2026-02-21 22:59:19',0,1),
(1132,1,'postDate','2026-02-21 23:00:22',0,1),
(1132,1,'slug','2026-02-21 23:00:22',0,1),
(1132,1,'title','2026-03-27 13:23:57',0,1),
(1133,1,'postDate','2026-02-21 23:00:21',0,1),
(1133,1,'primaryOwnerId','2026-03-27 13:23:57',0,1),
(1133,1,'slug','2026-02-21 23:00:21',0,1),
(1133,1,'status','2026-02-21 23:00:21',0,1),
(1133,1,'title','2026-03-27 13:23:57',0,1),
(1286,1,'postDate','2026-02-22 00:42:18',0,1),
(1286,1,'slug','2026-02-22 00:42:11',0,1),
(1286,1,'title','2026-02-22 00:42:11',0,1),
(1286,1,'uri','2026-02-22 00:42:11',0,1),
(1367,1,'primaryOwnerId','2026-04-03 14:10:18',0,1),
(1367,1,'title','2026-03-19 23:40:52',0,1),
(1385,1,'primaryOwnerId','2026-03-19 23:40:52',0,1),
(1385,1,'title','2026-03-19 23:40:52',0,1),
(1407,1,'primaryOwnerId','2026-03-26 10:00:59',0,1),
(1407,1,'title','2026-03-20 20:22:43',0,1),
(1425,1,'title','2026-02-24 14:40:04',0,1),
(1951,1,'slug','2026-03-16 21:46:29',0,1),
(1951,1,'title','2026-03-16 21:46:29',0,1),
(1952,1,'primaryOwnerId','2026-04-17 16:29:55',0,1),
(1952,1,'title','2026-03-16 19:30:28',0,1),
(1953,1,'primaryOwnerId','2026-03-16 21:39:46',0,1),
(1957,1,'primaryOwnerId','2026-03-16 19:30:28',0,1),
(1958,1,'primaryOwnerId','2026-04-06 21:12:07',0,1),
(1958,1,'title','2026-03-16 19:53:23',0,1),
(1964,1,'primaryOwnerId','2026-04-06 21:12:07',0,1),
(1964,1,'title','2026-03-16 19:53:23',0,1),
(1965,1,'primaryOwnerId','2026-03-26 08:53:08',0,1),
(1965,1,'title','2026-03-26 08:46:03',0,1),
(1966,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(1966,1,'title','2026-03-16 20:02:49',0,1),
(1977,1,'primaryOwnerId','2026-04-20 19:18:24',0,1),
(1992,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(2004,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(2020,1,'primaryOwnerId','2026-04-20 19:18:24',0,1),
(2020,1,'title','2026-03-16 19:53:23',0,1),
(2061,1,'primaryOwnerId','2026-03-13 13:18:52',0,1),
(2061,1,'title','2026-03-13 13:18:52',0,1),
(2064,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(2065,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(2080,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(2908,1,'title','2026-03-03 07:58:48',0,1),
(2909,1,'title','2026-03-16 21:47:56',0,1),
(3086,1,'slug','2026-03-19 22:43:31',0,1),
(3086,1,'title','2026-03-16 22:29:01',0,1),
(3086,1,'uri','2026-03-19 22:43:31',0,1),
(3087,1,'title','2026-03-03 08:57:53',0,1),
(3088,1,'primaryOwnerId','2026-03-19 22:43:23',0,1),
(3088,1,'title','2026-03-16 22:29:01',0,1),
(3089,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3089,1,'title','2026-03-19 23:03:27',0,1),
(3090,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3090,1,'title','2026-03-16 22:40:44',0,1),
(3093,1,'primaryOwnerId','2026-04-16 14:56:08',0,1),
(3093,1,'title','2026-03-19 22:43:23',0,1),
(3102,1,'primaryOwnerId','2026-04-20 19:05:23',0,1),
(3116,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3116,1,'title','2026-03-19 22:43:23',0,1),
(3117,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3117,1,'title','2026-03-13 12:04:50',0,1),
(3118,1,'primaryOwnerId','2026-04-16 14:56:08',0,1),
(3118,1,'title','2026-03-19 22:43:23',0,1),
(3119,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3119,1,'title','2026-03-13 12:04:50',0,1),
(3120,1,'primaryOwnerId','2026-04-16 14:56:08',0,1),
(3120,1,'title','2026-03-13 12:04:50',0,1),
(3121,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3121,1,'title','2026-03-19 22:43:23',0,1),
(3122,1,'primaryOwnerId','2026-04-16 14:33:58',0,1),
(3122,1,'title','2026-03-19 22:43:23',0,1),
(3541,1,'title','2026-03-16 22:29:01',0,1),
(3552,1,'title','2026-03-13 11:30:25',0,1),
(3679,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(3688,1,'primaryOwnerId','2026-04-20 19:18:25',0,1),
(3793,1,'enabled','2026-04-03 12:20:16',0,1),
(3811,1,'primaryOwnerId','2026-03-26 08:53:37',0,1),
(3811,1,'title','2026-03-26 08:53:37',0,1),
(3827,1,'title','2026-03-13 13:45:58',0,1),
(3847,1,'postDate','2026-03-16 19:25:02',0,1),
(3847,1,'slug','2026-03-16 19:25:02',0,1),
(3847,1,'status','2026-03-16 19:25:02',0,1),
(3847,1,'title','2026-03-16 19:24:55',0,1),
(3906,1,'primaryOwnerId','2026-04-06 21:12:07',0,1),
(3918,1,'primaryOwnerId','2026-04-06 21:12:06',0,1),
(3926,1,'title','2026-03-16 20:19:39',0,1),
(3928,1,'slug','2026-03-16 20:19:47',0,1),
(3929,1,'primaryOwnerId','2026-04-06 21:12:07',0,1),
(3937,1,'primaryOwnerId','2026-04-06 21:12:06',0,1),
(3982,1,'slug','2026-03-16 21:46:29',0,1),
(3982,1,'title','2026-03-16 21:46:29',0,1),
(3992,1,'title','2026-03-16 22:29:01',0,1),
(4026,1,'slug','2026-03-18 10:17:02',0,1),
(4026,1,'title','2026-03-26 10:47:41',0,1),
(4026,1,'uri','2026-03-18 10:17:02',0,1),
(4027,1,'primaryOwnerId','2026-04-17 16:28:26',0,1),
(4027,1,'title','2026-03-18 11:20:58',0,1),
(4028,1,'primaryOwnerId','2026-03-18 11:20:58',0,1),
(4029,1,'primaryOwnerId','2026-03-18 11:20:58',0,1),
(4030,1,'primaryOwnerId','2026-03-18 11:20:58',0,1),
(4031,1,'primaryOwnerId','2026-03-18 11:20:58',0,1),
(4032,1,'primaryOwnerId','2026-03-18 11:20:58',0,1),
(4033,1,'primaryOwnerId','2026-04-06 13:44:39',0,1),
(4033,1,'title','2026-03-18 11:20:58',0,1),
(4038,1,'primaryOwnerId','2026-04-20 19:15:07',0,1),
(4038,1,'title','2026-03-18 16:29:25',0,1),
(4039,1,'primaryOwnerId','2026-04-06 13:44:39',0,1),
(4039,1,'title','2026-03-18 16:29:26',0,1),
(4040,1,'primaryOwnerId','2026-03-26 08:51:18',0,1),
(4040,1,'title','2026-03-26 08:47:54',0,1),
(4041,1,'primaryOwnerId','2026-04-13 12:44:41',0,1),
(4041,1,'title','2026-03-18 22:34:40',0,1),
(4042,1,'primaryOwnerId','2026-04-13 12:44:41',0,1),
(4043,1,'primaryOwnerId','2026-03-20 18:29:19',0,1),
(4044,1,'primaryOwnerId','2026-04-13 12:44:41',0,1),
(4045,1,'primaryOwnerId','2026-03-20 18:29:19',0,1),
(4046,1,'primaryOwnerId','2026-03-20 18:29:19',0,1),
(4047,1,'primaryOwnerId','2026-03-20 18:29:19',0,1),
(4048,1,'primaryOwnerId','2026-03-20 18:29:19',0,1),
(4049,1,'primaryOwnerId','2026-03-20 18:29:19',0,1),
(4049,1,'title','2026-03-20 18:29:19',0,1),
(4050,1,'primaryOwnerId','2026-04-13 12:44:41',0,1),
(4051,1,'primaryOwnerId','2026-04-13 12:44:41',0,1),
(4051,1,'title','2026-03-20 18:29:19',0,1),
(4052,1,'primaryOwnerId','2026-04-13 12:44:41',0,1),
(4053,1,'primaryOwnerId','2026-04-20 19:15:07',0,1),
(4124,1,'primaryOwnerId','2026-03-29 10:07:48',0,1),
(4125,1,'primaryOwnerId','2026-03-29 10:07:48',0,1),
(4203,1,'slug','2026-04-02 09:10:40',0,1),
(4203,1,'title','2026-03-30 18:02:28',0,1),
(4204,1,'primaryOwnerId','2026-04-17 16:28:38',0,1),
(4204,1,'title','2026-03-18 22:37:29',0,1),
(4206,1,'primaryOwnerId','2026-03-18 22:38:28',0,1),
(4207,1,'primaryOwnerId','2026-03-18 22:38:28',0,1),
(4208,1,'primaryOwnerId','2026-03-18 22:38:28',0,1),
(4209,1,'primaryOwnerId','2026-03-18 22:38:28',0,1),
(4210,1,'primaryOwnerId','2026-04-13 12:47:41',0,1),
(4210,1,'title','2026-03-18 22:41:44',0,1),
(4211,1,'primaryOwnerId','2026-03-18 22:41:44',0,1),
(4211,1,'title','2026-03-18 22:41:44',0,1),
(4212,1,'primaryOwnerId','2026-03-18 22:41:44',0,1),
(4212,1,'title','2026-03-18 22:41:44',0,1),
(4213,1,'primaryOwnerId','2026-03-18 22:41:44',0,1),
(4213,1,'title','2026-03-18 22:41:44',0,1),
(4214,1,'primaryOwnerId','2026-04-13 12:47:41',0,1),
(4214,1,'title','2026-03-18 22:41:44',0,1),
(4215,1,'primaryOwnerId','2026-04-20 19:15:28',0,1),
(4215,1,'title','2026-03-18 22:49:06',0,1),
(4216,1,'primaryOwnerId','2026-04-13 12:54:27',0,1),
(4216,1,'title','2026-03-18 23:04:29',0,1),
(4217,1,'primaryOwnerId','2026-03-26 08:52:14',0,1),
(4217,1,'title','2026-03-26 08:46:27',0,1),
(4218,1,'primaryOwnerId','2026-04-13 12:54:27',0,1),
(4218,1,'title','2026-03-18 23:00:21',0,1),
(4220,1,'primaryOwnerId','2026-03-20 18:34:52',0,1),
(4220,1,'title','2026-03-18 23:00:21',0,1),
(4221,1,'primaryOwnerId','2026-03-20 18:34:52',0,1),
(4221,1,'title','2026-03-18 23:00:22',0,1),
(4223,1,'primaryOwnerId','2026-03-20 18:34:52',0,1),
(4223,1,'title','2026-03-18 23:00:22',0,1),
(4224,1,'primaryOwnerId','2026-03-20 18:34:52',0,1),
(4224,1,'title','2026-03-18 23:00:22',0,1),
(4225,1,'primaryOwnerId','2026-03-20 18:34:52',0,1),
(4225,1,'title','2026-03-18 23:00:22',0,1),
(4226,1,'primaryOwnerId','2026-03-20 18:34:52',0,1),
(4226,1,'title','2026-03-18 23:00:22',0,1),
(4227,1,'primaryOwnerId','2026-04-13 12:50:11',0,1),
(4227,1,'title','2026-03-18 23:00:22',0,1),
(4230,1,'primaryOwnerId','2026-04-20 19:15:28',0,1),
(4298,1,'slug','2026-03-18 23:00:53',0,1),
(4298,1,'title','2026-03-18 23:00:53',0,1),
(4303,1,'slug','2026-03-18 23:06:46',0,1),
(4303,1,'title','2026-03-18 23:06:43',0,1),
(4303,1,'uri','2026-03-18 23:06:46',0,1),
(4304,1,'primaryOwnerId','2026-04-17 16:28:49',0,1),
(4304,1,'title','2026-03-18 23:26:10',0,1),
(4305,1,'primaryOwnerId','2026-04-06 21:26:56',0,1),
(4306,1,'primaryOwnerId','2026-04-06 21:26:56',0,1),
(4307,1,'primaryOwnerId','2026-03-18 23:26:10',0,1),
(4308,1,'primaryOwnerId','2026-03-18 23:26:10',0,1),
(4309,1,'primaryOwnerId','2026-03-18 23:26:10',0,1),
(4310,1,'primaryOwnerId','2026-04-06 21:26:56',0,1),
(4310,1,'title','2026-03-18 23:26:10',0,1),
(4311,1,'primaryOwnerId','2026-03-18 23:26:10',0,1),
(4311,1,'title','2026-03-18 23:26:10',0,1),
(4315,1,'primaryOwnerId','2026-04-20 19:16:22',0,1),
(4315,1,'title','2026-03-18 23:26:10',0,1),
(4316,1,'primaryOwnerId','2026-04-06 21:26:56',0,1),
(4316,1,'title','2026-03-18 23:26:10',0,1),
(4317,1,'primaryOwnerId','2026-03-26 08:51:41',0,1),
(4317,1,'title','2026-03-26 08:46:49',0,1),
(4318,1,'primaryOwnerId','2026-04-16 13:57:12',0,1),
(4318,1,'title','2026-04-13 12:27:25',0,1),
(4319,1,'primaryOwnerId','2026-04-16 13:57:12',0,1),
(4319,1,'title','2026-03-18 23:30:34',0,1),
(4320,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4320,1,'title','2026-03-18 23:30:34',0,1),
(4321,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4321,1,'title','2026-03-18 23:30:34',0,1),
(4322,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4322,1,'title','2026-03-18 23:30:34',0,1),
(4323,1,'primaryOwnerId','2026-04-16 13:57:12',0,1),
(4323,1,'title','2026-03-18 23:30:34',0,1),
(4324,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4324,1,'title','2026-03-18 23:30:34',0,1),
(4325,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4325,1,'title','2026-03-18 23:30:34',0,1),
(4326,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4326,1,'title','2026-03-18 23:30:34',0,1),
(4327,1,'primaryOwnerId','2026-03-20 18:41:36',0,1),
(4327,1,'title','2026-03-18 23:30:34',0,1),
(4328,1,'primaryOwnerId','2026-04-20 19:16:22',0,1),
(4414,1,'title','2026-03-26 10:47:41',0,1),
(4415,1,'title','2026-03-30 18:02:28',0,1),
(4418,1,'slug','2026-03-19 10:32:28',0,1),
(4418,1,'title','2026-03-19 10:32:28',0,1),
(4419,1,'primaryOwnerId','2026-04-17 16:29:19',0,1),
(4419,1,'title','2026-03-19 10:17:54',0,1),
(4421,1,'primaryOwnerId','2026-03-19 10:18:52',0,1),
(4422,1,'primaryOwnerId','2026-03-19 10:18:52',0,1),
(4423,1,'primaryOwnerId','2026-03-19 10:18:52',0,1),
(4424,1,'primaryOwnerId','2026-03-19 10:18:52',0,1),
(4425,1,'primaryOwnerId','2026-04-06 15:54:53',0,1),
(4425,1,'title','2026-04-06 15:44:54',0,1),
(4426,1,'primaryOwnerId','2026-03-19 10:21:27',0,1),
(4426,1,'title','2026-03-19 10:21:27',0,1),
(4427,1,'primaryOwnerId','2026-03-19 10:21:27',0,1),
(4427,1,'title','2026-03-19 10:21:27',0,1),
(4428,1,'primaryOwnerId','2026-03-19 10:21:27',0,1),
(4428,1,'title','2026-03-19 10:21:27',0,1),
(4429,1,'primaryOwnerId','2026-03-19 10:21:27',0,1),
(4429,1,'title','2026-03-19 10:21:27',0,1),
(4430,1,'primaryOwnerId','2026-04-20 19:17:18',0,1),
(4430,1,'title','2026-03-19 10:24:52',0,1),
(4431,1,'primaryOwnerId','2026-04-13 13:01:08',0,1),
(4431,1,'title','2026-03-19 10:26:43',0,1),
(4432,1,'primaryOwnerId','2026-03-26 08:52:24',0,1),
(4432,1,'title','2026-03-26 08:45:01',0,1),
(4433,1,'primaryOwnerId','2026-04-13 13:01:09',0,1),
(4433,1,'title','2026-03-19 10:32:06',0,1),
(4435,1,'primaryOwnerId','2026-03-20 18:51:27',0,1),
(4435,1,'title','2026-03-19 10:32:06',0,1),
(4436,1,'primaryOwnerId','2026-03-20 18:57:13',0,1),
(4436,1,'title','2026-03-19 10:32:06',0,1),
(4445,1,'primaryOwnerId','2026-04-20 19:17:18',0,1),
(4501,1,'slug','2026-03-19 10:32:28',0,1),
(4501,1,'title','2026-03-19 10:32:28',0,1),
(4502,1,'slug','2026-03-19 15:57:10',0,1),
(4502,1,'title','2026-03-19 15:57:10',0,1),
(4503,1,'primaryOwnerId','2026-04-17 16:29:38',0,1),
(4503,1,'title','2026-03-19 15:42:33',0,1),
(4505,1,'primaryOwnerId','2026-03-19 15:43:23',0,1),
(4506,1,'primaryOwnerId','2026-03-19 15:43:23',0,1),
(4507,1,'primaryOwnerId','2026-03-19 15:43:23',0,1),
(4508,1,'primaryOwnerId','2026-03-19 15:43:23',0,1),
(4509,1,'primaryOwnerId','2026-04-06 20:58:45',0,1),
(4509,1,'title','2026-03-19 15:45:51',0,1),
(4510,1,'primaryOwnerId','2026-03-19 15:45:51',0,1),
(4510,1,'title','2026-03-19 15:45:51',0,1),
(4511,1,'primaryOwnerId','2026-04-06 20:58:45',0,1),
(4511,1,'title','2026-03-19 15:45:51',0,1),
(4512,1,'primaryOwnerId','2026-03-19 15:45:51',0,1),
(4512,1,'title','2026-03-19 15:45:51',0,1),
(4513,1,'primaryOwnerId','2026-03-19 15:45:51',0,1),
(4513,1,'title','2026-03-19 15:45:51',0,1),
(4514,1,'primaryOwnerId','2026-04-20 19:28:02',0,1),
(4514,1,'title','2026-03-19 15:50:16',0,1),
(4515,1,'primaryOwnerId','2026-04-06 20:58:45',0,1),
(4515,1,'title','2026-03-19 15:51:36',0,1),
(4516,1,'primaryOwnerId','2026-03-26 08:52:45',0,1),
(4516,1,'title','2026-03-26 08:49:51',0,1),
(4517,1,'primaryOwnerId','2026-04-13 09:34:36',0,1),
(4517,1,'title','2026-03-19 15:56:52',0,1),
(4518,1,'primaryOwnerId','2026-03-20 19:05:26',0,1),
(4518,1,'title','2026-03-19 15:56:52',0,1),
(4519,1,'primaryOwnerId','2026-03-20 19:05:26',0,1),
(4519,1,'title','2026-03-19 15:56:52',0,1),
(4520,1,'primaryOwnerId','2026-03-20 19:14:32',0,1),
(4520,1,'title','2026-03-19 15:56:52',0,1),
(4521,1,'primaryOwnerId','2026-03-20 19:14:32',0,1),
(4521,1,'title','2026-03-19 15:56:52',0,1),
(4522,1,'primaryOwnerId','2026-04-13 09:34:36',0,1),
(4522,1,'title','2026-03-19 15:56:52',0,1),
(4523,1,'primaryOwnerId','2026-03-20 19:14:32',0,1),
(4523,1,'title','2026-03-19 15:56:52',0,1),
(4524,1,'primaryOwnerId','2026-04-13 09:34:36',0,1),
(4524,1,'title','2026-04-13 09:34:36',0,1),
(4525,1,'primaryOwnerId','2026-03-20 19:14:32',0,1),
(4525,1,'title','2026-03-19 15:56:52',0,1),
(4526,1,'primaryOwnerId','2026-03-20 19:14:32',0,1),
(4526,1,'title','2026-03-19 15:56:52',0,1),
(4527,1,'primaryOwnerId','2026-03-20 19:14:32',0,1),
(4527,1,'title','2026-03-19 15:56:52',0,1),
(4529,1,'primaryOwnerId','2026-04-20 19:17:50',0,1),
(4592,1,'slug','2026-03-19 15:57:10',0,1),
(4592,1,'title','2026-03-19 15:57:10',0,1),
(4593,1,'slug','2026-03-19 16:00:07',0,1),
(4593,1,'title','2026-03-19 16:00:03',0,1),
(4593,1,'uri','2026-03-19 16:00:07',0,1),
(4594,1,'primaryOwnerId','2026-04-17 16:29:29',0,1),
(4594,1,'title','2026-03-19 18:36:32',0,1),
(4596,1,'primaryOwnerId','2026-03-19 16:04:27',0,1),
(4597,1,'primaryOwnerId','2026-03-19 16:04:27',0,1),
(4598,1,'primaryOwnerId','2026-03-19 16:04:27',0,1),
(4599,1,'primaryOwnerId','2026-03-19 16:04:27',0,1),
(4600,1,'primaryOwnerId','2026-03-19 16:30:24',0,1),
(4600,1,'title','2026-03-19 16:30:24',0,1),
(4601,1,'primaryOwnerId','2026-03-19 16:30:24',0,1),
(4601,1,'title','2026-03-19 16:30:24',0,1),
(4602,1,'primaryOwnerId','2026-03-19 16:30:24',0,1),
(4602,1,'title','2026-03-19 16:30:24',0,1),
(4603,1,'primaryOwnerId','2026-03-19 16:30:24',0,1),
(4603,1,'title','2026-03-19 16:30:24',0,1),
(4604,1,'primaryOwnerId','2026-03-19 16:30:24',0,1),
(4604,1,'title','2026-03-19 16:30:24',0,1),
(4605,1,'primaryOwnerId','2026-04-20 19:17:35',0,1),
(4605,1,'title','2026-03-19 16:30:24',0,1),
(4606,1,'primaryOwnerId','2026-04-06 20:27:47',0,1),
(4606,1,'title','2026-03-19 16:30:24',0,1),
(4607,1,'primaryOwnerId','2026-03-26 08:52:34',0,1),
(4607,1,'title','2026-03-26 08:45:27',0,1),
(4608,1,'primaryOwnerId','2026-04-13 09:13:54',0,1),
(4608,1,'title','2026-04-06 20:27:47',0,1),
(4609,1,'primaryOwnerId','2026-03-20 19:57:20',0,1),
(4609,1,'title','2026-03-19 16:30:24',0,1),
(4610,1,'primaryOwnerId','2026-03-20 19:57:20',0,1),
(4610,1,'title','2026-03-19 16:30:24',0,1),
(4611,1,'primaryOwnerId','2026-04-13 09:13:54',0,1),
(4611,1,'title','2026-03-19 16:30:24',0,1),
(4612,1,'primaryOwnerId','2026-03-20 19:57:20',0,1),
(4612,1,'title','2026-03-19 16:30:24',0,1),
(4613,1,'primaryOwnerId','2026-03-20 19:57:20',0,1),
(4613,1,'title','2026-03-19 16:30:24',0,1),
(4614,1,'primaryOwnerId','2026-03-20 19:57:20',0,1),
(4614,1,'title','2026-03-19 16:30:24',0,1),
(4615,1,'primaryOwnerId','2026-03-20 19:57:20',0,1),
(4615,1,'title','2026-03-19 16:30:24',0,1),
(4620,1,'primaryOwnerId','2026-04-20 19:17:35',0,1),
(4702,1,'slug','2026-03-19 18:39:39',0,1),
(4702,1,'title','2026-03-19 18:39:39',0,1),
(4702,1,'uri','2026-03-19 18:39:39',0,1),
(4703,1,'primaryOwnerId','2026-04-17 16:29:09',0,1),
(4703,1,'title','2026-03-19 19:07:56',0,1),
(4704,1,'primaryOwnerId','2026-04-13 09:29:39',0,1),
(4705,1,'primaryOwnerId','2026-04-13 09:29:39',0,1),
(4706,1,'primaryOwnerId','2026-03-19 19:07:56',0,1),
(4707,1,'primaryOwnerId','2026-03-19 19:07:56',0,1),
(4708,1,'primaryOwnerId','2026-03-19 19:07:56',0,1),
(4709,1,'primaryOwnerId','2026-04-15 17:26:19',0,1),
(4709,1,'title','2026-04-15 17:20:20',0,1),
(4714,1,'primaryOwnerId','2026-04-20 19:17:00',0,1),
(4714,1,'title','2026-03-19 19:07:56',0,1),
(4715,1,'primaryOwnerId','2026-04-15 17:20:20',0,1),
(4715,1,'title','2026-03-25 17:07:07',0,1),
(4716,1,'primaryOwnerId','2026-03-26 08:52:03',0,1),
(4716,1,'title','2026-03-26 08:43:19',0,1),
(4717,1,'primaryOwnerId','2026-04-13 09:29:39',0,1),
(4717,1,'title','2026-03-19 19:07:57',0,1),
(4719,1,'primaryOwnerId','2026-03-20 20:04:03',0,1),
(4719,1,'title','2026-03-19 19:07:57',0,1),
(4720,1,'primaryOwnerId','2026-03-20 20:04:03',0,1),
(4720,1,'title','2026-03-19 19:07:57',0,1),
(4722,1,'primaryOwnerId','2026-04-13 09:16:00',0,1),
(4722,1,'title','2026-03-19 19:07:57',0,1),
(4723,1,'primaryOwnerId','2026-04-13 09:17:20',0,1),
(4723,1,'title','2026-03-19 19:07:57',0,1),
(4725,1,'primaryOwnerId','2026-04-20 19:17:00',0,1),
(4780,1,'primaryOwnerId','2026-03-20 20:04:02',0,1),
(4781,1,'primaryOwnerId','2026-03-20 20:04:02',0,1),
(4782,1,'primaryOwnerId','2026-03-20 20:04:02',0,1),
(4805,1,'slug','2026-03-19 19:09:13',0,1),
(4805,1,'title','2026-03-19 19:09:11',0,1),
(4805,1,'uri','2026-03-19 19:09:13',0,1),
(4806,1,'primaryOwnerId','2026-04-17 16:28:58',0,1),
(4806,1,'title','2026-03-19 19:15:03',0,1),
(4807,1,'primaryOwnerId','2026-03-19 19:15:03',0,1),
(4808,1,'primaryOwnerId','2026-03-19 19:15:03',0,1),
(4809,1,'primaryOwnerId','2026-03-19 19:15:03',0,1),
(4810,1,'primaryOwnerId','2026-03-19 19:15:03',0,1),
(4811,1,'primaryOwnerId','2026-03-19 19:15:03',0,1),
(4812,1,'primaryOwnerId','2026-04-06 14:05:30',0,1),
(4812,1,'title','2026-03-19 19:15:03',0,1),
(4813,1,'primaryOwnerId','2026-04-20 19:16:43',0,1),
(4813,1,'title','2026-03-19 19:23:50',0,1),
(4814,1,'primaryOwnerId','2026-04-06 14:05:30',0,1),
(4814,1,'title','2026-04-06 14:05:30',0,1),
(4815,1,'primaryOwnerId','2026-03-26 08:51:52',0,1),
(4815,1,'title','2026-03-26 08:43:54',0,1),
(4816,1,'primaryOwnerId','2026-04-13 09:36:40',0,1),
(4816,1,'title','2026-03-20 20:12:09',0,1),
(4817,1,'primaryOwnerId','2026-04-13 09:36:40',0,1),
(4817,1,'title','2026-03-20 20:12:09',0,1),
(4818,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4818,1,'title','2026-03-20 20:12:09',0,1),
(4819,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4819,1,'title','2026-03-20 20:12:09',0,1),
(4820,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4820,1,'title','2026-03-20 20:12:09',0,1),
(4821,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4821,1,'title','2026-03-20 20:12:09',0,1),
(4822,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4822,1,'title','2026-03-20 20:12:09',0,1),
(4823,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4823,1,'title','2026-03-20 20:12:09',0,1),
(4824,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4824,1,'title','2026-03-20 20:12:09',0,1),
(4825,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4825,1,'title','2026-03-20 20:12:09',0,1),
(4826,1,'primaryOwnerId','2026-03-20 20:12:09',0,1),
(4826,1,'title','2026-03-20 20:12:09',0,1),
(4827,1,'primaryOwnerId','2026-04-20 19:16:43',0,1),
(4869,1,'primaryOwnerId','2026-04-06 14:05:30',0,1),
(4896,1,'slug','2026-03-19 19:46:08',0,1),
(4896,1,'title','2026-03-19 19:46:08',0,1),
(4896,1,'uri','2026-03-19 19:46:08',0,1),
(4897,1,'primaryOwnerId','2026-04-17 16:29:46',0,1),
(4897,1,'title','2026-03-19 19:47:56',0,1),
(4898,1,'primaryOwnerId','2026-04-06 20:30:42',0,1),
(4899,1,'primaryOwnerId','2026-04-06 20:30:42',0,1),
(4900,1,'primaryOwnerId','2026-04-06 20:30:42',0,1),
(4901,1,'primaryOwnerId','2026-03-19 19:49:03',0,1),
(4902,1,'primaryOwnerId','2026-03-19 19:49:03',0,1),
(4903,1,'primaryOwnerId','2026-04-06 20:50:15',0,1),
(4903,1,'title','2026-03-19 19:51:42',0,1),
(4904,1,'primaryOwnerId','2026-04-06 20:50:15',0,1),
(4904,1,'title','2026-03-19 19:51:42',0,1),
(4905,1,'primaryOwnerId','2026-04-06 20:50:15',0,1),
(4905,1,'title','2026-03-19 19:51:42',0,1),
(4906,1,'primaryOwnerId','2026-04-06 20:50:15',0,1),
(4906,1,'title','2026-03-19 19:51:42',0,1),
(4907,1,'primaryOwnerId','2026-04-06 20:50:15',0,1),
(4907,1,'title','2026-03-19 19:51:42',0,1),
(4908,1,'primaryOwnerId','2026-04-20 19:18:06',0,1),
(4908,1,'title','2026-03-19 19:54:14',0,1),
(4909,1,'title','2026-03-19 19:55:38',0,1),
(4911,1,'primaryOwnerId','2026-04-13 10:36:07',0,1),
(4911,1,'title','2026-03-19 20:01:29',0,1),
(4912,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4912,1,'title','2026-03-19 20:01:29',0,1),
(4913,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4913,1,'title','2026-03-19 20:01:29',0,1),
(4914,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4914,1,'title','2026-03-19 20:01:29',0,1),
(4915,1,'primaryOwnerId','2026-04-13 10:36:07',0,1),
(4915,1,'title','2026-03-19 20:01:29',0,1),
(4916,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4916,1,'title','2026-03-19 20:01:29',0,1),
(4917,1,'primaryOwnerId','2026-04-13 10:36:07',0,1),
(4917,1,'title','2026-03-19 20:01:29',0,1),
(4918,1,'primaryOwnerId','2026-04-13 10:36:07',0,1),
(4918,1,'title','2026-04-13 10:36:07',0,1),
(4919,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4919,1,'title','2026-03-19 20:01:29',0,1),
(4920,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4920,1,'title','2026-03-19 20:01:29',0,1),
(4921,1,'primaryOwnerId','2026-03-20 18:23:57',0,1),
(4921,1,'title','2026-03-19 20:01:29',0,1),
(4923,1,'primaryOwnerId','2026-04-20 19:18:06',0,1),
(5087,1,'primaryOwnerId','2026-04-16 14:33:57',0,1),
(5101,1,'slug','2026-03-19 22:43:31',0,1),
(5101,1,'uri','2026-03-19 22:43:31',0,1),
(5108,1,'slug','2026-03-19 22:46:15',0,1),
(5108,1,'title','2026-03-19 22:46:15',0,1),
(5108,1,'uri','2026-03-19 22:46:15',0,1),
(5109,1,'primaryOwnerId','2026-04-16 14:17:04',0,1),
(5109,1,'title','2026-03-19 23:02:46',0,1),
(5110,1,'primaryOwnerId','2026-04-16 14:17:04',0,1),
(5110,1,'title','2026-03-19 23:02:46',0,1),
(5111,1,'primaryOwnerId','2026-04-16 14:17:04',0,1),
(5111,1,'title','2026-04-16 14:17:04',0,1),
(5113,1,'primaryOwnerId','2026-04-16 14:17:04',0,1),
(5113,1,'title','2026-04-01 14:56:05',0,1),
(5114,1,'primaryOwnerId','2026-04-01 14:56:05',0,1),
(5114,1,'title','2026-04-01 14:56:05',0,1),
(5117,1,'primaryOwnerId','2026-04-01 14:56:05',0,1),
(5118,1,'primaryOwnerId','2026-04-01 14:56:05',0,1),
(5119,1,'primaryOwnerId','2026-04-01 14:56:05',0,1),
(5119,1,'title','2026-04-01 14:56:05',0,1),
(5120,1,'primaryOwnerId','2026-04-01 14:56:05',0,1),
(5120,1,'title','2026-04-01 14:56:05',0,1),
(5122,1,'primaryOwnerId','2026-04-20 19:09:20',0,1),
(5178,1,'primaryOwnerId','2026-04-16 12:20:07',0,1),
(5192,1,'primaryOwnerId','2026-04-17 12:19:21',0,1),
(5195,1,'primaryOwnerId','2026-04-13 12:45:35',0,1),
(5200,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(5364,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(5391,1,'postDate','2026-03-20 17:16:40',0,1),
(5391,1,'slug','2026-03-20 17:16:36',0,1),
(5391,1,'title','2026-03-20 17:16:36',0,1),
(5391,1,'uri','2026-03-20 17:16:36',0,1),
(5397,1,'primaryOwnerId','2026-03-20 18:05:19',0,1),
(5405,1,'slug','2026-03-20 17:50:25',0,1),
(5405,1,'title','2026-03-20 17:50:19',0,1),
(5405,1,'uri','2026-03-20 17:50:25',0,1),
(5406,1,'primaryOwnerId','2026-03-20 18:05:03',0,1),
(5406,1,'title','2026-03-20 17:55:59',0,1),
(5580,1,'primaryOwnerId','2026-03-20 19:03:00',0,1),
(5580,1,'title','2026-03-20 19:03:00',0,1),
(5767,1,'fieldLayoutId','2026-03-25 11:57:02',0,1),
(5767,1,'title','2026-03-25 11:57:02',0,1),
(5767,1,'typeId','2026-03-25 11:57:02',0,1),
(5770,1,'fieldLayoutId','2026-03-25 11:57:59',0,1),
(5770,1,'postDate','2026-03-25 11:58:34',0,1),
(5770,1,'slug','2026-03-25 11:58:34',0,1),
(5770,1,'title','2026-03-25 11:58:21',0,1),
(5770,1,'typeId','2026-03-25 11:57:59',0,1),
(5772,1,'fieldLayoutId','2026-03-25 11:58:53',0,1),
(5772,1,'postDate','2026-03-25 11:59:10',0,1),
(5772,1,'slug','2026-03-25 11:59:10',0,1),
(5772,1,'title','2026-03-25 11:59:03',0,1),
(5772,1,'typeId','2026-03-25 11:58:53',0,1),
(5779,1,'fieldLayoutId','2026-03-25 17:38:23',0,1),
(5779,1,'postDate','2026-03-25 17:38:44',0,1),
(5779,1,'slug','2026-03-25 17:38:44',0,1),
(5779,1,'title','2026-03-25 17:46:42',0,1),
(5779,1,'typeId','2026-03-25 17:38:23',0,1),
(5781,1,'title','2026-03-25 17:42:59',0,1),
(5784,1,'title','2026-03-25 17:43:34',0,1),
(5790,1,'title','2026-03-25 17:46:42',0,1),
(5794,1,'enabled','2026-03-25 17:53:40',0,1),
(5794,1,'fieldLayoutId','2026-03-25 17:53:27',0,1),
(5794,1,'title','2026-03-25 17:53:40',0,1),
(5794,1,'typeId','2026-03-25 17:53:27',0,1),
(5795,1,'fieldLayoutId','2026-03-25 17:54:36',0,1),
(5795,1,'postDate','2026-03-25 17:54:46',0,1),
(5795,1,'slug','2026-03-25 17:54:46',0,1),
(5795,1,'title','2026-03-27 13:24:03',0,1),
(5795,1,'typeId','2026-03-25 17:54:36',0,1),
(5819,1,'primaryOwnerId','2026-04-16 14:52:41',0,1),
(5823,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(5843,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(5943,1,'primaryOwnerId','2026-03-26 08:52:55',0,1),
(6030,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(6043,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(6048,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(6053,1,'primaryOwnerId','2026-04-17 12:19:35',0,1),
(6081,1,'title','2026-04-13 12:46:28',0,1),
(6099,1,'title','2026-03-26 10:40:38',0,1),
(6101,1,'title','2026-03-26 10:41:15',0,1),
(6103,1,'title','2026-03-26 10:41:54',0,1),
(6105,1,'title','2026-03-26 10:42:34',0,1),
(6109,1,'title','2026-03-26 10:44:18',0,1),
(6111,1,'title','2026-03-26 10:45:00',0,1),
(6115,1,'title','2026-03-26 10:47:41',0,1),
(6149,1,'title','2026-03-27 13:23:57',0,1),
(6151,1,'title','2026-03-27 13:24:03',0,1),
(6156,1,'fieldLayoutId','2026-03-27 13:25:04',0,1),
(6156,1,'postDate','2026-03-27 13:28:42',0,1),
(6156,1,'slug','2026-03-27 13:28:42',0,1),
(6156,1,'title','2026-03-27 13:25:05',0,1),
(6156,1,'typeId','2026-03-27 13:25:04',0,1),
(6157,1,'postDate','2026-03-27 13:26:29',0,1),
(6157,1,'slug','2026-03-27 13:26:29',0,1),
(6157,1,'title','2026-03-27 13:25:28',0,1),
(6158,1,'postDate','2026-03-27 13:25:45',0,1),
(6158,1,'slug','2026-03-27 13:25:45',0,1),
(6158,1,'status','2026-03-27 13:25:45',0,1),
(6158,1,'title','2026-03-27 13:25:43',0,1),
(6159,1,'postDate','2026-03-27 13:26:00',0,1),
(6159,1,'slug','2026-03-27 13:26:00',0,1),
(6159,1,'status','2026-03-27 13:26:00',0,1),
(6159,1,'title','2026-03-27 13:25:57',0,1),
(6160,1,'postDate','2026-03-27 13:26:10',0,1),
(6160,1,'slug','2026-03-27 13:26:10',0,1),
(6160,1,'status','2026-03-27 13:26:10',0,1),
(6160,1,'title','2026-03-27 13:26:07',0,1),
(6166,1,'postDate','2026-03-27 13:28:30',0,1),
(6166,1,'slug','2026-03-27 13:28:30',0,1),
(6166,1,'title','2026-03-27 13:27:22',0,1),
(6167,1,'postDate','2026-03-27 13:27:32',0,1),
(6167,1,'slug','2026-03-27 13:27:32',0,1),
(6167,1,'status','2026-03-27 13:27:32',0,1),
(6167,1,'title','2026-03-27 13:27:27',0,1),
(6168,1,'postDate','2026-03-27 13:27:46',0,1),
(6168,1,'slug','2026-03-27 13:27:46',0,1),
(6168,1,'status','2026-03-27 13:27:46',0,1),
(6168,1,'title','2026-03-27 13:27:40',0,1),
(6169,1,'title','2026-03-27 13:27:56',0,1),
(6174,1,'postDate','2026-03-27 13:57:32',0,1),
(6174,1,'slug','2026-03-27 13:57:32',0,1),
(6174,1,'title','2026-03-27 13:57:20',0,1),
(6175,1,'postDate','2026-03-27 13:57:31',0,1),
(6175,1,'slug','2026-03-27 13:57:31',0,1),
(6175,1,'status','2026-03-27 13:57:31',0,1),
(6175,1,'title','2026-03-27 13:57:28',0,1),
(6179,1,'postDate','2026-03-27 14:00:40',0,1),
(6179,1,'slug','2026-03-27 14:00:40',0,1),
(6179,1,'title','2026-03-27 13:57:44',0,1),
(6180,1,'postDate','2026-03-27 13:58:49',0,1),
(6180,1,'slug','2026-03-27 13:58:49',0,1),
(6180,1,'status','2026-03-27 13:58:49',0,1),
(6180,1,'title','2026-03-27 13:58:48',0,1),
(6181,1,'postDate','2026-03-27 13:59:20',0,1),
(6181,1,'slug','2026-03-27 13:59:20',0,1),
(6181,1,'status','2026-03-27 13:59:20',0,1),
(6181,1,'title','2026-03-27 13:59:10',0,1),
(6182,1,'postDate','2026-03-27 14:00:00',0,1),
(6182,1,'primaryOwnerId','2026-03-27 14:16:53',0,1),
(6182,1,'slug','2026-03-27 14:00:00',0,1),
(6182,1,'status','2026-03-27 14:00:00',0,1),
(6182,1,'title','2026-03-27 13:59:28',0,1),
(6183,1,'postDate','2026-03-27 14:00:38',0,1),
(6183,1,'slug','2026-03-27 14:00:38',0,1),
(6183,1,'status','2026-03-27 14:00:38',0,1),
(6183,1,'title','2026-03-27 14:00:33',0,1),
(6196,1,'postDate','2026-03-27 14:19:56',0,1),
(6196,1,'slug','2026-03-27 14:19:56',0,1),
(6196,1,'title','2026-03-27 14:18:42',0,1),
(6197,1,'postDate','2026-03-27 14:19:09',0,1),
(6197,1,'primaryOwnerId','2026-03-31 09:34:32',0,1),
(6197,1,'slug','2026-03-27 14:19:09',0,1),
(6197,1,'status','2026-03-27 14:19:09',0,1),
(6197,1,'title','2026-03-27 14:18:53',0,1),
(6198,1,'postDate','2026-03-27 14:19:27',0,1),
(6198,1,'slug','2026-03-27 14:19:27',0,1),
(6198,1,'status','2026-03-27 14:19:27',0,1),
(6198,1,'title','2026-03-27 14:19:20',0,1),
(6199,1,'postDate','2026-03-27 14:19:45',0,1),
(6199,1,'slug','2026-03-27 14:19:45',0,1),
(6199,1,'status','2026-03-27 14:19:45',0,1),
(6199,1,'title','2026-03-27 14:19:36',0,1),
(6207,1,'primaryOwnerId','2026-03-31 09:25:13',0,1),
(6211,1,'fieldLayoutId','2026-03-27 14:20:55',0,1),
(6211,1,'postDate','2026-03-27 14:33:18',0,1),
(6211,1,'slug','2026-03-27 14:33:18',0,1),
(6211,1,'title','2026-03-27 14:21:02',0,1),
(6211,1,'typeId','2026-03-27 14:20:55',0,1),
(6212,1,'postDate','2026-03-27 14:21:58',0,1),
(6212,1,'slug','2026-03-27 14:21:58',0,1),
(6212,1,'title','2026-03-27 14:21:30',0,1),
(6213,1,'postDate','2026-03-27 14:21:49',0,1),
(6213,1,'slug','2026-03-27 14:21:49',0,1),
(6213,1,'status','2026-03-27 14:21:49',0,1),
(6213,1,'title','2026-03-27 14:21:37',0,1),
(6216,1,'postDate','2026-03-27 14:23:11',0,1),
(6216,1,'slug','2026-03-27 14:23:11',0,1),
(6216,1,'title','2026-03-27 14:22:03',0,1),
(6217,1,'postDate','2026-03-27 14:22:21',0,1),
(6217,1,'primaryOwnerId','2026-03-31 09:40:07',0,1),
(6217,1,'slug','2026-03-27 14:22:21',0,1),
(6217,1,'status','2026-03-27 14:22:21',0,1),
(6217,1,'title','2026-03-31 09:40:07',0,1),
(6218,1,'postDate','2026-03-27 14:22:41',0,1),
(6218,1,'primaryOwnerId','2026-03-31 09:39:18',0,1),
(6218,1,'slug','2026-03-27 14:22:41',0,1),
(6218,1,'status','2026-03-27 14:22:41',0,1),
(6218,1,'title','2026-03-27 14:22:30',0,1),
(6219,1,'postDate','2026-03-27 14:22:56',0,1),
(6219,1,'primaryOwnerId','2026-03-31 09:38:35',0,1),
(6219,1,'slug','2026-03-27 14:22:56',0,1),
(6219,1,'status','2026-03-27 14:22:56',0,1),
(6219,1,'title','2026-03-31 09:38:35',0,1),
(6224,1,'postDate','2026-03-27 14:26:44',0,1),
(6224,1,'slug','2026-03-27 14:26:44',0,1),
(6224,1,'title','2026-03-27 14:25:18',0,1),
(6225,1,'postDate','2026-03-27 14:25:45',0,1),
(6225,1,'slug','2026-03-27 14:25:45',0,1),
(6225,1,'status','2026-03-27 14:25:45',0,1),
(6225,1,'title','2026-03-27 14:25:40',0,1),
(6226,1,'postDate','2026-03-27 14:25:59',0,1),
(6226,1,'slug','2026-03-27 14:25:59',0,1),
(6226,1,'status','2026-03-27 14:25:59',0,1),
(6226,1,'title','2026-03-27 14:25:54',0,1),
(6227,1,'postDate','2026-03-27 14:26:24',0,1),
(6227,1,'primaryOwnerId','2026-03-31 09:36:10',0,1),
(6227,1,'slug','2026-03-27 14:26:24',0,1),
(6227,1,'status','2026-03-27 14:26:24',0,1),
(6227,1,'title','2026-03-27 14:26:07',0,1),
(6232,1,'postDate','2026-03-27 14:33:15',0,1),
(6232,1,'slug','2026-03-27 14:33:15',0,1),
(6232,1,'title','2026-03-27 14:26:54',0,1),
(6233,1,'postDate','2026-03-27 14:28:17',0,1),
(6233,1,'primaryOwnerId','2026-03-31 09:33:06',0,1),
(6233,1,'slug','2026-03-27 14:28:17',0,1),
(6233,1,'status','2026-03-27 14:28:17',0,1),
(6233,1,'title','2026-03-31 09:33:06',0,1),
(6242,1,'primaryOwnerId','2026-03-31 09:30:41',0,1),
(6242,1,'title','2026-03-31 09:21:10',0,1),
(6243,1,'primaryOwnerId','2026-03-31 09:30:41',0,1),
(6244,1,'primaryOwnerId','2026-03-31 09:35:14',0,1),
(6245,1,'primaryOwnerId','2026-03-31 09:30:41',0,1),
(6252,1,'fieldLayoutId','2026-03-27 14:48:28',0,1),
(6252,1,'postDate','2026-03-27 14:50:26',0,1),
(6252,1,'slug','2026-03-27 14:50:26',0,1),
(6252,1,'title','2026-03-31 09:33:52',0,1),
(6252,1,'typeId','2026-03-27 14:48:28',0,1),
(6253,1,'postDate','2026-03-27 14:49:54',0,1),
(6253,1,'slug','2026-03-27 14:49:54',0,1),
(6253,1,'title','2026-03-27 14:48:47',0,1),
(6254,1,'postDate','2026-03-27 14:49:04',0,1),
(6254,1,'primaryOwnerId','2026-03-31 09:22:14',0,1),
(6254,1,'slug','2026-03-27 14:49:04',0,1),
(6254,1,'status','2026-03-27 14:49:04',0,1),
(6254,1,'title','2026-03-27 14:48:57',0,1),
(6255,1,'postDate','2026-03-27 14:49:18',0,1),
(6255,1,'slug','2026-03-27 14:49:18',0,1),
(6255,1,'status','2026-03-27 14:49:18',0,1),
(6255,1,'title','2026-03-27 14:49:11',0,1),
(6256,1,'postDate','2026-03-27 14:49:30',0,1),
(6256,1,'slug','2026-03-27 14:49:30',0,1),
(6256,1,'status','2026-03-27 14:49:30',0,1),
(6256,1,'title','2026-03-27 14:49:26',0,1),
(6257,1,'postDate','2026-03-27 14:49:41',0,1),
(6257,1,'slug','2026-03-27 14:49:41',0,1),
(6257,1,'status','2026-03-27 14:49:41',0,1),
(6257,1,'title','2026-03-27 14:49:38',0,1),
(6258,1,'postDate','2026-03-27 14:49:52',0,1),
(6258,1,'slug','2026-03-27 14:49:52',0,1),
(6258,1,'status','2026-03-27 14:49:52',0,1),
(6258,1,'title','2026-03-27 14:49:48',0,1),
(6265,1,'postDate','2026-03-27 14:50:22',0,1),
(6265,1,'slug','2026-03-27 14:50:22',0,1),
(6265,1,'title','2026-03-27 14:50:04',0,1),
(6266,1,'postDate','2026-03-27 14:50:12',0,1),
(6266,1,'slug','2026-03-27 14:50:12',0,1),
(6266,1,'status','2026-03-27 14:50:12',0,1),
(6266,1,'title','2026-03-27 14:50:10',0,1),
(6267,1,'postDate','2026-03-27 14:50:21',0,1),
(6267,1,'slug','2026-03-27 14:50:21',0,1),
(6267,1,'status','2026-03-27 14:50:21',0,1),
(6267,1,'title','2026-03-27 14:50:19',0,1),
(6278,1,'enabled','2026-03-30 16:48:43',0,1),
(6278,1,'primaryOwnerId','2026-04-01 14:59:55',0,1),
(6343,1,'title','2026-03-30 18:02:28',0,1),
(6411,1,'title','2026-03-31 09:33:52',0,1),
(6448,1,'primaryOwnerId','2026-03-31 09:53:07',0,1),
(6448,1,'title','2026-03-31 09:53:07',0,1),
(6462,1,'primaryOwnerId','2026-04-16 14:35:29',0,1),
(6550,1,'slug','2026-04-15 17:06:15',0,1),
(6550,1,'title','2026-04-15 17:06:15',0,1),
(6550,1,'uri','2026-04-01 10:12:02',0,1),
(6551,1,'primaryOwnerId','2026-04-15 17:06:15',0,1),
(6551,1,'title','2026-04-15 17:06:15',0,1),
(6552,1,'primaryOwnerId','2026-04-13 10:30:04',0,1),
(6552,1,'title','2026-04-01 15:20:20',0,1),
(6553,1,'primaryOwnerId','2026-04-13 10:30:04',0,1),
(6553,1,'title','2026-04-01 15:20:20',0,1),
(6555,1,'primaryOwnerId','2026-04-16 13:27:28',0,1),
(6555,1,'title','2026-04-01 15:20:20',0,1),
(6556,1,'primaryOwnerId','2026-04-01 15:20:20',0,1),
(6556,1,'title','2026-04-01 15:20:20',0,1),
(6557,1,'primaryOwnerId','2026-04-01 15:20:20',0,1),
(6557,1,'title','2026-04-01 15:20:20',0,1),
(6558,1,'primaryOwnerId','2026-04-01 15:20:20',0,1),
(6558,1,'title','2026-04-01 15:20:20',0,1),
(6559,1,'primaryOwnerId','2026-04-01 15:20:20',0,1),
(6559,1,'title','2026-04-01 15:20:20',0,1),
(6560,1,'primaryOwnerId','2026-04-15 17:06:15',0,1),
(6560,1,'title','2026-04-01 15:20:20',0,1),
(6561,1,'primaryOwnerId','2026-04-16 13:27:28',0,1),
(6561,1,'title','2026-04-01 15:20:20',0,1),
(6564,1,'primaryOwnerId','2026-04-20 19:14:16',0,1),
(6623,1,'title','2026-04-01 15:07:49',0,1),
(6634,1,'title','2026-04-01 15:20:20',0,1),
(6647,1,'slug','2026-04-01 16:58:02',0,1),
(6647,1,'title','2026-04-01 16:58:02',0,1),
(6647,1,'uri','2026-04-01 16:58:02',0,1),
(6648,1,'primaryOwnerId','2026-04-16 13:20:34',0,1),
(6648,1,'title','2026-04-01 17:11:07',0,1),
(6649,1,'primaryOwnerId','2026-04-16 13:20:34',0,1),
(6649,1,'title','2026-04-01 17:11:07',0,1),
(6650,1,'primaryOwnerId','2026-04-16 13:20:34',0,1),
(6650,1,'title','2026-04-01 18:00:21',0,1),
(6652,1,'primaryOwnerId','2026-04-16 13:20:34',0,1),
(6652,1,'title','2026-04-16 13:20:33',0,1),
(6653,1,'primaryOwnerId','2026-04-01 18:00:22',0,1),
(6653,1,'title','2026-04-01 18:00:22',0,1),
(6654,1,'primaryOwnerId','2026-04-01 18:00:22',0,1),
(6654,1,'title','2026-04-01 18:00:22',0,1),
(6657,1,'primaryOwnerId','2026-04-01 18:00:22',0,1),
(6657,1,'title','2026-04-01 18:00:22',0,1),
(6660,1,'primaryOwnerId','2026-04-20 19:05:34',0,1),
(6712,1,'slug','2026-04-01 18:16:51',0,1),
(6712,1,'title','2026-04-01 18:16:51',0,1),
(6712,1,'uri','2026-04-01 18:16:51',0,1),
(6713,1,'primaryOwnerId','2026-04-16 12:36:18',0,1),
(6713,1,'title','2026-04-01 18:18:11',0,1),
(6714,1,'primaryOwnerId','2026-04-16 12:41:20',0,1),
(6714,1,'title','2026-04-01 18:25:54',0,1),
(6715,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6715,1,'title','2026-04-01 18:30:44',0,1),
(6717,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6717,1,'title','2026-04-01 18:42:03',0,1),
(6718,1,'primaryOwnerId','2026-04-16 12:36:18',0,1),
(6718,1,'title','2026-04-16 12:36:18',0,1),
(6719,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6719,1,'title','2026-04-01 18:42:04',0,1),
(6720,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6720,1,'title','2026-04-01 18:42:04',0,1),
(6721,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6721,1,'title','2026-04-01 18:42:04',0,1),
(6725,1,'primaryOwnerId','2026-04-20 19:05:48',0,1),
(6743,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6744,1,'primaryOwnerId','2026-04-16 12:49:02',0,1),
(6759,1,'slug','2026-04-01 18:43:00',0,1),
(6759,1,'title','2026-04-01 18:43:00',0,1),
(6759,1,'uri','2026-04-01 18:43:00',0,1),
(6760,1,'primaryOwnerId','2026-04-16 13:28:51',0,1),
(6760,1,'title','2026-04-01 19:10:02',0,1),
(6761,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6761,1,'title','2026-04-01 19:10:02',0,1),
(6762,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6762,1,'title','2026-04-01 19:10:02',0,1),
(6764,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6764,1,'title','2026-04-01 19:10:02',0,1),
(6765,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6765,1,'title','2026-04-01 19:10:02',0,1),
(6766,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6766,1,'title','2026-04-01 19:10:02',0,1),
(6767,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6767,1,'title','2026-04-01 19:10:02',0,1),
(6768,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6768,1,'title','2026-04-01 19:10:02',0,1),
(6769,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6769,1,'title','2026-04-01 19:10:02',0,1),
(6770,1,'primaryOwnerId','2026-04-01 19:10:02',0,1),
(6770,1,'title','2026-04-01 19:10:02',0,1),
(6771,1,'primaryOwnerId','2026-04-20 19:08:02',0,1),
(6818,1,'slug','2026-04-01 19:22:42',0,1),
(6818,1,'title','2026-04-01 19:22:42',0,1),
(6818,1,'uri','2026-04-01 19:19:29',0,1),
(6819,1,'primaryOwnerId','2026-04-16 13:51:08',0,1),
(6819,1,'title','2026-04-01 19:44:58',0,1),
(6820,1,'primaryOwnerId','2026-04-16 13:51:08',0,1),
(6820,1,'title','2026-04-16 13:51:08',0,1),
(6821,1,'primaryOwnerId','2026-04-16 13:51:08',0,1),
(6821,1,'title','2026-04-01 19:44:58',0,1),
(6823,1,'primaryOwnerId','2026-04-16 13:51:08',0,1),
(6823,1,'title','2026-04-01 19:44:58',0,1),
(6824,1,'primaryOwnerId','2026-04-01 19:44:58',0,1),
(6824,1,'title','2026-04-01 19:44:58',0,1),
(6825,1,'primaryOwnerId','2026-04-01 19:44:58',0,1),
(6825,1,'title','2026-04-01 19:44:58',0,1),
(6830,1,'primaryOwnerId','2026-04-20 19:13:53',0,1),
(6845,1,'slug','2026-04-01 19:22:42',0,1),
(6845,1,'title','2026-04-01 19:22:42',0,1),
(6892,1,'primaryOwnerId','2026-04-03 14:09:44',0,1),
(6929,1,'slug','2026-04-02 09:10:40',0,1),
(6931,1,'title','2026-04-02 09:17:33',0,1),
(6932,1,'title','2026-04-02 09:17:06',0,1),
(6933,1,'title','2026-04-02 09:17:30',0,1),
(6934,1,'slug','2026-04-03 10:34:12',0,1),
(6934,1,'title','2026-04-03 10:34:11',0,1),
(6934,1,'uri','2026-04-03 10:34:12',0,1),
(6935,1,'primaryOwnerId','2026-04-03 10:56:14',0,1),
(6935,1,'title','2026-04-03 10:56:14',0,1),
(6936,1,'primaryOwnerId','2026-04-03 10:56:14',0,1),
(6936,1,'title','2026-04-03 10:56:14',0,1),
(6937,1,'primaryOwnerId','2026-04-07 09:18:17',0,1),
(6937,1,'title','2026-04-03 10:56:14',0,1),
(6939,1,'primaryOwnerId','2026-04-13 08:55:17',0,1),
(6939,1,'title','2026-04-03 10:56:14',0,1),
(6944,1,'primaryOwnerId','2026-04-03 10:56:14',0,1),
(6944,1,'title','2026-04-03 10:56:14',0,1),
(6945,1,'primaryOwnerId','2026-04-03 10:56:14',0,1),
(6945,1,'title','2026-04-03 10:56:14',0,1),
(6946,1,'primaryOwnerId','2026-04-20 19:03:57',0,1),
(6997,1,'slug','2026-04-03 10:57:51',0,1),
(6997,1,'title','2026-04-03 10:57:49',0,1),
(6997,1,'uri','2026-04-03 10:57:51',0,1),
(6998,1,'primaryOwnerId','2026-04-07 19:20:04',0,1),
(6998,1,'title','2026-04-03 11:17:10',0,1),
(6999,1,'primaryOwnerId','2026-04-07 19:20:04',0,1),
(6999,1,'title','2026-04-03 11:17:10',0,1),
(7000,1,'primaryOwnerId','2026-04-16 13:55:16',0,1),
(7000,1,'title','2026-04-03 11:17:10',0,1),
(7002,1,'primaryOwnerId','2026-04-16 13:55:58',0,1),
(7002,1,'title','2026-04-03 11:17:10',0,1),
(7012,1,'primaryOwnerId','2026-04-20 19:04:59',0,1),
(7053,1,'primaryOwnerId','2026-04-13 12:26:24',0,1),
(7074,1,'slug','2026-04-03 11:52:20',0,1),
(7074,1,'title','2026-04-03 11:52:20',0,1),
(7074,1,'uri','2026-04-03 11:52:20',0,1),
(7075,1,'primaryOwnerId','2026-04-16 14:47:37',0,1),
(7075,1,'title','2026-04-03 12:19:57',0,1),
(7076,1,'primaryOwnerId','2026-04-16 14:47:37',0,1),
(7076,1,'title','2026-04-03 12:19:57',0,1),
(7077,1,'primaryOwnerId','2026-04-16 14:47:37',0,1),
(7077,1,'title','2026-04-03 12:19:57',0,1),
(7079,1,'primaryOwnerId','2026-04-16 14:47:37',0,1),
(7079,1,'title','2026-04-03 12:19:57',0,1),
(7089,1,'primaryOwnerId','2026-04-20 19:05:12',0,1),
(7153,1,'enabled','2026-04-03 12:20:16',0,1),
(7157,1,'title','2026-04-15 17:06:15',0,1),
(7190,1,'primaryOwnerId','2026-04-06 09:22:51',0,1),
(7190,1,'title','2026-04-06 09:22:51',0,1),
(7356,1,'primaryOwnerId','2026-04-06 15:49:45',0,1),
(7357,1,'primaryOwnerId','2026-04-06 15:49:45',0,1),
(7358,1,'primaryOwnerId','2026-04-06 15:49:45',0,1),
(7359,1,'primaryOwnerId','2026-04-06 15:49:45',0,1),
(7512,1,'primaryOwnerId','2026-04-13 08:55:17',0,1),
(7512,1,'title','2026-04-13 08:55:16',0,1),
(7566,1,'primaryOwnerId','2026-04-13 09:29:39',0,1),
(7566,1,'title','2026-04-13 09:29:39',0,1),
(7659,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(7659,1,'title','2026-04-13 10:46:44',0,1),
(7661,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(7661,1,'title','2026-04-13 10:46:44',0,1),
(7662,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(7662,1,'title','2026-04-13 10:46:44',0,1),
(7663,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(7663,1,'title','2026-04-13 10:46:44',0,1),
(7664,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(7664,1,'title','2026-04-13 10:46:44',0,1),
(7665,1,'primaryOwnerId','2026-04-13 10:46:45',0,1),
(7665,1,'title','2026-04-13 10:46:44',0,1),
(7691,1,'primaryOwnerId','2026-04-13 11:22:17',0,1),
(7693,1,'primaryOwnerId','2026-04-13 11:22:17',0,1),
(7693,1,'title','2026-04-13 11:22:17',0,1),
(7694,1,'primaryOwnerId','2026-04-13 11:22:17',0,1),
(7695,1,'primaryOwnerId','2026-04-13 11:22:17',0,1),
(7696,1,'primaryOwnerId','2026-04-13 11:22:17',0,1),
(7706,1,'primaryOwnerId','2026-04-13 12:24:04',0,1),
(7797,1,'primaryOwnerId','2026-04-13 12:54:27',0,1),
(7797,1,'title','2026-04-13 12:54:27',0,1),
(7821,1,'primaryOwnerId','2026-04-13 13:01:09',0,1),
(7821,1,'title','2026-04-13 13:01:09',0,1),
(7823,1,'primaryOwnerId','2026-04-13 13:01:09',0,1),
(7824,1,'primaryOwnerId','2026-04-13 13:01:09',0,1),
(7826,1,'primaryOwnerId','2026-04-13 13:01:09',0,1),
(7853,1,'title','2026-04-15 14:53:22',0,1),
(7857,1,'postDate','2026-04-15 15:01:22',0,1),
(7862,1,'slug','2026-04-15 15:03:09',0,1),
(7862,1,'uri','2026-04-15 15:03:09',0,1),
(7864,1,'slug','2026-04-15 15:18:25',0,1),
(7864,1,'title','2026-04-15 15:18:25',0,1),
(7867,1,'postDate','2026-04-15 15:19:04',0,1),
(7871,1,'postDate','2026-04-15 15:23:08',0,1),
(7871,1,'slug','2026-04-15 15:20:37',0,1),
(7871,1,'title','2026-04-15 15:20:37',0,1),
(7871,1,'uri','2026-04-15 15:20:37',0,1),
(7880,1,'slug','2026-04-15 17:06:15',0,1),
(7880,1,'title','2026-04-15 17:06:15',0,1),
(7924,1,'primaryOwnerId','2026-04-17 12:13:21',0,1),
(7925,1,'primaryOwnerId','2026-04-17 12:13:21',0,1),
(8079,1,'primaryOwnerId','2026-04-16 14:17:04',0,1),
(8079,1,'title','2026-04-16 14:17:03',0,1),
(8138,1,'primaryOwnerId','2026-04-16 14:47:37',0,1),
(8139,1,'primaryOwnerId','2026-04-16 14:47:37',0,1),
(8197,1,'title','2026-04-17 11:47:28',0,1),
(8201,1,'title','2026-04-17 11:54:44',0,1),
(8205,1,'title','2026-04-17 12:06:35',0,1),
(8437,1,'postDate','2026-04-20 20:04:15',0,1),
(8437,1,'slug','2026-04-20 20:03:02',0,1),
(8437,1,'title','2026-04-20 20:03:02',0,1),
(8437,1,'uri','2026-04-20 20:03:02',0,1),
(8438,1,'postDate','2026-04-20 20:04:12',0,1),
(8438,1,'primaryOwnerId','2026-04-20 20:11:42',0,1),
(8438,1,'slug','2026-04-20 20:04:12',0,1),
(8438,1,'status','2026-04-20 20:04:12',0,1),
(8438,1,'title','2026-04-20 20:04:12',0,1),
(8439,1,'postDate','2026-04-20 20:04:09',0,1),
(8439,1,'primaryOwnerId','2026-04-20 20:11:42',0,1),
(8439,1,'slug','2026-04-20 20:04:09',0,1),
(8439,1,'status','2026-04-20 20:04:09',0,1),
(8439,1,'title','2026-04-20 20:04:09',0,1),
(8440,1,'postDate','2026-04-20 20:04:06',0,1),
(8440,1,'primaryOwnerId','2026-04-20 20:11:42',0,1),
(8440,1,'slug','2026-04-20 20:04:06',0,1),
(8440,1,'status','2026-04-20 20:04:06',0,1),
(8440,1,'title','2026-04-20 20:04:06',0,1),
(8449,1,'primaryOwnerId','2026-04-20 20:10:12',0,1),
(8449,1,'title','2026-04-20 20:08:38',0,1),
(8467,1,'primaryOwnerId','2026-04-20 20:10:12',0,1);
/*!40000 ALTER TABLE `changedattributes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `changedfields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `changedfields` WRITE;
/*!40000 ALTER TABLE `changedfields` DISABLE KEYS */;
INSERT INTO `changedfields` VALUES
(2,1,1,'741b290b-1284-44cf-803c-46a7844d69e4','2025-11-30 12:26:41',0,1),
(3,1,1,'741b290b-1284-44cf-803c-46a7844d69e4','2026-02-08 10:05:52',0,1),
(4,1,1,'741b290b-1284-44cf-803c-46a7844d69e4','2026-02-08 09:04:00',0,1),
(5,1,1,'741b290b-1284-44cf-803c-46a7844d69e4','2025-11-30 12:11:53',0,1),
(6,1,1,'741b290b-1284-44cf-803c-46a7844d69e4','2026-02-21 23:03:38',0,1),
(8,1,1,'741b290b-1284-44cf-803c-46a7844d69e4','2026-02-24 14:13:17',0,1),
(38,1,2,'cec5ecd1-20c2-44f9-b9ce-018d169101d7','2025-11-30 20:19:16',0,1),
(38,1,3,'12def3da-8ca1-48fa-891d-c3798b3b46e9','2025-11-30 19:58:50',0,1),
(38,1,3,'5dfd8cfe-1390-4f09-9378-3016c101b1dc','2025-11-30 20:09:31',0,1),
(38,1,4,'17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4','2025-11-30 20:09:31',0,1),
(38,1,4,'cf5f75f8-8ee4-4a97-b726-1bef5dd1e817','2025-11-30 20:09:31',0,1),
(38,1,6,'d1187881-9f88-406c-a476-52d43ed1ca77','2025-11-30 20:10:08',0,1),
(38,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-17 12:19:22',0,1),
(38,1,8,'238ce99e-fad8-4e55-b39c-58e5e5704123','2025-11-30 19:34:01',0,1),
(43,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-11-30 20:10:08',0,1),
(61,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-11-30 20:09:31',0,1),
(61,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-11-30 20:07:39',0,1),
(89,1,9,'521ddd96-4b77-4908-ae99-90bb9fa46eda','2025-12-02 16:47:19',0,1),
(89,1,10,'26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb','2026-04-17 12:06:35',0,1),
(89,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-17 12:06:35',0,1),
(89,1,12,'bcabfcb9-19e8-44e6-8f09-e37ebd2791d1','2025-12-02 17:03:57',0,1),
(99,1,9,'521ddd96-4b77-4908-ae99-90bb9fa46eda','2025-12-02 16:16:04',0,1),
(99,1,10,'26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb','2026-04-17 11:54:44',0,1),
(99,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-17 11:54:44',0,1),
(99,1,12,'bcabfcb9-19e8-44e6-8f09-e37ebd2791d1','2025-12-02 17:46:07',0,1),
(112,1,9,'521ddd96-4b77-4908-ae99-90bb9fa46eda','2025-12-02 16:26:28',0,1),
(112,1,10,'26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb','2026-04-17 11:47:28',0,1),
(112,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-17 11:47:28',0,1),
(112,1,12,'bcabfcb9-19e8-44e6-8f09-e37ebd2791d1','2025-12-02 16:48:40',0,1),
(143,1,2,'cec5ecd1-20c2-44f9-b9ce-018d169101d7','2026-03-29 10:53:43',0,1),
(143,1,3,'12def3da-8ca1-48fa-891d-c3798b3b46e9','2026-03-30 10:57:29',0,1),
(143,1,3,'5dfd8cfe-1390-4f09-9378-3016c101b1dc','2026-03-30 10:57:29',0,1),
(143,1,3,'94fdb246-e47a-4986-a057-3cdd1fad1bfb','2026-03-29 10:07:47',0,1),
(143,1,4,'17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4','2025-12-02 17:36:07',0,1),
(143,1,4,'cf5f75f8-8ee4-4a97-b726-1bef5dd1e817','2026-03-31 09:58:47',0,1),
(143,1,6,'d1187881-9f88-406c-a476-52d43ed1ca77','2026-04-16 14:52:31',0,1),
(143,1,8,'238ce99e-fad8-4e55-b39c-58e5e5704123','2025-12-08 10:15:37',0,1),
(143,1,74,'e491edbd-c23e-4f68-a29b-405630bd8368','2026-03-30 10:18:17',0,1),
(144,1,1,'306c8a8b-7513-4a3f-82c5-7797d86388ed','2025-12-02 21:31:23',0,1),
(144,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2026-04-16 14:51:26',0,1),
(145,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2026-04-16 14:52:31',0,1),
(244,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2026-03-20 00:20:46',0,1),
(244,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-02 22:09:17',0,1),
(245,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2026-03-20 00:20:52',0,1),
(245,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-02 22:09:29',0,1),
(246,1,5,'4c5c639e-d111-4970-819b-5bcf7873db6f','2026-03-20 00:30:57',0,1),
(246,1,18,'2c8d3384-fdaf-45a9-8e0e-73f881e9509a','2025-12-02 22:10:39',0,1),
(247,1,5,'4c5c639e-d111-4970-819b-5bcf7873db6f','2026-03-20 00:31:15',0,1),
(247,1,18,'2c8d3384-fdaf-45a9-8e0e-73f881e9509a','2025-12-02 22:10:58',0,1),
(250,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2026-04-15 15:02:17',0,1),
(250,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:00:52',0,1),
(252,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2026-04-15 15:18:25',0,1),
(252,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:19:53',0,1),
(255,1,3,'33ee3a3d-d49b-4235-989e-7b6f0c31f998','2026-03-26 08:34:58',0,1),
(255,1,4,'7a8d453a-db94-47f8-8c2b-ebf52865b100','2026-03-26 10:01:24',0,1),
(261,1,3,'4911f493-aeb6-4573-a3c1-3dc0b0940146','2025-12-03 17:06:38',0,1),
(261,1,3,'6868dccf-8cf0-4c95-83cf-43d34443cdbc','2025-12-03 17:06:43',0,1),
(261,1,22,'ceffcd5c-99fd-407b-ad8e-814ebcf245fa','2025-12-03 17:09:02',0,1),
(266,1,22,'ceffcd5c-99fd-407b-ad8e-814ebcf245fa','2025-12-03 17:10:13',0,1),
(267,1,7,'94e2f239-5ede-4bbd-8ca2-92c5147918d8','2025-12-03 17:10:21',0,1),
(268,1,22,'ceffcd5c-99fd-407b-ad8e-814ebcf245fa','2025-12-03 17:10:23',0,1),
(274,1,3,'4911f493-aeb6-4573-a3c1-3dc0b0940146','2026-03-31 09:53:06',0,1),
(274,1,3,'6868dccf-8cf0-4c95-83cf-43d34443cdbc','2026-03-31 09:53:07',0,1),
(274,1,6,'11bf274a-ace0-4e3c-b321-ae01246cd640','2026-04-16 14:54:00',0,1),
(274,1,22,'ceffcd5c-99fd-407b-ad8e-814ebcf245fa','2026-04-16 14:35:29',0,1),
(275,1,3,'b57c8db9-03d0-4026-889f-6d3160affed8','2025-12-03 19:05:19',0,1),
(275,1,5,'209bfbdc-be9c-4933-96f5-5c10d80de891','2025-12-03 19:05:19',0,1),
(275,1,12,'6c588796-bb27-4fdf-9590-a50a0e275ca7','2025-12-03 19:05:19',0,1),
(302,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2026-03-26 08:31:58',0,1),
(302,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2026-04-16 14:54:00',0,1),
(319,1,2,'90b06f70-ec9f-49d9-b838-cef50698ec38','2025-12-04 17:56:46',0,1),
(319,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:45:00',0,1),
(319,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:46:59',0,1),
(319,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:45:00',0,1),
(322,1,2,'90b06f70-ec9f-49d9-b838-cef50698ec38','2025-12-04 17:57:26',0,1),
(322,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:42:34',0,1),
(322,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:42:34',0,1),
(322,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:42:34',0,1),
(324,1,2,'90b06f70-ec9f-49d9-b838-cef50698ec38','2025-12-04 17:57:54',0,1),
(324,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:44:18',0,1),
(324,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:41:54',0,1),
(324,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:44:18',0,1),
(326,1,2,'90b06f70-ec9f-49d9-b838-cef50698ec38','2026-03-26 10:40:38',0,1),
(326,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:40:38',0,1),
(326,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:40:38',0,1),
(326,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:43:06',0,1),
(330,1,3,'06865648-84b5-46f3-8fd0-48993e09ff0b','2026-03-26 09:55:54',0,1),
(330,1,5,'5dbdee7d-8d17-44c9-8581-679879c315ca','2026-03-20 10:34:48',0,1),
(330,1,15,'4977ef85-8f70-4b78-8499-ac4fe3031f69','2026-03-20 10:34:48',0,1),
(343,1,12,'12ab5942-8eb1-4e8d-af73-0d67149caea5','2025-12-04 19:31:03',0,1),
(343,1,24,'c6ba37df-5856-4b99-abff-ee5ac2023dee','2025-12-04 19:30:53',0,1),
(343,1,25,'463779f3-52da-4f3f-8f35-b0263c8d8c3b','2025-12-04 19:30:55',0,1),
(343,1,26,'48f56917-e399-43c9-91af-7d3ddaa9b6c8','2025-12-04 19:30:57',0,1),
(343,1,28,'353456f6-299a-4ccf-a717-44aa8f5eaf3e','2025-12-04 19:31:01',0,1),
(343,1,29,'f6ecf01a-0bc4-4c4c-9bcc-e0cded609999','2025-12-04 19:31:05',0,1),
(358,1,12,'12ab5942-8eb1-4e8d-af73-0d67149caea5','2025-12-07 00:21:43',0,1),
(358,1,12,'24a9c864-a05b-496f-92d0-6072f45d84fe','2025-12-07 00:21:43',0,1),
(358,1,17,'420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d','2025-12-07 00:21:43',0,1),
(358,1,24,'c6ba37df-5856-4b99-abff-ee5ac2023dee','2025-12-06 20:26:26',0,1),
(358,1,26,'48f56917-e399-43c9-91af-7d3ddaa9b6c8','2025-12-07 08:23:40',0,1),
(358,1,27,'15d88486-9f10-4200-8468-69effb7550d6','2025-12-07 08:23:40',0,1),
(358,1,28,'353456f6-299a-4ccf-a717-44aa8f5eaf3e','2025-12-07 08:24:36',0,1),
(358,1,29,'f6ecf01a-0bc4-4c4c-9bcc-e0cded609999','2025-12-06 20:28:56',0,1),
(358,1,30,'08c9532b-900d-4f33-8644-fbd2b4a0448e','2025-12-07 08:24:36',0,1),
(358,1,51,'7b267ef7-86ed-4004-9260-e710ae7fb28e','2025-12-07 08:38:44',0,1),
(358,1,52,'7b70343f-41ce-4c2d-bcec-54b0cd0dc42f','2025-12-07 08:24:36',0,1),
(358,1,53,'03a38015-ace3-4900-9eb7-553ae2371d19','2025-12-06 19:40:01',0,1),
(358,1,53,'1ba854f9-b95e-4fbd-9117-3e38dea54db5','2025-12-06 19:40:01',0,1),
(358,1,55,'3a7f3567-350e-41a1-9bb8-129cd9a6c519','2025-12-06 20:27:46',0,1),
(358,1,55,'d41d3f08-74c0-46b1-804a-884be4a6fffa','2025-12-06 18:56:45',0,1),
(358,1,56,'d604dc08-fc17-470f-ac46-5bd2d5fea7f0','2025-12-06 20:24:16',0,1),
(359,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2025-12-07 08:32:56',0,1),
(395,1,34,'d65d1c35-ed40-465c-8613-98206b6c0d67','2025-12-06 20:31:20',0,1),
(411,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2025-12-06 20:23:08',0,1),
(412,1,8,'31831217-1d9a-4a1e-bb5e-cab96c9fc65d','2025-12-06 20:23:08',0,1),
(412,1,40,'8630c735-6b35-4179-a62f-cb5a5eeafa83','2025-12-06 19:30:30',0,1),
(555,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2025-12-07 00:22:42',0,1),
(556,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-07 00:22:46',0,1),
(592,1,59,'1a19c91a-121e-4f3c-b097-a360b3243240','2025-12-07 08:41:47',0,1),
(593,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2025-12-07 08:41:49',0,1),
(594,1,59,'1a19c91a-121e-4f3c-b097-a360b3243240','2025-12-07 08:41:56',0,1),
(604,1,12,'12ab5942-8eb1-4e8d-af73-0d67149caea5','2026-03-19 22:01:59',0,1),
(604,1,12,'24a9c864-a05b-496f-92d0-6072f45d84fe','2026-03-20 09:54:33',0,1),
(604,1,17,'420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d','2026-03-19 22:14:53',0,1),
(604,1,24,'c6ba37df-5856-4b99-abff-ee5ac2023dee','2026-03-19 22:01:59',0,1),
(604,1,30,'08c9532b-900d-4f33-8644-fbd2b4a0448e','2026-03-19 22:01:59',0,1),
(604,1,51,'7b267ef7-86ed-4004-9260-e710ae7fb28e','2026-03-31 10:00:26',0,1),
(604,1,53,'03a38015-ace3-4900-9eb7-553ae2371d19','2025-12-07 08:46:56',0,1),
(604,1,53,'1ba854f9-b95e-4fbd-9117-3e38dea54db5','2025-12-07 08:46:56',0,1),
(604,1,55,'3a7f3567-350e-41a1-9bb8-129cd9a6c519','2026-03-19 22:01:59',0,1),
(604,1,55,'d41d3f08-74c0-46b1-804a-884be4a6fffa','2026-03-19 22:01:59',0,1),
(626,1,36,'d786a952-f7f5-459f-8a46-f32ff468d4f6','2025-12-07 08:48:34',0,1),
(648,1,36,'d786a952-f7f5-459f-8a46-f32ff468d4f6','2025-12-07 08:51:36',0,1),
(654,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2026-03-31 10:00:26',0,1),
(655,1,44,'8b2111a4-335b-497f-94da-aaed1b3e0328','2025-12-07 09:17:46',0,1),
(656,1,3,'4ce0ac7c-152d-4795-89c2-faff0d75a7ed','2026-03-31 09:41:19',0,1),
(656,1,36,'d786a952-f7f5-459f-8a46-f32ff468d4f6','2026-03-27 11:42:35',0,1),
(656,1,37,'dc38184a-b41a-44b1-980c-64e7c324f41a','2025-12-07 09:17:46',0,1),
(657,1,32,'2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9','2026-03-31 10:00:26',0,1),
(657,1,33,'1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2','2025-12-07 09:23:04',0,1),
(750,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:54:11',0,1),
(750,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:54:11',0,1),
(755,1,61,'9a33b5b2-2b33-4dff-9ed2-dfce2474973e','2025-12-07 13:55:46',0,1),
(761,1,2,'ce445ff0-ffd3-46dc-92fd-7f90be2c8f57','2026-03-31 09:17:01',0,1),
(761,1,3,'682128f9-a862-4496-8c65-4d0449904510','2026-03-31 10:11:57',0,1),
(761,1,6,'b5c7b570-446c-4de6-a9bb-cd9581c73e24','2025-12-07 14:46:22',0,1),
(761,1,28,'0f4b4599-37ec-4e32-951d-314472221e14','2026-03-19 22:01:59',0,1),
(761,1,32,'adfbaf55-55b2-4e91-9c89-9edfe83cad7e','2026-04-03 14:06:16',0,1),
(761,1,55,'cedb678d-86a4-4d73-865d-e821937bc248','2026-02-21 23:28:36',0,1),
(774,1,3,'11aa40c7-103c-4706-ace9-3f450871c29f','2026-03-26 09:58:08',0,1),
(774,1,3,'3b3a78d0-f320-4edb-8883-3e52ec1f93af','2026-03-26 08:33:13',0,1),
(774,1,14,'16daf059-c7fd-4b72-a424-158e791ae13c','2026-03-20 20:24:50',0,1),
(774,1,15,'e2ce4804-fbe9-43d5-8161-304ca9bcd25d','2026-03-19 22:25:08',0,1),
(774,1,16,'d401ee3a-400c-47c1-b52e-7ca24db6b7f3','2026-03-20 20:24:50',0,1),
(785,1,51,'7b267ef7-86ed-4004-9260-e710ae7fb28e','2026-04-13 12:45:34',0,1),
(786,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2026-04-13 12:45:34',0,1),
(788,1,3,'4ce0ac7c-152d-4795-89c2-faff0d75a7ed','2026-04-13 12:45:34',0,1),
(789,1,32,'2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9','2026-03-31 10:00:26',0,1),
(843,1,3,'014f7791-0f8d-4cf9-827e-dca775844565','2026-03-26 10:00:30',0,1),
(843,1,3,'04d35d3e-d4e0-4078-ac6c-56439f578a3d','2026-03-20 12:54:26',0,1),
(843,1,3,'60bead59-0787-4d9e-acfb-2dc6616c4bd4','2026-03-20 12:54:26',0,1),
(843,1,3,'ff6ca0f0-1b79-4605-9d9c-11a46fa5deca','2026-03-20 10:38:31',0,1),
(843,1,5,'23d55abf-74ce-4f37-b104-9a83f6cc7fbc','2026-03-26 10:00:30',0,1),
(843,1,20,'46060fbb-82a5-47bd-b9a6-c27b7741d13d','2026-03-31 09:54:30',0,1),
(843,1,39,'f91f0a1e-6ec6-4c0e-9db3-434b462d1df8','2026-03-29 11:46:49',0,1),
(843,1,71,'893c100e-74db-4ce2-a4bc-b61c5e66812a','2026-04-01 10:45:35',0,1),
(849,1,3,'71564ec2-e644-438f-834f-491192e8b8be','2026-02-03 08:48:06',0,1),
(849,1,3,'e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29','2026-02-03 08:48:06',0,1),
(849,1,4,'ebc60d18-09c0-400f-8c1f-2f48bd3a0b42','2026-02-03 08:48:06',0,1),
(849,1,6,'6b2619db-9295-4ee6-b7b9-fbb64c012746','2026-02-03 08:48:06',0,1),
(867,1,3,'71564ec2-e644-438f-834f-491192e8b8be','2026-03-31 09:58:11',0,1),
(867,1,3,'729977b5-e42b-44bc-b4c2-3300364e9e1d','2026-03-20 10:03:05',0,1),
(867,1,3,'e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29','2026-03-26 07:42:36',0,1),
(867,1,4,'c052b28d-47e9-46d9-9fa5-bc840960e6e7','2026-04-16 12:10:18',0,1),
(867,1,4,'ebc60d18-09c0-400f-8c1f-2f48bd3a0b42','2026-04-16 12:10:18',0,1),
(867,1,6,'6b2619db-9295-4ee6-b7b9-fbb64c012746','2026-04-17 12:19:22',0,1),
(887,1,3,'14c2af89-da53-4d01-ae06-433c386d36c3','2026-02-08 09:14:32',0,1),
(887,1,3,'7185c98c-c9bb-46f3-b785-e1e137bf4fce','2026-02-08 09:14:32',0,1),
(887,1,4,'4c134696-2755-4438-9b8a-5b95d32d3cb6','2026-02-08 09:14:32',0,1),
(887,1,5,'59d47b20-e597-4c63-8a0a-700e4fd4e0b1','2026-02-08 09:14:32',0,1),
(887,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-17 12:13:22',0,1),
(887,1,46,'52f962b8-3d4a-4f5e-8e56-eb9108a237b7','2026-02-08 09:14:32',0,1),
(903,1,3,'3686df1e-4be2-483f-ab92-1295ff5058c9','2026-03-19 23:23:38',0,1),
(903,1,3,'54b74647-3f1e-420b-b2db-4e61ada3b6d9','2026-03-19 23:23:38',0,1),
(903,1,3,'71564ec2-e644-438f-834f-491192e8b8be','2026-04-02 09:00:45',0,1),
(903,1,3,'729977b5-e42b-44bc-b4c2-3300364e9e1d','2026-03-20 12:05:00',0,1),
(903,1,3,'e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29','2026-04-02 08:57:51',0,1),
(903,1,4,'c052b28d-47e9-46d9-9fa5-bc840960e6e7','2026-03-19 23:23:38',0,1),
(903,1,4,'ebc60d18-09c0-400f-8c1f-2f48bd3a0b42','2026-03-26 08:36:59',0,1),
(903,1,6,'6b2619db-9295-4ee6-b7b9-fbb64c012746','2026-03-19 23:23:38',0,1),
(912,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-20 19:49:42',0,1),
(918,1,3,'12def3da-8ca1-48fa-891d-c3798b3b46e9','2026-02-21 15:05:44',0,1),
(918,1,4,'17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4','2026-02-21 15:05:57',0,1),
(918,1,8,'238ce99e-fad8-4e55-b39c-58e5e5704123','2026-02-21 15:05:21',0,1),
(1098,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-25 17:43:35',0,1),
(1098,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-02-21 22:44:00',0,1),
(1098,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-02-21 22:48:16',0,1),
(1098,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-24 15:27:00',0,1),
(1099,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:48:25',0,1),
(1099,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:48:30',0,1),
(1100,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:49:19',0,1),
(1100,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:49:24',0,1),
(1101,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:49:34',0,1),
(1101,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:49:36',0,1),
(1102,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:49:43',0,1),
(1102,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:49:45',0,1),
(1108,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-02-21 22:50:13',0,1),
(1108,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-02-21 22:50:44',0,1),
(1108,1,3,'9287da5b-f2ab-477a-beb5-7dea375cd6a5','2026-02-21 22:56:39',0,1),
(1108,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-02-21 22:50:55',0,1),
(1108,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-02-21 22:56:38',0,1),
(1109,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:51:01',0,1),
(1109,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:51:06',0,1),
(1110,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:51:25',0,1),
(1110,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:51:26',0,1),
(1111,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:51:39',0,1),
(1111,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:51:42',0,1),
(1112,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:51:52',0,1),
(1112,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:51:55',0,1),
(1118,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-02-21 22:57:25',0,1),
(1118,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-02-21 22:57:33',0,1),
(1118,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-02-21 22:57:36',0,1),
(1118,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-25 17:48:36',0,1),
(1119,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:58:18',0,1),
(1119,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:58:21',0,1),
(1120,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:58:29',0,1),
(1120,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:58:30',0,1),
(1121,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:58:38',0,1),
(1121,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:58:40',0,1),
(1122,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:58:47',0,1),
(1122,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:58:48',0,1),
(1128,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-02-21 22:59:03',0,1),
(1128,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-02-21 22:59:11',0,1),
(1128,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-02-21 22:59:17',0,1),
(1128,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-02-21 22:59:14',0,1),
(1129,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-02-21 22:59:19',0,1),
(1129,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 22:59:22',0,1),
(1132,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-27 13:24:23',0,1),
(1132,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-02-21 23:00:00',0,1),
(1132,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 13:23:57',0,1),
(1132,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-02-21 23:00:03',0,1),
(1133,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:23:57',0,1),
(1133,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:23:57',0,1),
(1286,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 10:50:16',0,1),
(1286,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-02-22 00:42:17',0,1),
(1367,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-04-02 08:42:06',0,1),
(1367,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-02 08:54:46',0,1),
(1367,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-19 23:40:52',0,1),
(1367,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-19 23:40:52',0,1),
(1367,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-03-19 23:40:52',0,1),
(1367,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-19 23:40:52',0,1),
(1367,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-03 14:10:18',0,1),
(1367,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 23:40:52',0,1),
(1367,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-02-22 22:19:04',0,1),
(1367,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-04-02 08:49:29',0,1),
(1385,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-19 23:40:52',0,1),
(1385,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-19 23:40:52',0,1),
(1407,1,3,'014f7791-0f8d-4cf9-827e-dca775844565','2026-03-26 10:00:59',0,1),
(1407,1,3,'04d35d3e-d4e0-4078-ac6c-56439f578a3d','2026-03-20 20:22:43',0,1),
(1407,1,3,'60bead59-0787-4d9e-acfb-2dc6616c4bd4','2026-03-20 20:22:43',0,1),
(1407,1,5,'23d55abf-74ce-4f37-b104-9a83f6cc7fbc','2026-03-26 10:00:59',0,1),
(1407,1,20,'46060fbb-82a5-47bd-b9a6-c27b7741d13d','2026-03-20 20:22:43',0,1),
(1407,1,39,'f91f0a1e-6ec6-4c0e-9db3-434b462d1df8','2026-03-20 20:22:43',0,1),
(1424,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-02-24 14:39:56',0,1),
(1425,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-02-24 14:40:04',0,1),
(1425,1,3,'f6773126-ca9b-4379-9aa4-35fdc0de9bbd','2026-02-24 14:40:04',0,1),
(1425,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-02-24 14:40:04',0,1),
(1951,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:26:08',0,1),
(1951,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:18:24',0,1),
(1951,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-30 18:01:34',0,1),
(1952,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-04-06 21:12:07',0,1),
(1952,1,3,'5db102a4-8437-416e-be95-5eab08c6ded8','2026-03-13 12:11:52',0,1),
(1952,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:25:24',0,1),
(1952,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-16 19:30:28',0,1),
(1952,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-17 10:08:43',0,1),
(1952,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:29:55',0,1),
(1953,1,3,'27981bad-5628-40c6-8263-ab2118bca482','2026-03-16 19:30:28',0,1),
(1953,1,64,'707b0270-058e-4815-8353-a09c723e049b','2026-03-16 19:30:28',0,1),
(1953,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-16 21:39:46',0,1),
(1957,1,3,'0f7cd089-87a8-4797-9e78-54d87e5faefd','2026-03-16 19:30:28',0,1),
(1957,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-16 19:30:28',0,1),
(1958,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-16 19:53:23',0,1),
(1958,1,3,'f8e6258b-90c5-4137-bace-60c62639da4a','2026-03-16 21:40:57',0,1),
(1958,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-16 19:53:23',0,1),
(1958,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 21:12:07',0,1),
(1964,1,2,'118194fa-ddcc-47a9-a830-ee1ba1c92a86','2026-03-16 21:36:18',0,1),
(1964,1,3,'b813f809-47c0-4f2e-9d84-af3f38d219d8','2026-03-16 19:53:23',0,1),
(1964,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-20 18:17:00',0,1),
(1964,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-06 21:12:07',0,1),
(1965,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:46:03',0,1),
(1965,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:53:08',0,1),
(1966,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-16 20:02:49',0,1),
(1966,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-16 20:02:49',0,1),
(1966,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 10:46:45',0,1),
(1977,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:55:10',0,1),
(1977,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:18:24',0,1),
(1977,1,69,'37c1e4a7-843a-47db-a135-c26b80d0a6f7','2026-03-13 13:20:35',0,1),
(1977,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:40:56',0,1),
(1977,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:18:24',0,1),
(2020,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-16 19:53:23',0,1),
(2020,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-16 19:53:23',0,1),
(2020,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:18:24',0,1),
(2020,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-16 19:53:23',0,1),
(2020,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-16 20:22:17',0,1),
(2020,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-16 19:53:23',0,1),
(2020,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-16 20:22:17',0,1),
(2020,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-16 19:53:23',0,1),
(2020,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-13 10:46:45',0,1),
(2020,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-03-16 19:53:23',0,1),
(2020,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-06 21:12:07',0,1),
(2020,1,4,'aa302180-85b3-4ce4-a24d-7851a05f80b3','2026-03-16 19:53:23',0,1),
(2020,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-16 19:53:23',0,1),
(2020,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-16 21:36:18',0,1),
(2020,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-16 21:36:18',0,1),
(2020,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-16 19:53:23',0,1),
(2061,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-13 13:18:52',0,1),
(2061,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-13 13:18:52',0,1),
(3086,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:23',0,1),
(3086,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 11:27:01',0,1),
(3087,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-03-03 08:57:53',0,1),
(3087,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-03 08:57:53',0,1),
(3087,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-03 08:57:53',0,1),
(3088,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-13 11:42:34',0,1),
(3088,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-13 11:42:34',0,1),
(3088,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-16 22:29:01',0,1),
(3088,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-16 22:29:01',0,1),
(3088,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-16 22:29:01',0,1),
(3088,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-13 11:42:34',0,1),
(3088,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 22:43:23',0,1),
(3088,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-13 11:42:34',0,1),
(3089,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-16 22:29:01',0,1),
(3089,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-16 22:40:44',0,1),
(3089,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 23:03:27',0,1),
(3089,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-16 22:29:01',0,1),
(3089,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-16 22:29:01',0,1),
(3089,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-03-13 11:40:37',0,1),
(3089,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-16 14:33:58',0,1),
(3089,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 14:33:58',0,1),
(3089,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-13 11:34:18',0,1),
(3089,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 22:43:23',0,1),
(3089,1,70,'fb812f21-7614-47e0-b55a-8ed5607b5f4b','2026-03-16 22:29:01',0,1),
(3090,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-13 11:49:10',0,1),
(3090,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-13 11:49:10',0,1),
(3090,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-16 22:29:01',0,1),
(3090,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-16 22:29:01',0,1),
(3090,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 14:33:58',0,1),
(3090,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-16 22:29:01',0,1),
(3090,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 14:33:58',0,1),
(3090,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 22:43:23',0,1),
(3090,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 22:43:23',0,1),
(3090,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-03-13 11:58:18',0,1),
(3093,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-16 14:33:58',0,1),
(3093,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-19 22:43:23',0,1),
(3093,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 14:56:08',0,1),
(3102,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:57:14',0,1),
(3102,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:05:23',0,1),
(3102,1,3,'da0f7ef2-9f36-432c-b279-50a04db13c9f','2026-03-13 12:07:08',0,1),
(3102,1,69,'37c1e4a7-843a-47db-a135-c26b80d0a6f7','2026-03-13 12:06:39',0,1),
(3102,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:41:42',0,1),
(3102,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:05:23',0,1),
(3116,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 22:43:23',0,1),
(3116,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(3116,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3117,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-13 12:04:50',0,1),
(3117,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(3117,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3118,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 22:43:23',0,1),
(3118,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:56:08',0,1),
(3118,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3119,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-13 12:04:50',0,1),
(3119,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(3119,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3120,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-13 12:04:50',0,1),
(3120,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(3120,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3121,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 22:43:23',0,1),
(3121,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(3121,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3122,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 22:43:23',0,1),
(3122,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(3122,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 22:43:23',0,1),
(3317,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-03 10:24:16',0,1),
(3333,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-03 10:25:22',0,1),
(3552,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:30:25',0,1),
(3555,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:31:02',0,1),
(3558,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:34:18',0,1),
(3562,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:35:42',0,1),
(3566,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:36:45',0,1),
(3571,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:39:15',0,1),
(3575,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:39:40',0,1),
(3579,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:40:37',0,1),
(3583,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:42:34',0,1),
(3587,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:43:07',0,1),
(3591,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:43:37',0,1),
(3595,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:46:15',0,1),
(3598,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:46:36',0,1),
(3601,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:49:10',0,1),
(3605,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:50:00',0,1),
(3609,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:50:32',0,1),
(3613,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:51:33',0,1),
(3617,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:52:02',0,1),
(3621,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:52:28',0,1),
(3625,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:53:11',0,1),
(3629,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:55:42',0,1),
(3633,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:55:57',0,1),
(3637,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 11:58:18',0,1),
(3649,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 12:04:50',0,1),
(3660,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 12:06:39',0,1),
(3664,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-13 12:07:08',0,1),
(3707,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 12:22:20',0,1),
(3711,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 12:22:51',0,1),
(3715,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 12:25:10',0,1),
(3719,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 12:25:43',0,1),
(3723,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 12:27:05',0,1),
(3727,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:05:35',0,1),
(3731,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:06:01',0,1),
(3737,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:14:19',0,1),
(3741,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:15:15',0,1),
(3756,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:18:52',0,1),
(3771,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:20:35',0,1),
(3775,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:25:08',0,1),
(3787,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-13 13:26:17',0,1),
(3793,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:53:37',0,1),
(3811,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:53:37',0,1),
(3811,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:53:37',0,1),
(3824,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:40:42',0,1),
(3825,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-13 13:44:01',0,1),
(3826,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-13 13:45:43',0,1),
(3827,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-13 13:45:58',0,1),
(3827,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-13 13:45:58',0,1),
(3847,1,3,'0f7cd089-87a8-4797-9e78-54d87e5faefd','2026-03-16 19:25:00',0,1),
(3847,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-16 19:25:00',0,1),
(3847,1,3,'4c4b22bb-5fe8-416c-8823-615a5318a82f','2026-03-16 19:25:00',0,1),
(3847,1,3,'7b421ddd-f8ff-42a3-8082-c778636c4b86','2026-03-16 19:25:00',0,1),
(3857,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 19:30:28',0,1),
(3878,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 19:53:23',0,1),
(3899,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 20:02:49',0,1),
(3906,1,3,'1ae5caab-db45-4566-bedb-13220889b058','2026-03-16 20:19:17',0,1),
(3906,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 21:12:06',0,1),
(3918,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 21:12:06',0,1),
(3919,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 20:19:17',0,1),
(3929,1,3,'1ae5caab-db45-4566-bedb-13220889b058','2026-03-16 20:22:17',0,1),
(3929,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 21:12:06',0,1),
(3937,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 21:12:06',0,1),
(3938,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 20:22:17',0,1),
(3947,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 20:27:20',0,1),
(3951,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 20:28:39',0,1),
(3960,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 21:36:18',0,1),
(3971,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 21:39:46',0,1),
(3979,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-16 21:40:56',0,1),
(3992,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-16 22:29:01',0,1),
(4001,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-16 22:40:44',0,1),
(4007,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-16 22:42:09',0,1),
(4011,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-16 22:43:31',0,1),
(4016,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-17 10:08:43',0,1),
(4021,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-17 11:28:19',0,1),
(4024,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-17 12:52:41',0,1),
(4026,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:24:56',0,1),
(4026,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:15:07',0,1),
(4026,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-18 11:20:58',0,1),
(4027,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-03-18 11:20:58',0,1),
(4027,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:23:55',0,1),
(4027,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-18 11:20:58',0,1),
(4027,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-18 11:20:58',0,1),
(4027,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:28:26',0,1),
(4028,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-18 11:20:58',0,1),
(4029,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 11:20:58',0,1),
(4030,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 11:20:58',0,1),
(4031,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 11:20:58',0,1),
(4032,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 11:20:58',0,1),
(4033,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-18 11:20:58',0,1),
(4033,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-04-06 13:44:39',0,1),
(4033,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 13:44:39',0,1),
(4038,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-18 16:29:25',0,1),
(4038,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-18 16:29:25',0,1),
(4038,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:15:07',0,1),
(4038,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-18 16:29:25',0,1),
(4038,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-18 16:29:25',0,1),
(4038,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-18 16:29:25',0,1),
(4038,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-18 22:34:40',0,1),
(4038,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-18 16:29:25',0,1),
(4038,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-18 16:29:25',0,1),
(4038,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-18 22:34:40',0,1),
(4038,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-18 16:29:25',0,1),
(4038,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-18 16:29:25',0,1),
(4038,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-18 11:20:58',0,1),
(4038,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-18 11:20:58',0,1),
(4038,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-18 16:29:25',0,1),
(4039,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-18 22:34:40',0,1),
(4039,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-06 13:44:39',0,1),
(4040,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:47:54',0,1),
(4040,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:51:18',0,1),
(4041,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-18 22:34:40',0,1),
(4041,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-26 08:58:14',0,1),
(4041,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 12:44:41',0,1),
(4042,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:44:41',0,1),
(4043,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:29:19',0,1),
(4044,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:44:41',0,1),
(4045,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:29:19',0,1),
(4046,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:29:19',0,1),
(4047,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:29:19',0,1),
(4048,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:29:19',0,1),
(4049,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 18:29:19',0,1),
(4049,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:29:19',0,1),
(4050,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:44:41',0,1),
(4051,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 18:29:19',0,1),
(4051,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:44:41',0,1),
(4052,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:44:41',0,1),
(4053,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:49:38',0,1),
(4053,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:15:07',0,1),
(4053,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-04-06 13:44:39',0,1),
(4053,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 13:44:39',0,1),
(4108,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 11:20:58',0,1),
(4108,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-18 11:20:58',0,1),
(4153,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 12:09:17',0,1),
(4171,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 16:28:35',0,1),
(4174,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 16:29:26',0,1),
(4184,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 16:30:09',0,1),
(4188,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 16:30:45',0,1),
(4192,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 16:31:16',0,1),
(4199,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 22:34:40',0,1),
(4203,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:26:23',0,1),
(4203,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:15:28',0,1),
(4204,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:24:07',0,1),
(4204,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-18 22:37:29',0,1),
(4204,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-18 22:37:29',0,1),
(4204,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:28:38',0,1),
(4205,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-18 22:38:28',0,1),
(4206,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 22:38:28',0,1),
(4207,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 22:38:28',0,1),
(4208,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 22:38:28',0,1),
(4209,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 22:38:28',0,1),
(4210,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-18 22:41:44',0,1),
(4210,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-18 22:41:44',0,1),
(4210,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-13 12:47:41',0,1),
(4211,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-18 22:41:44',0,1),
(4211,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-18 22:41:44',0,1),
(4212,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-18 22:41:44',0,1),
(4212,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-18 22:41:44',0,1),
(4213,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-18 22:41:44',0,1),
(4213,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-18 22:41:44',0,1),
(4214,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-18 22:41:44',0,1),
(4214,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-13 12:47:41',0,1),
(4215,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-18 22:49:06',0,1),
(4215,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:15:28',0,1),
(4215,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-18 22:49:06',0,1),
(4215,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-18 22:49:06',0,1),
(4215,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-18 22:49:06',0,1),
(4215,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-18 22:49:06',0,1),
(4215,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-18 22:49:06',0,1),
(4216,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-13 12:54:27',0,1),
(4217,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:46:27',0,1),
(4217,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:52:14',0,1),
(4218,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-13 12:48:59',0,1),
(4218,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-18 23:00:21',0,1),
(4218,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 12:54:27',0,1),
(4220,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:21',0,1),
(4220,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:34:52',0,1),
(4220,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:21',0,1),
(4221,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:22',0,1),
(4221,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:34:52',0,1),
(4221,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:22',0,1),
(4223,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:22',0,1),
(4223,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:34:52',0,1),
(4223,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:22',0,1),
(4224,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:22',0,1),
(4224,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:34:52',0,1),
(4224,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:22',0,1),
(4225,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:22',0,1),
(4225,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:34:52',0,1),
(4225,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:22',0,1),
(4226,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:22',0,1),
(4226,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:34:52',0,1),
(4226,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:22',0,1),
(4227,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:00:22',0,1),
(4227,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:50:11',0,1),
(4227,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:00:22',0,1),
(4230,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-13 12:47:41',0,1),
(4230,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:15:28',0,1),
(4230,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:41:04',0,1),
(4230,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:15:28',0,1),
(4284,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 23:00:22',0,1),
(4301,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 23:04:29',0,1),
(4303,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:23:52',0,1),
(4303,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:16:22',0,1),
(4303,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-30 18:31:48',0,1),
(4304,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:24:16',0,1),
(4304,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-18 23:26:10',0,1),
(4304,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-18 23:26:10',0,1),
(4304,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:28:49',0,1),
(4305,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-04-06 21:26:56',0,1),
(4306,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-04-06 21:26:56',0,1),
(4308,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 23:26:10',0,1),
(4309,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-18 23:26:10',0,1),
(4310,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-18 23:26:10',0,1),
(4310,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-04-06 21:26:56',0,1),
(4310,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 21:26:56',0,1),
(4311,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-18 23:26:10',0,1),
(4311,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-18 23:26:10',0,1),
(4315,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-18 23:26:10',0,1),
(4315,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:16:21',0,1),
(4315,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-18 23:26:10',0,1),
(4315,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-18 23:26:10',0,1),
(4315,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-18 23:26:10',0,1),
(4315,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-18 23:26:10',0,1),
(4315,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-06 21:26:56',0,1),
(4315,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-06 21:26:56',0,1),
(4315,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-06 21:26:56',0,1),
(4315,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-18 23:26:10',0,1),
(4315,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-18 23:26:10',0,1),
(4315,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-18 23:26:10',0,1),
(4316,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-06 21:26:56',0,1),
(4317,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:46:49',0,1),
(4317,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:51:41',0,1),
(4318,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-13 12:27:25',0,1),
(4318,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-13 12:27:25',0,1),
(4318,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 13:57:12',0,1),
(4319,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4319,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 13:57:12',0,1),
(4319,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4320,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4320,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4320,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4321,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4321,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4321,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4322,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4322,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4322,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4323,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4323,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 13:57:12',0,1),
(4323,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4324,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4324,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4324,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4325,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4325,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4325,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4326,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4326,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4326,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4327,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-18 23:30:34',0,1),
(4327,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:41:36',0,1),
(4327,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-18 23:30:34',0,1),
(4328,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 21:26:55',0,1),
(4328,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:16:22',0,1),
(4328,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:40:08',0,1),
(4328,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 21:26:55',0,1),
(4376,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 23:26:10',0,1),
(4376,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-18 23:26:10',0,1),
(4402,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-18 23:30:34',0,1),
(4418,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:24:32',0,1),
(4418,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:18',0,1),
(4418,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 10:17:14',0,1),
(4419,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:24:44',0,1),
(4419,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-19 10:17:54',0,1),
(4419,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-19 10:17:54',0,1),
(4419,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:29:19',0,1),
(4420,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-19 10:18:52',0,1),
(4421,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 10:18:52',0,1),
(4422,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 10:18:52',0,1),
(4423,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 10:18:52',0,1),
(4424,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 10:18:52',0,1),
(4425,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-04-06 15:44:54',0,1),
(4425,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-04-06 15:44:54',0,1),
(4425,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 15:54:53',0,1),
(4426,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 10:21:27',0,1),
(4426,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 10:21:27',0,1),
(4427,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 10:21:27',0,1),
(4427,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 10:21:27',0,1),
(4428,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 10:21:27',0,1),
(4428,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 10:21:27',0,1),
(4429,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 10:21:27',0,1),
(4429,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 10:21:27',0,1),
(4430,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-19 10:24:52',0,1),
(4430,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:17:18',0,1),
(4430,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-19 10:24:52',0,1),
(4430,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 10:24:52',0,1),
(4430,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-19 10:24:52',0,1),
(4430,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-19 10:24:52',0,1),
(4430,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-13 13:01:09',0,1),
(4430,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 10:57:48',0,1),
(4430,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 10:57:48',0,1),
(4431,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-13 13:01:09',0,1),
(4432,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:45:01',0,1),
(4432,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:52:24',0,1),
(4433,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-19 10:32:06',0,1),
(4433,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-19 10:32:06',0,1),
(4433,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 13:01:09',0,1),
(4435,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 10:32:06',0,1),
(4435,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:51:27',0,1),
(4435,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 10:32:06',0,1),
(4436,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 10:32:06',0,1),
(4436,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:51:27',0,1),
(4436,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 10:32:06',0,1),
(4445,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:54:27',0,1),
(4445,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:17:18',0,1),
(4445,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:40:16',0,1),
(4445,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 15:41:30',0,1),
(4502,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:25:19',0,1),
(4502,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:28:02',0,1),
(4502,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 19:41:04',0,1),
(4503,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:25:05',0,1),
(4503,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-19 15:42:33',0,1),
(4503,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-19 15:42:33',0,1),
(4503,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:29:38',0,1),
(4504,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-19 15:43:23',0,1),
(4505,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 15:43:23',0,1),
(4506,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 15:43:23',0,1),
(4507,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 15:43:23',0,1),
(4508,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 15:43:23',0,1),
(4509,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-19 15:45:51',0,1),
(4509,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-19 15:45:51',0,1),
(4509,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 20:58:46',0,1),
(4510,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 15:45:51',0,1),
(4510,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 15:45:51',0,1),
(4511,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 15:45:51',0,1),
(4511,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 20:58:45',0,1),
(4512,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 15:45:51',0,1),
(4512,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 15:45:51',0,1),
(4513,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 15:45:51',0,1),
(4513,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 15:45:51',0,1),
(4514,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-19 15:50:16',0,1),
(4514,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:17:50',0,1),
(4514,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-19 15:50:16',0,1),
(4514,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-19 15:50:16',0,1),
(4514,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 15:50:16',0,1),
(4514,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-19 15:50:16',0,1),
(4514,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-19 15:50:16',0,1),
(4514,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-19 15:50:16',0,1),
(4514,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-20 19:28:02',0,1),
(4514,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 15:50:16',0,1),
(4514,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 15:50:16',0,1),
(4514,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-19 15:50:16',0,1),
(4515,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-06 20:58:46',0,1),
(4516,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:49:51',0,1),
(4516,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:52:45',0,1),
(4517,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-19 15:56:52',0,1),
(4517,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-19 15:56:52',0,1),
(4517,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 09:34:36',0,1),
(4518,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4518,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:05:26',0,1),
(4518,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4519,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4519,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:05:26',0,1),
(4519,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4520,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4520,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:14:32',0,1),
(4520,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4521,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4521,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:14:32',0,1),
(4521,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4522,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4522,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:34:36',0,1),
(4522,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4523,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4523,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:14:32',0,1),
(4523,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4524,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 09:34:36',0,1),
(4524,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:34:36',0,1),
(4524,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4525,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4525,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:14:32',0,1),
(4525,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4526,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4526,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:14:32',0,1),
(4526,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4527,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 15:56:52',0,1),
(4527,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:14:32',0,1),
(4527,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 15:56:52',0,1),
(4529,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:54:51',0,1),
(4529,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:17:50',0,1),
(4529,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:40:25',0,1),
(4529,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-17 16:33:14',0,1),
(4533,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-19 10:57:48',0,1),
(4593,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:25:39',0,1),
(4593,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:35',0,1),
(4593,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-30 18:01:13',0,1),
(4594,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:24:54',0,1),
(4594,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-19 18:36:32',0,1),
(4594,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-19 16:01:17',0,1),
(4594,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:29:29',0,1),
(4595,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-19 16:04:27',0,1),
(4596,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 16:04:27',0,1),
(4597,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 16:04:27',0,1),
(4598,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 16:04:27',0,1),
(4599,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 16:04:27',0,1),
(4600,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-19 16:30:24',0,1),
(4600,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-19 16:30:24',0,1),
(4600,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-19 16:30:24',0,1),
(4601,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 16:30:24',0,1),
(4601,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 16:30:24',0,1),
(4602,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 16:30:24',0,1),
(4602,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 16:30:24',0,1),
(4603,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 16:30:24',0,1),
(4603,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 16:30:24',0,1),
(4604,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 16:30:24',0,1),
(4604,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-19 16:30:24',0,1),
(4605,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-19 16:30:24',0,1),
(4605,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:17:34',0,1),
(4605,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-19 16:30:24',0,1),
(4605,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-19 16:30:24',0,1),
(4605,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 16:30:24',0,1),
(4605,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-19 16:30:24',0,1),
(4605,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-06 20:27:47',0,1),
(4605,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-06 20:27:47',0,1),
(4605,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-06 20:27:47',0,1),
(4605,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 16:30:24',0,1),
(4605,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 16:30:24',0,1),
(4605,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-19 16:30:24',0,1),
(4606,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-06 20:27:47',0,1),
(4607,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:45:27',0,1),
(4607,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:52:34',0,1),
(4608,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-06 20:27:47',0,1),
(4608,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-06 20:27:47',0,1),
(4608,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 09:13:54',0,1),
(4609,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4609,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:57:20',0,1),
(4609,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4610,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4610,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:57:20',0,1),
(4610,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4611,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4611,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:13:54',0,1),
(4611,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4612,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4612,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:57:20',0,1),
(4612,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4613,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4613,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:57:20',0,1),
(4613,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4614,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4614,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:57:20',0,1),
(4614,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4615,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 16:30:24',0,1),
(4615,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:57:20',0,1),
(4615,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 16:30:24',0,1),
(4620,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:54:39',0,1),
(4620,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:17:34',0,1),
(4620,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:39:27',0,1),
(4620,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 20:27:46',0,1),
(4681,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-19 16:30:24',0,1),
(4700,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-19 18:36:32',0,1),
(4702,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:24:07',0,1),
(4702,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:00',0,1),
(4702,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 19:07:56',0,1),
(4703,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:24:36',0,1),
(4703,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-19 19:07:56',0,1),
(4703,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-19 19:07:56',0,1),
(4703,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:29:09',0,1),
(4704,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-04-13 09:29:39',0,1),
(4705,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-04-13 09:29:39',0,1),
(4706,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:07:56',0,1),
(4708,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:07:56',0,1),
(4709,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-04-15 17:20:20',0,1),
(4709,1,3,'f8e6258b-90c5-4137-bace-60c62639da4a','2026-04-15 17:20:20',0,1),
(4709,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-04-15 17:26:19',0,1),
(4709,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-15 17:26:19',0,1),
(4714,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-19 19:07:56',0,1),
(4714,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:17:00',0,1),
(4714,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-19 19:07:56',0,1),
(4714,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-19 19:07:56',0,1),
(4714,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 19:07:56',0,1),
(4714,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-19 19:07:56',0,1),
(4714,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-13 09:29:39',0,1),
(4714,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-19 19:07:56',0,1),
(4714,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-13 09:22:47',0,1),
(4714,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 19:07:56',0,1),
(4714,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 19:07:56',0,1),
(4714,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-19 19:07:56',0,1),
(4715,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-15 17:20:20',0,1),
(4716,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:43:19',0,1),
(4716,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:52:03',0,1),
(4717,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-19 19:07:57',0,1),
(4717,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-19 19:07:57',0,1),
(4717,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 09:29:39',0,1),
(4719,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 19:07:57',0,1),
(4719,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:04:02',0,1),
(4719,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 19:07:57',0,1),
(4720,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 19:07:57',0,1),
(4720,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:04:02',0,1),
(4720,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 19:07:57',0,1),
(4722,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 19:07:57',0,1),
(4722,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:16:00',0,1),
(4722,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 19:07:57',0,1),
(4723,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 19:07:57',0,1),
(4723,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:17:20',0,1),
(4723,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 19:07:57',0,1),
(4725,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:54:13',0,1),
(4725,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:17:00',0,1),
(4725,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:39:36',0,1),
(4725,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 14:05:50',0,1),
(4780,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:04:02',0,1),
(4781,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:04:02',0,1),
(4782,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:04:02',0,1),
(4783,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-19 19:07:57',0,1),
(4783,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 19:07:57',0,1),
(4805,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:16:43',0,1),
(4805,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 19:23:50',0,1),
(4806,1,3,'5db102a4-8437-416e-be95-5eab08c6ded8','2026-04-17 16:23:19',0,1),
(4806,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:24:25',0,1),
(4806,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-19 19:15:03',0,1),
(4806,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-19 19:15:03',0,1),
(4806,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:28:58',0,1),
(4807,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-19 19:15:03',0,1),
(4808,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:15:03',0,1),
(4809,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:15:03',0,1),
(4810,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:15:03',0,1),
(4811,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:15:03',0,1),
(4812,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-19 19:15:03',0,1),
(4812,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-04-06 14:05:30',0,1),
(4812,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 14:05:30',0,1),
(4813,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-19 19:23:50',0,1),
(4813,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:16:43',0,1),
(4813,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-04-06 14:05:30',0,1),
(4813,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 19:23:50',0,1),
(4813,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-06 14:05:30',0,1),
(4813,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-19 19:23:50',0,1),
(4813,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-06 14:05:30',0,1),
(4813,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 19:23:50',0,1),
(4813,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 19:23:50',0,1),
(4814,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-04-06 14:05:30',0,1),
(4815,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-26 08:43:54',0,1),
(4815,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:51:52',0,1),
(4816,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-20 20:12:09',0,1),
(4816,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-20 20:12:09',0,1),
(4816,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 09:36:40',0,1),
(4817,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4817,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:36:40',0,1),
(4818,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4818,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4819,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4819,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4820,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4820,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4821,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4821,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4822,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4822,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4823,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4823,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4824,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4824,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4825,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4825,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4826,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 20:12:09',0,1),
(4826,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 20:12:09',0,1),
(4827,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:54:01',0,1),
(4827,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:16:43',0,1),
(4827,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:39:47',0,1),
(4827,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 14:05:30',0,1),
(4869,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 14:05:30',0,1),
(4873,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-19 19:15:03',0,1),
(4890,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-19 19:23:50',0,1),
(4890,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 19:23:50',0,1),
(4895,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 19:41:04',0,1),
(4896,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:18:06',0,1),
(4896,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 20:04:33',0,1),
(4897,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-04-17 12:25:15',0,1),
(4897,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-19 19:47:56',0,1),
(4897,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-19 19:47:56',0,1),
(4897,1,75,'a18c2ab9-a644-4e1d-80a2-a5584326c2e4','2026-04-17 16:29:46',0,1),
(4898,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-04-06 20:30:42',0,1),
(4899,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-04-06 20:30:42',0,1),
(4900,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-04-06 20:30:42',0,1),
(4901,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:49:03',0,1),
(4902,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-19 19:49:03',0,1),
(4903,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-19 19:51:42',0,1),
(4903,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-19 19:51:42',0,1),
(4903,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-04-06 20:50:15',0,1),
(4904,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 19:51:42',0,1),
(4904,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 20:50:15',0,1),
(4905,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 19:51:42',0,1),
(4905,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 20:50:15',0,1),
(4906,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 19:51:42',0,1),
(4906,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 20:50:15',0,1),
(4907,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-19 19:51:42',0,1),
(4907,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-04-06 20:50:15',0,1),
(4908,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-04-20 19:18:06',0,1),
(4908,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 19:54:14',0,1),
(4908,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-06 20:53:52',0,1),
(4908,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-06 20:53:52',0,1),
(4908,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-19 19:54:14',0,1),
(4908,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-19 20:05:15',0,1),
(4908,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-19 20:05:15',0,1),
(4909,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-19 19:55:38',0,1),
(4911,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-19 20:01:29',0,1),
(4911,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-19 20:01:29',0,1),
(4911,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 10:36:07',0,1),
(4912,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4912,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4912,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4913,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4913,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4913,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4914,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4914,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4914,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4915,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4915,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:36:07',0,1),
(4915,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4916,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4916,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4916,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4917,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4917,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:36:07',0,1),
(4917,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4918,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:36:07',0,1),
(4918,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:36:07',0,1),
(4918,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4919,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4919,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4919,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4920,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4920,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4920,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4921,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-19 20:01:29',0,1),
(4921,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 18:23:57',0,1),
(4921,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-19 20:01:29',0,1),
(4923,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:55:01',0,1),
(4923,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:18:06',0,1),
(4923,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:40:34',0,1),
(4923,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-06 20:30:42',0,1),
(4982,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-19 20:07:42',0,1),
(5087,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:33:57',0,1),
(5088,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-19 22:43:23',0,1),
(5105,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-19 22:45:36',0,1),
(5108,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:09:20',0,1),
(5108,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 11:27:18',0,1),
(5109,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 23:02:46',0,1),
(5109,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-19 23:02:46',0,1),
(5109,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 14:17:04',0,1),
(5109,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-01 10:07:09',0,1),
(5110,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-19 23:02:46',0,1),
(5110,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-19 23:02:46',0,1),
(5110,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 10:08:29',0,1),
(5111,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 14:17:04',0,1),
(5111,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 14:17:04',0,1),
(5111,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 10:08:29',0,1),
(5113,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-16 14:17:04',0,1),
(5113,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-01 14:56:05',0,1),
(5113,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 14:17:04',0,1),
(5114,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 14:56:05',0,1),
(5114,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 14:56:05',0,1),
(5117,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 14:56:05',0,1),
(5118,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 14:56:05',0,1),
(5119,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 14:56:05',0,1),
(5119,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 14:56:05',0,1),
(5120,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 14:56:05',0,1),
(5120,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 14:56:05',0,1),
(5122,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:57:25',0,1),
(5122,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:09:20',0,1),
(5122,1,71,'02bbffce-9901-4d78-8735-e9ffcf43516d','2026-03-26 08:41:34',0,1),
(5122,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:09:20',0,1),
(5143,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-19 23:02:46',0,1),
(5149,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-19 23:03:27',0,1),
(5162,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-19 23:23:38',0,1),
(5166,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-19 23:23:58',0,1),
(5178,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-04-02 08:49:29',0,1),
(5178,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 12:20:07',0,1),
(5179,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-19 23:40:52',0,1),
(5192,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2026-04-17 12:19:21',0,1),
(5237,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 10:12:38',0,1),
(5257,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 10:46:55',0,1),
(5266,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 10:50:16',0,1),
(5369,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-20 12:05:01',0,1),
(5391,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 18:05:19',0,1),
(5391,1,17,'46e8d394-7104-4044-85de-cc44d6cab29b','2026-03-23 17:01:38',0,1),
(5397,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-20 18:00:13',0,1),
(5397,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-20 18:00:13',0,1),
(5397,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-20 17:49:51',0,1),
(5397,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-20 18:05:19',0,1),
(5397,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-20 18:00:13',0,1),
(5397,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-20 18:00:13',0,1),
(5397,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-20 18:00:13',0,1),
(5397,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-20 17:49:51',0,1),
(5397,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-20 17:49:51',0,1),
(5397,1,70,'fb812f21-7614-47e0-b55a-8ed5607b5f4b','2026-03-20 17:49:51',0,1),
(5398,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 17:24:58',0,1),
(5402,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 17:49:51',0,1),
(5405,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 18:05:03',0,1),
(5405,1,17,'46e8d394-7104-4044-85de-cc44d6cab29b','2026-03-23 17:02:10',0,1),
(5406,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-20 18:00:39',0,1),
(5406,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-20 18:00:39',0,1),
(5406,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-20 17:55:59',0,1),
(5406,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-20 18:05:02',0,1),
(5406,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-20 18:00:39',0,1),
(5406,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-20 17:55:59',0,1),
(5406,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-20 17:55:59',0,1),
(5406,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-20 18:00:39',0,1),
(5406,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-03-20 17:55:59',0,1),
(5412,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 17:55:59',0,1),
(5418,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 18:00:13',0,1),
(5423,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 18:00:39',0,1),
(5427,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 18:05:03',0,1),
(5432,1,7,'bb4602f1-c627-4a21-a59f-0b7e68875849','2026-03-20 18:05:19',0,1),
(5449,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:16:59',0,1),
(5476,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:23:57',0,1),
(5501,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:29:19',0,1),
(5525,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:34:52',0,1),
(5550,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:41:36',0,1),
(5567,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:51:27',0,1),
(5576,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 18:57:13',0,1),
(5580,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-20 19:03:00',0,1),
(5580,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-03-20 19:03:00',0,1),
(5580,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-20 19:03:00',0,1),
(5600,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 19:03:00',0,1),
(5617,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 19:05:26',0,1),
(5633,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 19:14:32',0,1),
(5657,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 19:57:20',0,1),
(5680,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 20:04:02',0,1),
(5709,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-20 20:12:09',0,1),
(5728,1,4,'de66f1b4-ca80-4ff2-a88f-8249af4521c1','2026-03-20 20:21:10',0,1),
(5732,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-20 20:22:43',0,1),
(5747,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-23 16:54:29',0,1),
(5750,1,17,'46e8d394-7104-4044-85de-cc44d6cab29b','2026-03-23 16:57:55',0,1),
(5752,1,17,'46e8d394-7104-4044-85de-cc44d6cab29b','2026-03-23 16:58:03',0,1),
(5754,1,17,'46e8d394-7104-4044-85de-cc44d6cab29b','2026-03-23 17:01:38',0,1),
(5756,1,17,'46e8d394-7104-4044-85de-cc44d6cab29b','2026-03-23 17:02:10',0,1),
(5760,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-24 15:26:21',0,1),
(5762,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-24 15:27:00',0,1),
(5765,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-25 11:41:07',0,1),
(5770,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-25 11:58:30',0,1),
(5770,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-25 11:58:30',0,1),
(5770,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-25 11:58:31',0,1),
(5772,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-25 11:59:03',0,1),
(5772,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-25 11:59:03',0,1),
(5772,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-25 11:59:08',0,1),
(5776,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-25 17:07:07',0,1),
(5778,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-25 17:09:02',0,1),
(5779,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-25 17:46:42',0,1),
(5779,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-25 17:38:36',0,1),
(5779,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-25 17:44:06',0,1),
(5781,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-25 17:42:59',0,1),
(5781,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-25 17:42:59',0,1),
(5784,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-25 17:43:34',0,1),
(5787,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-25 17:44:06',0,1),
(5788,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-25 17:45:23',0,1),
(5790,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-25 17:46:42',0,1),
(5792,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-25 17:48:36',0,1),
(5795,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-27 13:24:03',0,1),
(5795,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-31 09:25:43',0,1),
(5795,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-25 17:54:45',0,1),
(5846,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-26 08:36:59',0,1),
(5850,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:39:27',0,1),
(5854,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:39:36',0,1),
(5858,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:39:47',0,1),
(5862,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:39:57',0,1),
(5866,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:40:08',0,1),
(5870,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:40:16',0,1),
(5874,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:40:25',0,1),
(5878,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:40:34',0,1),
(5915,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:40:56',0,1),
(5919,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:41:04',0,1),
(5923,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:41:22',0,1),
(5927,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-26 08:41:34',0,1),
(5931,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-03-26 08:41:42',0,1),
(5935,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:43:19',0,1),
(5939,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:43:54',0,1),
(5943,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2026-03-26 08:52:55',0,1),
(5944,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:44:23',0,1),
(5949,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:45:01',0,1),
(5953,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:45:27',0,1),
(5957,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:46:03',0,1),
(5961,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:46:27',0,1),
(5965,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:46:49',0,1),
(5969,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:47:54',0,1),
(5973,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:49:51',0,1),
(5977,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:50:21',0,1),
(5981,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:51:05',0,1),
(5985,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:51:18',0,1),
(5989,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:51:41',0,1),
(5993,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:51:52',0,1),
(5997,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:52:03',0,1),
(6001,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:52:14',0,1),
(6005,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:52:24',0,1),
(6009,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:52:34',0,1),
(6013,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:52:45',0,1),
(6017,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:52:56',0,1),
(6021,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:53:08',0,1),
(6025,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:53:37',0,1),
(6034,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-26 08:58:14',0,1),
(6056,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-26 10:00:59',0,1),
(6060,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-26 10:01:24',0,1),
(6063,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:22:10',0,1),
(6065,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:23:33',0,1),
(6067,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:23:52',0,1),
(6069,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:24:07',0,1),
(6071,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:24:32',0,1),
(6073,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:24:56',0,1),
(6075,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:25:19',0,1),
(6077,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:25:39',0,1),
(6078,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:26:08',0,1),
(6080,1,3,'7a135f87-f576-4091-9795-9b0cd71f04fc','2026-03-26 10:26:23',0,1),
(6089,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-26 10:35:57',0,1),
(6095,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-26 10:36:18',0,1),
(6099,1,2,'90b06f70-ec9f-49d9-b838-cef50698ec38','2026-03-26 10:40:38',0,1),
(6099,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:40:38',0,1),
(6099,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:40:38',0,1),
(6099,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:40:38',0,1),
(6101,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:41:15',0,1),
(6101,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:41:15',0,1),
(6103,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:41:54',0,1),
(6103,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:41:54',0,1),
(6103,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:41:54',0,1),
(6105,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:42:34',0,1),
(6105,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:42:34',0,1),
(6105,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:42:34',0,1),
(6107,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:43:06',0,1),
(6109,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:44:18',0,1),
(6109,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:44:18',0,1),
(6111,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2026-03-26 10:45:00',0,1),
(6111,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2026-03-26 10:45:00',0,1),
(6113,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2026-03-26 10:46:59',0,1),
(6120,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-27 11:41:20',0,1),
(6128,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-27 11:42:35',0,1),
(6134,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-27 11:44:14',0,1),
(6138,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-27 11:44:36',0,1),
(6143,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-27 11:52:22',0,1),
(6149,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-27 13:23:57',0,1),
(6149,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 13:23:57',0,1),
(6151,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-27 13:24:03',0,1),
(6151,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-27 13:24:03',0,1),
(6153,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-27 13:24:23',0,1),
(6155,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-27 13:24:42',0,1),
(6156,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-27 13:25:08',0,1),
(6156,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-31 09:26:35',0,1),
(6156,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-27 14:20:48',0,1),
(6157,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-03-27 13:26:28',0,1),
(6157,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 13:25:31',0,1),
(6157,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-27 13:26:23',0,1),
(6158,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:25:43',0,1),
(6158,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:25:44',0,1),
(6159,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:25:57',0,1),
(6159,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:26:00',0,1),
(6160,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:26:07',0,1),
(6160,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:26:10',0,1),
(6166,1,3,'7d345954-18f1-422e-8882-8ad6f88da558','2026-03-27 13:28:30',0,1),
(6166,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 13:27:23',0,1),
(6166,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-27 13:28:25',0,1),
(6167,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:27:29',0,1),
(6167,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:27:32',0,1),
(6168,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:27:42',0,1),
(6168,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:27:46',0,1),
(6169,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:27:56',0,1),
(6174,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 13:57:23',0,1),
(6175,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:57:28',0,1),
(6175,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:57:30',0,1),
(6179,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-27 13:57:49',0,1),
(6179,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:22:48',0,1),
(6179,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-31 09:18:49',0,1),
(6180,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:58:48',0,1),
(6181,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:59:10',0,1),
(6181,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:59:17',0,1),
(6182,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-27 14:16:53',0,1),
(6182,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 13:59:30',0,1),
(6182,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 13:59:58',0,1),
(6183,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:00:35',0,1),
(6183,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:00:38',0,1),
(6189,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-27 14:02:42',0,1),
(6192,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 14:16:53',0,1),
(6196,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-27 14:18:47',0,1),
(6196,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:34:32',0,1),
(6196,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-31 09:25:13',0,1),
(6197,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:34:32',0,1),
(6197,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:18:55',0,1),
(6197,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:19:03',0,1),
(6198,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:19:21',0,1),
(6198,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:19:27',0,1),
(6199,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:19:36',0,1),
(6199,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:19:42',0,1),
(6207,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:25:13',0,1),
(6208,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 14:20:36',0,1),
(6210,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-27 14:20:48',0,1),
(6211,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-27 14:21:02',0,1),
(6211,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-31 09:26:59',0,1),
(6211,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-27 14:33:17',0,1),
(6212,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 14:21:31',0,1),
(6213,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-27 14:21:49',0,1),
(6213,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:21:40',0,1),
(6213,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:21:42',0,1),
(6216,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:40:07',0,1),
(6217,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:37:18',0,1),
(6217,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-31 09:40:07',0,1),
(6217,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-31 09:23:36',0,1),
(6218,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:39:18',0,1),
(6218,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:22:31',0,1),
(6218,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:22:36',0,1),
(6219,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:29:59',0,1),
(6219,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-31 09:38:35',0,1),
(6219,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-31 09:24:13',0,1),
(6224,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-31 09:36:10',0,1),
(6224,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:36:10',0,1),
(6224,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-27 14:26:42',0,1),
(6225,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:25:42',0,1),
(6225,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:25:44',0,1),
(6226,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:25:54',0,1),
(6226,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:25:55',0,1),
(6227,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:36:10',0,1),
(6227,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:26:10',0,1),
(6227,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:26:14',0,1),
(6232,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-04-02 08:56:55',0,1),
(6232,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:35:14',0,1),
(6233,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:30:41',0,1),
(6233,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-31 09:33:06',0,1),
(6233,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:28:13',0,1),
(6242,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:30:41',0,1),
(6242,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-31 09:21:10',0,1),
(6243,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:30:41',0,1),
(6243,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-31 09:20:18',0,1),
(6244,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:30:41',0,1),
(6244,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-31 09:35:14',0,1),
(6246,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 14:48:19',0,1),
(6252,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-31 09:33:52',0,1),
(6252,1,73,'8fc57e3a-5539-4a2a-a35a-c3535948b1da','2026-03-27 14:50:24',0,1),
(6253,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:22:14',0,1),
(6254,1,3,'b5c6462f-898a-423d-8e1b-5d75cc234a5c','2026-03-31 09:22:14',0,1),
(6254,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:48:57',0,1),
(6254,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:49:00',0,1),
(6255,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:49:13',0,1),
(6255,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:49:16',0,1),
(6256,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:49:26',0,1),
(6256,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:49:28',0,1),
(6257,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:49:38',0,1),
(6257,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:49:41',0,1),
(6258,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:49:48',0,1),
(6258,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:49:50',0,1),
(6265,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-27 14:50:04',0,1),
(6266,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:50:10',0,1),
(6266,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:50:11',0,1),
(6267,1,3,'b9fb345b-3128-4265-b3bd-58b1d523a332','2026-03-27 14:50:19',0,1),
(6267,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-03-27 14:50:20',0,1),
(6274,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 10:07:47',0,1),
(6278,1,20,'9c835490-2f52-4f52-a0af-140bfe0f66b8','2026-03-29 10:49:24',0,1),
(6278,1,71,'a1fc5688-356a-440e-bb6d-d1b273378a1f','2026-04-01 14:59:55',0,1),
(6279,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 10:42:40',0,1),
(6283,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 10:49:24',0,1),
(6287,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 10:52:16',0,1),
(6291,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 10:53:27',0,1),
(6295,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 10:53:43',0,1),
(6299,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 11:46:49',0,1),
(6303,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 11:55:05',0,1),
(6307,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-29 11:55:36',0,1),
(6311,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-30 10:18:17',0,1),
(6315,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-30 10:56:54',0,1),
(6320,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-30 10:57:29',0,1),
(6327,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-30 10:57:52',0,1),
(6332,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-30 16:48:43',0,1),
(6336,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-30 16:49:56',0,1),
(6340,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-30 18:01:13',0,1),
(6342,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-30 18:01:34',0,1),
(6346,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-30 18:31:48',0,1),
(6350,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:17:00',0,1),
(6352,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:18:49',0,1),
(6352,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-31 09:18:49',0,1),
(6355,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:20:18',0,1),
(6359,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:21:10',0,1),
(6363,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:22:14',0,1),
(6367,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:22:48',0,1),
(6370,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:23:36',0,1),
(6374,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:24:13',0,1),
(6378,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:25:13',0,1),
(6378,1,68,'714e1431-03c0-455c-8957-dd9d22173d46','2026-03-31 09:25:13',0,1),
(6381,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-31 09:25:43',0,1),
(6383,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-31 09:26:35',0,1),
(6385,1,20,'299c38c6-3179-443f-bc02-f3198c3b9b23','2026-03-31 09:26:59',0,1),
(6387,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:28:32',0,1),
(6389,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-31 09:29:27',0,1),
(6392,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:29:58',0,1),
(6400,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:30:41',0,1),
(6408,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:33:06',0,1),
(6411,1,3,'39755301-5fbf-46e0-8117-b7ba7b6c1b51','2026-03-31 09:33:52',0,1),
(6414,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:34:32',0,1),
(6418,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:35:14',0,1),
(6422,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-03-31 09:36:10',0,1),
(6422,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:36:10',0,1),
(6426,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:37:18',0,1),
(6430,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:38:35',0,1),
(6434,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:39:18',0,1),
(6438,1,67,'042d0ccf-eca5-4519-a10e-ef2bb83920f3','2026-03-31 09:40:07',0,1),
(6444,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:41:19',0,1),
(6448,1,3,'e7689c08-7dfa-49a7-bd36-805fe89ac1e3','2026-03-31 09:53:07',0,1),
(6448,1,4,'a3a4499b-38c4-49c1-93eb-05cf9d0e9152','2026-03-31 09:53:07',0,1),
(6462,1,4,'a3a4499b-38c4-49c1-93eb-05cf9d0e9152','2026-04-16 14:35:29',0,1),
(6464,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:53:06',0,1),
(6475,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:54:30',0,1),
(6480,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:55:41',0,1),
(6484,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:58:11',0,1),
(6487,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 09:58:47',0,1),
(6496,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 10:00:26',0,1),
(6507,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 10:11:57',0,1),
(6511,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 10:12:25',0,1),
(6515,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 10:12:55',0,1),
(6519,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 10:14:31',0,1),
(6523,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-03-31 17:20:17',0,1),
(6528,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-01 09:45:16',0,1),
(6539,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 10:07:09',0,1),
(6546,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 10:08:29',0,1),
(6550,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:14:16',0,1),
(6550,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 10:11:56',0,1),
(6551,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-15 17:06:15',0,1),
(6551,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-13 09:39:48',0,1),
(6551,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-01 15:20:20',0,1),
(6551,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-01 15:20:20',0,1),
(6552,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 15:20:20',0,1),
(6552,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-13 10:30:04',0,1),
(6552,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 15:20:20',0,1),
(6553,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-13 10:30:04',0,1),
(6553,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-13 10:30:04',0,1),
(6553,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 15:20:20',0,1),
(6555,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-13 10:30:04',0,1),
(6555,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-01 15:20:20',0,1),
(6555,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 13:27:28',0,1),
(6556,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 15:20:20',0,1),
(6556,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 15:20:20',0,1),
(6557,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 15:20:20',0,1),
(6557,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 15:20:20',0,1),
(6558,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 15:20:20',0,1),
(6558,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 15:20:20',0,1),
(6559,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 15:20:20',0,1),
(6559,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 15:20:20',0,1),
(6560,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 15:20:20',0,1),
(6560,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-15 17:06:15',0,1),
(6561,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 15:20:20',0,1),
(6561,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 13:27:28',0,1),
(6564,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:56:18',0,1),
(6564,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:14:16',0,1),
(6564,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:08:22',0,1),
(6590,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-01 10:45:35',0,1),
(6599,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-01 14:52:28',0,1),
(6606,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 14:56:05',0,1),
(6617,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-01 14:59:54',0,1),
(6621,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-01 15:06:48',0,1),
(6634,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 15:20:20',0,1),
(6647,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:34',0,1),
(6647,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 18:00:40',0,1),
(6648,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 17:11:07',0,1),
(6648,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-01 17:11:07',0,1),
(6648,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 13:20:34',0,1),
(6648,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-01 18:00:21',0,1),
(6649,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 17:11:07',0,1),
(6649,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 13:20:34',0,1),
(6649,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-16 13:20:34',0,1),
(6649,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 18:00:21',0,1),
(6650,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 13:20:34',0,1),
(6650,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-01 18:00:21',0,1),
(6650,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 18:00:21',0,1),
(6652,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-16 13:20:33',0,1),
(6652,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-16 13:20:33',0,1),
(6652,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 13:20:34',0,1),
(6653,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 18:00:22',0,1),
(6653,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 18:00:22',0,1),
(6654,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 18:00:22',0,1),
(6654,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 18:00:22',0,1),
(6657,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 18:00:22',0,1),
(6657,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 18:00:22',0,1),
(6660,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:56:08',0,1),
(6660,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:05:34',0,1),
(6660,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:05:34',0,1),
(6679,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 17:11:07',0,1),
(6698,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 18:00:22',0,1),
(6711,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 18:00:41',0,1),
(6712,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:48',0,1),
(6712,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 18:17:15',0,1),
(6713,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 18:18:11',0,1),
(6713,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-01 18:18:11',0,1),
(6713,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 12:36:18',0,1),
(6713,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-01 18:20:04',0,1),
(6714,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 18:25:54',0,1),
(6714,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 12:41:21',0,1),
(6714,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 18:25:54',0,1),
(6715,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 12:44:04',0,1),
(6715,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 12:49:02',0,1),
(6715,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 18:30:44',0,1),
(6717,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-16 12:36:18',0,1),
(6717,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-01 18:42:03',0,1),
(6717,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 12:49:02',0,1),
(6718,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-16 12:36:18',0,1),
(6718,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 12:36:18',0,1),
(6719,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 18:42:04',0,1),
(6719,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 12:49:02',0,1),
(6720,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 18:42:04',0,1),
(6720,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 12:49:02',0,1),
(6721,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 18:42:04',0,1),
(6721,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 12:49:02',0,1),
(6725,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:55:47',0,1),
(6725,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:05:48',0,1),
(6725,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:05:48',0,1),
(6743,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 12:49:02',0,1),
(6744,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 12:49:02',0,1),
(6759,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:08:02',0,1),
(6759,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 19:10:02',0,1),
(6760,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 19:10:02',0,1),
(6760,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-16 13:28:51',0,1),
(6760,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-01 19:10:02',0,1),
(6760,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-01 19:10:02',0,1),
(6761,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 19:10:02',0,1),
(6761,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-01 19:10:02',0,1),
(6761,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 19:10:02',0,1),
(6762,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-01 19:10:02',0,1),
(6762,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-01 19:10:02',0,1),
(6762,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 19:10:02',0,1),
(6764,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-01 19:10:02',0,1),
(6764,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-01 19:10:02',0,1),
(6764,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-01 19:10:02',0,1),
(6765,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:10:02',0,1),
(6765,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:10:02',0,1),
(6766,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:10:02',0,1),
(6766,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:10:02',0,1),
(6767,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:10:02',0,1),
(6767,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:10:02',0,1),
(6768,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:10:02',0,1),
(6768,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:10:02',0,1),
(6769,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:10:02',0,1),
(6769,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:10:02',0,1),
(6770,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:10:02',0,1),
(6770,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:10:02',0,1),
(6771,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:55:57',0,1),
(6771,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:08:02',0,1),
(6771,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:08:02',0,1),
(6805,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 19:10:02',0,1),
(6805,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 19:10:02',0,1),
(6818,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:13:53',0,1),
(6818,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 19:44:58',0,1),
(6819,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-01 19:44:58',0,1),
(6819,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-16 13:51:08',0,1),
(6819,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 13:51:08',0,1),
(6819,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-01 19:44:58',0,1),
(6820,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-16 13:51:08',0,1),
(6820,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 13:51:08',0,1),
(6820,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 19:44:58',0,1),
(6821,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 13:51:08',0,1),
(6821,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 13:51:08',0,1),
(6821,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-01 19:44:58',0,1),
(6823,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-16 13:51:08',0,1),
(6823,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-01 19:44:58',0,1),
(6823,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 13:51:08',0,1),
(6824,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:44:58',0,1),
(6824,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:44:58',0,1),
(6825,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-01 19:44:58',0,1),
(6825,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-01 19:44:58',0,1),
(6830,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:56:53',0,1),
(6830,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:13:53',0,1),
(6830,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:13:53',0,1),
(6864,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-01 19:44:58',0,1),
(6864,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-01 19:44:58',0,1),
(6878,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:42:06',0,1),
(6882,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:42:34',0,1),
(6892,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-03 14:09:44',0,1),
(6893,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:49:29',0,1),
(6900,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:51:27',0,1),
(6904,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:52:45',0,1),
(6908,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:53:13',0,1),
(6912,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:53:37',0,1),
(6916,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:54:45',0,1),
(6919,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-04-02 08:56:55',0,1),
(6922,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 08:57:51',0,1),
(6926,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-02 09:00:44',0,1),
(6931,1,51,'7b267ef7-86ed-4004-9260-e710ae7fb28e','2026-04-02 09:17:00',0,1),
(6932,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2026-04-02 09:17:07',0,1),
(6933,1,32,'2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9','2026-04-02 09:17:30',0,1),
(6934,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:03:57',0,1),
(6934,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 10:56:13',0,1),
(6935,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 10:56:14',0,1),
(6935,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-03 10:56:14',0,1),
(6935,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-03 10:56:14',0,1),
(6935,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-03 10:56:14',0,1),
(6936,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 10:56:14',0,1),
(6936,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-03 10:56:14',0,1),
(6936,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-03 10:56:14',0,1),
(6937,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 10:56:14',0,1),
(6937,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-07 09:18:17',0,1),
(6937,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-07 08:18:03',0,1),
(6937,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-07 09:16:09',0,1),
(6937,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-03 10:56:14',0,1),
(6937,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-03 10:56:14',0,1),
(6939,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-13 08:55:17',0,1),
(6939,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-03 10:56:14',0,1),
(6939,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 08:55:17',0,1),
(6944,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-03 10:56:14',0,1),
(6944,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-03 10:56:14',0,1),
(6945,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-03 10:56:14',0,1),
(6945,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-03 10:56:14',0,1),
(6946,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:57:04',0,1),
(6946,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:03:56',0,1),
(6946,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:03:56',0,1),
(6982,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-03 10:56:14',0,1),
(6982,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 10:56:14',0,1),
(6997,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:04:59',0,1),
(6997,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 10:58:38',0,1),
(6998,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 11:17:10',0,1),
(6998,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-07 19:20:04',0,1),
(6998,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-07 19:20:04',0,1),
(6998,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-03 11:17:10',0,1),
(6999,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 11:17:10',0,1),
(6999,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-07 19:20:04',0,1),
(6999,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-07 19:20:04',0,1),
(6999,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-03 11:17:10',0,1),
(7000,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 11:17:10',0,1),
(7000,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 13:55:16',0,1),
(7000,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-07 19:20:04',0,1),
(7000,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 13:55:16',0,1),
(7000,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-03 11:17:10',0,1),
(7000,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-03 11:17:10',0,1),
(7002,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-13 11:22:17',0,1),
(7002,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-03 11:17:10',0,1),
(7002,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-13 12:26:24',0,1),
(7012,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:56:41',0,1),
(7012,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:04:59',0,1),
(7012,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:04:59',0,1),
(7053,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:26:24',0,1),
(7058,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-03 11:17:11',0,1),
(7074,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:12',0,1),
(7074,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 11:55:15',0,1),
(7075,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 12:19:57',0,1),
(7075,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-04-16 14:47:37',0,1),
(7075,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 14:47:37',0,1),
(7075,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-03 12:19:57',0,1),
(7076,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 12:19:57',0,1),
(7076,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 14:47:37',0,1),
(7076,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-03 12:19:57',0,1),
(7077,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-04-03 12:19:57',0,1),
(7077,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-04-16 14:47:37',0,1),
(7077,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-04-16 14:47:37',0,1),
(7077,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-04-03 12:19:57',0,1),
(7077,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-04-03 12:19:57',0,1),
(7079,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-04-16 14:47:37',0,1),
(7079,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-04-03 12:19:57',0,1),
(7079,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-04-16 14:47:37',0,1),
(7089,1,3,'bdc3b295-e08d-4ba1-ad49-47f7a9fb1655','2026-04-06 09:56:29',0,1),
(7089,1,3,'beab3711-acd0-4f59-9d50-fd5554a44054','2026-04-20 19:05:12',0,1),
(7089,1,75,'59b92d9c-85a9-4d6c-825f-bf0857b5ffa7','2026-04-20 19:05:12',0,1),
(7091,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 11:27:01',0,1),
(7093,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 11:27:18',0,1),
(7115,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-04-03 11:55:15',0,1),
(7131,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:47:36',0,1),
(7139,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-03 12:19:57',0,1),
(7164,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-03 14:05:01',0,1),
(7168,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-03 14:06:16',0,1),
(7172,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-03 14:06:48',0,1),
(7176,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-03 14:07:22',0,1),
(7181,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-03 14:09:43',0,1),
(7186,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-03 14:10:18',0,1),
(7190,1,3,'0e99218a-a088-4a59-8372-12392a9ed2a1','2026-04-06 09:22:51',0,1),
(7190,1,20,'2ef2608f-2abf-4e80-9c32-a5f6f6c843da','2026-04-06 09:22:51',0,1),
(7191,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-06 08:35:57',0,1),
(7195,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-06 09:02:55',0,1),
(7199,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-06 09:22:51',0,1),
(7202,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-06 09:29:37',0,1),
(7205,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:49:38',0,1),
(7209,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:50:31',0,1),
(7218,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:54:01',0,1),
(7222,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:54:13',0,1),
(7226,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:54:27',0,1),
(7230,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:54:39',0,1),
(7234,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:54:51',0,1),
(7238,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:55:01',0,1),
(7242,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:55:10',0,1),
(7246,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 09:55:23',0,1),
(7250,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:55:47',0,1),
(7254,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:55:57',0,1),
(7258,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:56:08',0,1),
(7262,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:56:18',0,1),
(7266,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:56:29',0,1),
(7270,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:56:41',0,1),
(7274,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:56:53',0,1),
(7278,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:57:04',0,1),
(7282,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:57:14',0,1),
(7286,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-06 09:57:25',0,1),
(7300,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 13:44:39',0,1),
(7316,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 14:05:30',0,1),
(7325,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 14:05:50',0,1),
(7329,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:41:30',0,1),
(7340,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:44:54',0,1),
(7345,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:45:24',0,1),
(7356,1,3,'1ae5caab-db45-4566-bedb-13220889b058','2026-04-06 15:49:45',0,1),
(7357,1,3,'1ae5caab-db45-4566-bedb-13220889b058','2026-04-06 15:49:45',0,1),
(7358,1,3,'1ae5caab-db45-4566-bedb-13220889b058','2026-04-06 15:49:45',0,1),
(7359,1,3,'1ae5caab-db45-4566-bedb-13220889b058','2026-04-06 15:49:45',0,1),
(7360,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:48:42',0,1),
(7372,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:49:45',0,1),
(7380,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:53:50',0,1),
(7384,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 15:54:53',0,1),
(7390,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 20:27:46',0,1),
(7401,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 20:30:42',0,1),
(7412,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 20:50:15',0,1),
(7422,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 20:53:52',0,1),
(7429,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 20:58:45',0,1),
(7444,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 21:12:07',0,1),
(7468,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-06 21:26:55',0,1),
(7482,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-07 08:18:03',0,1),
(7486,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-07 09:16:09',0,1),
(7491,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-07 09:17:32',0,1),
(7495,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-07 09:17:53',0,1),
(7499,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-07 09:18:17',0,1),
(7507,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-07 19:20:04',0,1),
(7512,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 08:55:16',0,1),
(7512,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 08:55:17',0,1),
(7527,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-13 08:55:16',0,1),
(7541,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:13:54',0,1),
(7547,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:16:00',0,1),
(7553,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:17:20',0,1),
(7560,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:21:43',0,1),
(7564,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:22:47',0,1),
(7566,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 09:29:39',0,1),
(7566,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 09:29:39',0,1),
(7566,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 09:29:39',0,1),
(7584,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:29:39',0,1),
(7605,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:34:35',0,1),
(7612,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 09:36:40',0,1),
(7618,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-13 09:39:48',0,1),
(7635,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-13 10:30:04',0,1),
(7653,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 10:36:07',0,1),
(7659,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:46:44',0,1),
(7659,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:46:45',0,1),
(7659,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 10:46:44',0,1),
(7661,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:46:44',0,1),
(7661,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:46:45',0,1),
(7661,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 10:46:44',0,1),
(7662,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:46:44',0,1),
(7662,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:46:45',0,1),
(7662,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 10:46:44',0,1),
(7663,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:46:44',0,1),
(7663,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:46:45',0,1),
(7663,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 10:46:44',0,1),
(7664,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:46:44',0,1),
(7664,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:46:45',0,1),
(7664,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 10:46:44',0,1),
(7665,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 10:46:44',0,1),
(7665,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 10:46:45',0,1),
(7665,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 10:46:44',0,1),
(7677,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 10:46:44',0,1),
(7691,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 11:22:17',0,1),
(7693,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 11:22:17',0,1),
(7693,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 11:22:17',0,1),
(7694,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 11:22:17',0,1),
(7695,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 11:22:17',0,1),
(7696,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 11:22:17',0,1),
(7708,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-13 11:22:17',0,1),
(7726,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-13 12:24:04',0,1),
(7732,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-13 12:26:24',0,1),
(7737,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 12:27:25',0,1),
(7747,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 12:44:41',0,1),
(7758,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-13 12:45:34',0,1),
(7765,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 12:47:41',0,1),
(7781,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 12:48:59',0,1),
(7794,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 12:50:11',0,1),
(7797,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 12:54:27',0,1),
(7797,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 12:54:27',0,1),
(7797,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 12:54:27',0,1),
(7810,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 12:54:27',0,1),
(7821,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-13 13:01:09',0,1),
(7821,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 13:01:09',0,1),
(7821,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-04-13 13:01:09',0,1),
(7823,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 13:01:09',0,1),
(7824,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 13:01:09',0,1),
(7826,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-13 13:01:09',0,1),
(7838,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-13 13:01:09',0,1),
(7853,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 14:53:22',0,1),
(7855,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:00:52',0,1),
(7860,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2026-04-15 15:02:17',0,1),
(7864,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2026-04-15 15:18:25',0,1),
(7864,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:18:25',0,1),
(7870,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:19:53',0,1),
(7871,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2026-04-15 15:26:00',0,1),
(7871,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:24:51',0,1),
(7874,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2026-04-15 15:24:51',0,1),
(7878,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2026-04-15 15:26:00',0,1),
(7880,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-15 17:06:15',0,1),
(7892,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-15 17:20:20',0,1),
(7912,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-15 17:26:19',0,1),
(7919,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 12:10:18',0,1),
(7924,1,6,'6b2619db-9295-4ee6-b7b9-fbb64c012746','2026-04-17 12:13:21',0,1),
(7925,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2026-04-17 12:13:21',0,1),
(7926,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 12:11:07',0,1),
(7932,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 12:20:07',0,1),
(7938,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 12:36:18',0,1),
(7945,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 12:41:20',0,1),
(7949,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 12:44:03',0,1),
(7959,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 12:49:02',0,1),
(8003,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 13:20:34',0,1),
(8020,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 13:27:28',0,1),
(8027,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 13:28:51',0,1),
(8047,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 13:51:08',0,1),
(8060,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 13:55:16',0,1),
(8064,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 13:55:58',0,1),
(8071,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-16 13:57:12',0,1),
(8079,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-04-16 14:17:03',0,1),
(8079,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:17:04',0,1),
(8090,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 14:17:03',0,1),
(8117,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 14:33:57',0,1),
(8132,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 14:35:29',0,1),
(8138,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:47:37',0,1),
(8139,1,20,'8c35ca6a-582e-4a50-8ba6-0df884b31d57','2026-04-16 14:47:37',0,1),
(8152,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 14:47:37',0,1),
(8169,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 14:51:26',0,1),
(8176,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 14:52:31',0,1),
(8183,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-16 14:54:00',0,1),
(8190,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-16 14:56:08',0,1),
(8197,1,10,'26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb','2026-04-17 11:47:28',0,1),
(8197,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-17 11:47:28',0,1),
(8201,1,10,'26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb','2026-04-17 11:54:44',0,1),
(8201,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-17 11:54:44',0,1),
(8205,1,10,'26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb','2026-04-17 12:06:35',0,1),
(8205,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2026-04-17 12:06:35',0,1),
(8211,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-17 12:13:21',0,1),
(8218,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-17 12:19:21',0,1),
(8223,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:23:55',0,1),
(8227,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:24:07',0,1),
(8231,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:24:16',0,1),
(8235,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:24:25',0,1),
(8239,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:24:36',0,1),
(8243,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:24:44',0,1),
(8247,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:24:54',0,1),
(8251,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:25:05',0,1),
(8255,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:25:15',0,1),
(8259,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 12:25:24',0,1),
(8263,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:14:57',0,1),
(8267,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:19:31',0,1),
(8271,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:23:19',0,1),
(8275,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:27:55',0,1),
(8279,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:28:25',0,1),
(8283,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:28:38',0,1),
(8287,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:28:49',0,1),
(8291,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:28:58',0,1),
(8295,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:29:09',0,1),
(8299,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:29:19',0,1),
(8303,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:29:29',0,1),
(8307,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:29:38',0,1),
(8311,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:29:46',0,1),
(8315,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:29:55',0,1),
(8319,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-17 16:33:14',0,1),
(8323,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:03:57',0,1),
(8327,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:04:59',0,1),
(8331,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:12',0,1),
(8335,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:23',0,1),
(8339,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:34',0,1),
(8343,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:05:48',0,1),
(8347,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:08:02',0,1),
(8351,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:08:22',0,1),
(8355,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:09:20',0,1),
(8359,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:13:53',0,1),
(8363,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-04-20 19:14:16',0,1),
(8368,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:15:07',0,1),
(8374,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:15:28',0,1),
(8380,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:16:22',0,1),
(8386,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:16:43',0,1),
(8392,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:00',0,1),
(8398,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:18',0,1),
(8404,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:35',0,1),
(8410,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:17:50',0,1),
(8416,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:18:06',0,1),
(8422,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:18:24',0,1),
(8428,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 19:28:02',0,1),
(8433,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-20 19:49:23',0,1),
(8436,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-04-20 19:49:42',0,1),
(8437,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:11:42',0,1),
(8438,1,51,'7b267ef7-86ed-4004-9260-e710ae7fb28e','2026-04-20 20:11:42',0,1),
(8439,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2026-04-20 20:11:42',0,1),
(8440,1,32,'2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9','2026-04-20 20:11:42',0,1),
(8449,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2026-04-20 20:10:12',0,1),
(8451,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:04:56',0,1),
(8459,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:07:44',0,1),
(8467,1,32,'2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9','2026-04-20 20:10:12',0,1),
(8467,1,33,'1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2','2026-04-20 20:10:12',0,1),
(8468,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:08:38',0,1),
(8476,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:09:07',0,1),
(8484,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:09:35',0,1),
(8492,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:10:12',0,1),
(8500,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:11:05',0,1),
(8508,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-04-20 20:11:42',0,1);
/*!40000 ALTER TABLE `changedfields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `contentblocks`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `contentblocks` WRITE;
/*!40000 ALTER TABLE `contentblocks` DISABLE KEYS */;
/*!40000 ALTER TABLE `contentblocks` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `craftidtokens`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `craftidtokens` WRITE;
/*!40000 ALTER TABLE `craftidtokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `craftidtokens` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `deprecationerrors`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `deprecationerrors` WRITE;
/*!40000 ALTER TABLE `deprecationerrors` DISABLE KEYS */;
/*!40000 ALTER TABLE `deprecationerrors` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `drafts`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `drafts` WRITE;
/*!40000 ALTER TABLE `drafts` DISABLE KEYS */;
INSERT INTO `drafts` VALUES
(7,NULL,1,0,'First draft','',0,NULL,1),
(28,NULL,1,0,'First draft',NULL,0,NULL,0),
(29,NULL,1,0,'First draft',NULL,0,NULL,0),
(30,NULL,1,0,'First draft',NULL,0,NULL,0),
(31,NULL,1,0,'First draft',NULL,0,NULL,0),
(38,NULL,1,0,'First draft',NULL,0,NULL,0),
(39,NULL,1,0,'First draft',NULL,0,NULL,0),
(43,NULL,1,0,'First draft',NULL,0,NULL,0),
(59,NULL,1,0,'First draft',NULL,0,NULL,0),
(75,NULL,1,0,'First draft',NULL,0,NULL,0),
(109,NULL,1,0,'First draft',NULL,0,NULL,1),
(110,NULL,1,0,'First draft',NULL,0,NULL,1),
(111,NULL,1,0,'First draft',NULL,0,NULL,0),
(113,NULL,1,0,'First draft',NULL,0,NULL,1),
(114,NULL,1,0,'First draft',NULL,0,NULL,1),
(115,NULL,1,0,'First draft',NULL,0,NULL,1),
(116,NULL,1,0,'First draft',NULL,0,NULL,0),
(146,NULL,1,0,'First draft',NULL,0,NULL,1),
(151,NULL,1,0,'First draft',NULL,0,NULL,0),
(152,NULL,1,0,'First draft',NULL,0,NULL,0),
(155,NULL,1,0,'First draft',NULL,0,NULL,0),
(156,NULL,1,0,'First draft',NULL,0,NULL,0),
(157,NULL,1,0,'First draft',NULL,0,NULL,0),
(158,NULL,1,0,'First draft',NULL,0,NULL,0),
(159,NULL,1,0,'First draft',NULL,0,NULL,0),
(160,NULL,1,0,'First draft',NULL,0,NULL,0),
(230,NULL,1,0,'First draft',NULL,0,NULL,0),
(232,NULL,1,0,'First draft',NULL,0,NULL,0),
(234,NULL,1,0,'First draft',NULL,0,NULL,0),
(236,NULL,1,0,'First draft',NULL,0,NULL,1),
(237,NULL,1,0,'First draft',NULL,0,NULL,1),
(253,578,1,1,'Draft 1',NULL,1,NULL,1),
(266,607,1,1,'Draft 1',NULL,1,NULL,1),
(273,634,1,1,'Draft 1',NULL,1,NULL,1),
(321,NULL,1,0,'First draft',NULL,0,NULL,1),
(322,NULL,1,0,'First draft',NULL,0,NULL,0),
(387,NULL,1,0,'First draft',NULL,0,NULL,0),
(388,NULL,1,0,'First draft',NULL,0,NULL,1),
(443,NULL,1,0,'First draft',NULL,0,NULL,1),
(506,NULL,1,0,'First draft',NULL,0,NULL,0),
(509,NULL,1,0,'First draft',NULL,0,NULL,0),
(550,NULL,1,0,'First draft',NULL,0,NULL,0),
(551,NULL,1,0,'First draft',NULL,0,NULL,0),
(556,1417,1,1,'Draft 1','',1,NULL,1),
(557,NULL,1,0,'First draft',NULL,0,NULL,1),
(558,NULL,1,0,'First draft',NULL,0,NULL,0),
(559,NULL,1,0,'First draft',NULL,0,NULL,0),
(565,NULL,1,0,'First draft',NULL,0,NULL,0),
(681,NULL,1,0,'First draft',NULL,0,NULL,0),
(1018,NULL,1,0,'First draft',NULL,0,NULL,0),
(1151,NULL,1,0,'First draft',NULL,0,NULL,0),
(1283,3809,1,1,'Draft 1',NULL,1,NULL,1),
(1284,3812,1,1,'Draft 1',NULL,1,NULL,1),
(1285,NULL,1,0,'First draft',NULL,0,NULL,1),
(1388,NULL,1,0,'First draft',NULL,0,NULL,0),
(1389,NULL,1,0,'First draft',NULL,0,NULL,0),
(1415,NULL,1,0,'First draft',NULL,0,NULL,0),
(1504,4413,1,1,'Draft 1',NULL,1,NULL,1),
(1670,NULL,1,0,'First draft',NULL,0,NULL,0),
(1725,NULL,1,0,'First draft',NULL,0,NULL,0),
(1730,NULL,1,0,'First draft',NULL,0,NULL,0),
(1769,NULL,1,0,'First draft',NULL,0,NULL,0),
(1770,NULL,1,0,'First draft',NULL,0,NULL,0),
(1771,NULL,1,0,'First draft',NULL,0,NULL,0),
(2003,5263,1,1,'Draft 1',NULL,1,NULL,1),
(2010,NULL,1,0,'First draft',NULL,0,NULL,0),
(2021,NULL,1,0,'First draft',NULL,0,NULL,1),
(2023,NULL,1,0,'First draft',NULL,0,NULL,1),
(2024,NULL,1,0,'First draft','',0,NULL,1),
(2025,NULL,1,0,'First draft',NULL,0,NULL,0),
(2026,NULL,1,0,'First draft',NULL,0,NULL,0),
(2034,1098,1,1,'Draft 1','',1,NULL,1),
(2037,NULL,1,0,'First draft','',0,NULL,1),
(2203,NULL,1,0,'First draft',NULL,0,NULL,0),
(2207,NULL,1,0,'First draft',NULL,0,NULL,1),
(2219,NULL,1,0,'First draft',NULL,0,NULL,0),
(2518,NULL,1,0,'First draft',NULL,0,NULL,1),
(2519,NULL,1,0,'First draft',NULL,0,NULL,1),
(2520,NULL,1,0,'First draft',NULL,0,NULL,1),
(2667,NULL,1,0,'First draft',NULL,0,NULL,0);
/*!40000 ALTER TABLE `drafts` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `elementactivity`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `elementactivity` WRITE;
/*!40000 ALTER TABLE `elementactivity` DISABLE KEYS */;
INSERT INTO `elementactivity` VALUES
(1,1,1,NULL,'save','2026-04-20 19:38:20'),
(1,1,1,NULL,'view','2025-12-03 09:29:40'),
(2,1,1,NULL,'edit','2026-04-20 20:40:50'),
(2,1,1,NULL,'save','2026-04-20 20:40:51'),
(3,1,1,NULL,'edit','2026-04-20 20:41:06'),
(3,1,1,NULL,'save','2026-04-20 20:41:07'),
(4,1,1,NULL,'edit','2026-04-20 20:41:18'),
(4,1,1,NULL,'save','2026-04-20 20:41:28'),
(5,1,1,NULL,'edit','2026-02-21 23:51:32'),
(5,1,1,NULL,'save','2026-02-21 23:51:33'),
(6,1,1,NULL,'edit','2026-04-20 20:41:00'),
(6,1,1,NULL,'save','2026-04-20 20:41:49'),
(8,1,1,NULL,'edit','2026-04-17 12:11:31'),
(8,1,1,NULL,'save','2026-04-17 12:11:32'),
(11,1,1,NULL,'edit','2026-02-21 23:07:41'),
(11,1,1,NULL,'save','2026-02-21 23:07:43'),
(26,1,1,NULL,'edit','2025-11-30 12:11:08'),
(26,1,1,NULL,'save','2025-11-30 12:11:09'),
(35,1,1,NULL,'edit','2026-04-20 20:41:12'),
(35,1,1,NULL,'save','2026-04-20 20:41:14'),
(36,1,1,NULL,'save','2026-03-20 00:34:58'),
(37,1,1,NULL,'save','2025-11-30 19:26:58'),
(38,1,1,NULL,'edit','2026-04-17 12:19:20'),
(38,1,1,NULL,'save','2026-04-17 12:19:22'),
(38,1,1,NULL,'view','2025-12-04 22:54:02'),
(43,1,1,NULL,'edit','2025-11-30 20:10:02'),
(44,1,1,NULL,'edit','2025-11-30 20:02:31'),
(61,1,1,NULL,'edit','2025-11-30 20:09:28'),
(89,1,1,NULL,'edit','2026-04-17 12:06:32'),
(89,1,1,NULL,'save','2026-04-17 12:06:35'),
(99,1,1,NULL,'edit','2026-04-17 11:54:43'),
(99,1,1,NULL,'save','2026-04-17 11:54:44'),
(112,1,1,NULL,'edit','2026-04-17 11:47:22'),
(112,1,1,NULL,'save','2026-04-17 11:47:28'),
(143,1,1,NULL,'edit','2026-04-16 14:52:28'),
(143,1,1,NULL,'save','2026-03-18 11:45:08'),
(143,1,1,NULL,'view','2025-12-04 17:07:02'),
(144,1,1,NULL,'edit','2026-04-16 14:51:59'),
(144,1,1,NULL,'view','2025-12-04 17:07:02'),
(145,1,1,NULL,'edit','2026-04-16 14:52:24'),
(235,1,1,NULL,'edit','2026-04-20 19:25:06'),
(235,1,1,NULL,'save','2026-04-20 19:25:06'),
(239,1,1,NULL,'save','2025-12-02 22:25:52'),
(244,1,1,NULL,'edit','2026-03-20 00:20:45'),
(244,1,1,NULL,'save','2026-03-20 00:20:46'),
(245,1,1,NULL,'edit','2026-03-20 00:20:51'),
(245,1,1,NULL,'save','2026-03-20 00:20:52'),
(246,1,1,NULL,'edit','2026-03-20 00:30:55'),
(246,1,1,NULL,'save','2026-03-20 10:28:29'),
(247,1,1,NULL,'edit','2026-03-20 00:31:13'),
(247,1,1,NULL,'save','2026-03-20 00:31:15'),
(250,1,1,NULL,'edit','2026-04-15 15:03:09'),
(250,1,1,NULL,'save','2026-04-15 15:03:09'),
(252,1,1,NULL,'edit','2026-04-15 15:19:52'),
(252,1,1,NULL,'save','2026-04-15 15:19:53'),
(255,1,1,NULL,'edit','2026-03-26 10:01:23'),
(255,1,1,NULL,'view','2025-12-03 17:13:33'),
(261,1,1,NULL,'save','2025-12-03 17:09:08'),
(261,1,1,NULL,'view','2025-12-03 17:09:57'),
(262,1,1,NULL,'save','2025-12-03 17:07:02'),
(262,1,1,NULL,'view','2025-12-03 17:10:02'),
(263,1,1,NULL,'view','2025-12-03 17:09:57'),
(266,1,1,NULL,'save','2025-12-03 17:10:36'),
(266,1,1,NULL,'view','2025-12-03 17:10:27'),
(267,1,1,NULL,'save','2025-12-03 17:10:31'),
(267,1,1,NULL,'view','2025-12-03 17:10:29'),
(268,1,1,NULL,'save','2025-12-03 17:10:25'),
(268,1,1,NULL,'view','2025-12-03 17:10:21'),
(269,1,1,NULL,'view','2025-12-03 17:10:38'),
(274,1,1,NULL,'edit','2026-04-16 14:53:58'),
(274,1,1,NULL,'save','2026-03-31 09:53:04'),
(274,1,1,NULL,'view','2025-12-03 19:16:14'),
(275,1,1,NULL,'edit','2026-02-05 07:59:06'),
(275,1,1,NULL,'view','2025-12-03 19:05:11'),
(302,1,1,NULL,'edit','2026-04-16 14:53:55'),
(319,1,1,NULL,'edit','2026-03-26 10:46:58'),
(319,1,1,NULL,'save','2026-03-26 10:46:59'),
(319,1,1,NULL,'view','2025-12-04 17:58:00'),
(322,1,1,NULL,'edit','2026-03-26 10:42:32'),
(322,1,1,NULL,'save','2026-03-26 10:42:34'),
(322,1,1,NULL,'view','2025-12-04 18:19:18'),
(324,1,1,NULL,'edit','2026-03-26 10:44:17'),
(324,1,1,NULL,'save','2026-03-26 10:44:18'),
(324,1,1,NULL,'view','2025-12-04 17:57:57'),
(326,1,1,NULL,'edit','2026-03-26 10:43:04'),
(326,1,1,NULL,'save','2026-03-26 10:43:06'),
(326,1,1,NULL,'view','2025-12-04 18:17:59'),
(330,1,1,NULL,'edit','2026-03-26 09:55:52'),
(330,1,1,NULL,'save','2026-03-20 10:34:46'),
(330,1,1,NULL,'view','2025-12-04 18:16:16'),
(343,1,1,NULL,'save','2025-12-04 19:31:05'),
(343,1,1,NULL,'view','2025-12-04 22:51:37'),
(358,1,1,NULL,'edit','2025-12-07 08:41:31'),
(358,1,1,NULL,'save','2025-12-07 08:32:56'),
(359,1,1,NULL,'edit','2025-12-07 08:35:46'),
(360,1,1,NULL,'edit','2025-12-06 19:18:30'),
(395,1,1,NULL,'edit','2025-12-06 20:30:41'),
(411,1,1,NULL,'edit','2025-12-06 20:23:06'),
(412,1,1,NULL,'edit','2025-12-06 20:23:05'),
(555,1,1,NULL,'save','2025-12-07 00:22:49'),
(556,1,1,NULL,'save','2025-12-07 00:22:46'),
(578,1,1,NULL,'edit','2025-12-07 08:42:40'),
(579,1,1,NULL,'edit','2025-12-07 08:41:49'),
(579,1,1,NULL,'save','2025-12-07 08:42:38'),
(582,1,1,NULL,'edit','2025-12-07 08:41:57'),
(582,1,1,NULL,'save','2025-12-07 08:42:33'),
(604,1,1,NULL,'edit','2026-03-31 09:59:45'),
(604,1,1,NULL,'save','2026-03-20 09:54:31'),
(605,1,1,NULL,'edit','2025-12-07 08:47:33'),
(606,1,1,NULL,'edit','2025-12-07 08:47:31'),
(607,1,1,NULL,'edit','2025-12-07 08:48:35'),
(632,1,1,NULL,'edit','2025-12-07 08:51:05'),
(634,1,1,NULL,'edit','2025-12-07 08:51:37'),
(654,1,1,NULL,'edit','2026-03-31 09:59:43'),
(654,1,1,NULL,'save','2025-12-07 09:14:27'),
(655,1,1,NULL,'edit','2025-12-07 09:17:41'),
(656,1,1,NULL,'edit','2026-03-31 09:41:13'),
(657,1,1,NULL,'edit','2026-03-31 09:59:41'),
(657,1,1,NULL,'save','2025-12-07 09:14:26'),
(750,1,1,NULL,'edit','2026-03-26 08:54:09'),
(755,1,1,NULL,'save','2025-12-07 13:55:48'),
(761,1,1,NULL,'edit','2026-04-03 14:06:12'),
(761,1,1,NULL,'save','2026-03-31 09:55:12'),
(762,1,1,NULL,'edit','2025-12-07 14:41:37'),
(774,1,1,NULL,'edit','2026-03-26 09:58:07'),
(774,1,1,NULL,'save','2026-03-20 20:24:47'),
(785,1,1,NULL,'edit','2026-04-13 12:45:32'),
(786,1,1,NULL,'edit','2026-04-13 12:45:31'),
(788,1,1,NULL,'edit','2026-04-13 12:45:22'),
(789,1,1,NULL,'edit','2026-03-31 10:00:03'),
(843,1,1,NULL,'edit','2026-04-01 14:52:25'),
(843,1,1,NULL,'save','2026-03-20 13:07:10'),
(849,1,1,NULL,'edit','2026-02-03 08:48:38'),
(850,1,1,NULL,'edit','2026-02-03 08:48:36'),
(867,1,1,NULL,'edit','2026-04-17 12:19:19'),
(867,1,1,NULL,'save','2026-03-20 10:02:16'),
(868,1,1,NULL,'edit','2026-03-19 22:30:07'),
(887,1,1,NULL,'edit','2026-04-17 12:13:20'),
(887,1,1,NULL,'save','2026-04-17 12:13:22'),
(903,1,1,NULL,'edit','2026-04-02 09:00:43'),
(903,1,1,NULL,'save','2026-03-19 23:15:09'),
(912,1,1,NULL,'edit','2026-04-20 19:49:41'),
(912,1,1,NULL,'save','2026-04-20 19:49:42'),
(918,1,1,NULL,'save','2026-02-21 15:05:57'),
(1061,1,1,NULL,'save','2026-02-21 16:12:02'),
(1098,1,1,NULL,'edit','2026-03-25 17:45:23'),
(1098,1,1,NULL,'save','2026-03-25 17:43:34'),
(1099,1,1,NULL,'save','2026-02-21 22:48:41'),
(1100,1,1,NULL,'save','2026-02-21 22:49:25'),
(1101,1,1,NULL,'save','2026-02-21 22:49:36'),
(1102,1,1,NULL,'save','2026-02-21 22:49:48'),
(1108,1,1,NULL,'save','2026-02-21 22:56:39'),
(1109,1,1,NULL,'save','2026-02-21 22:53:21'),
(1110,1,1,NULL,'save','2026-02-21 22:53:25'),
(1111,1,1,NULL,'save','2026-02-21 22:53:28'),
(1112,1,1,NULL,'save','2026-02-21 22:53:31'),
(1118,1,1,NULL,'edit','2026-03-25 17:48:29'),
(1118,1,1,NULL,'save','2026-03-25 17:48:36'),
(1119,1,1,NULL,'save','2026-02-21 22:58:21'),
(1120,1,1,NULL,'save','2026-02-21 22:58:30'),
(1121,1,1,NULL,'save','2026-02-21 22:58:41'),
(1122,1,1,NULL,'save','2026-02-21 22:58:48'),
(1128,1,1,NULL,'save','2026-02-21 22:59:24'),
(1129,1,1,NULL,'save','2026-02-21 22:59:22'),
(1132,1,1,NULL,'edit','2026-03-27 13:24:21'),
(1132,1,1,NULL,'save','2026-03-27 13:24:23'),
(1133,1,1,NULL,'edit','2026-03-27 13:23:54'),
(1133,1,1,NULL,'save','2026-02-21 23:00:21'),
(1286,1,1,NULL,'edit','2026-03-20 10:50:15'),
(1286,1,1,NULL,'save','2026-03-20 10:50:16'),
(1367,1,1,NULL,'edit','2026-04-03 14:10:15'),
(1367,1,1,NULL,'save','2026-04-02 08:46:45'),
(1385,1,1,NULL,'edit','2026-03-19 23:38:24'),
(1407,1,1,NULL,'edit','2026-03-26 10:00:57'),
(1417,1,1,NULL,'edit','2026-02-24 14:40:16'),
(1425,1,1,NULL,'save','2026-02-24 14:40:04'),
(1951,1,1,NULL,'edit','2026-04-20 19:18:15'),
(1951,1,1,NULL,'save','2026-04-20 19:18:24'),
(1952,1,1,NULL,'edit','2026-04-17 16:29:53'),
(1952,1,1,NULL,'save','2026-03-17 10:08:42'),
(1953,1,1,NULL,'edit','2026-03-16 21:39:27'),
(1953,1,1,NULL,'save','2026-03-16 21:39:44'),
(1957,1,1,NULL,'edit','2026-03-16 19:30:04'),
(1957,1,1,NULL,'save','2026-03-16 19:19:12'),
(1958,1,1,NULL,'edit','2026-04-06 21:06:07'),
(1958,1,1,NULL,'save','2026-03-16 20:21:18'),
(1963,1,1,NULL,'edit','2026-03-02 21:52:37'),
(1964,1,1,NULL,'edit','2026-04-06 21:11:07'),
(1964,1,1,NULL,'save','2026-03-13 13:14:17'),
(1965,1,1,NULL,'edit','2026-03-26 08:53:06'),
(1966,1,1,NULL,'edit','2026-04-13 10:42:43'),
(1966,1,1,NULL,'save','2026-04-13 10:46:43'),
(1977,1,1,NULL,'edit','2026-04-20 19:18:22'),
(2020,1,1,NULL,'edit','2026-04-20 19:18:15'),
(2020,1,1,NULL,'save','2026-03-16 21:36:17'),
(2061,1,1,NULL,'edit','2026-03-13 13:18:48'),
(2908,1,1,NULL,'edit','2026-03-03 07:58:47'),
(2908,1,1,NULL,'save','2026-03-03 07:58:48'),
(2909,1,1,NULL,'edit','2026-03-16 21:47:51'),
(2909,1,1,NULL,'save','2026-03-16 21:47:56'),
(3086,1,1,NULL,'edit','2026-04-20 19:05:21'),
(3086,1,1,NULL,'save','2026-04-20 19:05:23'),
(3087,1,1,NULL,'edit','2026-03-03 08:57:52'),
(3087,1,1,NULL,'save','2026-03-03 08:57:53'),
(3088,1,1,NULL,'edit','2026-03-19 22:36:59'),
(3088,1,1,NULL,'save','2026-03-16 22:28:56'),
(3089,1,1,NULL,'edit','2026-04-16 14:32:07'),
(3089,1,1,NULL,'save','2026-03-13 11:39:13'),
(3090,1,1,NULL,'edit','2026-04-16 14:31:04'),
(3090,1,1,NULL,'save','2026-04-16 14:33:20'),
(3093,1,1,NULL,'edit','2026-04-16 14:56:06'),
(3093,1,1,NULL,'save','2026-03-03 09:03:12'),
(3102,1,1,NULL,'edit','2026-04-20 19:05:21'),
(3116,1,1,NULL,'edit','2026-04-16 14:24:46'),
(3117,1,1,NULL,'edit','2026-04-16 14:25:00'),
(3118,1,1,NULL,'edit','2026-04-16 14:55:37'),
(3118,1,1,NULL,'save','2026-03-13 12:04:05'),
(3119,1,1,NULL,'edit','2026-04-16 14:25:30'),
(3120,1,1,NULL,'edit','2026-04-16 14:56:03'),
(3121,1,1,NULL,'edit','2026-04-16 14:26:04'),
(3122,1,1,NULL,'edit','2026-04-16 14:26:48'),
(3122,1,1,NULL,'save','2026-04-16 14:29:04'),
(3793,1,1,NULL,'edit','2026-03-26 08:53:36'),
(3793,1,1,NULL,'save','2026-03-26 08:53:37'),
(3809,1,1,NULL,'edit','2026-03-13 13:44:02'),
(3811,1,1,NULL,'edit','2026-03-26 08:53:36'),
(3812,1,1,NULL,'edit','2026-03-13 13:45:58'),
(3824,1,1,NULL,'edit','2026-03-26 08:40:41'),
(3824,1,1,NULL,'save','2026-03-26 08:40:42'),
(3827,1,1,NULL,'save','2026-03-13 13:45:58'),
(3847,1,1,NULL,'save','2026-03-16 19:25:02'),
(3906,1,1,NULL,'edit','2026-04-06 21:06:05'),
(3906,1,1,NULL,'save','2026-03-16 20:18:46'),
(3918,1,1,NULL,'edit','2026-04-06 21:05:42'),
(3929,1,1,NULL,'edit','2026-04-06 21:05:08'),
(3937,1,1,NULL,'edit','2026-04-06 21:05:25'),
(4026,1,1,NULL,'edit','2026-04-20 19:14:48'),
(4026,1,1,NULL,'save','2026-04-20 19:15:07'),
(4027,1,1,NULL,'edit','2026-04-17 16:28:23'),
(4027,1,1,NULL,'save','2026-03-18 11:11:00'),
(4028,1,1,NULL,'edit','2026-03-18 10:30:12'),
(4029,1,1,NULL,'edit','2026-03-18 10:29:16'),
(4030,1,1,NULL,'edit','2026-03-18 10:29:30'),
(4031,1,1,NULL,'edit','2026-03-18 10:29:42'),
(4032,1,1,NULL,'edit','2026-03-18 10:30:09'),
(4033,1,1,NULL,'edit','2026-04-06 13:39:30'),
(4033,1,1,NULL,'save','2026-04-06 13:41:22'),
(4038,1,1,NULL,'edit','2026-04-20 19:15:03'),
(4038,1,1,NULL,'save','2026-03-18 11:18:44'),
(4039,1,1,NULL,'edit','2026-04-06 13:42:32'),
(4039,1,1,NULL,'save','2026-03-18 12:42:58'),
(4040,1,1,NULL,'edit','2026-03-26 08:51:17'),
(4041,1,1,NULL,'edit','2026-04-13 12:44:39'),
(4042,1,1,NULL,'edit','2026-04-13 12:44:23'),
(4043,1,1,NULL,'edit','2026-03-20 18:25:08'),
(4044,1,1,NULL,'edit','2026-04-13 12:29:42'),
(4044,1,1,NULL,'save','2026-04-13 12:43:54'),
(4045,1,1,NULL,'edit','2026-03-20 18:25:33'),
(4046,1,1,NULL,'edit','2026-03-20 18:25:48'),
(4047,1,1,NULL,'edit','2026-03-20 18:26:03'),
(4048,1,1,NULL,'edit','2026-03-20 18:26:14'),
(4049,1,1,NULL,'edit','2026-03-20 18:27:12'),
(4050,1,1,NULL,'edit','2026-04-13 12:29:05'),
(4051,1,1,NULL,'edit','2026-04-13 12:43:00'),
(4052,1,1,NULL,'edit','2026-04-13 12:28:04'),
(4053,1,1,NULL,'edit','2026-04-20 19:14:47'),
(4203,1,1,NULL,'edit','2026-04-20 19:15:18'),
(4203,1,1,NULL,'save','2026-04-20 19:15:28'),
(4204,1,1,NULL,'edit','2026-04-17 16:28:36'),
(4204,1,1,NULL,'save','2026-03-18 22:37:29'),
(4205,1,1,NULL,'edit','2026-03-18 22:37:51'),
(4205,1,1,NULL,'save','2026-03-18 22:38:28'),
(4206,1,1,NULL,'edit','2026-03-18 22:37:51'),
(4207,1,1,NULL,'edit','2026-03-18 22:38:03'),
(4208,1,1,NULL,'edit','2026-03-18 22:38:16'),
(4209,1,1,NULL,'edit','2026-03-18 22:38:26'),
(4210,1,1,NULL,'edit','2026-04-13 12:47:39'),
(4210,1,1,NULL,'save','2026-03-18 22:41:44'),
(4211,1,1,NULL,'edit','2026-03-18 22:39:34'),
(4211,1,1,NULL,'save','2026-03-18 22:40:10'),
(4212,1,1,NULL,'edit','2026-03-18 22:40:02'),
(4213,1,1,NULL,'edit','2026-03-18 22:41:02'),
(4214,1,1,NULL,'edit','2026-04-13 12:47:37'),
(4215,1,1,NULL,'edit','2026-04-20 19:15:18'),
(4215,1,1,NULL,'save','2026-03-18 22:49:06'),
(4216,1,1,NULL,'edit','2026-04-13 12:52:59'),
(4217,1,1,NULL,'edit','2026-03-26 08:52:12'),
(4218,1,1,NULL,'edit','2026-04-13 12:52:18'),
(4218,1,1,NULL,'save','2026-04-13 12:54:10'),
(4220,1,1,NULL,'edit','2026-03-20 18:30:56'),
(4221,1,1,NULL,'edit','2026-03-20 18:31:18'),
(4223,1,1,NULL,'edit','2026-03-20 18:32:05'),
(4224,1,1,NULL,'edit','2026-03-20 18:32:24'),
(4225,1,1,NULL,'edit','2026-03-20 18:33:39'),
(4226,1,1,NULL,'edit','2026-04-13 12:48:27'),
(4227,1,1,NULL,'edit','2026-04-13 12:50:07'),
(4230,1,1,NULL,'edit','2026-04-20 19:15:26'),
(4230,1,1,NULL,'save','2026-04-06 09:53:35'),
(4303,1,1,NULL,'edit','2026-04-20 19:15:45'),
(4303,1,1,NULL,'save','2026-04-20 19:16:22'),
(4304,1,1,NULL,'edit','2026-04-17 16:28:46'),
(4304,1,1,NULL,'save','2026-03-18 23:09:21'),
(4305,1,1,NULL,'edit','2026-04-06 21:17:03'),
(4306,1,1,NULL,'edit','2026-04-06 21:15:22'),
(4307,1,1,NULL,'edit','2026-03-18 23:09:43'),
(4308,1,1,NULL,'edit','2026-03-18 23:09:54'),
(4309,1,1,NULL,'edit','2026-03-18 23:10:04'),
(4310,1,1,NULL,'edit','2026-04-06 21:18:13'),
(4310,1,1,NULL,'save','2026-04-06 21:20:52'),
(4311,1,1,NULL,'edit','2026-03-18 23:12:07'),
(4311,1,1,NULL,'save','2026-03-18 23:12:25'),
(4315,1,1,NULL,'edit','2026-04-20 19:15:44'),
(4315,1,1,NULL,'save','2026-04-06 21:24:26'),
(4316,1,1,NULL,'edit','2026-04-06 21:26:24'),
(4317,1,1,NULL,'edit','2026-03-26 08:51:39'),
(4318,1,1,NULL,'edit','2026-04-16 13:57:07'),
(4319,1,1,NULL,'edit','2026-04-16 13:57:00'),
(4320,1,1,NULL,'edit','2026-03-20 18:36:23'),
(4321,1,1,NULL,'edit','2026-03-20 18:36:49'),
(4322,1,1,NULL,'edit','2026-03-20 18:38:23'),
(4322,1,1,NULL,'save','2026-03-18 23:28:18'),
(4323,1,1,NULL,'edit','2026-04-16 13:56:40'),
(4324,1,1,NULL,'edit','2026-03-20 18:40:01'),
(4325,1,1,NULL,'edit','2026-03-20 18:40:17'),
(4326,1,1,NULL,'edit','2026-03-20 18:40:36'),
(4327,1,1,NULL,'edit','2026-03-20 18:41:18'),
(4328,1,1,NULL,'edit','2026-04-20 19:16:20'),
(4413,1,1,NULL,'edit','2026-03-18 23:32:24'),
(4418,1,1,NULL,'edit','2026-04-20 19:17:10'),
(4418,1,1,NULL,'save','2026-04-20 19:17:18'),
(4419,1,1,NULL,'edit','2026-04-17 16:29:17'),
(4419,1,1,NULL,'save','2026-03-19 10:17:54'),
(4420,1,1,NULL,'edit','2026-03-19 10:18:07'),
(4420,1,1,NULL,'save','2026-03-19 10:18:53'),
(4421,1,1,NULL,'edit','2026-03-19 10:18:06'),
(4422,1,1,NULL,'edit','2026-03-19 10:18:22'),
(4423,1,1,NULL,'edit','2026-03-19 10:18:35'),
(4424,1,1,NULL,'edit','2026-03-19 10:18:48'),
(4425,1,1,NULL,'edit','2026-04-06 15:54:50'),
(4425,1,1,NULL,'save','2026-04-06 15:44:41'),
(4426,1,1,NULL,'edit','2026-04-06 15:42:42'),
(4427,1,1,NULL,'edit','2026-04-06 15:42:55'),
(4428,1,1,NULL,'edit','2026-04-06 15:43:12'),
(4429,1,1,NULL,'edit','2026-04-06 15:43:39'),
(4430,1,1,NULL,'edit','2026-04-20 19:17:10'),
(4430,1,1,NULL,'save','2026-03-19 10:24:52'),
(4431,1,1,NULL,'edit','2026-04-13 12:59:22'),
(4431,1,1,NULL,'save','2026-03-19 10:26:43'),
(4432,1,1,NULL,'edit','2026-03-26 08:52:22'),
(4433,1,1,NULL,'edit','2026-04-13 12:58:07'),
(4433,1,1,NULL,'save','2026-04-13 13:01:07'),
(4435,1,1,NULL,'edit','2026-03-20 18:43:45'),
(4436,1,1,NULL,'edit','2026-03-20 18:51:45'),
(4445,1,1,NULL,'edit','2026-04-20 19:17:17'),
(4502,1,1,NULL,'edit','2026-04-20 19:28:00'),
(4502,1,1,NULL,'save','2026-04-20 19:28:02'),
(4503,1,1,NULL,'edit','2026-04-17 16:29:36'),
(4503,1,1,NULL,'save','2026-03-19 15:42:34'),
(4504,1,1,NULL,'edit','2026-03-19 15:42:46'),
(4504,1,1,NULL,'save','2026-03-19 15:43:23'),
(4505,1,1,NULL,'edit','2026-03-19 15:42:46'),
(4506,1,1,NULL,'edit','2026-03-19 15:42:58'),
(4507,1,1,NULL,'edit','2026-03-19 15:43:08'),
(4508,1,1,NULL,'edit','2026-03-19 15:43:19'),
(4509,1,1,NULL,'edit','2026-04-06 20:55:18'),
(4509,1,1,NULL,'save','2026-03-19 15:45:51'),
(4510,1,1,NULL,'edit','2026-03-19 15:44:19'),
(4511,1,1,NULL,'edit','2026-04-06 20:55:08'),
(4512,1,1,NULL,'edit','2026-03-19 15:45:05'),
(4513,1,1,NULL,'edit','2026-03-19 15:45:25'),
(4514,1,1,NULL,'edit','2026-04-20 19:28:00'),
(4514,1,1,NULL,'save','2026-03-19 15:50:16'),
(4515,1,1,NULL,'edit','2026-04-06 20:56:32'),
(4515,1,1,NULL,'save','2026-03-19 15:51:37'),
(4516,1,1,NULL,'edit','2026-03-26 08:52:44'),
(4517,1,1,NULL,'edit','2026-04-13 09:34:33'),
(4517,1,1,NULL,'save','2026-03-20 19:14:30'),
(4518,1,1,NULL,'edit','2026-03-20 19:03:36'),
(4519,1,1,NULL,'edit','2026-03-20 19:03:50'),
(4520,1,1,NULL,'edit','2026-03-20 19:07:43'),
(4520,1,1,NULL,'save','2026-03-20 19:05:12'),
(4521,1,1,NULL,'edit','2026-03-20 19:08:03'),
(4522,1,1,NULL,'edit','2026-04-13 09:33:21'),
(4523,1,1,NULL,'edit','2026-03-20 19:08:42'),
(4524,1,1,NULL,'edit','2026-04-13 09:31:32'),
(4524,1,1,NULL,'save','2026-04-13 09:34:27'),
(4525,1,1,NULL,'edit','2026-03-20 19:10:26'),
(4526,1,1,NULL,'edit','2026-03-20 19:11:53'),
(4526,1,1,NULL,'save','2026-03-20 19:14:28'),
(4527,1,1,NULL,'edit','2026-03-20 19:13:29'),
(4529,1,1,NULL,'edit','2026-04-20 19:17:48'),
(4593,1,1,NULL,'edit','2026-04-20 19:17:28'),
(4593,1,1,NULL,'save','2026-04-20 19:17:35'),
(4594,1,1,NULL,'edit','2026-04-17 16:29:27'),
(4594,1,1,NULL,'save','2026-03-19 16:03:21'),
(4595,1,1,NULL,'edit','2026-03-19 16:03:52'),
(4595,1,1,NULL,'save','2026-03-19 16:04:27'),
(4596,1,1,NULL,'edit','2026-03-19 16:03:51'),
(4597,1,1,NULL,'edit','2026-03-19 16:04:01'),
(4598,1,1,NULL,'edit','2026-03-19 16:04:07'),
(4599,1,1,NULL,'edit','2026-03-19 16:04:16'),
(4600,1,1,NULL,'edit','2026-03-19 16:19:07'),
(4601,1,1,NULL,'edit','2026-03-19 16:17:34'),
(4602,1,1,NULL,'edit','2026-03-19 16:18:02'),
(4603,1,1,NULL,'edit','2026-03-19 16:18:24'),
(4604,1,1,NULL,'edit','2026-03-19 16:18:43'),
(4605,1,1,NULL,'edit','2026-04-20 19:17:27'),
(4606,1,1,NULL,'edit','2026-04-06 20:24:03'),
(4607,1,1,NULL,'edit','2026-03-26 08:52:33'),
(4608,1,1,NULL,'edit','2026-04-13 09:13:51'),
(4609,1,1,NULL,'edit','2026-03-20 19:52:51'),
(4610,1,1,NULL,'edit','2026-03-20 19:53:09'),
(4611,1,1,NULL,'edit','2026-04-13 09:13:36'),
(4612,1,1,NULL,'edit','2026-03-20 19:53:35'),
(4613,1,1,NULL,'edit','2026-03-20 19:54:35'),
(4614,1,1,NULL,'edit','2026-03-20 19:54:51'),
(4615,1,1,NULL,'edit','2026-03-20 19:56:32'),
(4620,1,1,NULL,'edit','2026-04-20 19:17:32'),
(4702,1,1,NULL,'edit','2026-04-20 19:16:53'),
(4702,1,1,NULL,'save','2026-04-20 19:17:00'),
(4703,1,1,NULL,'edit','2026-04-17 16:29:06'),
(4704,1,1,NULL,'edit','2026-04-13 09:24:25'),
(4705,1,1,NULL,'edit','2026-04-13 09:24:23'),
(4706,1,1,NULL,'edit','2026-03-19 18:45:52'),
(4707,1,1,NULL,'edit','2026-03-19 18:45:57'),
(4708,1,1,NULL,'edit','2026-03-19 18:46:07'),
(4709,1,1,NULL,'edit','2026-04-15 17:21:40'),
(4709,1,1,NULL,'save','2026-04-15 17:26:17'),
(4710,1,1,NULL,'edit','2026-03-19 18:46:55'),
(4711,1,1,NULL,'edit','2026-03-19 18:47:14'),
(4712,1,1,NULL,'edit','2026-03-19 18:47:30'),
(4712,1,1,NULL,'save','2026-03-19 18:47:49'),
(4713,1,1,NULL,'edit','2026-03-19 18:48:05'),
(4714,1,1,NULL,'edit','2026-04-20 19:16:52'),
(4714,1,1,NULL,'save','2026-04-13 09:21:42'),
(4715,1,1,NULL,'edit','2026-04-15 17:09:31'),
(4715,1,1,NULL,'save','2026-04-15 17:10:20'),
(4716,1,1,NULL,'edit','2026-03-26 08:52:01'),
(4717,1,1,NULL,'edit','2026-04-13 09:24:03'),
(4717,1,1,NULL,'save','2026-04-13 09:29:04'),
(4719,1,1,NULL,'edit','2026-03-20 19:58:45'),
(4720,1,1,NULL,'edit','2026-03-20 19:59:03'),
(4722,1,1,NULL,'edit','2026-04-13 09:15:56'),
(4723,1,1,NULL,'edit','2026-04-13 09:17:16'),
(4725,1,1,NULL,'edit','2026-04-20 19:16:58'),
(4780,1,1,NULL,'edit','2026-03-20 20:02:16'),
(4781,1,1,NULL,'edit','2026-03-20 20:03:15'),
(4782,1,1,NULL,'edit','2026-03-20 20:03:48'),
(4805,1,1,NULL,'edit','2026-04-20 19:16:34'),
(4805,1,1,NULL,'save','2026-04-20 19:16:43'),
(4806,1,1,NULL,'edit','2026-04-17 16:28:56'),
(4807,1,1,NULL,'edit','2026-03-19 19:11:22'),
(4808,1,1,NULL,'edit','2026-03-19 19:10:45'),
(4809,1,1,NULL,'edit','2026-03-19 19:10:53'),
(4810,1,1,NULL,'edit','2026-03-19 19:11:04'),
(4811,1,1,NULL,'edit','2026-03-19 19:11:12'),
(4812,1,1,NULL,'edit','2026-04-06 13:47:38'),
(4812,1,1,NULL,'save','2026-03-19 19:14:55'),
(4813,1,1,NULL,'edit','2026-04-20 19:16:34'),
(4813,1,1,NULL,'save','2026-04-06 13:51:14'),
(4814,1,1,NULL,'edit','2026-04-06 14:04:39'),
(4815,1,1,NULL,'edit','2026-03-26 08:51:50'),
(4816,1,1,NULL,'edit','2026-04-13 09:36:29'),
(4817,1,1,NULL,'edit','2026-04-13 09:36:20'),
(4818,1,1,NULL,'edit','2026-03-20 20:05:37'),
(4819,1,1,NULL,'edit','2026-03-20 20:05:56'),
(4820,1,1,NULL,'edit','2026-03-20 20:06:49'),
(4821,1,1,NULL,'edit','2026-03-20 20:07:07'),
(4822,1,1,NULL,'edit','2026-03-20 20:07:33'),
(4823,1,1,NULL,'edit','2026-03-20 20:07:52'),
(4824,1,1,NULL,'edit','2026-03-20 20:08:16'),
(4824,1,1,NULL,'save','2026-03-20 20:12:05'),
(4825,1,1,NULL,'edit','2026-03-20 20:08:42'),
(4826,1,1,NULL,'edit','2026-03-20 20:09:02'),
(4827,1,1,NULL,'edit','2026-04-20 19:16:41'),
(4869,1,1,NULL,'edit','2026-04-06 13:47:20'),
(4896,1,1,NULL,'edit','2026-04-20 19:17:59'),
(4896,1,1,NULL,'save','2026-04-20 19:18:06'),
(4897,1,1,NULL,'edit','2026-04-17 16:29:44'),
(4897,1,1,NULL,'save','2026-03-19 19:47:56'),
(4898,1,1,NULL,'edit','2026-04-06 20:30:10'),
(4898,1,1,NULL,'save','2026-03-19 19:49:03'),
(4899,1,1,NULL,'edit','2026-04-06 20:29:51'),
(4900,1,1,NULL,'edit','2026-04-06 20:30:08'),
(4901,1,1,NULL,'edit','2026-03-19 19:48:38'),
(4902,1,1,NULL,'edit','2026-03-19 19:48:52'),
(4903,1,1,NULL,'edit','2026-04-06 20:50:10'),
(4903,1,1,NULL,'save','2026-03-19 19:51:43'),
(4904,1,1,NULL,'edit','2026-04-06 20:32:14'),
(4905,1,1,NULL,'edit','2026-04-06 20:49:15'),
(4906,1,1,NULL,'edit','2026-04-06 20:49:48'),
(4907,1,1,NULL,'edit','2026-04-06 20:50:07'),
(4908,1,1,NULL,'edit','2026-04-20 19:17:58'),
(4908,1,1,NULL,'save','2026-04-06 20:53:15'),
(4909,1,1,NULL,'edit','2026-03-19 19:55:24'),
(4909,1,1,NULL,'save','2026-03-19 19:55:38'),
(4911,1,1,NULL,'edit','2026-04-13 10:36:05'),
(4911,1,1,NULL,'save','2026-03-20 18:23:41'),
(4912,1,1,NULL,'edit','2026-03-20 18:19:25'),
(4913,1,1,NULL,'edit','2026-03-20 18:19:42'),
(4914,1,1,NULL,'edit','2026-03-20 18:19:54'),
(4914,1,1,NULL,'save','2026-03-19 19:58:12'),
(4915,1,1,NULL,'edit','2026-04-13 10:35:34'),
(4916,1,1,NULL,'edit','2026-03-20 18:20:20'),
(4917,1,1,NULL,'edit','2026-04-13 10:35:57'),
(4918,1,1,NULL,'edit','2026-04-13 10:34:02'),
(4918,1,1,NULL,'save','2026-04-13 10:34:53'),
(4919,1,1,NULL,'edit','2026-03-20 18:22:20'),
(4920,1,1,NULL,'edit','2026-03-20 18:22:35'),
(4921,1,1,NULL,'edit','2026-03-20 18:23:07'),
(4921,1,1,NULL,'save','2026-03-20 18:23:39'),
(4923,1,1,NULL,'edit','2026-04-20 19:18:04'),
(5087,1,1,NULL,'edit','2026-04-16 14:27:44'),
(5108,1,1,NULL,'edit','2026-04-20 19:09:18'),
(5108,1,1,NULL,'save','2026-04-20 19:09:20'),
(5109,1,1,NULL,'edit','2026-04-16 14:14:15'),
(5109,1,1,NULL,'save','2026-03-19 23:02:45'),
(5110,1,1,NULL,'edit','2026-04-16 14:17:01'),
(5111,1,1,NULL,'edit','2026-04-16 13:58:47'),
(5111,1,1,NULL,'save','2026-04-16 14:00:55'),
(5113,1,1,NULL,'edit','2026-04-16 14:01:44'),
(5113,1,1,NULL,'save','2026-04-16 14:16:38'),
(5114,1,1,NULL,'edit','2026-04-01 14:48:04'),
(5117,1,1,NULL,'edit','2026-04-01 14:54:13'),
(5118,1,1,NULL,'edit','2026-04-01 14:54:38'),
(5119,1,1,NULL,'edit','2026-04-01 14:55:18'),
(5120,1,1,NULL,'edit','2026-04-01 14:55:44'),
(5122,1,1,NULL,'edit','2026-04-20 19:09:18'),
(5178,1,1,NULL,'edit','2026-04-16 12:19:38'),
(5178,1,1,NULL,'save','2026-04-02 08:48:11'),
(5192,1,1,NULL,'edit','2026-04-17 12:19:12'),
(5192,1,1,NULL,'save','2026-04-17 12:19:18'),
(5263,1,1,NULL,'edit','2026-03-20 20:21:10'),
(5391,1,1,NULL,'edit','2026-03-23 17:01:37'),
(5391,1,1,NULL,'save','2026-03-23 17:01:38'),
(5397,1,1,NULL,'edit','2026-03-20 18:05:17'),
(5397,1,1,NULL,'save','2026-03-20 18:00:10'),
(5405,1,1,NULL,'edit','2026-03-23 17:02:09'),
(5405,1,1,NULL,'save','2026-03-23 17:02:10'),
(5406,1,1,NULL,'edit','2026-03-20 18:05:00'),
(5406,1,1,NULL,'save','2026-03-20 17:55:48'),
(5580,1,1,NULL,'edit','2026-03-20 18:59:48'),
(5767,1,1,NULL,'save','2026-03-25 11:57:02'),
(5770,1,1,NULL,'save','2026-03-25 11:58:34'),
(5772,1,1,NULL,'save','2026-03-25 17:43:37'),
(5779,1,1,NULL,'edit','2026-03-25 17:46:40'),
(5779,1,1,NULL,'save','2026-03-25 17:48:38'),
(5794,1,1,NULL,'save','2026-03-25 17:53:40'),
(5795,1,1,NULL,'edit','2026-03-31 09:25:42'),
(5795,1,1,NULL,'save','2026-03-31 09:25:43'),
(5943,1,1,NULL,'edit','2026-03-26 08:52:54'),
(6081,1,1,NULL,'edit','2026-04-13 12:46:03'),
(6081,1,1,NULL,'save','2026-04-13 12:46:27'),
(6156,1,1,NULL,'edit','2026-03-31 09:26:35'),
(6156,1,1,NULL,'save','2026-03-31 09:26:35'),
(6157,1,1,NULL,'save','2026-03-27 13:26:29'),
(6158,1,1,NULL,'save','2026-03-27 13:25:45'),
(6159,1,1,NULL,'save','2026-03-27 13:26:01'),
(6160,1,1,NULL,'save','2026-03-27 13:26:10'),
(6166,1,1,NULL,'save','2026-03-27 13:28:30'),
(6167,1,1,NULL,'save','2026-03-27 13:27:32'),
(6168,1,1,NULL,'save','2026-03-27 13:27:46'),
(6169,1,1,NULL,'save','2026-03-27 13:27:56'),
(6174,1,1,NULL,'save','2026-03-27 13:57:32'),
(6175,1,1,NULL,'save','2026-03-27 13:57:31'),
(6179,1,1,NULL,'edit','2026-03-31 09:22:47'),
(6179,1,1,NULL,'save','2026-03-31 09:22:48'),
(6180,1,1,NULL,'save','2026-03-27 13:58:49'),
(6181,1,1,NULL,'save','2026-03-27 13:59:20'),
(6182,1,1,NULL,'edit','2026-03-27 14:16:51'),
(6182,1,1,NULL,'save','2026-03-27 14:00:00'),
(6183,1,1,NULL,'save','2026-03-27 14:00:38'),
(6196,1,1,NULL,'edit','2026-03-31 09:34:30'),
(6196,1,1,NULL,'save','2026-03-31 09:34:32'),
(6197,1,1,NULL,'edit','2026-03-31 09:34:30'),
(6197,1,1,NULL,'save','2026-03-27 14:19:09'),
(6198,1,1,NULL,'save','2026-03-27 14:19:27'),
(6199,1,1,NULL,'save','2026-03-27 14:19:45'),
(6207,1,1,NULL,'edit','2026-03-31 09:24:58'),
(6211,1,1,NULL,'edit','2026-03-31 09:26:59'),
(6211,1,1,NULL,'save','2026-03-31 09:26:59'),
(6212,1,1,NULL,'save','2026-03-27 14:21:58'),
(6213,1,1,NULL,'save','2026-03-27 14:21:49'),
(6216,1,1,NULL,'edit','2026-03-31 09:40:05'),
(6216,1,1,NULL,'save','2026-03-31 09:40:07'),
(6217,1,1,NULL,'edit','2026-03-31 09:40:05'),
(6217,1,1,NULL,'save','2026-03-27 14:22:21'),
(6218,1,1,NULL,'edit','2026-03-31 09:39:16'),
(6218,1,1,NULL,'save','2026-03-27 14:22:41'),
(6219,1,1,NULL,'edit','2026-03-31 09:38:34'),
(6219,1,1,NULL,'save','2026-03-27 14:22:56'),
(6224,1,1,NULL,'edit','2026-03-31 09:36:08'),
(6224,1,1,NULL,'save','2026-03-31 09:36:10'),
(6225,1,1,NULL,'save','2026-03-27 14:25:45'),
(6226,1,1,NULL,'save','2026-03-27 14:25:59'),
(6227,1,1,NULL,'edit','2026-03-31 09:36:08'),
(6227,1,1,NULL,'save','2026-03-27 14:26:24'),
(6232,1,1,NULL,'edit','2026-04-02 08:56:52'),
(6232,1,1,NULL,'save','2026-04-02 08:56:55'),
(6233,1,1,NULL,'edit','2026-03-31 09:33:04'),
(6233,1,1,NULL,'save','2026-03-27 14:28:17'),
(6242,1,1,NULL,'edit','2026-03-31 09:30:32'),
(6243,1,1,NULL,'edit','2026-03-31 09:30:28'),
(6244,1,1,NULL,'edit','2026-03-31 09:35:12'),
(6245,1,1,NULL,'edit','2026-03-31 09:30:40'),
(6252,1,1,NULL,'edit','2026-03-31 09:33:52'),
(6252,1,1,NULL,'save','2026-03-31 09:33:52'),
(6253,1,1,NULL,'edit','2026-03-31 09:22:11'),
(6253,1,1,NULL,'save','2026-03-31 09:22:14'),
(6254,1,1,NULL,'edit','2026-03-31 09:22:11'),
(6254,1,1,NULL,'save','2026-03-27 14:49:04'),
(6255,1,1,NULL,'save','2026-03-27 14:49:18'),
(6256,1,1,NULL,'save','2026-03-27 14:49:30'),
(6257,1,1,NULL,'save','2026-03-27 14:49:41'),
(6258,1,1,NULL,'save','2026-03-27 14:49:52'),
(6265,1,1,NULL,'save','2026-03-27 14:50:22'),
(6266,1,1,NULL,'save','2026-03-27 14:50:12'),
(6267,1,1,NULL,'save','2026-03-27 14:50:21'),
(6278,1,1,NULL,'edit','2026-04-01 14:59:52'),
(6448,1,1,NULL,'edit','2026-03-31 09:48:41'),
(6462,1,1,NULL,'edit','2026-04-16 14:35:10'),
(6550,1,1,NULL,'edit','2026-04-20 19:14:13'),
(6550,1,1,NULL,'save','2026-04-20 19:14:16'),
(6551,1,1,NULL,'edit','2026-04-15 17:06:10'),
(6552,1,1,NULL,'edit','2026-04-13 09:42:03'),
(6552,1,1,NULL,'save','2026-04-13 09:42:51'),
(6553,1,1,NULL,'edit','2026-04-13 09:46:18'),
(6553,1,1,NULL,'save','2026-04-13 10:28:33'),
(6555,1,1,NULL,'edit','2026-04-16 13:27:22'),
(6555,1,1,NULL,'save','2026-04-13 10:30:02'),
(6556,1,1,NULL,'edit','2026-04-01 15:16:08'),
(6557,1,1,NULL,'edit','2026-04-01 15:16:28'),
(6558,1,1,NULL,'edit','2026-04-01 15:17:41'),
(6559,1,1,NULL,'edit','2026-04-01 15:18:03'),
(6560,1,1,NULL,'edit','2026-04-13 12:22:50'),
(6561,1,1,NULL,'edit','2026-04-16 13:25:09'),
(6564,1,1,NULL,'edit','2026-04-20 19:14:13'),
(6647,1,1,NULL,'edit','2026-04-20 19:05:32'),
(6647,1,1,NULL,'save','2026-04-20 19:05:34'),
(6648,1,1,NULL,'edit','2026-04-16 13:04:35'),
(6648,1,1,NULL,'save','2026-04-01 17:01:03'),
(6649,1,1,NULL,'edit','2026-04-16 13:07:56'),
(6649,1,1,NULL,'save','2026-04-01 17:43:54'),
(6650,1,1,NULL,'edit','2026-04-16 13:09:35'),
(6652,1,1,NULL,'edit','2026-04-16 13:03:27'),
(6652,1,1,NULL,'save','2026-04-16 13:20:30'),
(6653,1,1,NULL,'edit','2026-04-01 17:54:37'),
(6654,1,1,NULL,'edit','2026-04-01 17:55:02'),
(6657,1,1,NULL,'edit','2026-04-01 17:58:57'),
(6657,1,1,NULL,'save','2026-04-16 13:08:10'),
(6660,1,1,NULL,'edit','2026-04-20 19:05:32'),
(6712,1,1,NULL,'edit','2026-04-20 19:05:46'),
(6712,1,1,NULL,'save','2026-04-20 19:05:48'),
(6713,1,1,NULL,'edit','2026-04-16 12:36:16'),
(6713,1,1,NULL,'save','2026-04-01 18:20:04'),
(6714,1,1,NULL,'edit','2026-04-16 12:40:38'),
(6714,1,1,NULL,'save','2026-04-16 12:41:19'),
(6715,1,1,NULL,'edit','2026-04-16 12:45:49'),
(6715,1,1,NULL,'save','2026-04-01 18:30:44'),
(6717,1,1,NULL,'edit','2026-04-16 12:48:59'),
(6717,1,1,NULL,'save','2026-04-01 18:42:04'),
(6718,1,1,NULL,'edit','2026-04-16 12:23:42'),
(6718,1,1,NULL,'save','2026-04-01 18:39:26'),
(6719,1,1,NULL,'edit','2026-04-16 12:47:15'),
(6719,1,1,NULL,'save','2026-04-01 18:40:05'),
(6720,1,1,NULL,'edit','2026-04-16 12:48:21'),
(6721,1,1,NULL,'edit','2026-04-16 12:47:58'),
(6725,1,1,NULL,'edit','2026-04-20 19:05:45'),
(6743,1,1,NULL,'edit','2026-04-16 12:46:31'),
(6744,1,1,NULL,'edit','2026-04-16 12:46:55'),
(6759,1,1,NULL,'edit','2026-04-20 19:07:18'),
(6759,1,1,NULL,'save','2026-04-20 19:08:02'),
(6760,1,1,NULL,'edit','2026-04-16 13:28:25'),
(6760,1,1,NULL,'save','2026-04-16 13:28:49'),
(6761,1,1,NULL,'edit','2026-04-01 18:56:50'),
(6761,1,1,NULL,'save','2026-04-01 18:58:07'),
(6762,1,1,NULL,'edit','2026-04-01 18:57:49'),
(6762,1,1,NULL,'save','2026-04-01 19:04:38'),
(6764,1,1,NULL,'edit','2026-04-01 19:09:58'),
(6765,1,1,NULL,'edit','2026-04-01 19:06:21'),
(6766,1,1,NULL,'edit','2026-04-01 19:07:34'),
(6767,1,1,NULL,'edit','2026-04-01 19:07:57'),
(6768,1,1,NULL,'edit','2026-04-01 19:08:17'),
(6769,1,1,NULL,'edit','2026-04-01 19:08:47'),
(6770,1,1,NULL,'edit','2026-04-01 19:09:19'),
(6771,1,1,NULL,'edit','2026-04-20 19:07:18'),
(6771,1,1,NULL,'save','2026-04-20 19:08:01'),
(6818,1,1,NULL,'edit','2026-04-20 19:13:51'),
(6818,1,1,NULL,'save','2026-04-20 19:13:53'),
(6819,1,1,NULL,'edit','2026-04-16 13:46:54'),
(6819,1,1,NULL,'save','2026-04-01 19:28:44'),
(6820,1,1,NULL,'edit','2026-04-16 13:48:38'),
(6821,1,1,NULL,'edit','2026-04-16 13:43:08'),
(6821,1,1,NULL,'save','2026-04-16 13:45:10'),
(6823,1,1,NULL,'edit','2026-04-16 13:43:21'),
(6823,1,1,NULL,'save','2026-04-16 13:51:06'),
(6824,1,1,NULL,'edit','2026-04-01 19:40:31'),
(6824,1,1,NULL,'save','2026-04-01 19:44:52'),
(6825,1,1,NULL,'edit','2026-04-01 19:40:49'),
(6830,1,1,NULL,'edit','2026-04-20 19:13:51'),
(6892,1,1,NULL,'edit','2026-04-03 14:08:35'),
(6931,1,1,NULL,'save','2026-04-02 09:17:33'),
(6932,1,1,NULL,'save','2026-04-02 09:17:32'),
(6933,1,1,NULL,'save','2026-04-02 09:17:30'),
(6934,1,1,NULL,'edit','2026-04-20 19:03:49'),
(6934,1,1,NULL,'save','2026-04-20 19:03:57'),
(6935,1,1,NULL,'edit','2026-04-03 10:38:33'),
(6936,1,1,NULL,'edit','2026-04-03 10:41:38'),
(6936,1,1,NULL,'save','2026-04-03 10:42:05'),
(6937,1,1,NULL,'edit','2026-04-07 09:18:14'),
(6939,1,1,NULL,'edit','2026-04-13 08:48:07'),
(6939,1,1,NULL,'save','2026-04-13 08:54:50'),
(6944,1,1,NULL,'edit','2026-04-03 10:54:31'),
(6945,1,1,NULL,'edit','2026-04-03 10:54:50'),
(6946,1,1,NULL,'edit','2026-04-20 19:03:49'),
(6997,1,1,NULL,'edit','2026-04-20 19:04:57'),
(6997,1,1,NULL,'save','2026-04-20 19:04:59'),
(6998,1,1,NULL,'edit','2026-04-07 19:11:42'),
(6998,1,1,NULL,'save','2026-04-07 19:14:46'),
(6999,1,1,NULL,'edit','2026-04-07 19:14:13'),
(6999,1,1,NULL,'save','2026-04-07 19:16:49'),
(7000,1,1,NULL,'edit','2026-04-16 13:55:00'),
(7002,1,1,NULL,'edit','2026-04-16 13:55:54'),
(7002,1,1,NULL,'save','2026-04-13 11:22:15'),
(7012,1,1,NULL,'edit','2026-04-20 19:04:57'),
(7053,1,1,NULL,'edit','2026-04-13 12:25:44'),
(7074,1,1,NULL,'edit','2026-04-20 19:05:10'),
(7074,1,1,NULL,'save','2026-04-20 19:05:12'),
(7075,1,1,NULL,'edit','2026-04-16 14:36:09'),
(7075,1,1,NULL,'save','2026-04-16 14:44:14'),
(7076,1,1,NULL,'edit','2026-04-16 14:46:51'),
(7077,1,1,NULL,'edit','2026-04-16 14:39:44'),
(7079,1,1,NULL,'edit','2026-04-16 14:37:43'),
(7079,1,1,NULL,'save','2026-04-16 14:47:35'),
(7089,1,1,NULL,'edit','2026-04-20 19:05:09'),
(7131,1,1,NULL,'save','2026-04-16 14:47:22'),
(7190,1,1,NULL,'edit','2026-04-06 09:22:49'),
(7356,1,1,NULL,'edit','2026-04-06 15:49:06'),
(7357,1,1,NULL,'edit','2026-04-06 15:49:18'),
(7358,1,1,NULL,'edit','2026-04-06 15:49:30'),
(7359,1,1,NULL,'edit','2026-04-06 15:49:40'),
(7706,1,1,NULL,'edit','2026-04-13 12:24:00'),
(7821,1,1,NULL,'edit','2026-04-13 12:57:09'),
(7871,1,1,NULL,'edit','2026-04-15 15:25:58'),
(7871,1,1,NULL,'save','2026-04-15 15:26:00'),
(7924,1,1,NULL,'edit','2026-04-17 12:13:20'),
(7925,1,1,NULL,'edit','2026-04-17 12:13:07'),
(7925,1,1,NULL,'save','2026-04-17 12:13:18'),
(8437,1,1,NULL,'edit','2026-04-20 20:11:41'),
(8437,1,1,NULL,'save','2026-04-20 20:11:42'),
(8438,1,1,NULL,'edit','2026-04-20 20:11:40'),
(8438,1,1,NULL,'save','2026-04-20 20:04:12'),
(8439,1,1,NULL,'edit','2026-04-20 20:11:35'),
(8439,1,1,NULL,'save','2026-04-20 20:04:09'),
(8440,1,1,NULL,'edit','2026-04-20 20:11:34'),
(8440,1,1,NULL,'save','2026-04-20 20:04:06'),
(8449,1,1,NULL,'edit','2026-04-20 20:10:08'),
(8467,1,1,NULL,'edit','2026-04-20 20:10:07');
/*!40000 ALTER TABLE `elementactivity` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `elements`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `elements` WRITE;
/*!40000 ALTER TABLE `elements` DISABLE KEYS */;
INSERT INTO `elements` VALUES
(1,NULL,NULL,NULL,54,'craft\\elements\\User',1,0,'2025-11-29 11:54:53','2026-04-20 19:38:20',NULL,NULL,NULL,'c52d7d4b-a295-4827-884b-3df3e5567273'),
(2,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-29 12:58:28','2026-04-20 20:40:51',NULL,NULL,NULL,'fe246ecc-6da0-47e9-93f3-1264f1984b33'),
(3,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-29 12:58:35','2026-04-20 20:41:07',NULL,NULL,NULL,'b9cff504-fd2d-4432-aa35-4c058363b020'),
(4,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-29 12:58:41','2026-04-20 20:41:28',NULL,NULL,NULL,'6842dc4f-5206-4b2b-95b0-093b78e7158f'),
(5,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-29 12:58:47','2026-02-21 23:51:33',NULL,NULL,NULL,'82a71c05-bdaf-4d9c-88b8-037461ad1c46'),
(6,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-29 12:58:53','2026-04-20 20:41:49',NULL,NULL,NULL,'04afb510-547a-4f47-8af1-7d4ca740662c'),
(7,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-11-30 11:19:43','2025-11-30 11:19:43',NULL,NULL,NULL,'ffa14e67-049c-4e8e-8b24-92dbe509e3f6'),
(8,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 11:23:32','2026-04-17 12:11:32',NULL,NULL,NULL,'de032df1-9515-4b2a-99c1-c1b4fe97d8ee'),
(11,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:04:32','2026-02-21 23:07:43',NULL,NULL,NULL,'22b6d385-4d99-4d78-8f49-64020a5082ad'),
(12,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:14','2026-03-03 11:08:31',NULL,'2026-03-03 11:08:31',NULL,'7b574f76-8627-4cff-9e26-d5dfe1365028'),
(13,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:18','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'12003217-d58e-493f-b241-f23d7832c952'),
(14,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:27','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'2ce13992-653b-4f49-827e-e642c4048f29'),
(15,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:33','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'f35ff650-1e13-45f2-9748-0dd7cee042db'),
(16,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:41','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'3559be70-ce1f-4d0d-901a-28b6efa3f99f'),
(17,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:51','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'9905e963-8992-45bd-859c-c37a77ee9670'),
(18,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:54','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'c2ec9cc4-0844-469f-a491-11066cc312b8'),
(19,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:58','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'d06f3452-290b-46ac-b1f3-a1bc52ce854b'),
(20,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:09:04','2026-03-03 11:08:23',NULL,'2026-03-03 11:08:23',NULL,'ff3b30e1-f375-4e58-9b8b-37e3ee0d63e3'),
(21,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:09:09','2025-11-30 12:09:47',NULL,'2025-11-30 12:09:47',NULL,'eb102de5-1979-4415-b71a-a9854b798380'),
(22,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:10:25','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'f9681c07-b11e-4229-819f-d4f870d9ca1d'),
(23,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:10:30','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'49ba65eb-8c9a-4200-af1f-f52735eaadf0'),
(24,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:10:35','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'75cda394-47d3-42c4-9393-b306d20c2c3b'),
(25,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:10:43','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'e897024e-5008-43db-be40-2bb512983a04'),
(26,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:10:48','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'4e1689e8-f13a-41ac-92c9-467e369de5b6'),
(28,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:11:16','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'3ff41558-24f6-468f-94b8-d50b3202c283'),
(29,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:11:25','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'d7cdc0fa-7035-480b-b3e0-3b84a7d8caed'),
(30,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:11:30','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'b713e5d5-bc16-441c-9910-07b2686dd87f'),
(31,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:11:35','2026-03-03 07:58:25',NULL,'2026-03-03 07:58:25',NULL,'116dc2b1-ccbe-49a5-81a1-aef218a91d1b'),
(35,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:27:29','2026-04-20 20:41:14',NULL,NULL,NULL,'3942fab8-e081-4c61-8701-51f973c328f9'),
(36,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-11-30 14:11:48','2026-03-20 00:34:58',NULL,NULL,NULL,'1323e315-b0d5-44fb-822c-9f488fa7c996'),
(37,NULL,7,NULL,3,'craft\\elements\\Entry',1,0,'2025-11-30 19:26:54','2025-11-30 19:28:20',NULL,'2025-11-30 19:28:20',NULL,'e155d847-9420-4e8a-9f72-e630e053e01c'),
(38,NULL,NULL,NULL,7,'craft\\elements\\Entry',1,0,'2025-11-30 19:27:45','2026-04-17 12:19:21',NULL,NULL,NULL,'6e58725f-a2fb-4310-8304-dd8b7528d085'),
(43,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-11-30 19:34:01','2025-11-30 20:10:08',NULL,NULL,NULL,'b0150bd0-4039-4092-8480-d6f6e58c0069'),
(44,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-11-30 19:34:01','2025-11-30 20:06:55',NULL,'2025-11-30 20:06:55',NULL,'54765af9-eb03-40ec-8f4d-1e39f229f4ac'),
(48,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-11-30 19:44:26','2025-11-30 19:44:26',NULL,NULL,NULL,'391b3a50-1f99-435a-9758-5d1e346afc87'),
(61,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-11-30 20:06:55','2025-11-30 20:09:31',NULL,NULL,NULL,'a3224703-c3ff-4d53-ade9-c8551607d313'),
(62,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-11-30 20:06:55','2025-11-30 20:07:09',NULL,'2025-11-30 20:07:09',NULL,'d70057c8-22cc-432e-9b2c-ad15a5cd2e2a'),
(81,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-11-30 20:19:00','2026-02-21 15:54:43',NULL,NULL,NULL,'186b7250-2f95-43b0-87f3-801bd4211c72'),
(85,NULL,28,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 14:55:01','2025-12-02 14:55:01',NULL,NULL,NULL,'cbda1b61-6c50-4aab-b582-b5a361ded934'),
(86,NULL,29,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 14:55:13','2025-12-02 14:55:13',NULL,NULL,NULL,'d60471df-10ad-4ff0-92f4-32d69db45bad'),
(87,NULL,30,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:31:53','2025-12-02 15:31:53',NULL,NULL,NULL,'ef857847-b8b5-4706-80b3-99c57a5d8dab'),
(88,NULL,31,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:33:56','2025-12-02 15:33:56',NULL,NULL,NULL,'18a5ddbf-4495-4412-821d-ee1ed1c176bb'),
(89,NULL,NULL,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:34:26','2026-04-17 12:06:35',NULL,NULL,NULL,'ac577fd8-ca87-4e06-bbee-45b18e85383a'),
(90,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-12-02 15:40:05','2025-12-02 15:40:05',NULL,NULL,NULL,'91275b8f-ffd5-4bc1-948b-5572241c02f0'),
(91,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-12-02 15:40:14','2025-12-02 15:40:14',NULL,NULL,NULL,'037cb1c6-927b-4988-981e-17f2cd895608'),
(92,89,NULL,21,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:40:41','2025-12-02 15:40:41',NULL,NULL,NULL,'3cfe1c5d-d746-4fab-857e-cecdff98ac60'),
(96,89,NULL,23,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:41:19','2025-12-02 15:41:19',NULL,NULL,NULL,'519f68cf-895c-425c-ba45-1e6850c48a90'),
(99,NULL,NULL,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:42:19','2026-04-17 11:54:44',NULL,NULL,NULL,'e6735211-23ef-49cb-b8c6-1530eeab6aa7'),
(100,99,NULL,25,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:42:45','2025-12-02 15:42:45',NULL,NULL,NULL,'9c9a173a-16cf-4590-8ad1-356de3324ba1'),
(102,99,NULL,26,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:43:24','2025-12-02 15:43:24',NULL,NULL,NULL,'a467245b-ef52-438b-afc9-4582d8f14aac'),
(103,NULL,38,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:12:22','2025-12-02 16:12:22',NULL,NULL,NULL,'02387be7-bf58-433b-a4fc-7089c9c9d1bb'),
(104,NULL,39,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:12:31','2025-12-02 16:12:31',NULL,NULL,NULL,'21178ad8-2472-4205-bb0c-8c5cbd3d0c61'),
(108,89,NULL,28,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:15:56','2025-12-02 16:15:56',NULL,NULL,NULL,'8bd04517-999e-4d9e-a7ae-c9b304f5f732'),
(110,99,NULL,29,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:16:03','2025-12-02 16:16:03',NULL,NULL,NULL,'a04c0939-c4f2-4f62-899b-9e61169850a5'),
(111,NULL,43,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:16:32','2025-12-02 16:16:32',NULL,NULL,NULL,'1c7e1979-ed3c-411b-a551-25786253bb41'),
(112,NULL,NULL,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:26:08','2026-04-17 11:47:28',NULL,NULL,NULL,'cd617995-021f-45c7-ae79-7e6483e2cc7c'),
(113,112,NULL,30,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:26:11','2025-12-02 16:26:11',NULL,NULL,NULL,'f1cd0670-2c66-465b-a18f-4122e12df413'),
(115,112,NULL,31,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:26:28','2025-12-02 16:26:28',NULL,NULL,NULL,'e4bb0388-1613-4a1b-b39d-cb934b6516d3'),
(116,99,NULL,32,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:28:15','2025-12-02 16:28:15',NULL,NULL,NULL,'83690b84-2eb2-4c15-8498-df18f573b8b7'),
(120,89,NULL,34,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:47:19','2025-12-02 16:47:19',NULL,NULL,NULL,'5cd518a6-f58e-40d6-b0db-16cb06877373'),
(124,112,NULL,36,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:48:40','2025-12-02 16:48:40',NULL,NULL,NULL,'2264032c-5479-4471-b39d-9a0964299e44'),
(125,99,NULL,37,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:48:44','2025-12-02 16:48:44',NULL,NULL,NULL,'90882248-a217-4a10-aab7-a31ca0a9b103'),
(127,89,NULL,38,5,'craft\\elements\\Entry',1,0,'2025-12-02 16:48:50','2025-12-02 16:48:50',NULL,NULL,NULL,'31527730-6815-4c9f-bd29-25c07c7c971d'),
(129,89,NULL,39,5,'craft\\elements\\Entry',1,0,'2025-12-02 17:03:57','2025-12-02 17:03:57',NULL,NULL,NULL,'2fedc640-24f0-4d2f-8c48-33670cc589d2'),
(134,99,NULL,42,5,'craft\\elements\\Entry',1,0,'2025-12-02 17:18:36','2025-12-02 17:18:36',NULL,NULL,NULL,'a18f09b3-3711-4a11-8c4a-f626e6739368'),
(136,99,NULL,43,5,'craft\\elements\\Entry',1,0,'2025-12-02 17:18:46','2025-12-02 17:18:46',NULL,NULL,NULL,'ca8906b1-52d8-465f-8e1f-4cabf6208de4'),
(142,NULL,59,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:48','2025-12-02 17:25:48',NULL,NULL,NULL,'76d4da4b-0038-46b7-9285-4c7042cb67ba'),
(143,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:51','2026-04-16 14:52:31',NULL,NULL,NULL,'4986cb4d-06cd-4710-acfd-74ca6cb40604'),
(144,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:51','2026-04-16 14:52:31',NULL,NULL,NULL,'abafe54a-d865-4ace-a0ef-e4994a7beca7'),
(145,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:51','2026-04-16 14:52:31',NULL,NULL,NULL,'4bac21f9-6d9e-4c78-b07b-318ad9534d97'),
(161,99,NULL,53,5,'craft\\elements\\Entry',1,0,'2025-12-02 17:45:53','2025-12-02 17:45:53',NULL,NULL,NULL,'1d9227aa-23b8-43cb-ab91-7eac7bf6ec9d'),
(163,99,NULL,54,5,'craft\\elements\\Entry',1,0,'2025-12-02 17:46:07','2025-12-02 17:46:07',NULL,NULL,NULL,'db6eaa29-e8e2-4c76-b624-c5ab0aa22ac4'),
(177,NULL,75,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 19:05:16','2025-12-02 19:05:16',NULL,NULL,NULL,'101d46dd-ffcf-4a71-b5bd-a83c914d26be'),
(235,NULL,NULL,NULL,10,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:42:11','2026-04-20 19:25:06',NULL,NULL,NULL,'40b66797-47c0-4ef8-9e10-dd07d793fbdd'),
(236,NULL,NULL,NULL,10,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:42:21','2025-12-02 21:42:21',NULL,NULL,NULL,'5fa43f99-279a-43ff-a283-498628a5f09d'),
(237,NULL,NULL,NULL,10,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:42:36','2025-12-02 21:42:36',NULL,NULL,NULL,'93b3dd3d-35bc-4e0f-84a5-42b28ab8a920'),
(238,NULL,NULL,NULL,10,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:42:46','2025-12-02 21:42:46',NULL,NULL,NULL,'2d6d73cd-91fe-47ac-af4b-476d0c2bb4d3'),
(239,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:43:52','2026-03-26 10:31:05',NULL,'2026-03-26 10:31:05',NULL,'ed41f808-4018-4acd-8b98-0515594899d2'),
(240,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:44:07','2026-03-26 10:31:05',NULL,'2026-03-26 10:31:05',NULL,'09995a25-81ae-4834-86d4-2afe66b2abfa'),
(241,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:44:15','2026-03-26 10:31:05',NULL,'2026-03-26 10:31:05',NULL,'c61adfcf-3a0b-4ab0-aa7e-e0ff4825eef0'),
(242,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:44:23','2026-03-26 10:31:05',NULL,'2026-03-26 10:31:05',NULL,'584f12e3-d20a-4a86-b5b0-5e5df74c5f2b'),
(243,NULL,NULL,NULL,13,'craft\\elements\\GlobalSet',1,0,'2025-12-02 22:04:25','2026-04-17 16:39:49',NULL,NULL,NULL,'dabc2ee6-7b53-4c21-8253-0c9718bdd331'),
(244,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 22:09:04','2026-03-20 00:20:46',NULL,NULL,NULL,'55c3c84b-e02e-4c98-a3a7-ce9b9d99bdd9'),
(245,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 22:09:19','2026-03-20 00:20:51',NULL,NULL,NULL,'7ae3029f-a609-4759-804b-15e6003d36c2'),
(246,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2025-12-02 22:10:27','2026-03-20 10:28:29',NULL,NULL,NULL,'c1256246-9031-4685-9166-4f55d0b0da37'),
(247,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2025-12-02 22:10:44','2026-03-20 00:31:15',NULL,NULL,NULL,'c42f8910-36ff-43ca-81f6-9ed6c0db1668'),
(250,NULL,NULL,NULL,14,'craft\\elements\\Entry',1,0,'2025-12-03 07:52:32','2026-04-15 15:03:09',NULL,NULL,NULL,'3f2848b3-0ba2-4603-8572-b9181eac0d72'),
(251,250,NULL,90,14,'craft\\elements\\Entry',1,0,'2025-12-03 07:52:56','2025-12-03 07:52:56',NULL,NULL,NULL,'2938fbe1-2e23-469c-8ab7-205b1f828879'),
(252,NULL,NULL,NULL,14,'craft\\elements\\Entry',1,0,'2025-12-03 07:54:02','2026-04-15 15:19:53',NULL,NULL,NULL,'cdcba7b3-aa80-4658-b0c5-8c429acf847f'),
(253,252,NULL,91,14,'craft\\elements\\Entry',1,0,'2025-12-03 07:54:20','2025-12-03 07:54:20',NULL,NULL,NULL,'febeed0a-4636-4c07-844c-8c583f0443e9'),
(255,NULL,NULL,NULL,15,'craft\\elements\\Entry',1,0,'2025-12-03 08:56:07','2026-03-26 10:01:24',NULL,NULL,NULL,'b0b3d7c1-8ca7-4a0e-aed9-cec21c413d85'),
(261,NULL,109,NULL,16,'craft\\elements\\Entry',1,0,'2025-12-03 17:04:20','2025-12-03 17:10:05',NULL,'2025-12-03 17:10:05',NULL,'b573033a-26c5-45dc-a96e-0c1c80b5946b'),
(262,NULL,110,NULL,6,'craft\\elements\\Entry',1,0,'2025-12-03 17:06:52','2025-12-03 17:07:02',NULL,NULL,NULL,'298a2bcf-bd6b-4016-b732-2da2e7e99fad'),
(263,NULL,111,NULL,6,'craft\\elements\\Entry',1,0,'2025-12-03 17:09:02','2025-12-03 17:09:02',NULL,NULL,NULL,'22825a6e-1e88-4dac-a5b6-80966a2f442b'),
(266,NULL,113,NULL,16,'craft\\elements\\Entry',1,0,'2025-12-03 17:10:11','2025-12-03 17:11:41',NULL,'2025-12-03 17:11:41',NULL,'2a0b9415-4ba5-4a09-995f-be769aad7121'),
(267,NULL,114,NULL,6,'craft\\elements\\Entry',1,0,'2025-12-03 17:10:13','2025-12-03 17:10:36',NULL,'2025-12-03 17:10:36',NULL,'13550215-fcf5-4c6e-94f1-b0eedb756709'),
(268,NULL,115,NULL,16,'craft\\elements\\Entry',1,0,'2025-12-03 17:10:21','2025-12-03 17:10:30',NULL,'2025-12-03 17:10:30',NULL,'38397147-408f-4505-af59-8d25d5b31f1d'),
(269,NULL,116,NULL,6,'craft\\elements\\Entry',1,0,'2025-12-03 17:10:23','2025-12-03 17:10:23',NULL,NULL,NULL,'15d7a365-08b0-46d0-af07-4226696b6758'),
(274,NULL,NULL,NULL,16,'craft\\elements\\Entry',1,0,'2025-12-03 17:13:37','2026-04-16 14:54:00',NULL,NULL,NULL,'dc5f0362-b613-4c1f-bcde-781210162a5c'),
(275,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2025-12-03 17:13:37','2026-02-05 07:59:45',NULL,'2026-02-05 07:59:45',NULL,'56b1d900-15cb-4a08-b35d-828bb17d9611'),
(302,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-03 19:14:29','2026-04-16 14:54:00',NULL,NULL,NULL,'8d849b1c-075f-47e1-b128-b6f66c82e7ea'),
(312,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-12-04 08:44:27','2025-12-04 08:44:27',NULL,NULL,NULL,'e945e48c-0417-4615-8351-0d137fc4cf00'),
(319,NULL,NULL,NULL,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:55:44','2026-03-26 10:46:59',NULL,NULL,NULL,'834cef17-327c-4a18-9323-ea1079c691df'),
(320,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-12-04 17:56:44','2025-12-04 17:56:44',NULL,NULL,NULL,'3fe6fd95-a1b3-4523-ae80-8274f66e3cdb'),
(321,319,NULL,120,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:56:51','2025-12-04 17:56:51',NULL,NULL,NULL,'98709c4c-cef6-4d9b-ab5d-1d69cf7c0815'),
(322,NULL,NULL,NULL,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:56:55','2026-03-26 10:42:34',NULL,NULL,NULL,'7cd6eeaf-7ba2-46aa-8790-6fd891ac6bc1'),
(323,322,NULL,121,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:57:32','2025-12-04 17:57:32',NULL,NULL,NULL,'0514e143-19dc-406c-bf9c-76cd154dc0f3'),
(324,NULL,NULL,NULL,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:57:32','2026-03-26 10:44:18',NULL,NULL,NULL,'923eaa83-e77e-4e6c-bb75-1b0114e1005a'),
(325,324,NULL,122,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:57:55','2025-12-04 17:57:55',NULL,NULL,NULL,'05a26897-52b3-4be0-bc46-1d56d2b49bec'),
(326,NULL,NULL,NULL,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:58:07','2026-03-26 10:43:06',NULL,NULL,NULL,'5e755446-a82d-4b77-b47b-41ccf7c29103'),
(327,326,NULL,123,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:58:29','2025-12-04 17:58:29',NULL,NULL,NULL,'23f0ca77-50e4-40e6-91fc-a27f52ffd69d'),
(330,NULL,NULL,NULL,19,'craft\\elements\\Entry',1,0,'2025-12-04 17:59:30','2026-03-30 16:49:56',NULL,'2026-03-30 16:49:56',NULL,'b3b190fe-2c60-4260-940b-36dc10d78f58'),
(337,326,NULL,128,18,'craft\\elements\\Entry',1,0,'2025-12-04 18:18:04','2025-12-04 18:18:04',NULL,NULL,NULL,'e2524ae2-a1af-4a46-9987-764757442d92'),
(339,322,NULL,129,18,'craft\\elements\\Entry',1,0,'2025-12-04 18:18:27','2025-12-04 18:18:27',NULL,NULL,NULL,'5409a000-6c9e-408d-b6ba-7629d936e4cc'),
(341,322,NULL,130,18,'craft\\elements\\Entry',1,0,'2025-12-04 18:18:56','2025-12-04 18:18:56',NULL,NULL,NULL,'65be3bee-6f33-4a83-8001-1ed0712072df'),
(343,NULL,146,NULL,20,'craft\\elements\\Entry',1,0,'2025-12-04 19:30:33','2025-12-04 22:51:44',NULL,'2025-12-04 22:51:44',NULL,'7e268b79-15c9-476f-a943-d0a13fefe24f'),
(348,NULL,151,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-06 10:39:20','2025-12-06 10:39:20',NULL,NULL,NULL,'9533780b-8719-41dd-87b4-6e1ee34368ca'),
(349,NULL,152,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-06 10:39:47','2025-12-06 10:39:47',NULL,NULL,NULL,'effb3e32-d10e-4d06-8b52-1edd7e70fa6e'),
(352,NULL,155,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-06 10:40:49','2025-12-06 10:40:49',NULL,NULL,NULL,'23ccfc84-ba76-48c9-94ad-73fefc8abe31'),
(353,NULL,156,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-06 10:40:52','2025-12-06 10:40:52',NULL,NULL,NULL,'4f7a8a77-3ea8-481e-b8b8-cf4b13e56a48'),
(354,NULL,157,NULL,23,'craft\\elements\\Entry',1,0,'2025-12-06 10:40:54','2025-12-06 10:40:54',NULL,NULL,NULL,'cd84ba08-bdb8-4457-9438-fb665318897c'),
(355,NULL,158,NULL,26,'craft\\elements\\Entry',1,0,'2025-12-06 10:40:56','2025-12-06 10:40:56',NULL,NULL,NULL,'b4575bf1-4059-4a28-8a4d-e54cf5ace39b'),
(356,NULL,159,NULL,27,'craft\\elements\\Entry',1,0,'2025-12-06 10:41:00','2025-12-06 10:41:00',NULL,NULL,NULL,'7e73a343-c677-43ff-aa0f-e4dee11bddd8'),
(357,NULL,160,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-06 10:41:08','2025-12-06 10:41:08',NULL,NULL,NULL,'e564e000-acc1-4db5-ad3b-f1ccd2842ebe'),
(358,NULL,NULL,NULL,20,'craft\\elements\\Entry',1,0,'2025-12-06 18:45:14','2025-12-07 08:45:19',NULL,'2025-12-07 08:45:19',NULL,'1f2131b4-b499-4dc5-b7c7-03577cdd36c8'),
(359,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-06 18:45:14','2025-12-07 08:38:43',NULL,'2025-12-07 08:38:43',NULL,'9bc1b9b6-2722-4f5f-988d-94ee770c9371'),
(360,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-06 18:45:14','2025-12-06 19:18:57',NULL,'2025-12-06 19:18:57',NULL,'ee9cab95-9196-4a31-9f85-62c05763b521'),
(377,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-06 18:56:45','2025-12-06 19:17:07',NULL,'2025-12-06 19:17:07',NULL,'dbe33132-843c-47f7-8676-e6a10a6e34c8'),
(378,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-06 18:56:45','2025-12-06 19:17:07',NULL,'2025-12-06 19:17:07',1,'9284d9cf-76d3-4c36-9ffc-e9b30d8139f7'),
(379,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-06 18:56:45','2025-12-06 19:17:07',NULL,'2025-12-06 19:17:07',1,'b314fae8-b26c-49e2-9004-5e3382f688f0'),
(395,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-06 19:18:57','2025-12-07 08:32:56',NULL,'2025-12-07 08:32:56',NULL,'a0346984-6eb7-4ecc-93a1-4b87d1d9af15'),
(408,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-06 19:23:58','2025-12-06 20:31:20',NULL,'2025-12-06 20:31:20',NULL,'108800aa-103b-4774-9554-df1a7b155769'),
(409,NULL,NULL,NULL,23,'craft\\elements\\Entry',1,0,'2025-12-06 19:23:58','2025-12-06 19:29:50',NULL,'2025-12-06 19:29:50',NULL,'f335dea6-41f5-4dee-b288-820d1c55d109'),
(410,NULL,NULL,NULL,27,'craft\\elements\\Entry',1,0,'2025-12-06 19:23:58','2025-12-06 20:31:20',NULL,'2025-12-06 20:31:20',NULL,'18778268-30ce-43ee-9431-d8412c773cf5'),
(411,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-06 19:23:58','2025-12-06 20:26:26',NULL,'2025-12-06 20:26:26',NULL,'1bbe6483-a199-4a9c-bde7-f4aaee2f2ec5'),
(412,NULL,NULL,NULL,23,'craft\\elements\\Entry',1,0,'2025-12-06 19:23:58','2025-12-06 20:26:26',NULL,'2025-12-06 20:26:26',1,'98a31c66-d2ae-4f3f-94d1-e9ad6d16893e'),
(529,NULL,NULL,NULL,25,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-07 08:32:56',NULL,'2025-12-07 08:32:56',NULL,'67bc0e41-e403-4d97-832a-6a8705cfb9d2'),
(530,NULL,NULL,NULL,25,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-07 08:32:56',NULL,'2025-12-07 08:32:56',NULL,'56634083-684d-4741-8ba2-f40339284174'),
(542,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-06 20:33:04','2025-12-07 08:32:56',NULL,'2025-12-07 08:32:56',NULL,'24b65440-2164-47e6-9e98-dc34d332e6ea'),
(549,NULL,230,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 00:21:24','2025-12-07 00:21:24',NULL,NULL,NULL,'536a699a-46c6-4efe-98a5-73495e0a0a86'),
(551,NULL,232,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 00:21:47','2025-12-07 00:21:47',NULL,NULL,NULL,'9437f6b1-95d8-404b-8e2b-2cd67c663a4c'),
(553,NULL,234,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 00:22:07','2025-12-07 00:22:07',NULL,NULL,NULL,'7e7831b5-475f-4401-a104-827f38b6da15'),
(555,NULL,236,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 00:22:39','2025-12-07 00:27:09',NULL,'2025-12-07 00:27:09',NULL,'cba76ca6-a243-4ba6-9396-062929da2601'),
(556,NULL,237,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-07 00:22:42','2025-12-07 00:22:46',NULL,NULL,NULL,'8eb8e7b7-e7ea-4d4d-8140-d828c8d5bc61'),
(567,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:32:56','2025-12-07 08:38:43',NULL,'2025-12-07 08:38:43',1,'aaa68859-5c5c-4a0b-acf4-bba798c8a92f'),
(568,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:32:56','2025-12-07 08:38:43',NULL,'2025-12-07 08:38:43',1,'4b813895-51ea-44c2-90ce-ccc4a0bb176e'),
(569,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:32:56','2025-12-07 08:38:43',NULL,'2025-12-07 08:38:43',1,'4b4486aa-0171-4bd6-9742-e83b985be763'),
(570,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:32:56','2025-12-07 08:38:43',NULL,'2025-12-07 08:38:43',1,'1c3cb580-647b-46d4-8c9b-e8fe67e14820'),
(578,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:45:19',NULL,'2025-12-07 08:45:19',1,'995220ff-0a6c-4eb8-a93a-39c6b74d2d59'),
(579,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:45:19',NULL,'2025-12-07 08:45:19',1,'b215765d-02bd-4d12-ac4c-0661920cf798'),
(580,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:45:19',NULL,'2025-12-07 08:45:19',1,'ef34ff15-3568-4aca-a864-39e778cdbbd0'),
(581,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:45:19',NULL,'2025-12-07 08:45:19',1,'9b1d93ba-acfb-4f5e-95d8-3fa5ce89711f'),
(582,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:45:19',NULL,'2025-12-07 08:45:19',1,'b732f701-860e-4a2f-bde7-e2d71fdc1484'),
(592,579,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:41:47','2025-12-07 08:42:38',NULL,NULL,NULL,'a8a0257e-401a-406b-8995-dac892b78441'),
(593,578,253,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:41:49','2025-12-07 08:42:40',NULL,'2025-12-07 08:45:19',NULL,'41828d3f-9df0-46c9-a92a-0ca128872c6f'),
(594,582,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:41:56','2025-12-07 08:42:33',NULL,NULL,NULL,'afc5e6e6-ae07-4d2c-8168-ae8640949d49'),
(604,NULL,NULL,NULL,20,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:18','2026-03-31 10:00:26',NULL,NULL,NULL,'99a235e4-a536-464f-bff0-5e04d5e1f795'),
(605,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:49:11',NULL,'2025-12-07 08:49:11',NULL,'6522c7cc-4dc4-40f5-91ef-25ce13b8689a'),
(606,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:49:11',NULL,'2025-12-07 08:49:11',1,'0016b8d2-9916-461d-ac64-5e01534e0efa'),
(607,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:49:11',NULL,'2025-12-07 08:49:11',1,'093f79f6-6bb8-4f32-b7bc-568f54bad91a'),
(608,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:49:11',NULL,'2025-12-07 08:49:11',1,'8ad902fb-c9e4-4fde-a115-9426697d035a'),
(609,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:49:11',NULL,'2025-12-07 08:49:11',1,'2eaaf13b-bce4-454d-9750-72e986a49eec'),
(626,607,266,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:48:34','2025-12-07 08:48:35',NULL,'2025-12-07 08:49:11',NULL,'25e5a8f0-4aed-4f6a-affd-7d895ab62f8f'),
(632,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:52:28',NULL,'2025-12-07 08:52:28',NULL,'c7cd6bd3-db71-4b87-9516-f154a4fea381'),
(634,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:52:28',NULL,'2025-12-07 08:52:28',1,'bea3fceb-f337-4c40-8424-39a4fac561fa'),
(635,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:52:28',NULL,'2025-12-07 08:52:28',1,'dd391b59-f132-40c5-8c10-c28e5e47835d'),
(636,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:52:28',NULL,'2025-12-07 08:52:28',1,'643f5486-17b1-4a59-b7f7-d1de18dbc320'),
(648,634,273,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:51:18','2025-12-07 08:51:37',NULL,'2025-12-07 08:52:28',NULL,'7071b9de-a71a-4629-84e5-cb560eea6e41'),
(654,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2026-03-31 10:00:26',NULL,NULL,NULL,'545d4cec-e521-47cd-b092-f36cd72fdaca'),
(655,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 09:17:46',NULL,NULL,NULL,'279b7484-6203-42d0-a1ab-71efcb6d8397'),
(656,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2026-03-31 09:41:19',NULL,NULL,NULL,'d5185f23-2984-4ff4-a056-82f3afc1f860'),
(657,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2026-03-31 10:00:26',NULL,NULL,NULL,'024bfa87-a41f-421a-b18c-60be9908a91e'),
(658,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'93a3a3b2-fccc-42c7-944e-5968baa30d9d'),
(665,658,NULL,265,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2026-03-31 09:58:12',NULL,NULL,NULL,'3cd00b6d-2723-4fe7-a3c3-36a24502e2eb'),
(698,655,NULL,281,31,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2026-03-31 09:58:12',NULL,NULL,NULL,'b7b78920-ea0f-4a7b-a589-63a2bf39faa9'),
(699,656,NULL,282,22,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2026-03-31 09:58:12',NULL,NULL,NULL,'9367df27-8f1b-49f1-a596-97f1c7c1b9d2'),
(750,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2025-12-07 09:27:22','2026-03-26 08:54:11',NULL,NULL,NULL,'10b4054d-e517-4460-8755-d0790c0d2cb7'),
(755,NULL,321,NULL,32,'craft\\elements\\Entry',1,0,'2025-12-07 13:55:44','2025-12-07 13:55:48',NULL,NULL,NULL,'d21cd144-d4cc-47a1-ad0a-8672a36e3f16'),
(756,NULL,322,NULL,32,'craft\\elements\\Entry',1,0,'2025-12-07 13:55:46','2025-12-07 13:55:46',NULL,NULL,NULL,'32a4f064-c9a1-44b5-95b3-480b64fca9c7'),
(757,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-12-07 14:21:17','2025-12-07 14:21:17',NULL,NULL,NULL,'42217503-cc51-4673-9345-f47b3ee17817'),
(761,NULL,NULL,NULL,32,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2026-04-03 14:06:15',NULL,NULL,NULL,'fc49826a-532f-42af-9239-9d363cb71276'),
(762,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:46:22',NULL,'2025-12-07 14:46:22',NULL,'c77e10c1-b518-484f-a1e2-f1fd94b42d41'),
(763,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2026-03-19 22:20:43',NULL,'2026-03-19 22:20:43',NULL,'55d4dfd8-3fab-4580-abc3-ee3ac784c90c'),
(764,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2026-03-19 22:20:43',NULL,'2026-03-19 22:20:43',NULL,'8a6b5c32-7f75-4729-a143-a9fa699322eb'),
(774,NULL,NULL,NULL,9,'craft\\elements\\Entry',1,0,'2025-12-07 14:35:29','2026-03-26 09:58:08',NULL,NULL,NULL,'5216b412-e1b4-4bd5-b5fe-e967cfa67ee4'),
(785,NULL,NULL,NULL,20,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2026-04-13 12:45:34',NULL,NULL,NULL,'ffc02c5c-177c-477d-8fa1-fe5a3f11c060'),
(786,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2026-04-13 12:45:34',NULL,NULL,NULL,'794c0a6f-508f-4793-82d0-434cfd93918b'),
(787,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',NULL,NULL,NULL,'dfa4b273-44b7-4481-bcba-7fe59fcedb9c'),
(788,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2026-04-13 12:45:34',NULL,NULL,NULL,'d563b0fc-e414-4b2a-acc4-2536cf9d2534'),
(789,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2026-03-31 10:00:26',NULL,NULL,NULL,'da1a2416-c267-4624-80a4-7aff0212a7d2'),
(790,NULL,NULL,NULL,31,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',NULL,NULL,NULL,'4aca912c-5af9-45b1-8e77-168c22f75f21'),
(793,785,NULL,319,20,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2026-04-17 12:19:35',NULL,NULL,NULL,'77b7dc7a-1350-417e-a880-f84ad9c026dc'),
(794,786,NULL,320,30,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',NULL,NULL,NULL,'4aebd789-1a8c-4282-9ddb-dfd01a1a7555'),
(795,787,NULL,321,31,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:54',NULL,NULL,NULL,'08f6b15b-6ef1-4cc0-bf13-8096f8717c44'),
(796,788,NULL,322,22,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:54',NULL,NULL,NULL,'5ac91f4e-87f7-4656-935e-b59ecf21edef'),
(797,789,NULL,323,21,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:54',NULL,NULL,NULL,'69d049fa-fd9e-4a70-a100-2252e20150b5'),
(798,790,NULL,324,31,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:54',NULL,NULL,NULL,'470186c3-8258-4fd6-b3a3-97ae35b26557'),
(806,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2026-03-19 22:20:43',NULL,'2026-03-19 22:20:43',NULL,'e96b7872-8546-40e7-9455-b4f50cfd2266'),
(821,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-12-08 10:05:35','2025-12-08 10:05:35',NULL,NULL,NULL,'d0987d4c-9565-4ac4-95d8-59da899789bb'),
(840,112,NULL,341,5,'craft\\elements\\Entry',1,0,'2025-12-15 09:01:44','2025-12-15 09:01:44',NULL,NULL,NULL,'04c8e5bc-848b-4421-87b2-a36dacdcce70'),
(843,NULL,NULL,NULL,33,'craft\\elements\\Entry',1,0,'2026-02-02 19:00:14','2026-04-01 14:52:28',NULL,NULL,NULL,'1fc1dfff-ad1f-4ae0-8da6-33366f3e6736'),
(849,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2026-02-03 08:44:56','2026-02-03 08:58:31',NULL,'2026-02-03 08:58:31',NULL,'db24d1c9-b9a8-408e-9885-efa3253a061e'),
(850,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-02-03 08:44:56','2026-02-03 08:58:31',NULL,'2026-02-03 08:58:31',1,'4f20be74-9540-4503-8614-e163a5da9a0b'),
(867,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2026-02-03 08:58:31','2026-04-17 12:19:21',NULL,NULL,NULL,'9065a9d4-856b-4e97-8f3e-db8e7936ffe2'),
(868,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-02-03 08:58:31','2026-03-19 22:33:24',NULL,'2026-03-19 22:33:24',NULL,'a61548d2-f020-4b83-aab1-4b1c85d8b382'),
(887,NULL,NULL,NULL,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:03:29','2026-04-17 12:13:21',NULL,NULL,NULL,'3788f238-3bb0-48d7-b79a-4853d534bb1c'),
(888,887,NULL,359,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:03:29','2026-02-08 09:03:29',NULL,NULL,NULL,'6069684e-94f9-4148-a33f-e1e3ca102c01'),
(890,887,NULL,360,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:06:20','2026-02-08 09:06:20',NULL,NULL,NULL,'6bd9608d-640f-4a0f-99a5-c7ba9bf11e26'),
(892,887,NULL,361,27,'craft\\elements\\Entry',1,0,'2026-02-08 09:13:59','2026-02-08 09:13:59',NULL,NULL,NULL,'43f9495a-46d2-4a59-8a60-5881f190016b'),
(894,887,NULL,362,27,'craft\\elements\\Entry',1,0,'2026-02-08 09:14:32','2026-02-08 09:14:32',NULL,NULL,NULL,'2ed3aaa4-9fb7-4f49-9660-80f3ebe4cb5a'),
(895,887,NULL,363,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:04','2026-02-08 09:21:04',NULL,NULL,NULL,'2832f3ca-e282-44ef-8eae-187f4c3f8a71'),
(901,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-03-19 23:23:38',NULL,'2026-03-19 23:23:38',NULL,'4662ca92-26a8-45c4-a16b-4a7e9ab15767'),
(902,NULL,NULL,NULL,33,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-03-19 23:23:38',NULL,'2026-03-19 23:23:38',NULL,'f27a52fc-20aa-4141-bad0-d2e83e324f5b'),
(903,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-04-16 12:11:07',NULL,'2026-04-16 12:11:07',NULL,'d1a06cad-d68b-420f-947a-0ce11d77d94d'),
(904,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-03-19 23:23:38',NULL,'2026-03-19 23:23:38',NULL,'2f6d1f2e-c618-4c3a-9113-cb8ae4d45ede'),
(905,887,NULL,364,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,NULL,NULL,'a63e210a-6d77-4f7d-8e04-38b8a565d48e'),
(906,901,NULL,365,4,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,'2026-03-19 23:23:38',NULL,'1b765354-1ee9-4489-82c7-9085b35f2666'),
(907,902,NULL,366,33,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,'2026-03-19 23:23:38',NULL,'455e9240-46ec-4303-8b37-d24f91828525'),
(908,903,NULL,367,34,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,'2026-04-16 12:11:07',NULL,'05677dfa-89d4-4d8b-ba26-b433d8049fcb'),
(909,904,NULL,368,3,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,'2026-03-19 23:23:38',NULL,'52e87ab4-ca77-4c28-a195-81a20addfb45'),
(911,887,NULL,369,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:29:50','2026-02-08 09:29:50',NULL,NULL,NULL,'22ed0339-635a-4101-9f35-2e1d006cf602'),
(912,NULL,NULL,NULL,7,'craft\\elements\\Entry',1,0,'2026-02-08 10:03:48','2026-04-20 19:49:42',NULL,NULL,NULL,'4b880748-3fc8-47e0-ab3c-4a4bb33f30bb'),
(913,912,NULL,370,7,'craft\\elements\\Entry',1,0,'2026-02-08 10:03:48','2026-02-08 10:03:48',NULL,NULL,NULL,'24c1234c-6b96-441a-9a8d-8b26c0995a43'),
(917,NULL,387,NULL,4,'craft\\elements\\Entry',1,0,'2026-02-21 14:56:11','2026-02-21 14:56:11',NULL,NULL,NULL,'4cbaf893-f3b8-4f87-a9cf-99759bd1c027'),
(918,NULL,388,NULL,4,'craft\\elements\\Entry',1,0,'2026-02-21 15:04:43','2026-02-21 15:06:07',NULL,'2026-02-21 15:06:07',NULL,'f2f9d8fd-5214-43c2-966c-b681cde5b541'),
(947,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-02-21 15:32:54',NULL,NULL,NULL,'cf151c36-4ce3-491e-ad1b-a15a3b05a382'),
(951,947,NULL,385,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-02-21 15:32:54',NULL,NULL,NULL,'44d7936e-8b94-4f84-a38e-be69dfa4ac92'),
(961,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,NULL,NULL,'8dab7510-d3db-4bc0-adc6-3cb1bd1da2be'),
(963,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,NULL,NULL,'3d994684-dda5-444f-8308-8ac6b125bf40'),
(965,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,NULL,NULL,'4c2ec33d-5934-4918-b3a1-2fe163bc1f14'),
(969,961,NULL,389,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,NULL,NULL,'321a0d46-6029-4dd7-be8f-def87a9d3ea5'),
(971,963,NULL,391,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,NULL,NULL,'909d7dd5-5520-4590-a903-bcf4abf63427'),
(973,965,NULL,393,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,NULL,NULL,'6b80693c-00ae-43b6-ad73-3f8d93b0d982'),
(1037,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-02-21 15:54:37','2026-02-21 15:54:43',NULL,'2026-02-21 15:54:43',NULL,'b48d219c-a393-47bf-bdb9-48b3c62ebe01'),
(1061,NULL,443,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:11:56','2026-02-21 16:12:02',NULL,NULL,NULL,'a957e0be-051c-433c-8ff0-7a5b06e1a69d'),
(1098,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:42:22','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',NULL,'643c6733-af82-4c37-94d8-7d26475b77fe'),
(1099,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:48:17','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'594efb5a-3a6f-437e-93ab-a0c069c58e3f'),
(1100,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:48:48','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'2621ba18-db9a-4c1e-be34-d8b5d4c0e8e7'),
(1101,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:27','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'50f8f45a-c252-4c30-ac00-f71b46501d82'),
(1102,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:38','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'27f20dbd-a221-4e58-b20a-b7dc4f9d93ca'),
(1103,1098,NULL,444,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:52','2026-02-21 22:49:52',NULL,'2026-03-27 13:24:52',NULL,'773120d7-64c5-4647-a0c9-79db08c8f29c'),
(1104,1099,NULL,445,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:48:41','2026-02-21 22:49:52',NULL,'2026-03-27 13:24:52',NULL,'d8d7949e-8d15-4347-b621-c64b3357f09b'),
(1105,1100,NULL,446,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:25','2026-02-21 22:49:52',NULL,'2026-03-27 13:24:52',NULL,'11c26f0e-85f8-47d8-b9a9-a499b7b03fc4'),
(1106,1101,NULL,447,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:36','2026-02-21 22:49:52',NULL,'2026-03-27 13:24:52',NULL,'a8a8e5ce-c308-414f-9770-0e61d1463ef9'),
(1107,1102,NULL,448,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:48','2026-02-21 22:49:52',NULL,'2026-03-27 13:24:52',NULL,'daf0bcb4-330f-4087-92cb-fd1ce3c3f19a'),
(1108,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:56','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',NULL,'37cdbf13-e127-403b-b224-d27c3c0d4324'),
(1109,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:50:56','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'bda033dc-4010-422b-8d99-2a9944a7b77e'),
(1110,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:51:18','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'d7ad30e6-9dac-4c88-979f-c1e1c0106a90'),
(1111,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:51:28','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'52f97001-e257-41f0-958d-1aa68633c722'),
(1112,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:51:49','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'c9e1bc7b-7970-4952-b741-31c5c3dc6bdc'),
(1113,1108,NULL,449,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:56:39','2026-02-21 22:56:39',NULL,'2026-03-27 13:24:52',NULL,'d983dd6c-3c81-4543-97c0-1bff14ec86c2'),
(1114,1109,NULL,450,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:53:21','2026-02-21 22:56:39',NULL,'2026-03-27 13:24:52',NULL,'6e1acbd7-c15b-464c-bb51-94fd95bb4d5f'),
(1115,1110,NULL,451,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:53:25','2026-02-21 22:56:39',NULL,'2026-03-27 13:24:52',NULL,'00f62655-88f1-4afe-9dee-c5ee71c88398'),
(1116,1111,NULL,452,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:53:28','2026-02-21 22:56:39',NULL,'2026-03-27 13:24:52',NULL,'c9417bbd-595a-4c09-8795-0489756b7fd1'),
(1117,1112,NULL,453,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:53:31','2026-02-21 22:56:39',NULL,'2026-03-27 13:24:52',NULL,'88d5e94b-1ba9-4111-8cf5-e63b92853040'),
(1118,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:56:49','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',NULL,'f007e783-d607-4ca0-aa08-d7c9c98c8056'),
(1119,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:57:36','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'581d658b-e303-47f0-96ad-3a4992be1821'),
(1120,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:23','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'e4dd7f91-8ece-4d61-8cd7-64ad8c122d12'),
(1121,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:33','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'e9ee5378-cd47-4217-9710-fc101e8bc534'),
(1122,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:43','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'76ebc1db-6cf9-4b2a-966d-c798b8e32a42'),
(1123,1118,NULL,454,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:49','2026-02-21 22:58:49',NULL,'2026-03-27 13:24:52',NULL,'6ed05166-6f58-42f1-b336-20f0b49a7bce'),
(1124,1119,NULL,455,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:21','2026-02-21 22:58:49',NULL,'2026-03-27 13:24:52',NULL,'0e550c66-4e5d-4edb-8a39-0413bf3b9ffd'),
(1125,1120,NULL,456,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:30','2026-02-21 22:58:49',NULL,'2026-03-27 13:24:52',NULL,'52a5ee95-e63b-4aec-bf91-f548330c78d9'),
(1126,1121,NULL,457,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:41','2026-02-21 22:58:49',NULL,'2026-03-27 13:24:52',NULL,'4ab67cb2-d48b-4e69-82cd-58549f0b4152'),
(1127,1122,NULL,458,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:48','2026-02-21 22:58:49',NULL,'2026-03-27 13:24:52',NULL,'19fc2d05-429c-437d-a315-fbdaccfcd3c7'),
(1128,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:58','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',NULL,'d43c478d-7992-449d-bdb8-95617494c99f'),
(1129,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:59:17','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',1,'545ac01e-58c5-4f21-ae9f-a546b8339322'),
(1130,1128,NULL,459,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:59:24','2026-02-21 22:59:24',NULL,'2026-03-27 13:24:52',NULL,'c193578c-eb03-498f-a37b-c6fa67cb4e35'),
(1131,1129,NULL,460,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:59:22','2026-02-21 22:59:24',NULL,'2026-03-27 13:24:52',NULL,'4b8fd220-7933-4e0a-9e87-18d8cb830ec6'),
(1132,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:59:46','2026-03-27 13:24:23',NULL,NULL,NULL,'cf76c012-94ac-48e6-be45-da2168d4cdab'),
(1133,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 23:00:15','2026-03-27 13:23:57',NULL,NULL,NULL,'0a35a496-7e84-4c5b-93fc-78e11e1cc5ce'),
(1134,1132,NULL,461,45,'craft\\elements\\Entry',1,0,'2026-02-21 23:00:22','2026-02-21 23:00:22',NULL,NULL,NULL,'281d8c1b-91f2-46cb-8f88-5ee73de78895'),
(1135,1133,NULL,462,46,'craft\\elements\\Entry',1,0,'2026-02-21 23:00:21','2026-02-21 23:00:22',NULL,NULL,NULL,'e0ec4541-9615-49a5-8f1c-4cb75561f53c'),
(1285,NULL,506,NULL,3,'craft\\elements\\Entry',1,0,'2026-02-22 00:41:32','2026-02-22 00:41:32',NULL,NULL,NULL,'06104f55-c504-4c4c-9f22-95d282250590'),
(1286,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-02-22 00:42:05','2026-04-20 20:13:57',NULL,'2026-04-20 20:13:57',NULL,'fabc92b8-85ca-4d8c-925d-e84e2119fb9c'),
(1288,1286,NULL,520,6,'craft\\elements\\Entry',1,0,'2026-02-22 00:42:18','2026-02-22 00:42:18',NULL,'2026-04-20 20:13:57',NULL,'0760f3fa-ff6f-4eb4-96de-720146608618'),
(1289,NULL,509,NULL,48,'craft\\elements\\Entry',1,0,'2026-02-22 00:43:04','2026-02-22 00:43:04',NULL,NULL,NULL,'694f1756-4e8e-4c64-bb0c-eb13dfbec83d'),
(1367,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:16:09','2026-04-03 14:10:18',NULL,NULL,NULL,'3ac445e4-e3b6-412b-b971-2f2471f36300'),
(1368,912,NULL,555,7,'craft\\elements\\Entry',1,0,'2026-02-22 22:16:09','2026-02-22 22:16:09',NULL,NULL,NULL,'b8c10a7a-cb7e-41f8-b13d-5723820daa47'),
(1369,1367,NULL,556,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:16:09','2026-02-22 22:16:09',NULL,NULL,NULL,'b7c21ebd-ed60-4197-a33a-c19a7c2f7620'),
(1372,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:14','2026-03-19 23:40:52',NULL,'2026-03-19 23:40:52',NULL,'0b4e4a84-b6bc-4b67-adc7-4623cdc95617'),
(1373,912,NULL,557,7,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:14','2026-02-22 22:17:14',NULL,NULL,NULL,'a7c068a6-0fcb-453a-803c-35759792c372'),
(1374,1372,NULL,558,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:14','2026-02-22 22:17:14',NULL,'2026-03-19 23:40:52',NULL,'41e37db2-6c84-4401-ad13-3f44f4f91b1e'),
(1385,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',NULL,'0f147e8a-0501-458d-9fd1-7cbac5374271'),
(1386,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'d71d459c-6e66-4075-9d16-1bef2d1a5114'),
(1387,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'af2147a3-762e-4ef5-ae56-4ac55709010d'),
(1388,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'e7f347c4-3e73-4626-abc6-77906d99ae63'),
(1389,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'ef737805-c04c-453a-a492-b04d19e82753'),
(1390,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'1f2e1f53-6bf3-44fe-9596-7d5fd62ca59e'),
(1391,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'39ba092a-6ec9-45f3-93bf-98113fb51e1c'),
(1392,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'2e40a6b4-e69c-479e-b2e4-e549f9448f73'),
(1393,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-03-20 20:22:43',NULL,'2026-03-20 20:22:43',1,'2533f1c9-36d7-40df-b209-4741ed1715dd'),
(1394,912,NULL,559,7,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'0cd5800f-d5d7-4bb1-9f6b-dcea138d9898'),
(1395,1385,NULL,560,44,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'b7580654-8d4a-4006-9212-50b99c9d5c2f'),
(1396,1386,NULL,561,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'8f191f17-6fd8-4744-ad30-c3edfed9a81a'),
(1397,1387,NULL,562,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'b761cc7b-b24c-414d-a189-e8abc5df3838'),
(1398,1388,NULL,563,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'d3cd8903-afbe-43da-8c27-b003fcb4cc96'),
(1399,1389,NULL,564,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'8ed16589-1b01-478b-936f-127963bc2d8b'),
(1400,1390,NULL,565,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'1d51352d-3c5c-4899-b06e-8081822ebc6b'),
(1401,1391,NULL,566,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'ea5e77f1-d665-47d8-8c1e-b56b290a3a95'),
(1402,1392,NULL,567,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'33b2fe60-0a83-49c7-9407-c5057dcd2c9c'),
(1403,1393,NULL,568,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,'2026-03-20 20:22:43',NULL,'d86b782d-e634-494d-8096-6b00f1c33238'),
(1407,NULL,NULL,NULL,33,'craft\\elements\\Entry',1,0,'2026-02-22 22:19:04','2026-03-26 10:00:59',NULL,NULL,NULL,'c5a5ef61-69dc-4dd5-8cac-7ef3d39d18f3'),
(1408,912,NULL,569,7,'craft\\elements\\Entry',1,0,'2026-02-22 22:19:04','2026-02-22 22:19:04',NULL,NULL,NULL,'53e48e4f-c3d3-4973-9542-d0c76dde8990'),
(1409,1367,NULL,570,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:19:04','2026-02-22 22:19:04',NULL,NULL,NULL,'b15cbe3e-f56f-4829-8d02-56113ff845f0'),
(1410,1407,NULL,571,33,'craft\\elements\\Entry',1,0,'2026-02-22 22:19:04','2026-02-22 22:19:04',NULL,NULL,NULL,'c8f92332-bd57-466e-ab3c-e83bb5db7331'),
(1415,NULL,550,NULL,6,'craft\\elements\\Entry',1,0,'2026-02-24 13:58:47','2026-02-24 13:58:47',NULL,NULL,NULL,'f04d9bed-ccc4-4b04-ab54-621617462a9a'),
(1416,912,NULL,574,7,'craft\\elements\\Entry',1,0,'2026-02-24 14:00:57','2026-02-24 14:00:57',NULL,NULL,NULL,'c5da27da-0a39-4684-96d4-e4dec8ad7b3e'),
(1417,NULL,NULL,NULL,7,'craft\\elements\\Entry',1,0,'2026-02-24 14:02:21','2026-02-24 14:02:21',NULL,NULL,NULL,'c0ace4c5-33ef-4abe-b8d9-f9379b2c5c52'),
(1418,1417,NULL,575,7,'craft\\elements\\Entry',1,0,'2026-02-24 14:02:21','2026-02-24 14:02:21',NULL,NULL,NULL,'0a0e32b7-df70-4f98-8616-53a0d122712b'),
(1419,NULL,551,NULL,6,'craft\\elements\\Entry',1,0,'2026-02-24 14:06:01','2026-02-24 14:06:01',NULL,NULL,NULL,'0d774f2c-9e8b-4625-be7c-238a354543ba'),
(1424,1417,556,NULL,7,'craft\\elements\\Entry',1,0,'2026-02-24 14:39:56','2026-02-24 14:40:16',NULL,NULL,NULL,'8a557a8b-a61d-4fb1-8266-9797a7dd6a80'),
(1425,NULL,557,NULL,8,'craft\\elements\\Entry',1,0,'2026-02-24 14:39:56','2026-02-24 14:40:04',NULL,NULL,NULL,'a1a10a05-313a-44d3-903f-ffb0a140ca2a'),
(1426,NULL,558,NULL,5,'craft\\elements\\Entry',1,0,'2026-02-24 14:40:26','2026-02-24 14:40:26',NULL,NULL,NULL,'bbfb2baf-3055-454b-9f2c-1557ec12be90'),
(1427,NULL,559,NULL,18,'craft\\elements\\Entry',1,0,'2026-02-24 14:41:32','2026-02-24 14:41:32',NULL,NULL,NULL,'efb56455-e9e3-4fe3-8d86-a213527af5d2'),
(1440,NULL,565,NULL,48,'craft\\elements\\Entry',1,0,'2026-02-24 14:59:43','2026-02-24 14:59:43',NULL,NULL,NULL,'d181ec60-2132-4e05-9c26-e30b64ca35d0'),
(1503,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 17:11:08','2026-03-02 17:11:08',NULL,NULL,NULL,'8e3acd84-637b-4809-af3f-531a65d2f357'),
(1638,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 18:18:10','2026-03-02 18:18:10',NULL,NULL,NULL,'98dc13a7-5bfc-4e62-98cc-80970ce18d9f'),
(1640,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 18:22:29','2026-03-02 18:22:29',NULL,NULL,NULL,'69343ca4-db8b-4565-88dc-15c13f18686e'),
(1691,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 18:43:06','2026-03-02 18:43:06',NULL,NULL,NULL,'160c49e6-ef42-47d0-b14a-fc871a9111b5'),
(1746,NULL,681,NULL,3,'craft\\elements\\Entry',1,0,'2026-03-02 19:30:55','2026-03-02 19:30:55',NULL,NULL,NULL,'9c8fa911-2aa5-4eaf-be71-d5149ceb6eee'),
(1749,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 19:44:29','2026-03-02 19:44:29',NULL,NULL,NULL,'3134ba70-27ea-447b-b749-5220c6b17dfb'),
(1937,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:36:48','2026-03-02 21:36:48',NULL,NULL,NULL,'a7fe4a54-a728-4b48-ab53-2fba8f676856'),
(1939,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:40:26','2026-03-02 21:40:26',NULL,NULL,NULL,'79c3a823-bac6-4dca-9c8e-eb835e882b0c'),
(1941,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:42:24','2026-03-02 21:42:24',NULL,NULL,NULL,'136bdb23-38a8-4b61-9d1a-f6455998e49c'),
(1946,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:44:02','2026-03-02 21:44:02',NULL,NULL,NULL,'3024a108-cd47-4be2-84d1-fa74a28ec5e9'),
(1951,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-20 19:18:24',NULL,NULL,NULL,'2e9ed053-52dc-457c-a7fe-f5dc550bfc7d'),
(1952,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-17 16:29:55',NULL,NULL,NULL,'d71083d4-ecf7-41fd-9634-a8054f478c46'),
(1953,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-16 21:39:46',NULL,NULL,NULL,'10e2b067-0c70-45d1-895e-e0292bba742e'),
(1957,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-16 21:39:46',NULL,NULL,NULL,'720985cb-ef20-4c7c-8190-05af7b72792c'),
(1958,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-06 21:12:06',NULL,NULL,NULL,'3fdaba0b-ea69-460f-bb75-894f226b94e2'),
(1963,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,'2026-03-02 21:54:33',NULL,'350db86d-eed5-4324-b7f2-b507e66a8289'),
(1964,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-06 21:12:06',NULL,NULL,NULL,'a18418dd-c98d-4e51-a91a-4ba2368d8f4b'),
(1965,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-26 08:53:08',NULL,NULL,NULL,'424285f6-dbe7-4a63-b5eb-7da12bba1014'),
(1966,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-13 10:46:44',NULL,NULL,NULL,'3c2351fc-f167-42dc-9386-687b85ac9a51'),
(1967,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'f5e03a1f-5323-437a-931d-0e9c66f312f8'),
(1968,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'b9c02933-4d45-4fae-81b4-384d007280d3'),
(1969,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'1a2c3425-29ac-4934-9545-ca01589e4064'),
(1970,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'0a6d79f9-ea1f-46f7-b9b5-923eb7ee3f03'),
(1971,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'62d9e437-7e46-43a6-9433-bc0307eb3b47'),
(1972,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'80b2269b-67c3-40ea-b8f5-c6dff45f7341'),
(1973,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'b36442b0-4773-4e8d-b5f1-5db02aa2b0c6'),
(1974,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'73b9a20c-5fce-46cf-b6d1-cc660fe5ec8f'),
(1975,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'325a0771-e9fb-4ed4-8484-b605c7836e41'),
(1976,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:03:47',NULL,'2026-03-02 22:03:47',NULL,'22991f12-b39b-4151-9104-bab7d170f715'),
(1977,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-20 19:18:24',NULL,NULL,NULL,'3e9da1e3-7f06-4f8d-9fb4-597e6fa1da22'),
(1992,1965,NULL,836,8,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-20 19:18:25',NULL,NULL,NULL,'c8cfbfdc-cfb3-4bfe-b100-12dd1bbeea06'),
(2004,1977,NULL,848,49,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-04-20 19:18:25',NULL,NULL,NULL,'ebcfdeab-c792-4fdb-b2ba-bb52ebacb1ef'),
(2006,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:48:54','2026-03-02 21:48:54',NULL,NULL,NULL,'043d70fa-9138-40c8-9318-80f5e4c56934'),
(2020,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-04-20 19:18:24',NULL,NULL,NULL,'332f3188-6111-4c26-8b62-e0b38066623b'),
(2034,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:58:05','2026-03-02 21:58:05',NULL,NULL,NULL,'2aa1009e-8a89-462a-b622-f87612ddae83'),
(2036,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 21:59:05','2026-03-02 21:59:05',NULL,NULL,NULL,'1176bee6-50f4-48e3-a6f6-c0fcdb0d15c4'),
(2061,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-20 18:16:59',NULL,'2026-03-20 18:16:59',NULL,'0cfb3a38-3c68-497c-b97d-b0e3b0304740'),
(2064,1964,NULL,864,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-04-20 19:18:25',NULL,NULL,NULL,'356f58c8-acaa-4c1c-b64c-9340acbce615'),
(2065,1966,NULL,865,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-04-20 19:18:25',NULL,NULL,NULL,'18171e9c-409e-4f64-bf16-0a24dfd5f8a1'),
(2076,2061,NULL,876,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,'2026-03-20 18:16:59',NULL,'1e697d7d-b970-4db5-a2e2-e6facc144e09'),
(2080,2020,NULL,878,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:05:29','2026-04-20 19:18:25',NULL,NULL,NULL,'4a0f195e-e7bc-4376-8da7-537a041b0cc8'),
(2341,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 22:53:00','2026-03-02 22:53:00',NULL,NULL,NULL,'a0474515-b2a7-4482-9f8f-c83eb5d8efe6'),
(2342,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 22:53:00','2026-03-02 22:53:00',NULL,NULL,NULL,'19cf6cac-d271-4218-a4f8-a9707995000a'),
(2343,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 22:53:01','2026-03-02 22:53:01',NULL,NULL,NULL,'09d6ef57-5af2-4bf6-97c1-f039e6116b27'),
(2578,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 23:47:22','2026-03-02 23:47:22',NULL,NULL,NULL,'8ad18414-6d3c-4f31-afed-88172fa36025'),
(2579,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 23:47:22','2026-03-02 23:47:22',NULL,NULL,NULL,'289ce1ee-afb1-4273-8035-9386a365c120'),
(2580,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 23:47:22','2026-03-02 23:47:22',NULL,NULL,NULL,'705eb8c4-ffe9-4910-a167-c5f0b6ad147c'),
(2581,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 23:48:07','2026-03-02 23:48:07',NULL,NULL,NULL,'3e9d034e-975c-4242-a47e-baa36ae79850'),
(2582,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 23:48:07','2026-03-02 23:48:07',NULL,NULL,NULL,'df0342b5-7e7f-475d-b16c-2a141c0f37a1'),
(2583,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-02 23:48:07','2026-03-02 23:48:07',NULL,NULL,NULL,'2bdf6a19-54dc-4f96-9aae-134e921d4073'),
(2698,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-03 00:06:55','2026-03-03 00:06:55',NULL,NULL,NULL,'1933e399-3d42-47fd-abae-206eb235aa70'),
(2711,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-03 00:12:08','2026-03-03 00:12:08',NULL,NULL,NULL,'164adc10-2879-4590-a061-8d092202c45f'),
(2712,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-03 00:12:18','2026-03-03 00:12:18',NULL,NULL,NULL,'78f92d1f-6a40-4dac-9829-9ad726805295'),
(2905,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:56:33','2026-03-03 07:57:28',NULL,'2026-03-03 07:57:28',NULL,'a4f43518-110b-46df-a0e3-52b527a9f5ab'),
(2906,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:25',NULL,'2026-03-13 12:10:25',NULL,'b1ad22cc-c7d7-41e1-8bec-7ba423ee9456'),
(2907,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:24',NULL,'2026-03-13 12:10:24',NULL,'77d8f486-2327-4bd2-901b-90d6abc2ce5b'),
(2908,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:24',NULL,'2026-03-13 12:10:24',NULL,'8d3c9f20-4222-4a9f-acba-e9308a340252'),
(2909,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-04-20 19:18:24',NULL,NULL,NULL,'c200c267-f5f4-4f20-97ac-d2c517068d6a'),
(2910,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:24',NULL,'2026-03-13 12:10:24',NULL,'07eee83d-78d8-4379-a641-91a71fd7cebd'),
(2911,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:25',NULL,'2026-03-13 12:10:25',NULL,'0165ee7d-9998-4cb1-aef0-97ed56e2bf69'),
(2912,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:25',NULL,'2026-03-13 12:10:25',NULL,'dd210276-4846-4ca9-bf11-79163f4b3b33'),
(2913,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:25',NULL,'2026-03-13 12:10:25',NULL,'ec1d4251-a064-4be0-a645-ac5995948e83'),
(2914,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:25',NULL,'2026-03-13 12:10:25',NULL,'52437b1f-d634-4dbc-ab75-e634003241f7'),
(2915,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-13 12:10:25',NULL,'2026-03-13 12:10:25',NULL,'8434c5db-f828-462d-9232-e86740585616'),
(3047,NULL,1018,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-03 08:49:28','2026-03-03 08:49:28',NULL,NULL,NULL,'cb7f1f06-4835-48ac-8b67-cd089b392eac'),
(3086,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-04-20 19:05:23',NULL,NULL,NULL,'1e2d72a3-935f-422a-8652-eb6c089a6b40'),
(3087,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-13 11:30:25',NULL,'2026-03-13 11:30:25',NULL,'c9cf252e-b33d-4e42-944f-c15c4358127a'),
(3088,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-19 22:43:23',NULL,NULL,NULL,'bad66916-bec3-4b88-ba00-ea8c387a140c'),
(3089,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-04-16 14:33:57',NULL,NULL,NULL,'2c57d405-b3cf-4a90-8a47-2549897d68e5'),
(3090,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-04-16 14:33:57',NULL,NULL,NULL,'f000f337-bfb6-4f22-88b1-d95e4395c42c'),
(3091,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-13 11:46:36',NULL,'2026-03-13 11:46:36',NULL,'ef8f977c-63c3-4704-92d2-fce5fe7191f9'),
(3092,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 08:56:36',NULL,NULL,NULL,'a5adbcd2-2419-4760-afd6-d8c80b181f12'),
(3093,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-04-16 14:56:08',NULL,NULL,NULL,'693ea53b-55fd-464d-ab42-5cccd96702f8'),
(3094,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'b54bcdf6-439e-4c6b-bed1-b5c48376700c'),
(3095,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'fcd2f452-a030-48ea-b2ce-217c332f92bf'),
(3096,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'eb38b3a3-94cd-4713-9302-7ddeb12ff22f'),
(3097,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'4fd82999-1f93-463d-adbf-4b62735dc5d1'),
(3098,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'5e40d2ad-f3d5-44d8-8375-8f383e6263d4'),
(3099,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'4278cb20-b686-4db7-a624-816384e295ad'),
(3100,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'48dc1509-d7f5-4aca-ab1e-22662656586e'),
(3101,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:12',NULL,'2026-03-03 09:03:12',NULL,'fd7aad62-000b-4104-b1f9-6d2befb0a1b5'),
(3102,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-04-20 19:05:23',NULL,NULL,NULL,'16ae9030-c5ab-49e9-a687-2ef5c4f8fd4a'),
(3116,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:33:57',NULL,NULL,NULL,'75bff9b0-1b35-453e-9973-729f94ad31f9'),
(3117,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:33:57',NULL,NULL,NULL,'68b7d597-27de-4666-8cbd-b140072cc751'),
(3118,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:56:08',NULL,NULL,NULL,'6901d4e4-0341-41b3-b897-3a2f16d7ff44'),
(3119,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:33:57',NULL,NULL,NULL,'a19b9420-2164-4e28-b7cc-4338e33caa95'),
(3120,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:56:08',NULL,NULL,NULL,'c3bddb59-837e-49be-a3e6-26e4d5877668'),
(3121,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:33:57',NULL,NULL,NULL,'4a2f980e-4f8e-4ea2-8b6d-67857a200b41'),
(3122,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-04-16 14:33:57',NULL,NULL,NULL,'ec31e0f2-4363-4432-8c4d-56c3ac5b3182'),
(3123,3086,NULL,1331,47,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:13','2026-03-03 09:03:13',NULL,NULL,NULL,'8e6f7222-7e53-435e-bf62-9951a19ac830'),
(3124,3087,NULL,1332,39,'craft\\elements\\Entry',1,0,'2026-03-03 08:57:53','2026-03-03 09:03:13',NULL,'2026-03-13 11:30:25',NULL,'0b98d06d-326d-446a-a031-cfafe274446c'),
(3125,3088,NULL,1333,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:58:47','2026-03-03 09:03:13',NULL,NULL,NULL,'3fd8a5ac-9ec5-4c73-9240-b5f857b417d7'),
(3126,3089,NULL,1334,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:59:47','2026-03-03 09:03:13',NULL,NULL,NULL,'9c4ebebd-37dd-4f56-b12b-6bcb30450ee7'),
(3127,3090,NULL,1335,42,'craft\\elements\\Entry',1,0,'2026-03-03 09:01:02','2026-03-03 09:03:13',NULL,NULL,NULL,'e5c8e08a-910f-40db-b393-081ccc6d1785'),
(3128,3091,NULL,1336,49,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:13',NULL,'2026-03-13 11:46:36',NULL,'85a2a0cd-8ce4-4650-ae80-4fe743dab851'),
(3129,3092,NULL,1337,8,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:13',NULL,NULL,NULL,'63c26491-897b-4896-af9e-0a5c7d885109'),
(3130,3093,NULL,1338,44,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'efd6a753-80d9-41bc-92e4-6631de1187d3'),
(3131,3116,NULL,1339,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'4addc1d2-adf5-42e9-a3b1-ebf95255183b'),
(3132,3117,NULL,1340,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'a6999384-0bea-41a6-8ae3-8a8b39eb7f48'),
(3133,3118,NULL,1341,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'1799eee7-c61e-4741-8fcb-71a9f38bd9e6'),
(3134,3119,NULL,1342,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'64227b9d-02e3-4584-b82b-7a0b0ce714dc'),
(3135,3120,NULL,1343,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'93a71bd9-d5a1-448e-bcea-c5658228af90'),
(3136,3121,NULL,1344,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'a78d4c5f-8cad-45eb-9b79-37283283ab54'),
(3137,3122,NULL,1345,35,'craft\\elements\\Entry',1,0,'2026-03-03 09:03:12','2026-03-03 09:03:13',NULL,NULL,NULL,'7e04dfc1-bfd9-4634-8682-e2c5855ab826'),
(3138,3102,NULL,1346,49,'craft\\elements\\Entry',1,0,'2026-03-03 08:56:36','2026-03-03 09:03:13',NULL,NULL,NULL,'752ead98-3cb7-44ab-9489-65994c284ce3'),
(3317,3086,NULL,1406,47,'craft\\elements\\Entry',1,0,'2026-03-03 10:24:16','2026-03-03 10:24:16',NULL,NULL,NULL,'d07184a6-e7db-46a0-98ba-1453bedcf171'),
(3318,3093,NULL,1407,44,'craft\\elements\\Entry',1,0,'2026-03-03 10:24:16','2026-03-03 10:24:16',NULL,NULL,NULL,'7eb6902c-8d6e-440c-a705-ac14afe55f05'),
(3333,3086,NULL,1414,47,'craft\\elements\\Entry',1,0,'2026-03-03 10:25:22','2026-03-03 10:25:22',NULL,NULL,NULL,'98d687dd-0afe-43c1-9090-bc19c4bb4f08'),
(3334,3093,NULL,1415,44,'craft\\elements\\Entry',1,0,'2026-03-03 10:25:22','2026-03-03 10:25:22',NULL,NULL,NULL,'d97fe760-3b3c-4cd6-b0d9-1643deaa9c5b'),
(3507,NULL,1151,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 11:04:09','2026-03-03 11:04:09',NULL,NULL,NULL,'6342fe22-937d-4450-850f-d958ff76ea38'),
(3541,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-04-20 19:05:23',NULL,NULL,NULL,'1d6a21c9-d3cd-462e-9145-59a7dfa6a30d'),
(3542,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:50',NULL,'2026-03-13 11:28:50',NULL,'21f88979-e249-45ca-97d5-7b5ed67dcc25'),
(3543,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:50',NULL,'2026-03-13 11:28:50',NULL,'90501789-8df2-4ee7-9be2-5b003165c97e'),
(3544,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:51',NULL,'2026-03-13 11:28:51',NULL,'a26606a3-0b1a-497b-b06e-a4cf028b82bf'),
(3545,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:51',NULL,'2026-03-13 11:28:51',NULL,'e2458391-dc6d-4bdd-8fd8-836cb082666b'),
(3546,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:51',NULL,'2026-03-13 11:28:51',NULL,'0deb51b8-cf2b-4200-bce3-59151902bc19'),
(3547,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:50',NULL,'2026-03-13 11:28:50',NULL,'a4a63fcc-8de5-4dd6-a174-2638679c203b'),
(3548,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:50',NULL,'2026-03-13 11:28:50',NULL,'4a907b84-55c1-4942-a70f-0f4b58c35552'),
(3549,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 11:08:11','2026-03-13 11:28:50',NULL,'2026-03-13 11:28:50',NULL,'39ace37b-e6d1-4569-829c-758c7791c11d'),
(3552,3086,NULL,1482,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:30:25','2026-03-13 11:30:25',NULL,NULL,NULL,'3ca5a222-4878-4c04-93cc-b8de9974432e'),
(3553,3089,NULL,1483,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:30:25','2026-03-13 11:30:26',NULL,NULL,NULL,'40ca2d93-ba7f-40c7-9d4d-9be8a8a22078'),
(3555,3086,NULL,1484,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:31:02','2026-03-13 11:31:02',NULL,NULL,NULL,'f4a68a80-d105-4323-8b08-4eefd8ef2a92'),
(3558,3086,NULL,1485,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:34:18','2026-03-13 11:34:18',NULL,NULL,NULL,'756cae8d-bc34-4d90-8002-cc36c3f192e5'),
(3559,3089,NULL,1486,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:34:18','2026-03-13 11:34:18',NULL,NULL,NULL,'0cb99ace-e99a-488e-9031-8cdfab7a0a1f'),
(3562,3086,NULL,1487,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:35:42','2026-03-13 11:35:42',NULL,NULL,NULL,'cd9b8c7e-f05a-40c8-9330-ab72c2b30837'),
(3563,3089,NULL,1488,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:35:42','2026-03-13 11:35:42',NULL,NULL,NULL,'879ecce9-ae1d-4b14-a8e4-18d153ebbcf4'),
(3566,3086,NULL,1489,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:36:45','2026-03-13 11:36:45',NULL,NULL,NULL,'f4ccfc3f-1a9f-4e58-8a15-6e1442f406ae'),
(3567,3089,NULL,1490,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:36:45','2026-03-13 11:36:45',NULL,NULL,NULL,'5cec7f35-c5a5-48cd-9525-61397b1b015e'),
(3571,3086,NULL,1491,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:39:15','2026-03-13 11:39:15',NULL,NULL,NULL,'e6576712-b341-4f3f-bfc8-3e65c3006b4b'),
(3572,3089,NULL,1492,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:39:15','2026-03-13 11:39:15',NULL,NULL,NULL,'180adc4f-bd5b-42a2-aa89-43a2bbd045c6'),
(3575,3086,NULL,1493,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:39:40','2026-03-13 11:39:40',NULL,NULL,NULL,'8479d730-c5c5-4d74-9c3e-278c17855ab4'),
(3576,3089,NULL,1494,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:39:40','2026-03-13 11:39:40',NULL,NULL,NULL,'d3cd0b17-ffdc-42f2-bf13-3236635c825a'),
(3579,3086,NULL,1495,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:40:37','2026-03-13 11:40:37',NULL,NULL,NULL,'82030f78-dd1a-483a-8682-47c29ec9dfd5'),
(3580,3089,NULL,1496,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:40:37','2026-03-13 11:40:37',NULL,NULL,NULL,'2e04be95-741c-4e55-b987-1cde11016c2b'),
(3583,3086,NULL,1497,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:42:34','2026-03-13 11:42:34',NULL,NULL,NULL,'d73470ff-cf77-48bd-8e13-e253e4558b4e'),
(3584,3088,NULL,1498,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:42:34','2026-03-13 11:42:34',NULL,NULL,NULL,'77cdde65-55b4-4460-8bf2-f72b8b777265'),
(3587,3086,NULL,1499,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:43:07','2026-03-13 11:43:07',NULL,NULL,NULL,'a8057e0b-23ef-4791-bd41-32357359f448'),
(3588,3088,NULL,1500,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:43:07','2026-03-13 11:43:07',NULL,NULL,NULL,'ad0531bd-14cf-4873-b34f-e2134d720202'),
(3591,3086,NULL,1501,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:43:37','2026-03-13 11:43:37',NULL,NULL,NULL,'2e33d1f3-72c2-4465-a5f3-a122e23060e5'),
(3592,3088,NULL,1502,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:43:37','2026-03-13 11:43:37',NULL,NULL,NULL,'ea676b27-cc4a-4092-a84e-29048cd42be7'),
(3595,3086,NULL,1503,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:46:14','2026-03-13 11:46:15',NULL,NULL,NULL,'a99a5c4b-3447-44a7-88d8-e5996f13b1ab'),
(3596,3090,NULL,1504,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:46:14','2026-03-13 11:46:15',NULL,NULL,NULL,'745b86df-e345-4125-b89f-0ecf61891b0b'),
(3598,3086,NULL,1505,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:46:36','2026-03-13 11:46:36',NULL,NULL,NULL,'487beacc-c507-4a75-abf9-17c012877942'),
(3601,3086,NULL,1506,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:49:10','2026-03-13 11:49:10',NULL,NULL,NULL,'e10c11e8-a710-45cd-b10d-ed3f3c740b23'),
(3602,3090,NULL,1507,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:49:10','2026-03-13 11:49:10',NULL,NULL,NULL,'ec1f702e-68f9-4491-a39e-68b20fef5e58'),
(3605,3086,NULL,1508,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:50:00','2026-03-13 11:50:00',NULL,NULL,NULL,'ddb208f3-3e15-4cc5-a373-416991bd8c06'),
(3606,3090,NULL,1509,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:50:00','2026-03-13 11:50:00',NULL,NULL,NULL,'42c09fd0-a994-4b01-8aee-d4b358816c08'),
(3609,3086,NULL,1510,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:50:32','2026-03-13 11:50:32',NULL,NULL,NULL,'d79059f7-9d32-426e-bb79-4a8b42638330'),
(3610,3090,NULL,1511,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:50:32','2026-03-13 11:50:32',NULL,NULL,NULL,'18a7769e-4cb3-4bf9-a94f-f7402938283c'),
(3613,3086,NULL,1512,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:51:33','2026-03-13 11:51:33',NULL,NULL,NULL,'021a3739-af74-4620-94b5-a87c693a798f'),
(3614,3089,NULL,1513,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:51:33','2026-03-13 11:51:33',NULL,NULL,NULL,'2fdc67bd-b187-4c52-a9aa-e9f029afe521'),
(3617,3086,NULL,1514,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:52:02','2026-03-13 11:52:02',NULL,NULL,NULL,'1941062e-28e7-4073-a242-bdf9ba38fa21'),
(3618,3089,NULL,1515,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:52:02','2026-03-13 11:52:02',NULL,NULL,NULL,'473c364f-6212-4cf0-b3c6-f6eef5016285'),
(3621,3086,NULL,1516,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:52:28','2026-03-13 11:52:28',NULL,NULL,NULL,'266ab269-374d-4859-8d7d-824f5aebfc21'),
(3622,3089,NULL,1517,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:52:28','2026-03-13 11:52:28',NULL,NULL,NULL,'3c0fcfd4-f07c-4118-84fd-95618e919bb1'),
(3625,3086,NULL,1518,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:53:11','2026-03-13 11:53:11',NULL,NULL,NULL,'5e40621f-091e-497e-9b6e-665bb26d4f5c'),
(3626,3090,NULL,1519,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:53:11','2026-03-13 11:53:11',NULL,NULL,NULL,'b63632a2-6e23-4721-8ed2-6e6ce2b66312'),
(3629,3086,NULL,1520,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:55:42','2026-03-13 11:55:42',NULL,NULL,NULL,'c264b89e-17a1-489e-8021-85299368c3ff'),
(3630,3090,NULL,1521,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:55:42','2026-03-13 11:55:42',NULL,NULL,NULL,'39835bbd-b14f-46b2-a9ae-96993570f463'),
(3633,3086,NULL,1522,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:55:57','2026-03-13 11:55:57',NULL,NULL,NULL,'980c6007-d163-413a-bd1d-5ad48b91789f'),
(3634,3090,NULL,1523,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:55:57','2026-03-13 11:55:57',NULL,NULL,NULL,'15004b9b-9bf6-484e-819b-f3ccb52a1a5b'),
(3637,3086,NULL,1524,47,'craft\\elements\\Entry',1,0,'2026-03-13 11:58:18','2026-03-13 11:58:18',NULL,NULL,NULL,'ac3f05f5-4a6a-432f-b5ec-3e4771db7bd6'),
(3638,3090,NULL,1525,42,'craft\\elements\\Entry',1,0,'2026-03-13 11:58:18','2026-03-13 11:58:18',NULL,NULL,NULL,'e7ebb332-99df-4b6c-b0ae-3c1f14a51c67'),
(3649,3086,NULL,1526,47,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'f2c09034-43ad-47a5-ac81-8e0ee40ef54a'),
(3650,3093,NULL,1527,44,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'c7d22f93-96a7-4147-ab0c-872e027094bc'),
(3651,3116,NULL,1528,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'cad69b10-05d2-45b6-bb57-65fc7d63c416'),
(3652,3117,NULL,1529,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'2fb086f1-f3f7-401d-90b4-553b0597eba6'),
(3653,3118,NULL,1530,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'c63cb8f4-6874-46bc-b360-1c14e39ceb5f'),
(3654,3119,NULL,1531,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'36282099-562e-427d-8b7e-338fc7053056'),
(3655,3120,NULL,1532,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'6b3df1b3-7f42-498e-b0cd-f1cd2086bc20'),
(3656,3121,NULL,1533,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'931854d1-ec76-4f1f-acd3-1d093fa9d560'),
(3657,3122,NULL,1534,35,'craft\\elements\\Entry',1,0,'2026-03-13 12:04:50','2026-03-13 12:04:50',NULL,NULL,NULL,'59c7ee70-b39c-46c9-8336-e92bd609f15d'),
(3660,3086,NULL,1535,47,'craft\\elements\\Entry',1,0,'2026-03-13 12:06:39','2026-03-13 12:06:39',NULL,NULL,NULL,'4587229c-8a58-4f51-8840-9a03d73dd05f'),
(3661,3102,NULL,1536,49,'craft\\elements\\Entry',1,0,'2026-03-13 12:06:39','2026-03-13 12:06:39',NULL,NULL,NULL,'2f596749-a1f0-4675-ab6a-3a124bb4d246'),
(3664,3086,NULL,1537,47,'craft\\elements\\Entry',1,0,'2026-03-13 12:07:08','2026-03-13 12:07:08',NULL,NULL,NULL,'aeb27c06-fd2a-41e2-8778-dc130cc82d6b'),
(3665,3102,NULL,1538,49,'craft\\elements\\Entry',1,0,'2026-03-13 12:07:08','2026-03-13 12:07:08',NULL,NULL,NULL,'411b0ca0-1d80-4317-acd8-bca86177685a'),
(3679,1952,NULL,1545,39,'craft\\elements\\Entry',1,0,'2026-03-13 12:13:03','2026-04-20 19:18:25',NULL,NULL,NULL,'20b6cc3e-47e0-4d89-9718-57bd380a0bb7'),
(3688,1953,NULL,1547,36,'craft\\elements\\Entry',1,0,'2026-03-13 12:15:02','2026-04-20 19:18:25',NULL,NULL,NULL,'0953c9e8-8ada-4ed1-9311-bf1300b67963'),
(3692,1957,NULL,1551,37,'craft\\elements\\Entry',1,0,'2026-03-13 12:15:02','2026-03-13 12:15:02',NULL,NULL,NULL,'11dcbd7c-e0f9-4c14-98c1-272126882980'),
(3707,1951,NULL,1558,6,'craft\\elements\\Entry',1,0,'2026-03-13 12:22:20','2026-03-13 12:22:20',NULL,NULL,NULL,'c3dd5257-d9ab-4d79-9b57-e7d6aa263bb6'),
(3708,1958,NULL,1559,41,'craft\\elements\\Entry',1,0,'2026-03-13 12:22:20','2026-03-13 12:22:20',NULL,NULL,NULL,'ba794430-db39-4d55-b968-e4e0dcd871d2'),
(3711,1951,NULL,1560,6,'craft\\elements\\Entry',1,0,'2026-03-13 12:22:51','2026-03-13 12:22:51',NULL,NULL,NULL,'584eea62-68ff-466f-a803-89e69012b8f5'),
(3712,1958,NULL,1561,41,'craft\\elements\\Entry',1,0,'2026-03-13 12:22:51','2026-03-13 12:22:51',NULL,NULL,NULL,'e27b18c0-d5f5-4b58-b242-797d05ab10c3'),
(3715,1951,NULL,1562,6,'craft\\elements\\Entry',1,0,'2026-03-13 12:25:10','2026-03-13 12:25:10',NULL,NULL,NULL,'b1afa845-e1d4-4e24-bf0b-a244b98b7e63'),
(3716,2020,NULL,1563,42,'craft\\elements\\Entry',1,0,'2026-03-13 12:25:10','2026-03-13 12:25:10',NULL,NULL,NULL,'74067f84-19fb-4686-801a-f9f845e9c0ed'),
(3719,1951,NULL,1564,6,'craft\\elements\\Entry',1,0,'2026-03-13 12:25:43','2026-03-13 12:25:43',NULL,NULL,NULL,'b3853939-e378-4c8a-a92d-63aed8f7a8e4'),
(3720,2020,NULL,1565,42,'craft\\elements\\Entry',1,0,'2026-03-13 12:25:43','2026-03-13 12:25:43',NULL,NULL,NULL,'c2bfe04e-07e1-4778-9f78-ceae1afb7213'),
(3723,1951,NULL,1566,6,'craft\\elements\\Entry',1,0,'2026-03-13 12:27:05','2026-03-13 12:27:05',NULL,NULL,NULL,'9ef75b9f-95e9-47ef-b658-fb8eff627fdb'),
(3724,2020,NULL,1567,42,'craft\\elements\\Entry',1,0,'2026-03-13 12:27:05','2026-03-13 12:27:05',NULL,NULL,NULL,'29e1aba8-842c-41b0-899c-14d15433d480'),
(3727,1951,NULL,1568,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:05:35','2026-03-13 13:05:35',NULL,NULL,NULL,'9312d391-d239-4410-aa0b-2e93b9998dd2'),
(3728,2020,NULL,1569,42,'craft\\elements\\Entry',1,0,'2026-03-13 13:05:35','2026-03-13 13:05:35',NULL,NULL,NULL,'e65fc5f2-3c59-4218-bf2c-6cdea841d91f'),
(3731,1951,NULL,1570,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:06:01','2026-03-13 13:06:01',NULL,NULL,NULL,'66a6004d-9d0b-4321-aa83-d14cdeb93990'),
(3732,2020,NULL,1571,42,'craft\\elements\\Entry',1,0,'2026-03-13 13:06:01','2026-03-13 13:06:01',NULL,NULL,NULL,'557099e8-529d-445f-9a78-995401a5536a'),
(3737,1951,NULL,1572,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:14:19','2026-03-13 13:14:19',NULL,NULL,NULL,'80ee8af6-200d-43b6-b59d-e9d64e3519a1'),
(3738,1964,NULL,1573,43,'craft\\elements\\Entry',1,0,'2026-03-13 13:14:19','2026-03-13 13:14:19',NULL,NULL,NULL,'3f9900c7-2b45-475b-8e56-31585dd60522'),
(3741,1951,NULL,1574,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:15:14','2026-03-13 13:15:15',NULL,NULL,NULL,'8f1dc44f-22c3-4700-a700-51df4225cb3e'),
(3742,1964,NULL,1575,43,'craft\\elements\\Entry',1,0,'2026-03-13 13:15:15','2026-03-13 13:15:15',NULL,NULL,NULL,'d8386be8-289d-4750-a06f-c7413b70e9fb'),
(3756,1951,NULL,1576,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:18:52','2026-03-13 13:18:52',NULL,NULL,NULL,'67f9f4df-4fb9-4301-b22d-ab10c145ca19'),
(3757,1966,NULL,1577,44,'craft\\elements\\Entry',1,0,'2026-03-13 13:18:52','2026-03-13 13:18:53',NULL,NULL,NULL,'b069ff5a-2d94-41bb-a670-8a68fcb88e62'),
(3768,2061,NULL,1588,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:18:52','2026-03-13 13:18:53',NULL,'2026-03-20 18:16:59',NULL,'1adeaf14-6a5a-4ac1-affe-8158b8f8584b'),
(3771,1951,NULL,1589,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:20:35','2026-03-13 13:20:35',NULL,NULL,NULL,'82fd237f-fb32-4c14-a8dc-f970dc5c2001'),
(3772,1977,NULL,1590,49,'craft\\elements\\Entry',1,0,'2026-03-13 13:20:35','2026-03-13 13:20:35',NULL,NULL,NULL,'96648583-9af9-40ac-8ec5-613c5edad827'),
(3775,1951,NULL,1591,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:25:08','2026-03-13 13:25:08',NULL,NULL,NULL,'8848ee9b-7014-4710-a348-696631871d79'),
(3776,1952,NULL,1592,39,'craft\\elements\\Entry',1,0,'2026-03-13 13:25:08','2026-03-13 13:25:08',NULL,NULL,NULL,'b7c06523-9125-4180-90b6-751a4d8185b2'),
(3783,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-16 19:30:28',NULL,'2026-03-16 19:30:28',NULL,'28bc55ea-a8bc-4092-893a-438d318cb87e'),
(3784,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-16 19:30:28',NULL,'2026-03-16 19:30:28',NULL,'abf6f607-ed78-44b3-9df7-b816c1521bee'),
(3785,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-16 19:30:28',NULL,'2026-03-16 19:30:28',NULL,'a1baeb5a-f843-4117-8135-52e36bbd2b72'),
(3786,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-16 19:30:28',NULL,'2026-03-16 19:30:28',NULL,'e3a1083f-70fe-407a-83b8-c02694586cc6'),
(3787,1951,NULL,1593,6,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-13 13:26:17',NULL,NULL,NULL,'b106defd-28cb-43b0-a260-b9008ea3a69b'),
(3788,1953,NULL,1594,36,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-13 13:26:17',NULL,NULL,NULL,'d012c498-32ef-411f-9bce-0abd02bc89c7'),
(3789,3783,NULL,1595,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-13 13:26:17',NULL,'2026-03-16 19:30:28',NULL,'8d5076f0-0720-42d5-a919-263d1b6ec39a'),
(3790,3784,NULL,1596,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-13 13:26:17',NULL,'2026-03-16 19:30:28',NULL,'0d34cc08-33f8-49ee-87fb-5ab730c20ce0'),
(3791,3785,NULL,1597,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-13 13:26:17',NULL,'2026-03-16 19:30:28',NULL,'475d537a-c9e0-41b7-8ea4-1aeab7fb6526'),
(3792,3786,NULL,1598,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:26:17','2026-03-13 13:26:17',NULL,'2026-03-16 19:30:28',NULL,'77d2e261-51ac-4e40-ac3a-0523d978f8a9'),
(3793,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',NULL,'5ff1bede-2236-4eea-9eab-499960f91bc8'),
(3794,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'7a325da8-5164-4be1-9574-ba88df5f2e08'),
(3795,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'c8454b45-42c3-441a-aa31-c66fdeca63dc'),
(3796,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'aadff044-08c6-4b3f-acd7-0dc7efd52696'),
(3797,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'e09b36e0-c132-4167-af59-06f237b4d5d7'),
(3798,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'53f6a2ef-64f7-437f-b355-f881609935a3'),
(3799,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'095fc112-9617-4b54-a9ae-00fc7b92ff44'),
(3800,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'b1c4a969-dcf6-4875-acd1-e7cbbff2add2'),
(3801,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'b06f9a52-bc17-4779-b8d0-199403f1e1af'),
(3802,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'1c7f26db-138f-49a5-b4b9-6bb38d371bc5'),
(3803,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'b95ac0ee-261a-4c37-9825-de69db276f85'),
(3804,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'a1b9621e-5437-4f06-9b02-bc8903b5de39'),
(3805,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'dfb22d50-5f3a-46eb-85d1-848f956c48d8'),
(3806,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'e7250656-6d7b-436d-adb2-aed3e36bffba'),
(3807,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'3a95c388-2220-46ff-ad47-7b355f826670'),
(3808,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'4212e283-757e-4d40-b8b8-4e49d7775277'),
(3809,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'c1e6ae5d-d0fe-484d-8945-3424feaff88e'),
(3810,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'4cca0643-5844-486b-8636-cf9df4568ca6'),
(3811,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'7ecc0e3d-7256-48bd-89a8-84d74c6969f8'),
(3812,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'cc688044-a761-49ba-b9f1-78bd0f958872'),
(3813,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'480e7436-1ca7-415a-b549-8101f0c1ae1a'),
(3814,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'ba4db595-6d30-47fc-ad01-40060701b723'),
(3815,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'f798c136-5910-4293-a682-db53333f4714'),
(3816,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'4f0179ac-031c-4766-9291-62008f030ce9'),
(3817,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'832676b3-8235-47ba-bb84-288622ab3a64'),
(3818,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'385c2a1a-9c53-414e-a6ef-a96c06b1804a'),
(3819,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'205e3476-468c-4770-b4fe-d634025bd2d6'),
(3820,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'efb514ac-6f5f-428e-b106-24ecf3e76993'),
(3821,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'618a9fe6-b3f1-4690-8f74-0c38ae3a9aba'),
(3822,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'9db023a5-1510-4676-890d-fcccefb04f9c'),
(3823,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'232833d2-491d-4ba9-8f18-f8e990aaa211'),
(3824,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-04-15 17:33:07',NULL,'2026-04-15 17:33:07',1,'352a6db8-c36e-4010-ae06-a25ba09a8cc8'),
(3825,3809,1283,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-13 13:43:57','2026-03-13 13:44:01',NULL,'2026-04-15 17:33:07',NULL,'c4bfff39-f2cd-43fe-93a3-5f210fdba751'),
(3826,3812,1284,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-13 13:45:43','2026-03-13 13:45:58',NULL,'2026-04-15 17:33:07',NULL,'a57d5e47-f214-4dff-88a8-1799265d4cd3'),
(3827,NULL,1285,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:45:43','2026-03-13 13:45:58',NULL,NULL,NULL,'61826301-4896-4f3b-83c7-1b6afb36ffca'),
(3847,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-16 19:24:51','2026-03-16 19:25:02',NULL,NULL,NULL,'0282cb98-fbe9-472f-a9e5-f4b4132d37ca'),
(3857,1951,NULL,1599,6,'craft\\elements\\Entry',1,0,'2026-03-16 19:30:28','2026-03-16 19:30:28',NULL,NULL,NULL,'c6d04ce0-7747-405a-84e1-4e0ea162805a'),
(3858,1952,NULL,1600,39,'craft\\elements\\Entry',1,0,'2026-03-16 19:30:28','2026-03-16 19:30:28',NULL,NULL,NULL,'bb6a6139-b6d2-44b7-b4f5-d34969242655'),
(3859,1953,NULL,1601,36,'craft\\elements\\Entry',1,0,'2026-03-16 19:30:28','2026-03-16 19:30:28',NULL,NULL,NULL,'608cf53f-c9b8-4fd0-8db5-8e2d48b10f8b'),
(3860,1957,NULL,1602,37,'craft\\elements\\Entry',1,0,'2026-03-16 19:30:28','2026-03-16 19:30:28',NULL,NULL,NULL,'11a67dd1-9a21-43d1-a8fb-fefb49d79c4c'),
(3878,1951,NULL,1603,6,'craft\\elements\\Entry',1,0,'2026-03-16 19:53:23','2026-03-16 19:53:23',NULL,NULL,NULL,'f0784f24-495f-427a-b78f-7b17f6aa4079'),
(3879,1958,NULL,1604,41,'craft\\elements\\Entry',1,0,'2026-03-16 19:53:23','2026-03-16 19:53:23',NULL,NULL,NULL,'d1b88a31-c819-4c74-ad5b-fe9e888e584b'),
(3884,2020,NULL,1609,42,'craft\\elements\\Entry',1,0,'2026-03-16 19:53:23','2026-03-16 19:53:23',NULL,NULL,NULL,'fa0b5c08-3602-4049-a946-458e95cc30ce'),
(3885,1964,NULL,1610,43,'craft\\elements\\Entry',1,0,'2026-03-16 19:53:23','2026-03-16 19:53:23',NULL,NULL,NULL,'aaeaf32f-9900-4700-bce0-75a024c8b050'),
(3899,1951,NULL,1611,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:02:49','2026-03-16 20:02:49',NULL,NULL,NULL,'d689f51a-4338-4b90-bfab-cc25daa5c0db'),
(3900,1953,NULL,1612,36,'craft\\elements\\Entry',1,0,'2026-03-16 20:02:49','2026-03-16 20:02:49',NULL,NULL,NULL,'2fc9ced5-7a91-42a9-b884-f9a49fee08d7'),
(3901,1966,NULL,1613,44,'craft\\elements\\Entry',1,0,'2026-03-16 20:02:49','2026-03-16 20:02:49',NULL,NULL,NULL,'6aeab035-5d27-4e87-b3e1-7d046ea1117c'),
(3906,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:09:34','2026-04-06 21:12:06',NULL,NULL,NULL,'60dcf180-79f9-42d9-883d-8cc97147a49c'),
(3918,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:17','2026-04-06 21:12:06',NULL,NULL,NULL,'fe106be4-b94c-44a5-8def-f762fa11dcf9'),
(3919,1951,NULL,1616,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:17','2026-03-16 20:19:17',NULL,NULL,NULL,'e5a80659-558e-4c07-af41-e070f2c714fd'),
(3920,1958,NULL,1617,41,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:17','2026-03-16 20:19:17',NULL,NULL,NULL,'0c13c35b-257c-4645-bb8a-d3ebd254dbb1'),
(3923,3918,NULL,1620,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:17','2026-03-16 20:19:17',NULL,NULL,NULL,'68cb7cdf-e669-475f-a0f5-ec637a0dc577'),
(3924,3906,NULL,1621,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:17','2026-03-16 20:19:17',NULL,NULL,NULL,'a74c2371-2f4f-4938-9f8e-b88c9e8c4fb1'),
(3926,1951,NULL,1622,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:39','2026-03-16 20:19:39',NULL,NULL,NULL,'4dd33a75-f041-4ff1-b391-8bc08c495d74'),
(3928,1951,NULL,1623,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:19:47','2026-03-16 20:19:47',NULL,NULL,NULL,'d24f09ef-ee89-4de5-8a28-827e82793d8d'),
(3929,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:20:20','2026-04-06 21:12:06',NULL,NULL,NULL,'6f20877a-aa4e-47a1-b717-d49044121af9'),
(3937,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-04-06 21:12:06',NULL,NULL,NULL,'b8d456bb-d770-4d20-b0e0-d8fa0644759d'),
(3938,1951,NULL,1624,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'bfe7658b-5ed8-45e7-8904-a46d768ebd22'),
(3939,1958,NULL,1625,41,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'83701cfc-3f1e-474b-98ac-d5c975653216'),
(3940,3929,NULL,1626,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'d3fb22f8-615b-4626-81cc-d4d302c6adbe'),
(3941,3937,NULL,1627,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'02148d3c-7efe-4b98-97a0-0c5081874b1d'),
(3942,3918,NULL,1628,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'762aa6fd-ac9e-4954-8b7e-83cf82bbffa1'),
(3943,3906,NULL,1629,40,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'cbbb2286-6874-46ed-92c9-fe0c3a5243fb'),
(3944,2020,NULL,1630,42,'craft\\elements\\Entry',1,0,'2026-03-16 20:22:17','2026-03-16 20:22:17',NULL,NULL,NULL,'a8eaf8da-7535-4094-b086-0e0ce57c8988'),
(3947,1951,NULL,1631,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:27:20','2026-03-16 20:27:20',NULL,NULL,NULL,'4e104aef-6c78-4cc6-9cfd-4d7b9687e7c7'),
(3948,1964,NULL,1632,43,'craft\\elements\\Entry',1,0,'2026-03-16 20:27:20','2026-03-16 20:27:20',NULL,NULL,NULL,'f7e5ceb1-b79f-46fd-9ada-6714000e7f89'),
(3951,1951,NULL,1633,6,'craft\\elements\\Entry',1,0,'2026-03-16 20:28:39','2026-03-16 20:28:39',NULL,NULL,NULL,'0ba9bfee-00b8-43a7-8b5a-abab1758242a'),
(3952,1964,NULL,1634,43,'craft\\elements\\Entry',1,0,'2026-03-16 20:28:39','2026-03-16 20:28:39',NULL,NULL,NULL,'435d0bbb-2789-4bc0-a93e-b8c4775d1a1a'),
(3953,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-16 21:32:15','2026-03-16 21:32:15',NULL,NULL,NULL,'3ed2a3a4-c5dd-4927-94a2-4dbd00fbb93e'),
(3956,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-16 21:34:44','2026-03-16 21:34:44',NULL,NULL,NULL,'97b6c397-4a0b-4b80-a04e-54ea807a1257'),
(3957,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-16 21:34:45','2026-03-16 21:34:45',NULL,NULL,NULL,'d3569cf5-6af0-4255-8140-6ee478979652'),
(3960,1951,NULL,1635,6,'craft\\elements\\Entry',1,0,'2026-03-16 21:36:18','2026-03-16 21:36:18',NULL,NULL,NULL,'ca6c38f1-3e06-42f7-b263-e612508d7488'),
(3961,2020,NULL,1636,42,'craft\\elements\\Entry',1,0,'2026-03-16 21:36:18','2026-03-16 21:36:18',NULL,NULL,NULL,'f100ffff-6e4f-46a9-a93f-a1470184f55b'),
(3962,1964,NULL,1637,43,'craft\\elements\\Entry',1,0,'2026-03-16 21:36:18','2026-03-16 21:36:18',NULL,NULL,NULL,'28409356-071a-4ab2-875a-23f02d9c3679'),
(3963,1951,NULL,1638,6,'craft\\elements\\Entry',1,0,'2026-03-16 21:36:20','2026-03-16 21:36:20',NULL,NULL,NULL,'b1e9f9cf-4a44-4c46-8171-1055e83307e7'),
(3968,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'e85f7a1d-7d87-4435-ab4f-a86ba871fd3a'),
(3969,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'58de2c8f-4c2a-4f18-b455-a4011f6ade05'),
(3970,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'7f47e7cf-7b1f-4de7-b77c-d94d12aa058d'),
(3971,1951,NULL,1639,6,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'1031b9b0-1666-4308-9bb0-e98cb7babbec'),
(3972,1953,NULL,1640,36,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'8d5b6fd7-10c1-4a12-b9aa-319012a160dd'),
(3973,3968,NULL,1641,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'61b9f8f5-84d2-4eec-8b30-bcc36a18b447'),
(3974,3969,NULL,1642,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'69ad6c86-2b00-4cc4-b6aa-4408a872def9'),
(3975,3970,NULL,1643,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'841627f7-d0ac-484e-a342-c181c2a111ea'),
(3976,1957,NULL,1644,37,'craft\\elements\\Entry',1,0,'2026-03-16 21:39:46','2026-03-16 21:39:46',NULL,NULL,NULL,'9bf6ad49-ea42-469c-8ec7-c62bef332185'),
(3979,1951,NULL,1645,6,'craft\\elements\\Entry',1,0,'2026-03-16 21:40:56','2026-03-16 21:40:56',NULL,NULL,NULL,'8467607f-e198-42ed-8320-719314e377a5'),
(3980,1958,NULL,1646,41,'craft\\elements\\Entry',1,0,'2026-03-16 21:40:56','2026-03-16 21:40:56',NULL,NULL,NULL,'c61c285e-29e6-43df-b13c-5348f7f06d44'),
(3982,1951,NULL,1647,6,'craft\\elements\\Entry',1,0,'2026-03-16 21:46:29','2026-03-16 21:46:29',NULL,NULL,NULL,'d140a6ca-4ac4-4dca-bcd9-33250528d138'),
(3983,1951,NULL,1648,6,'craft\\elements\\Entry',1,0,'2026-03-16 21:46:45','2026-03-16 21:46:45',NULL,NULL,NULL,'515afdbd-d3cb-4f86-9622-ee1add0ae584'),
(3992,3086,NULL,1649,47,'craft\\elements\\Entry',1,0,'2026-03-16 22:29:01','2026-03-16 22:29:01',NULL,NULL,NULL,'1044d900-7b81-497a-ac03-a3ef727075a8'),
(3993,3089,NULL,1650,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:29:01','2026-03-16 22:29:01',NULL,NULL,NULL,'4893a815-96d8-410b-a667-58d6d7b60fd7'),
(3994,3088,NULL,1651,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:29:01','2026-03-16 22:29:01',NULL,NULL,NULL,'7e872292-ef99-49e0-8eca-72caa2082e63'),
(3995,3090,NULL,1652,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:29:01','2026-03-16 22:29:01',NULL,NULL,NULL,'d4495fd4-4efc-4baa-958e-c5088c412f5f'),
(3996,3086,NULL,1653,47,'craft\\elements\\Entry',1,0,'2026-03-16 22:29:04','2026-03-16 22:29:04',NULL,NULL,NULL,'49ba3b9a-df38-4f65-a45f-d1d0963cbf68'),
(3998,3086,NULL,1654,47,'craft\\elements\\Entry',1,0,'2026-03-16 22:36:04','2026-03-16 22:36:04',NULL,NULL,NULL,'c2bca8eb-bba0-4b42-9143-cd384e95ff3b'),
(4001,3086,NULL,1655,47,'craft\\elements\\Entry',1,0,'2026-03-16 22:40:44','2026-03-16 22:40:44',NULL,NULL,NULL,'3f3d05b3-d4e7-457e-80cc-f497ba1ce02a'),
(4002,3089,NULL,1656,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:40:44','2026-03-16 22:40:44',NULL,NULL,NULL,'17c9f350-b32c-4cd7-96fb-7079f7bf5561'),
(4003,3090,NULL,1657,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:40:44','2026-03-16 22:40:44',NULL,NULL,NULL,'305718e0-30b3-49f5-bbb3-8b66343bc65c'),
(4007,3086,NULL,1658,47,'craft\\elements\\Entry',1,0,'2026-03-16 22:42:09','2026-03-16 22:42:09',NULL,NULL,NULL,'466ae26f-5f5e-42a2-9aea-41953c599d95'),
(4008,3090,NULL,1659,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:42:09','2026-03-16 22:42:09',NULL,NULL,NULL,'ca721ff0-83aa-4d73-8b8c-d9d6d549a443'),
(4011,3086,NULL,1660,47,'craft\\elements\\Entry',1,0,'2026-03-16 22:43:31','2026-03-16 22:43:31',NULL,NULL,NULL,'1fbbe2c7-7693-4281-a5ec-ba93c10f9ffc'),
(4012,3089,NULL,1661,42,'craft\\elements\\Entry',1,0,'2026-03-16 22:43:31','2026-03-16 22:43:31',NULL,NULL,NULL,'e60db947-03de-49ec-852b-765409fb72e4'),
(4016,1951,NULL,1662,6,'craft\\elements\\Entry',1,0,'2026-03-17 10:08:43','2026-03-17 10:08:43',NULL,NULL,NULL,'dc82b4a6-36e8-40b9-91c0-c37ca73e360a'),
(4017,1952,NULL,1663,39,'craft\\elements\\Entry',1,0,'2026-03-17 10:08:43','2026-03-17 10:08:43',NULL,NULL,NULL,'5087caf5-e682-4ef6-83e9-22ac8b221914'),
(4019,NULL,1388,NULL,20,'craft\\elements\\Entry',1,0,'2026-03-17 11:20:03','2026-03-17 11:20:03',NULL,NULL,NULL,'db5dc069-d2a8-497d-8466-5d3219cd0379'),
(4020,NULL,1389,NULL,20,'craft\\elements\\Entry',1,0,'2026-03-17 11:21:46','2026-03-17 11:21:46',NULL,NULL,NULL,'f2ca4ee2-2072-4e86-b734-2d563c292b38'),
(4021,1951,NULL,1664,6,'craft\\elements\\Entry',1,0,'2026-03-17 11:28:19','2026-03-17 11:28:19',NULL,NULL,NULL,'ff54e571-6eb5-4513-968b-a41f2b3ed9b7'),
(4024,1951,NULL,1665,6,'craft\\elements\\Entry',1,0,'2026-03-17 12:52:40','2026-03-17 12:52:41',NULL,NULL,NULL,'1e9845dd-78ea-4ff2-86b6-095c92c3a551'),
(4025,1977,NULL,1666,49,'craft\\elements\\Entry',1,0,'2026-03-17 12:52:41','2026-03-17 12:52:41',NULL,NULL,NULL,'584e1d4a-7452-4af2-bfcc-69197d946619'),
(4026,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-20 19:15:07',NULL,NULL,NULL,'a0a90548-18a3-42ef-aa24-636797e0da31'),
(4027,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-17 16:28:25',NULL,NULL,NULL,'e805c58b-07fa-47c0-b691-89cdbe09e248'),
(4028,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,NULL,NULL,'c5c3496d-3715-4bbe-b814-50aeb1434cfb'),
(4029,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,NULL,NULL,'43458e50-983d-45de-a098-b09235632bb0'),
(4030,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,NULL,NULL,'94131f89-e32c-4864-a986-bedbe061389e'),
(4031,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,NULL,NULL,'bdb5924b-cfe8-4da6-ba88-d4526ed00f46'),
(4032,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,NULL,NULL,'d48f9afc-4206-48f2-ace1-6cdb832411c8'),
(4033,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-06 13:44:39',NULL,NULL,NULL,'f056335f-a2a6-47b3-8e46-9b7ed688199c'),
(4034,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,'2026-03-18 11:20:58',NULL,'cc658224-63b6-48c7-aab2-965fc6fee9d7'),
(4035,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,'2026-03-18 11:20:58',NULL,'8260bf4b-522e-430d-a9a5-fa5ef42ad889'),
(4036,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,'2026-03-18 11:20:58',NULL,'e9854fea-73b7-45b7-bf09-0d658f314031'),
(4037,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 11:20:58',NULL,'2026-03-18 11:20:58',NULL,'3ff066d0-2b5f-45fb-8264-f64325ede0fb'),
(4038,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-20 19:15:07',NULL,NULL,NULL,'6fc510d7-4152-4ef1-a3bc-853ecd0c873f'),
(4039,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-06 13:44:39',NULL,NULL,NULL,'09f25817-d049-407d-beb9-6bbaf016625a'),
(4040,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-26 08:51:18',NULL,NULL,NULL,'21f2d981-9c04-4c7f-9b7b-ed4e0fd06684'),
(4041,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-13 12:44:41',NULL,NULL,NULL,'c66db320-b88a-429f-a3b5-774a63d7dd6c'),
(4042,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-13 12:44:41',NULL,NULL,NULL,'a4027af4-cda6-41f7-a511-12ae85b0d905'),
(4043,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-20 18:29:19',NULL,NULL,NULL,'4253bcd4-9117-49f8-8768-1b43231d74f4'),
(4044,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-13 12:44:41',NULL,NULL,NULL,'1e3e41bb-2eec-46fe-91a0-f911eb9301e1'),
(4045,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-20 18:29:19',NULL,NULL,NULL,'d249a0ef-f184-4cf5-844b-5714bbc7d7f2'),
(4046,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-20 18:29:19',NULL,NULL,NULL,'8e34d57e-916a-4e69-a063-037f5d5a34c8'),
(4047,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-20 18:29:19',NULL,NULL,NULL,'861f5f18-6680-4d6d-ae21-81fc0004743a'),
(4048,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-20 18:29:19',NULL,NULL,NULL,'86e41fe2-5322-429e-844e-dfa63e9dacf8'),
(4049,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-20 18:29:19',NULL,NULL,NULL,'01b7dc15-8a15-4e09-bac7-3c7c49577563'),
(4050,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-13 12:44:41',NULL,NULL,NULL,'df33fbb1-8d56-4d11-aa09-9c7ab568a8c8'),
(4051,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-13 12:44:41',NULL,NULL,NULL,'9402c98c-4579-45f2-9255-f5ee425dfce3'),
(4052,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-13 12:44:41',NULL,NULL,NULL,'9dc0edd1-36e4-4901-ae4c-5c467f4153f1'),
(4053,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-04-20 19:15:07',NULL,NULL,NULL,'81db7ccd-fbaf-4166-a544-13dab249ac30'),
(4054,4026,NULL,1667,6,'craft\\elements\\Entry',1,0,'2026-03-18 10:17:06','2026-03-18 10:17:07',NULL,NULL,NULL,'1a827d75-a848-4a23-b454-35d5ec37522e'),
(4055,4027,NULL,1668,39,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'534eeb2f-65d1-426e-bdc8-27e6b580bd45'),
(4056,4028,NULL,1669,36,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'ddc0b7bc-f9f3-4a70-81ef-00ca67f2d826'),
(4057,4029,NULL,1670,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'c25ff303-5ed9-45d7-baa2-284c715d6f10'),
(4058,4030,NULL,1671,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'cf73b53e-d20b-4142-bfe2-2782978ce5cc'),
(4059,4031,NULL,1672,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'3f9183ca-b57f-4237-bb64-e1a0bcd563e9'),
(4060,4032,NULL,1673,37,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'183ab5d3-33a6-4e0f-a66a-5da1764a44c9'),
(4061,4033,NULL,1674,41,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'de2182ee-cdcd-41be-8a52-72551743081f'),
(4062,4034,NULL,1675,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,'2026-03-18 11:20:58',NULL,'1b305539-1dc4-4f28-9b07-8e62a0d87c98'),
(4063,4035,NULL,1676,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,'2026-03-18 11:20:58',NULL,'7d0d7b7f-2c99-4f66-98ef-dac9f1bf3018'),
(4064,4036,NULL,1677,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,'2026-03-18 11:20:58',NULL,'974e8413-4d23-4011-a49d-fb69d87c2556'),
(4065,4037,NULL,1678,40,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,'2026-03-18 11:20:58',NULL,'75c5669e-2e57-449e-8bf5-9033c557f79f'),
(4066,4038,NULL,1679,42,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'274373d5-41bc-4d0b-95be-f7676830f7b5'),
(4067,4039,NULL,1680,43,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'8c69ae11-950a-430b-ae62-9af8a77f4931'),
(4068,4040,NULL,1681,8,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'dbbb9c38-974b-4b07-ada7-068c73caaa6d'),
(4069,4041,NULL,1682,44,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'8258e662-69d9-4b75-a2a7-da2865174972'),
(4070,4042,NULL,1683,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'ac387b56-5e79-432d-8b39-e1b7c5949f6f'),
(4071,4043,NULL,1684,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'2a79d42f-2284-444d-a3ad-61931b101caa'),
(4072,4044,NULL,1685,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'8b7c966b-2d34-497b-9610-8973eecdd314'),
(4073,4045,NULL,1686,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'9afed5ae-576a-4e73-ade4-bdc4a157a575'),
(4074,4046,NULL,1687,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'fc5654e1-d41a-41f7-a3a9-9c6914f274b5'),
(4075,4047,NULL,1688,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'285eeddf-813a-4477-ae83-c080406ca61f'),
(4076,4048,NULL,1689,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'6252041f-5126-4c78-ad5d-a3c85c737ac8'),
(4077,4049,NULL,1690,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'14e6df5d-d5b2-4b1c-b093-7ee95ed7496c'),
(4078,4050,NULL,1691,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'92144ae4-bdba-4788-8ff5-2ad2f603e9a7'),
(4079,4051,NULL,1692,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'b529a638-84aa-4fc6-9f71-cfb24528b67a'),
(4080,4052,NULL,1693,35,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'06b8704d-5e39-4dda-a2bf-119c1b4fea1e'),
(4081,4053,NULL,1694,49,'craft\\elements\\Entry',1,0,'2026-03-18 10:16:31','2026-03-18 10:17:07',NULL,NULL,NULL,'7f697736-eff6-40bf-bf0e-5c67ab7bba32'),
(4082,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 10:21:12','2026-03-18 10:21:12',NULL,NULL,NULL,'82f74d22-2e62-4f20-96d0-fe2d748f8b04'),
(4083,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 10:21:13','2026-03-18 10:26:17',NULL,'2026-03-18 10:26:17',NULL,'2ff684ac-ab50-4cfc-a61d-83e41794042f'),
(4084,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 10:21:13','2026-03-18 10:21:13',NULL,NULL,NULL,'1457f563-29cd-4795-af7a-ac10539ae757'),
(4088,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 10:23:31','2026-03-18 10:26:17',NULL,'2026-03-18 10:26:17',NULL,'b0fbb157-1ed0-47cc-8235-6d39d3ca4975'),
(4089,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 10:24:41','2026-03-18 10:26:22',NULL,'2026-03-18 10:26:22',NULL,'06e95edb-954b-460c-a9c6-878f444a6e0c'),
(4090,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 10:26:25','2026-03-18 10:26:25',NULL,NULL,NULL,'398bd381-0cb7-4698-aa65-5ec03ab99eea'),
(4105,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 11:18:33','2026-03-18 11:18:33',NULL,NULL,NULL,'057ac466-bbb8-4bff-a94d-cc9cea25ebc1'),
(4108,4026,NULL,1695,6,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'76058289-ac78-4658-bf36-e762d9bead74'),
(4109,4027,NULL,1696,39,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'50d697ee-4fd6-4c94-91f8-c774d50ac84c'),
(4110,4028,NULL,1697,36,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'5e6cd9d3-e413-41f6-8e5e-094c1bfcdfbd'),
(4111,4029,NULL,1698,37,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'3075715b-161a-4b69-bfdc-e178ebc96569'),
(4112,4030,NULL,1699,37,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'949f8b2a-091f-46eb-b2ad-8ecbec7c9a64'),
(4113,4031,NULL,1700,37,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'c346dec6-6b1b-4998-a780-1e3e1a24c5f1'),
(4114,4032,NULL,1701,37,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'49e01141-ccae-49a5-be10-b6ea92a815f1'),
(4115,4033,NULL,1702,41,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'d7b07dec-c8fd-46f1-af0b-38c528e3dcbd'),
(4116,4038,NULL,1703,42,'craft\\elements\\Entry',1,0,'2026-03-18 11:20:58','2026-03-18 11:20:58',NULL,NULL,NULL,'20174def-85d6-49b2-965b-2aede9a5292c'),
(4118,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 11:45:04','2026-03-18 11:45:04',NULL,NULL,NULL,'1c251ab3-fa6c-493b-9eca-6ce6568a2590'),
(4124,144,NULL,1706,3,'craft\\elements\\Entry',1,0,'2026-03-18 11:45:10','2026-03-29 10:07:48',NULL,NULL,NULL,'2866d286-1021-4a4a-a92a-261ce13b65cb'),
(4125,145,NULL,1707,3,'craft\\elements\\Entry',1,0,'2026-03-18 11:45:10','2026-03-29 10:07:48',NULL,NULL,NULL,'1cf0cb8d-0260-426a-8869-2944f03b7199'),
(4126,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 11:47:11','2026-03-18 11:47:11',NULL,NULL,NULL,'af113959-d6ae-422a-bad6-f39d93fe4791'),
(4136,NULL,1415,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 12:02:54','2026-03-18 12:02:54',NULL,NULL,NULL,'91ac2675-9ea0-4853-83d6-4917c97d82ff'),
(4153,4026,NULL,1712,6,'craft\\elements\\Entry',1,0,'2026-03-18 12:09:17','2026-03-18 12:09:17',NULL,NULL,NULL,'fa6b3f55-8c62-43e2-bd6d-0abffe892da6'),
(4154,4033,NULL,1713,41,'craft\\elements\\Entry',1,0,'2026-03-18 12:09:17','2026-03-18 12:09:17',NULL,NULL,NULL,'66bf0acc-cef7-4d92-9fef-e318fadea9ae'),
(4171,1951,NULL,1718,6,'craft\\elements\\Entry',1,0,'2026-03-18 16:28:35','2026-03-18 16:28:35',NULL,NULL,NULL,'8dbaafcc-f37b-417e-a4e0-cd5fd1749515'),
(4172,1964,NULL,1719,43,'craft\\elements\\Entry',1,0,'2026-03-18 16:28:35','2026-03-18 16:28:35',NULL,NULL,NULL,'17240a14-25fb-4c4a-809c-81a426b1e1f5'),
(4173,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 16:29:25','2026-04-06 13:44:39',NULL,NULL,NULL,'0b709113-931e-4c02-9274-e2c3f8a6e1e7'),
(4174,4026,NULL,1720,6,'craft\\elements\\Entry',1,0,'2026-03-18 16:29:25','2026-03-18 16:29:26',NULL,NULL,NULL,'a6106290-2799-4e5a-98d6-1c1bb40df8ca'),
(4175,4033,NULL,1721,41,'craft\\elements\\Entry',1,0,'2026-03-18 16:29:25','2026-03-18 16:29:26',NULL,NULL,NULL,'0e4c6c3d-e9ca-43bf-907e-eb0b392671f1'),
(4176,4173,NULL,1722,40,'craft\\elements\\Entry',1,0,'2026-03-18 16:29:25','2026-03-18 16:29:26',NULL,NULL,NULL,'31c1cdba-a16d-4dc0-addc-6c6d3f7faa66'),
(4180,4038,NULL,1726,42,'craft\\elements\\Entry',1,0,'2026-03-18 16:29:25','2026-03-18 16:29:26',NULL,NULL,NULL,'0facf44d-cef8-4c3e-98c5-ab5e688effaa'),
(4181,4039,NULL,1727,43,'craft\\elements\\Entry',1,0,'2026-03-18 16:29:26','2026-03-18 16:29:26',NULL,NULL,NULL,'0d24458b-c6bc-431f-8e24-81d39c74a207'),
(4184,4026,NULL,1728,6,'craft\\elements\\Entry',1,0,'2026-03-18 16:30:09','2026-03-18 16:30:09',NULL,NULL,NULL,'4f0df896-9d3b-4f96-90b8-831b78ef4890'),
(4185,4039,NULL,1729,43,'craft\\elements\\Entry',1,0,'2026-03-18 16:30:09','2026-03-18 16:30:09',NULL,NULL,NULL,'bf8a0010-cd91-4afd-9aee-a506dc0b1a38'),
(4188,1951,NULL,1730,6,'craft\\elements\\Entry',1,0,'2026-03-18 16:30:45','2026-03-18 16:30:45',NULL,NULL,NULL,'4b53fb20-8c49-4233-a9c0-c4c29c2e7d17'),
(4189,1964,NULL,1731,43,'craft\\elements\\Entry',1,0,'2026-03-18 16:30:45','2026-03-18 16:30:45',NULL,NULL,NULL,'81e1fff4-0179-4e72-8967-35c0e98e57fe'),
(4192,1951,NULL,1732,6,'craft\\elements\\Entry',1,0,'2026-03-18 16:31:16','2026-03-18 16:31:16',NULL,NULL,NULL,'9bf5dfab-e871-4c8b-af1d-0a8f23ad4fdb'),
(4193,1964,NULL,1733,43,'craft\\elements\\Entry',1,0,'2026-03-18 16:31:16','2026-03-18 16:31:16',NULL,NULL,NULL,'3d82da5d-08b4-4183-b380-3de26a2537ae'),
(4199,4026,NULL,1734,6,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:40','2026-03-18 22:34:40',NULL,NULL,NULL,'0dd8da95-6be8-4fb2-950d-423e16ccbe22'),
(4200,4038,NULL,1735,42,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:40','2026-03-18 22:34:40',NULL,NULL,NULL,'a244432e-be49-470a-9fc5-f74d60b03941'),
(4201,4039,NULL,1736,43,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:40','2026-03-18 22:34:40',NULL,NULL,NULL,'053e69ae-ac9d-4eac-8c2d-a763f8c5ba9b'),
(4202,4041,NULL,1737,44,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:40','2026-03-18 22:34:40',NULL,NULL,NULL,'e7e4aa32-f411-47a4-bb01-44da31e1362c'),
(4203,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-20 19:15:28',NULL,NULL,NULL,'76eaf028-df18-4ce4-86a0-110246c3b2a8'),
(4204,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-17 16:28:38',NULL,NULL,NULL,'2ebbe62b-d365-438c-966e-57f8c3c25753'),
(4205,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:38:28',NULL,NULL,NULL,'cb874ad4-f30b-4026-8766-d437a008300d'),
(4206,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:38:28',NULL,NULL,NULL,'d5bd49a7-5171-4cde-8a4d-b33da7cee2be'),
(4207,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:38:28',NULL,NULL,NULL,'463cbb2a-e113-4a63-a247-426f4b27deb4'),
(4208,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:38:28',NULL,NULL,NULL,'30ae0140-a387-4978-b011-0ea7499f38d5'),
(4209,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:38:28',NULL,NULL,NULL,'6c2fa523-3e5d-4f0a-8804-ecb20ea9ef1b'),
(4210,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:47:41',NULL,NULL,NULL,'a40b4b8f-6ae7-44c8-b767-8c16e262ac9b'),
(4211,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:41:44',NULL,NULL,NULL,'1fd55ac1-871b-4b33-9abd-d4331f933cbb'),
(4212,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:41:44',NULL,NULL,NULL,'1b018cb7-018d-4a1f-9a70-17b20d736807'),
(4213,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:41:44',NULL,NULL,NULL,'b8ad04a2-ed9c-489d-9a25-565271f346c9'),
(4214,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:47:41',NULL,NULL,NULL,'2777b721-2739-4b87-804b-0e5aebd9076f'),
(4215,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-20 19:15:28',NULL,NULL,NULL,'847a2a3d-0e41-4e4e-bb68-219038f7dfc8'),
(4216,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'89412a0d-d46e-49f1-b52d-175212114017'),
(4217,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-26 08:52:14',NULL,NULL,NULL,'b8192c07-c9ad-4957-a55c-8242bd22d712'),
(4218,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'84b7ca63-d03d-4dcc-afff-7790dc39a0a4'),
(4220,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'7ddb2a00-d3e0-4206-bc9f-11123d949c9c'),
(4221,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'29e79508-f2cf-4faa-980a-04eafbad05f3'),
(4223,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'501ded80-8ba6-407d-ba44-bd24fbf71942'),
(4224,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'2a30ac20-109d-40ab-adcb-9a4db0c2fc32'),
(4225,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'ebf09875-7b92-4855-a1dc-e6bcbc723c5e'),
(4226,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:48:59',NULL,'2026-04-13 12:48:59',NULL,'427bfd2b-7e0c-454d-ad32-c530096b68ea'),
(4227,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-13 12:54:27',NULL,NULL,NULL,'8b404791-bafb-4c90-9276-2da91ba9e3a8'),
(4228,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 23:00:22',NULL,'2026-03-18 23:00:22',NULL,'5dbab1c2-b0bd-4b1f-865d-1afa6e7b80b9'),
(4229,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 23:00:22',NULL,'2026-03-18 23:00:22',NULL,'667cfb13-e7ed-4723-9fec-4f07b13170c3'),
(4230,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-04-20 19:15:28',NULL,NULL,NULL,'ede38227-2467-46dd-aa35-a8eb02fbcc62'),
(4244,4203,NULL,1738,6,'craft\\elements\\Entry',1,0,'2026-03-18 22:49:09','2026-03-18 22:49:09',NULL,NULL,NULL,'8346cb2b-d061-4dfc-9361-94f4865c9f28'),
(4245,4204,NULL,1739,39,'craft\\elements\\Entry',1,0,'2026-03-18 22:37:29','2026-03-18 22:49:09',NULL,NULL,NULL,'160b68d1-c03f-410d-af91-adca5bb8909c'),
(4246,4205,NULL,1740,36,'craft\\elements\\Entry',1,0,'2026-03-18 22:38:28','2026-03-18 22:49:09',NULL,NULL,NULL,'572a312a-dbfb-4de6-b074-be80d4d77848'),
(4247,4206,NULL,1741,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:38:28','2026-03-18 22:49:09',NULL,NULL,NULL,'5f65c988-d61b-47a2-933b-9ac8ed7741b0'),
(4248,4207,NULL,1742,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:38:28','2026-03-18 22:49:09',NULL,NULL,NULL,'fc58725d-cebf-4d72-970c-bc78bd8aaf86'),
(4249,4208,NULL,1743,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:38:28','2026-03-18 22:49:09',NULL,NULL,NULL,'570a3469-2cb0-4e05-9d61-82f02fc954cf'),
(4250,4209,NULL,1744,37,'craft\\elements\\Entry',1,0,'2026-03-18 22:38:28','2026-03-18 22:49:09',NULL,NULL,NULL,'dd591b2b-0685-4eb4-b6b9-da58dedccee6'),
(4251,4210,NULL,1745,41,'craft\\elements\\Entry',1,0,'2026-03-18 22:41:44','2026-03-18 22:49:09',NULL,NULL,NULL,'c1b8f710-f404-4268-9061-5ea01e10b96b'),
(4252,4211,NULL,1746,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:41:44','2026-03-18 22:49:09',NULL,NULL,NULL,'faea139c-c0f4-4b50-8fda-9f6c89b26def'),
(4253,4212,NULL,1747,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:41:44','2026-03-18 22:49:09',NULL,NULL,NULL,'888c0a5c-b03e-494f-8dca-e5205e14004b'),
(4254,4213,NULL,1748,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:41:44','2026-03-18 22:49:09',NULL,NULL,NULL,'24b02fa7-fbaf-44d0-9e3f-cf9469fbc831'),
(4255,4214,NULL,1749,40,'craft\\elements\\Entry',1,0,'2026-03-18 22:41:44','2026-03-18 22:49:09',NULL,NULL,NULL,'b4f75465-cb6c-4425-bd1e-6a4328b3becc'),
(4256,4215,NULL,1750,42,'craft\\elements\\Entry',1,0,'2026-03-18 22:49:06','2026-03-18 22:49:09',NULL,NULL,NULL,'07e837a0-8dc0-4050-9191-f2afd25127ad'),
(4257,4216,NULL,1751,43,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'d1e17d3c-cfa9-44d3-8d94-b3cf9e017653'),
(4258,4217,NULL,1752,8,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'b87290b8-2062-40dc-9dfd-a69bab2e2b96'),
(4259,4218,NULL,1753,44,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'ea9a5b7d-3392-48a5-aede-2292e1530f92'),
(4261,4220,NULL,1755,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'bbbe679e-ab17-4fa0-ba41-bebe2bdfdf0f'),
(4262,4221,NULL,1756,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'46552bac-7cb0-4ce2-8f3e-3898a26277c9'),
(4264,4223,NULL,1758,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'f6af9b75-48d4-43a4-9d39-47ea196a67ef'),
(4265,4224,NULL,1759,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'24207e83-d738-420e-a941-2d7729965890'),
(4266,4225,NULL,1760,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'831eddcd-f380-447c-b9ab-1a6e556af018'),
(4267,4226,NULL,1761,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,'2026-04-13 12:48:59',NULL,'ae43c9ed-9e7b-449f-8473-966665c4f9b7'),
(4268,4227,NULL,1762,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,NULL,NULL,'d6a99a69-d136-4ff6-8a5d-4cd4298d4813'),
(4269,4228,NULL,1763,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:09',NULL,'2026-03-18 23:00:22',NULL,'b17b7298-d9af-4e78-8a5c-6598445e5223'),
(4270,4229,NULL,1764,35,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:10',NULL,'2026-03-18 23:00:22',NULL,'c19bf1c3-0825-4c72-917c-5fb00daac750'),
(4271,4230,NULL,1765,49,'craft\\elements\\Entry',1,0,'2026-03-18 22:34:51','2026-03-18 22:49:10',NULL,NULL,NULL,'31a5fb26-15f1-489c-ab97-b08b76d956e8'),
(4284,4203,NULL,1766,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:21','2026-03-18 23:00:22',NULL,NULL,NULL,'e1adeb24-52fe-4a70-9a80-276c29d70675'),
(4285,4216,NULL,1767,43,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:21','2026-03-18 23:00:22',NULL,NULL,NULL,'01952b83-3f05-4411-9802-c433e14a21a0'),
(4286,4218,NULL,1768,44,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:21','2026-03-18 23:00:22',NULL,NULL,NULL,'3c5debd0-1ea4-47a0-9ae0-9a4d5cbaac4e'),
(4288,4220,NULL,1770,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:21','2026-03-18 23:00:22',NULL,NULL,NULL,'dd6bad82-d3ec-41ae-93ed-3df26298d135'),
(4289,4221,NULL,1771,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:22','2026-03-18 23:00:22',NULL,NULL,NULL,'24d6e74b-cd9b-4637-a913-82dad4545979'),
(4291,4223,NULL,1773,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:22','2026-03-18 23:00:22',NULL,NULL,NULL,'135aaeb8-d013-405b-8999-2b2e057179b5'),
(4292,4224,NULL,1774,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:22','2026-03-18 23:00:22',NULL,NULL,NULL,'46fcbe54-1d62-4592-a6c9-31c30c201f47'),
(4293,4225,NULL,1775,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:22','2026-03-18 23:00:22',NULL,NULL,NULL,'f6fa1258-4e27-47c2-b536-c3d6031957a4'),
(4294,4226,NULL,1776,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:22','2026-03-18 23:00:22',NULL,'2026-04-13 12:48:59',NULL,'2159333d-3f79-4ee1-a254-c36b130ec09c'),
(4295,4227,NULL,1777,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:22','2026-03-18 23:00:22',NULL,NULL,NULL,'254d0c6d-0927-4023-b307-fca20e6df474'),
(4296,4203,NULL,1778,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:26','2026-03-18 23:00:26',NULL,NULL,NULL,'bb0f17e7-0058-4f4d-be20-868b8c42fd90'),
(4298,4203,NULL,1779,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:00:53','2026-03-18 23:00:53',NULL,NULL,NULL,'dfb6e90b-24f7-4e2e-a880-996994a425f8'),
(4301,4203,NULL,1780,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:04:29','2026-03-18 23:04:29',NULL,NULL,NULL,'990a3cf6-13bb-483d-b95d-c52c5d884951'),
(4302,4216,NULL,1781,43,'craft\\elements\\Entry',1,0,'2026-03-18 23:04:29','2026-03-18 23:04:29',NULL,NULL,NULL,'9b63f871-28eb-4b71-800d-b96bce8097fa'),
(4303,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-20 19:16:21',NULL,NULL,NULL,'a1e16b12-81c6-4e83-85f3-382afd092309'),
(4304,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-17 16:28:49',NULL,NULL,NULL,'3c41e247-712f-400e-a9f2-26549329ffa5'),
(4305,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-06 21:26:55',NULL,NULL,NULL,'c0ceaacc-106e-471d-bafb-63e8c02e2203'),
(4306,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-06 21:26:55',NULL,NULL,NULL,'a5f6c722-a9ec-4761-aed9-33cf91066fef'),
(4307,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:26:10',NULL,NULL,NULL,'7259ffed-3e14-42ae-b432-fb126ba74ce7'),
(4308,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:26:10',NULL,NULL,NULL,'d937771d-01dd-4795-8a4e-9dc49aa5e46a'),
(4309,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:26:10',NULL,NULL,NULL,'1b79c5a7-4b4a-4836-9566-b4b9f43c45f8'),
(4310,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-06 21:26:55',NULL,NULL,NULL,'f7b57014-48f0-477b-9816-f909a1c050ed'),
(4311,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-06 21:26:55',NULL,NULL,NULL,'a545ae8d-49aa-4ff0-b2bc-f7b5012d70f4'),
(4315,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-20 19:16:21',NULL,NULL,NULL,'0ffe19a2-4748-4181-8170-e9b2e0f2a748'),
(4316,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-06 21:26:55',NULL,NULL,NULL,'0295812d-252a-48f5-bae7-d2055f061674'),
(4317,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-26 08:51:41',NULL,NULL,NULL,'ef17b31a-2650-4af7-a355-5f195bed0871'),
(4318,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-16 13:57:12',NULL,NULL,NULL,'d123ae71-4a50-48d3-bcdd-b3770d78a037'),
(4319,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-16 13:57:12',NULL,NULL,NULL,'c0f8d5dd-f83b-4c2b-9b12-879635acd1df'),
(4320,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'babd2924-8216-4cf2-9302-2e40a68cd63e'),
(4321,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'a83ed7a4-81f0-47e4-ac95-20198ed9e294'),
(4322,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'1c8b8c6c-cab5-4171-a19a-73bc75be7427'),
(4323,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-16 13:57:12',NULL,NULL,NULL,'8aa78bf7-e39c-466f-95ea-daa5812141e6'),
(4324,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'de6d1b82-8985-4275-a76f-d5cb2b135228'),
(4325,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'a882baa7-58c5-48fa-888b-815925716346'),
(4326,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'b9ceeb9a-049b-4fa4-b0b7-726935e274d0'),
(4327,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-20 18:41:36',NULL,NULL,NULL,'6ffec475-872f-47c4-b1ed-96a660dbac95'),
(4328,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-04-20 19:16:22',NULL,NULL,NULL,'0d08d528-7863-4d12-9a7c-6b37fecc925c'),
(4329,4303,NULL,1782,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:51','2026-03-18 23:06:51',NULL,NULL,NULL,'4ef79c95-c93c-487e-b848-6af1a73fb1f4'),
(4330,4304,NULL,1783,39,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'f8e46014-2c6b-40a8-b30c-ae11289ea9e7'),
(4331,4305,NULL,1784,36,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'4003ee10-f836-4e13-85da-3b87cd8714bc'),
(4332,4306,NULL,1785,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'53aa668c-0f65-4658-84c8-0c9293dee659'),
(4333,4307,NULL,1786,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'ff6a0d46-d0f8-40a9-bfae-6b4c723f197e'),
(4334,4308,NULL,1787,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'ff76a4c4-ba43-46a1-8c05-7ef5b09c6bd4'),
(4335,4309,NULL,1788,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'b72d2363-5484-4a78-9093-a106b5e2578e'),
(4336,4310,NULL,1789,41,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'5478f339-d285-4850-81dc-acdf4e0ebf50'),
(4337,4311,NULL,1790,40,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'84fd7370-d45d-4a74-abe1-0ed55836e2a0'),
(4341,4315,NULL,1794,42,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'d860fd18-9942-44f3-a93a-014d0ffb9115'),
(4342,4316,NULL,1795,43,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'3b1927df-b69a-4f52-bc4a-cfef7b4645b7'),
(4343,4317,NULL,1796,8,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'31dd043a-e6c8-414f-bcd6-0072191fc3ea'),
(4344,4318,NULL,1797,44,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'99cef5c4-b0ac-4a36-868a-08c9a393d218'),
(4345,4319,NULL,1798,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'a6001614-bce2-47dc-8f77-218e2a1f0809'),
(4346,4320,NULL,1799,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'cf06ff28-0f0b-47e6-b283-7df4b3c9cb0c'),
(4347,4321,NULL,1800,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'5965eeed-ef72-4ce5-8867-5fcb29d63d33'),
(4348,4322,NULL,1801,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'08b62e3e-fef5-4777-be54-371d245384c8'),
(4349,4323,NULL,1802,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'02f13c49-a4db-4d72-bdca-f98669baa90c'),
(4350,4324,NULL,1803,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'7923f8ff-5a16-46e8-a1f0-beec79b7020e'),
(4351,4325,NULL,1804,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'63ebf0a0-6b8a-4058-ac68-25f8735bc150'),
(4352,4326,NULL,1805,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'034c474b-963f-4b0f-ba9c-9f98e7f9954c'),
(4353,4327,NULL,1806,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'83aebb56-72ec-4822-9164-a90134b1c25d'),
(4354,4328,NULL,1807,49,'craft\\elements\\Entry',1,0,'2026-03-18 23:06:21','2026-03-18 23:06:51',NULL,NULL,NULL,'2918867f-1c9b-4cbc-8a1e-9407eb2cfcca'),
(4355,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 23:07:37','2026-03-18 23:07:37',NULL,NULL,NULL,'47088f42-8541-4dc7-94e6-4b5180866474'),
(4372,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 23:23:32','2026-03-18 23:23:32',NULL,NULL,NULL,'a9b80ab9-d586-4944-843d-bd21e1b70375'),
(4373,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 23:23:33','2026-03-18 23:23:33',NULL,NULL,NULL,'30d9d3cf-577d-4d67-9c2f-2333f52d0486'),
(4375,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-18 23:25:44','2026-03-18 23:25:44',NULL,NULL,NULL,'a361f833-4cb8-4b74-a8e5-0b0bfa4ede6b'),
(4376,4303,NULL,1808,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'5411d392-0976-440a-9cf1-bc68e7e48f62'),
(4377,4304,NULL,1809,39,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'7dc7ff13-ed09-47f1-ba2b-db05e0dd19a0'),
(4378,4305,NULL,1810,36,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'0d160d43-cbfc-446a-bc78-61d14f9f0fe2'),
(4379,4306,NULL,1811,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'7cef39c0-caa4-476c-8053-17f3af3ac725'),
(4380,4307,NULL,1812,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'4fe804f2-b9fd-4b00-a86c-040b50d822d9'),
(4381,4308,NULL,1813,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'5fc2b2fa-7d41-4858-b1d7-600be89c39d0'),
(4382,4309,NULL,1814,37,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'49f6bf58-1da2-41d6-b9fd-0d7bbe6017bf'),
(4383,4310,NULL,1815,41,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'d4236ede-b4c1-4aed-8c80-2711d46e9795'),
(4384,4311,NULL,1816,40,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'38f7355e-3ad9-44a8-9903-d025f44b8565'),
(4388,4315,NULL,1820,42,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:10',NULL,NULL,NULL,'148838f2-4d86-4744-9cba-63af8b8c1213'),
(4389,4316,NULL,1821,43,'craft\\elements\\Entry',1,0,'2026-03-18 23:26:10','2026-03-18 23:26:11',NULL,NULL,NULL,'2d1facc6-83eb-4cc6-9f82-506f5d4204ba'),
(4402,4303,NULL,1822,6,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'34b4c944-e9a4-4943-a7cf-1066d34aaa1e'),
(4403,4318,NULL,1823,44,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'bb295341-8789-47f6-9e4e-691ff532e6d9'),
(4404,4319,NULL,1824,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'aee5cf1b-0745-4c8a-a7bc-d5e95799c2a5'),
(4405,4320,NULL,1825,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'6b0e6161-54d9-433d-b3b1-710afb42854b'),
(4406,4321,NULL,1826,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'fe52ea22-d60c-48f9-800c-80802d5c06c5'),
(4407,4322,NULL,1827,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'30eceedd-21ec-4ed4-b998-ef3b2dd9ee9a'),
(4408,4323,NULL,1828,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'73373e89-522a-4f49-8f94-c64bbfd8a17d'),
(4409,4324,NULL,1829,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'fe6a022c-7256-4043-b347-a549da071b74'),
(4410,4325,NULL,1830,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'5cab2514-c455-4b1a-874a-c5fdf1d04596'),
(4411,4326,NULL,1831,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'e4c7f9ae-894d-4563-a399-da5f617191d4'),
(4412,4327,NULL,1832,35,'craft\\elements\\Entry',1,0,'2026-03-18 23:30:34','2026-03-18 23:30:34',NULL,NULL,NULL,'e078d7c3-935b-4d08-a8db-de365a4f9fa2'),
(4413,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-18 23:31:20','2026-03-18 23:32:37',NULL,'2026-03-18 23:32:37',NULL,'a140f4a0-1ebc-4bf3-8283-0253f644655b'),
(4414,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-18 23:31:20','2026-04-20 19:15:07',NULL,NULL,NULL,'6090bd2a-5427-4dae-aa07-8e5b37a062c4'),
(4415,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-18 23:31:20','2026-04-20 19:15:28',NULL,NULL,NULL,'39d18509-1b94-4e07-97a8-b127d4e249c2'),
(4416,4413,1504,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-18 23:32:24','2026-03-18 23:32:24',NULL,'2026-03-18 23:32:37',NULL,'e17a2d25-049b-415d-aa85-eddedc46e796'),
(4417,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-18 23:32:48','2026-04-20 19:16:21',NULL,NULL,NULL,'dc9624a2-4bdd-4386-90d3-43d8a37c3af9'),
(4418,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-20 19:17:18',NULL,NULL,NULL,'e53ef65d-dfff-472f-8bdb-80fcbfb1b399'),
(4419,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-17 16:29:19',NULL,NULL,NULL,'7a0b5251-b4c8-42d2-90a6-4762b1b6dfd8'),
(4420,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-19 10:18:52',NULL,NULL,NULL,'fe12175e-becc-44e4-a514-4b37f1ae029b'),
(4421,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-19 10:18:52',NULL,NULL,NULL,'0ecc77d3-da46-4e3d-afa6-3b699bd926a1'),
(4422,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-19 10:18:52',NULL,NULL,NULL,'41427e6e-dd5f-4d29-974b-cbeca42ee632'),
(4423,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-19 10:18:52',NULL,NULL,NULL,'0b92e73f-1837-4edf-9c2b-6bab013ba99d'),
(4424,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-19 10:18:52',NULL,NULL,NULL,'8b3fd093-b710-4344-9fa9-3a5da0e08f42'),
(4425,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-06 15:54:53',NULL,NULL,NULL,'7283985b-f23d-4631-9f79-064e5060a702'),
(4426,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-06 15:44:54',NULL,'2026-04-06 15:44:54',NULL,'172d356f-2b5c-4537-995d-ed2284608512'),
(4427,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-06 15:44:54',NULL,'2026-04-06 15:44:54',NULL,'0ff088f6-b425-49a0-a64d-e0fd80c0899f'),
(4428,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-06 15:44:54',NULL,'2026-04-06 15:44:54',NULL,'7df08a8d-35e9-4e18-af8b-27f1ebff1a0e'),
(4429,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-06 15:44:54',NULL,'2026-04-06 15:44:54',NULL,'15d76927-f3ed-4c08-9597-dbbed147390f'),
(4430,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-20 19:17:18',NULL,NULL,NULL,'28fc27a9-06cf-4779-a1be-7d2e77b2fad2'),
(4431,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-13 13:01:08',NULL,NULL,NULL,'c98fa4c6-4e77-45d1-bca3-54ad334ddeb2'),
(4432,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-26 08:52:24',NULL,NULL,NULL,'62f4967c-9e1b-4343-9f63-2806bf1a0817'),
(4433,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-13 13:01:08',NULL,NULL,NULL,'9f2315f9-19c6-4c5e-827a-cea64456a38f'),
(4435,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-13 13:01:09',NULL,NULL,NULL,'fbb96eb0-3675-4c3c-aab0-342df7fde6c4'),
(4436,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-04-13 13:01:09',NULL,NULL,NULL,'5cecc750-c5b7-4f20-ba50-4e9cf6ee6fdd'),
(4444,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:36','2026-03-19 10:32:06',NULL,'2026-03-19 10:32:06',NULL,'c1578b39-b53f-434d-87ce-8200e3b4b5c0'),
(4445,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:36','2026-04-20 19:17:18',NULL,NULL,NULL,'ccc61fb5-e429-43bd-98ab-0245accced81'),
(4446,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 10:17:08','2026-03-19 10:17:08',NULL,NULL,NULL,'88121b67-7014-445c-addd-ba4a55a513a8'),
(4447,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 10:17:09','2026-04-15 15:12:23',NULL,NULL,NULL,'f29fd365-6cac-482f-9a3c-08f2eff48e49'),
(4448,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 10:17:10','2026-03-19 10:17:10',NULL,NULL,NULL,'64fbf009-7014-4b8b-b8f9-7816055c3270'),
(4473,4418,NULL,1833,6,'craft\\elements\\Entry',1,0,'2026-03-19 10:32:09','2026-03-19 10:32:09',NULL,NULL,NULL,'cc02253f-9973-4f4c-9f6e-fc351815087e'),
(4474,4419,NULL,1834,39,'craft\\elements\\Entry',1,0,'2026-03-19 10:17:54','2026-03-19 10:32:09',NULL,NULL,NULL,'bfeb0cb7-705e-40c1-8d1d-4b00fb40979c'),
(4475,4420,NULL,1835,36,'craft\\elements\\Entry',1,0,'2026-03-19 10:18:52','2026-03-19 10:32:09',NULL,NULL,NULL,'3350c524-1c8a-47c8-a815-9e890351355c'),
(4476,4421,NULL,1836,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:18:52','2026-03-19 10:32:09',NULL,NULL,NULL,'2bb6a963-8a5d-48a8-9efd-ac3c2b552254'),
(4477,4422,NULL,1837,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:18:52','2026-03-19 10:32:09',NULL,NULL,NULL,'1c5109d2-95e6-4d92-8d5c-9602632e188d'),
(4478,4423,NULL,1838,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:18:52','2026-03-19 10:32:09',NULL,NULL,NULL,'4ddeb47d-e187-4734-8fc7-9378f226fb91'),
(4479,4424,NULL,1839,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:18:52','2026-03-19 10:32:09',NULL,NULL,NULL,'555cd2c1-22c3-4431-9c86-2fc336aa0051'),
(4480,4425,NULL,1840,41,'craft\\elements\\Entry',1,0,'2026-03-19 10:21:27','2026-03-19 10:32:09',NULL,NULL,NULL,'81a51ef0-d919-4c37-89cb-ea81460339bb'),
(4481,4426,NULL,1841,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:21:27','2026-03-19 10:32:09',NULL,'2026-04-06 15:44:54',NULL,'7607869c-3c26-49a9-b1d3-00595ec8fed1'),
(4482,4427,NULL,1842,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:21:27','2026-03-19 10:32:09',NULL,'2026-04-06 15:44:54',NULL,'f7cc41a4-cdcd-4cd6-af64-aa3562dab3d0'),
(4483,4428,NULL,1843,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:21:27','2026-03-19 10:32:09',NULL,'2026-04-06 15:44:54',NULL,'a28ddbbe-fa96-49da-b5e2-9d5cc78d30d6'),
(4484,4429,NULL,1844,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:21:27','2026-03-19 10:32:09',NULL,'2026-04-06 15:44:54',NULL,'0e9a0d04-2d09-4d68-961e-173f0d573e4e'),
(4485,4430,NULL,1845,42,'craft\\elements\\Entry',1,0,'2026-03-19 10:24:52','2026-03-19 10:32:09',NULL,NULL,NULL,'4fa2c077-1ff3-4f87-b8df-f2b1c57fdebe'),
(4486,4431,NULL,1846,43,'craft\\elements\\Entry',1,0,'2026-03-19 10:26:43','2026-03-19 10:32:09',NULL,NULL,NULL,'400324fa-b18d-449d-a512-a6025755b7e1'),
(4487,4432,NULL,1847,8,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:35','2026-03-19 10:32:09',NULL,NULL,NULL,'6c371203-eb15-4f94-80a2-646fc124a29a'),
(4488,4433,NULL,1848,44,'craft\\elements\\Entry',1,0,'2026-03-19 10:32:06','2026-03-19 10:32:09',NULL,NULL,NULL,'5153b270-9ac4-4276-af93-190d625bce05'),
(4490,4435,NULL,1850,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:32:06','2026-03-19 10:32:09',NULL,NULL,NULL,'baf56af2-d2f3-423d-93c5-62fbcee8ac72'),
(4491,4436,NULL,1851,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:32:06','2026-03-19 10:32:09',NULL,NULL,NULL,'ad15ee81-279f-4400-8f48-ec2761cfd43b'),
(4499,4445,NULL,1859,49,'craft\\elements\\Entry',1,0,'2026-03-19 10:14:36','2026-03-19 10:32:09',NULL,NULL,NULL,'85b27e27-9ab6-407f-a362-1eb4566fb26f'),
(4501,4418,NULL,1860,6,'craft\\elements\\Entry',1,0,'2026-03-19 10:32:28','2026-03-19 10:32:28',NULL,NULL,NULL,'19bd14d9-c127-4fc8-9fc5-c3725325f495'),
(4502,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:21','2026-04-20 19:28:02',NULL,NULL,NULL,'c700c051-6f1a-4f2b-9c70-6da557054c34'),
(4503,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:21','2026-04-17 16:29:38',NULL,NULL,NULL,'5bb8c749-6fb4-4902-ac71-7a043a93ff13'),
(4504,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:21','2026-03-19 15:43:23',NULL,NULL,NULL,'d4d085f2-508c-42ff-a5f5-a5bb3ab31809'),
(4505,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:21','2026-03-19 15:43:23',NULL,NULL,NULL,'587a60f5-4c6c-46a4-99f6-ff99451b1513'),
(4506,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:43:23',NULL,NULL,NULL,'4e1f4892-955c-41ba-acf2-2cb7e1a2db0b'),
(4507,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:43:23',NULL,NULL,NULL,'5096f607-9e80-46cd-8191-999c21c1badf'),
(4508,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:43:23',NULL,NULL,NULL,'fddca81e-f17a-46fa-bfd7-d0837e716e79'),
(4509,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-06 20:58:45',NULL,NULL,NULL,'d73f7d80-6da9-4b67-83a0-98d91dbcf9b2'),
(4510,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:45:51',NULL,NULL,NULL,'9c520195-a3b7-49d9-8ff5-fb5ed658442e'),
(4511,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-06 20:58:45',NULL,NULL,NULL,'c28188bb-1f89-4529-8ed9-c4e65f254b70'),
(4512,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:45:51',NULL,NULL,NULL,'fb1f3874-4684-4950-a408-611668da7c34'),
(4513,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:45:51',NULL,NULL,NULL,'b6262871-d60b-410a-b5dd-28c571773b47'),
(4514,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-20 19:28:02',NULL,NULL,NULL,'a909820a-22c1-4051-b093-64e2156e5c5b'),
(4515,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-06 20:58:45',NULL,NULL,NULL,'1b59671c-ae76-4931-8d30-c083d67b70c2'),
(4516,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-26 08:52:45',NULL,NULL,NULL,'30706396-24e4-438c-b786-0a418a425ada'),
(4517,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-13 09:34:35',NULL,NULL,NULL,'ac16b52e-f4d4-4eeb-8faa-5b57a0d8725e'),
(4518,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:05:26',NULL,NULL,NULL,'f792d4c9-29d6-4928-a6a4-0f388fc1d891'),
(4519,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:05:26',NULL,NULL,NULL,'3689b5c7-ec7b-4ce9-9bff-fa7cbda72392'),
(4520,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:14:32',NULL,NULL,NULL,'a3c5b844-e704-413e-862d-ae9bda042a7d'),
(4521,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:14:32',NULL,NULL,NULL,'b8805ee8-61f4-4f76-8005-6187a248a63f'),
(4522,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-13 09:34:35',NULL,NULL,NULL,'508b850c-dcc2-4c4a-92af-087270adfcaa'),
(4523,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:14:32',NULL,NULL,NULL,'e254fc32-eb18-44bc-950d-95b07c1725ea'),
(4524,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-13 09:34:35',NULL,NULL,NULL,'fe435247-cb26-4142-b5db-d398b06a0964'),
(4525,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:14:32',NULL,NULL,NULL,'5621c3ed-4dcd-48bb-9d33-0423cc75ba59'),
(4526,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:14:32',NULL,NULL,NULL,'ff05f091-429e-4c06-a448-6388dc3a59f4'),
(4527,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-20 19:14:32',NULL,NULL,NULL,'831c4302-4e50-405a-8d75-531a95e77d8b'),
(4528,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:56:52',NULL,'2026-03-19 15:56:52',NULL,'311b3755-65a4-42a1-b8c8-710c6f45a990'),
(4529,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-04-20 19:17:50',NULL,NULL,NULL,'d40b8225-3503-4f02-9fc7-c7cb068fdd95'),
(4531,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 10:57:23','2026-03-19 10:57:23',NULL,NULL,NULL,'23e06249-729d-4928-a584-1cc375a0f652'),
(4533,4418,NULL,1861,6,'craft\\elements\\Entry',1,0,'2026-03-19 10:57:48','2026-03-19 10:57:48',NULL,NULL,NULL,'cd4f4cbe-fb2b-4fc4-b08d-6df9ae4cb83c'),
(4534,4430,NULL,1862,42,'craft\\elements\\Entry',1,0,'2026-03-19 10:57:48','2026-03-19 10:57:48',NULL,NULL,NULL,'918e371e-498b-4d62-bfe2-d9e48e17a35d'),
(4535,4418,NULL,1863,6,'craft\\elements\\Entry',1,0,'2026-03-19 10:57:56','2026-03-19 10:57:56',NULL,NULL,NULL,'acea8f14-ae17-40f7-94c6-4e1566449a9c'),
(4536,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 15:41:33','2026-03-19 15:41:33',NULL,NULL,NULL,'5be2bedd-afa6-49e6-8640-816f404dcba2'),
(4537,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 15:41:33','2026-03-19 15:41:33',NULL,NULL,NULL,'2cef286c-2ad7-4821-975b-4a912c45940f'),
(4538,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 15:41:34','2026-03-19 15:41:34',NULL,NULL,NULL,'9da78332-d600-4bb2-bbe2-f89b4e8781a7'),
(4539,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 15:41:35','2026-03-19 15:41:35',NULL,NULL,NULL,'dfcf875e-5946-452c-b065-067355f88102'),
(4564,4502,NULL,1864,6,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:54','2026-03-19 15:56:54',NULL,NULL,NULL,'2296634b-0b5c-40cc-9b1c-d908a55a7d9a'),
(4565,4503,NULL,1865,39,'craft\\elements\\Entry',1,0,'2026-03-19 15:42:33','2026-03-19 15:56:54',NULL,NULL,NULL,'94d361c4-7d91-4cf7-8d1e-378a517f0faf'),
(4566,4504,NULL,1866,36,'craft\\elements\\Entry',1,0,'2026-03-19 15:43:23','2026-03-19 15:56:54',NULL,NULL,NULL,'0f97a8ea-2fc3-44ca-8a13-8cc9fc0d131d'),
(4567,4505,NULL,1867,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:43:23','2026-03-19 15:56:54',NULL,NULL,NULL,'e14b56c1-4bfb-4ce4-8bd7-97336cc1e594'),
(4568,4506,NULL,1868,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:43:23','2026-03-19 15:56:54',NULL,NULL,NULL,'bdb516c8-9bb8-4b3a-beab-cce002ec9d91'),
(4569,4507,NULL,1869,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:43:23','2026-03-19 15:56:54',NULL,NULL,NULL,'a23c2aaf-eea0-4227-ab01-0c5f79a37791'),
(4570,4508,NULL,1870,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:43:23','2026-03-19 15:56:54',NULL,NULL,NULL,'5d05540d-626b-4731-b35b-75b73efd785d'),
(4571,4509,NULL,1871,41,'craft\\elements\\Entry',1,0,'2026-03-19 15:45:51','2026-03-19 15:56:54',NULL,NULL,NULL,'1d1876f6-b844-4cf8-beda-3e8f0940201b'),
(4572,4510,NULL,1872,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:45:51','2026-03-19 15:56:54',NULL,NULL,NULL,'ea9748c2-b7c2-4a8d-a2b4-9c8b03783ac7'),
(4573,4511,NULL,1873,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:45:51','2026-03-19 15:56:54',NULL,NULL,NULL,'2f872896-34ab-4bd4-a9be-e78e042d0f4b'),
(4574,4512,NULL,1874,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:45:51','2026-03-19 15:56:54',NULL,NULL,NULL,'6409fbd3-3feb-4558-9426-2daa0b8dba33'),
(4575,4513,NULL,1875,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:45:51','2026-03-19 15:56:54',NULL,NULL,NULL,'c9de835c-545f-4276-b34e-0adddc5a0be5'),
(4576,4514,NULL,1876,42,'craft\\elements\\Entry',1,0,'2026-03-19 15:50:16','2026-03-19 15:56:54',NULL,NULL,NULL,'8b6159f7-4955-4f19-95f2-90e7eeaa957c'),
(4577,4515,NULL,1877,43,'craft\\elements\\Entry',1,0,'2026-03-19 15:51:36','2026-03-19 15:56:54',NULL,NULL,NULL,'e224f34f-2428-4500-8906-0df5b54c1999'),
(4578,4516,NULL,1878,8,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:56:54',NULL,NULL,NULL,'f51d9083-82f7-418a-81d1-2371fd0e7bc0'),
(4579,4517,NULL,1879,44,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'4e3233b9-f039-465f-9ae4-21f33371de56'),
(4580,4518,NULL,1880,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'433dbf12-ddf3-4844-b393-137b756aaab0'),
(4581,4519,NULL,1881,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'b5abc674-248f-4da4-ac38-cb8dc52fcb51'),
(4582,4520,NULL,1882,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'4004972a-dbfa-410b-8af1-fb70f8e0d8f7'),
(4583,4521,NULL,1883,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'f7e6f19c-e54c-4595-86bd-1a86d25f4d0d'),
(4584,4522,NULL,1884,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'06f60198-5dda-465b-9c21-8189034e508c'),
(4585,4523,NULL,1885,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'b1769033-350b-436d-a83a-cdab109a40fc'),
(4586,4524,NULL,1886,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'6582317c-20ac-445e-8592-eb898c6ab6be'),
(4587,4525,NULL,1887,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'cbc2bf64-01d0-4ac0-b84b-cba071239d02'),
(4588,4526,NULL,1888,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'854d94ab-a32f-4a1c-b3e2-c4786fea947b'),
(4589,4527,NULL,1889,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:56:52','2026-03-19 15:56:54',NULL,NULL,NULL,'95bba126-877d-4e93-9959-f2e045aef8b3'),
(4590,4529,NULL,1890,49,'craft\\elements\\Entry',1,0,'2026-03-19 10:33:22','2026-03-19 15:56:54',NULL,NULL,NULL,'27fe9547-4734-4a1e-bcb9-dd74fd2a55f2'),
(4592,4502,NULL,1891,6,'craft\\elements\\Entry',1,0,'2026-03-19 15:57:10','2026-03-19 15:57:10',NULL,NULL,NULL,'ccf0f1e3-54a3-4c99-b83d-b5c12258d6fa'),
(4593,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-20 19:17:34',NULL,NULL,NULL,'8ff6e431-79ad-4e2d-b296-68976f88a5ea'),
(4594,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-17 16:29:29',NULL,NULL,NULL,'ca2f037f-f21c-4a35-bacf-50ba87f77e37'),
(4595,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:27',NULL,NULL,NULL,'14227c94-c21f-4a0f-afd3-6bd1d17ad8d8'),
(4596,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:27',NULL,NULL,NULL,'81e3a479-a9fd-49c9-96cc-358210ad9fa2'),
(4597,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:27',NULL,NULL,NULL,'b6a30d16-6253-4a79-9751-6deef34a014f'),
(4598,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:27',NULL,NULL,NULL,'2d165ca4-1382-4279-9156-5a26e640cc93'),
(4599,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:27',NULL,NULL,NULL,'b3c10657-816b-4a74-bbd8-56457a64259b'),
(4600,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,NULL,NULL,'698105e8-8eb5-4238-b096-e964e3d18d0b'),
(4601,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,NULL,NULL,'99d6cac4-432a-4320-903f-8aa15ef487b4'),
(4602,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,NULL,NULL,'33b68a9c-d008-4e98-bd11-0a51cdef297f'),
(4603,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,NULL,NULL,'6a05ee84-dd6f-4251-abbb-67f3fe506528'),
(4604,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,NULL,NULL,'2132bafc-6cc1-4a04-ae8c-55c49a2dd701'),
(4605,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-20 19:17:34',NULL,NULL,NULL,'25641e93-2c53-4f57-9305-772202c48fa5'),
(4606,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-06 20:27:46',NULL,NULL,NULL,'e12ea3ac-3d9a-4937-8a7d-da477847228b'),
(4607,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-26 08:52:34',NULL,NULL,NULL,'1c6d064b-c67e-4d02-9430-f65dbe7a0d66'),
(4608,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-13 09:13:54',NULL,NULL,NULL,'1c9cad4d-f21a-42a2-bcf9-1204a6c7bf5c'),
(4609,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-20 19:57:20',NULL,NULL,NULL,'01eb7e08-b904-4a43-aab0-176952309d7a'),
(4610,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-20 19:57:20',NULL,NULL,NULL,'a98164b7-af3f-4e4a-a3e5-4a95a7674779'),
(4611,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-13 09:13:54',NULL,NULL,NULL,'d0332f02-fb52-4b79-ba3e-26f0dd0a111c'),
(4612,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-20 19:57:20',NULL,NULL,NULL,'d3179c15-b883-428a-a3b6-d0555f555a39'),
(4613,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-20 19:57:20',NULL,NULL,NULL,'3ae51357-731f-4cb3-9996-03baace9d991'),
(4614,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-20 19:57:20',NULL,NULL,NULL,'72f8bffc-ef0c-4680-9981-2e63e10469b0'),
(4615,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-20 19:57:20',NULL,NULL,NULL,'c10b0b2a-7582-4b72-bd4f-16f109cbd582'),
(4616,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,'2026-03-19 16:30:24',NULL,'4faca5ff-c8ae-4cd2-b945-73255eb2fd1e'),
(4617,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,'2026-03-19 16:30:24',NULL,'476aa20b-f083-4d03-aec0-8214e0b0b769'),
(4618,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,'2026-03-19 16:30:24',NULL,'d25a7337-6549-4230-91b9-e49212a92b81'),
(4619,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:30:24',NULL,'2026-03-19 16:30:24',NULL,'5436026c-ab9f-4179-bb03-8d28e5707073'),
(4620,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-04-20 19:17:34',NULL,NULL,NULL,'53f29817-f79d-4945-a01d-9a28360de78b'),
(4623,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:01:30','2026-03-19 16:01:52',NULL,'2026-03-19 16:01:52',NULL,'498ee187-b342-4c12-b69d-b10ec1d5f438'),
(4624,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:01:31','2026-03-19 16:01:52',NULL,'2026-03-19 16:01:52',NULL,'2ebc788a-136a-48dc-aba9-dff2f2726325'),
(4625,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:01:31','2026-03-19 16:01:52',NULL,'2026-03-19 16:01:52',NULL,'4f215faa-47d9-45e3-9d48-b9aa92e46ba8'),
(4626,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:01:32','2026-03-19 16:01:52',NULL,'2026-03-19 16:01:52',NULL,'0ecbd6cb-cf20-4e6a-81b2-50a96154b8fd'),
(4627,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:03:06','2026-03-19 16:03:06',NULL,NULL,NULL,'f4584c2b-dd6a-4387-85c2-19aeeac20c10'),
(4628,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:03:07','2026-03-19 16:03:07',NULL,NULL,NULL,'5b263ddd-51a5-4a3e-b3ce-9fb8fe4d7180'),
(4629,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:03:08','2026-03-19 16:03:08',NULL,NULL,NULL,'2a4fd780-276b-4332-a4c1-8410e970137a'),
(4630,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 16:03:09','2026-03-19 16:03:09',NULL,NULL,NULL,'e3c4aa25-c378-47d5-a87b-99e2d3d26f99'),
(4636,4593,NULL,1892,6,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:32','2026-03-19 16:04:32',NULL,NULL,NULL,'4162154e-2885-47f8-b376-e91a6dcc8765'),
(4637,4594,NULL,1893,39,'craft\\elements\\Entry',1,0,'2026-03-19 16:03:21','2026-03-19 16:04:32',NULL,NULL,NULL,'92aa9654-c3e4-43f9-aeaa-06d50fa29978'),
(4638,4595,NULL,1894,36,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:27','2026-03-19 16:04:32',NULL,NULL,NULL,'2e2fa25a-6abe-408c-8a8c-912a893a88f4'),
(4639,4596,NULL,1895,37,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:27','2026-03-19 16:04:32',NULL,NULL,NULL,'eeb7336c-9155-4a4e-9a56-73077f82c93b'),
(4640,4597,NULL,1896,37,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:27','2026-03-19 16:04:32',NULL,NULL,NULL,'683be2d3-8bf0-42e7-bf48-8cfcb970c08a'),
(4641,4598,NULL,1897,37,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:27','2026-03-19 16:04:32',NULL,NULL,NULL,'a01e1894-1501-4763-b159-5476f273570b'),
(4642,4599,NULL,1898,37,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:27','2026-03-19 16:04:32',NULL,NULL,NULL,'1e4698c5-5644-48ae-acb5-93016b36f516'),
(4643,4600,NULL,1899,41,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'2a4d0f64-743f-4edd-9759-ee16218164c1'),
(4644,4601,NULL,1900,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'5fc3c1aa-51ca-4fdb-8213-420cf1b7099c'),
(4645,4602,NULL,1901,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'58f8a7ea-07d5-4db6-8200-7807164527b4'),
(4646,4603,NULL,1902,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'014ddddc-cc01-4daf-a287-357e8516bded'),
(4647,4604,NULL,1903,40,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'c195b58b-97a3-4c4a-87e8-80393b7f799d'),
(4648,4605,NULL,1904,42,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'a119f497-c732-4eac-aef8-12328e837acc'),
(4649,4606,NULL,1905,43,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'3ddc096e-b485-4b91-b4a9-bf575d5f6afd'),
(4650,4607,NULL,1906,8,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'f5d9b389-d18a-4b96-a0bd-25eff4ce3951'),
(4651,4608,NULL,1907,44,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'2623fa4b-7b5f-47da-b282-d019641ae0a2'),
(4652,4609,NULL,1908,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'98c4232c-fd90-4615-862b-ec2c8c54f8e3'),
(4653,4610,NULL,1909,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'9dd50a3f-de88-4f79-bebb-142dec116085'),
(4654,4611,NULL,1910,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'dbcecdb9-413b-4a94-a5ca-c396d3bb92ed'),
(4655,4612,NULL,1911,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'2786e956-6bc4-40ce-8272-57c8fc0451e4'),
(4656,4613,NULL,1912,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'67237d6a-813f-4fc8-b532-fb57276ae94e'),
(4657,4614,NULL,1913,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'2fd54891-9198-44f9-9a8a-169df77af3eb'),
(4658,4615,NULL,1914,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'5bc6d4fc-5f29-408e-8e8f-5576a8d3189f'),
(4659,4616,NULL,1915,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,'2026-03-19 16:30:24',NULL,'35a8c4bd-39b4-4e6c-afa3-9ca1565d0155'),
(4660,4617,NULL,1916,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,'2026-03-19 16:30:24',NULL,'b2fbb144-f7b4-4195-ab0e-aa255c7d4543'),
(4661,4618,NULL,1917,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,'2026-03-19 16:30:24',NULL,'f3e2e4e4-d61d-41e8-b40c-e5fc633015ea'),
(4662,4619,NULL,1918,35,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,'2026-03-19 16:30:24',NULL,'d306f03c-3812-43e1-8489-6aaa2849c095'),
(4663,4620,NULL,1919,49,'craft\\elements\\Entry',1,0,'2026-03-19 15:59:49','2026-03-19 16:04:32',NULL,NULL,NULL,'e604c64f-a054-4ce3-b738-2dbf47b7151e'),
(4664,4593,NULL,1920,6,'craft\\elements\\Entry',1,0,'2026-03-19 16:04:35','2026-03-19 16:04:35',NULL,NULL,NULL,'ef323414-23c3-4c54-89e8-e7fb40175f8b'),
(4681,4593,NULL,1921,6,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'f71f150e-2611-45ef-a158-092d12814d39'),
(4682,4600,NULL,1922,41,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'6a7fd7d6-7448-496b-9726-9084a7a3628e'),
(4683,4601,NULL,1923,40,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'b1e49fa8-a276-4c9c-855c-36eb115d4f65'),
(4684,4602,NULL,1924,40,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'cb8a3af0-dc97-402c-85d0-fee8582682e3'),
(4685,4603,NULL,1925,40,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'9addb791-9de3-4ef8-9610-aa68d20c8c50'),
(4686,4604,NULL,1926,40,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'44654d28-e32b-4943-a5a2-34e406d3f291'),
(4687,4605,NULL,1927,42,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'4a3e468d-103c-4f3d-98de-0d7707bff1e7'),
(4688,4606,NULL,1928,43,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'df851045-8dba-4e9f-acf8-119c865bd886'),
(4689,4608,NULL,1929,44,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'405a5a09-c676-459d-a5ba-71b4ff76679f'),
(4690,4609,NULL,1930,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'6f2b5187-ba1b-40ce-a044-0ba39d51ddcd'),
(4691,4610,NULL,1931,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'f940d40b-3d52-4ca7-ba05-9326b2d1cad6'),
(4692,4611,NULL,1932,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'b52a0581-4a0f-4f9f-81a2-49ec6f8f4f6c'),
(4693,4612,NULL,1933,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'bb5d7989-db12-4d35-9fa9-19dbc6b445b6'),
(4694,4613,NULL,1934,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'0b7692de-2116-473d-95da-8c9644428753'),
(4695,4614,NULL,1935,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'97513cdc-ee75-4080-9055-6d26e02bf25a'),
(4696,4615,NULL,1936,35,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:24','2026-03-19 16:30:24',NULL,NULL,NULL,'3482e92b-dfe0-4696-bb1c-c6529748c9d5'),
(4697,4593,NULL,1937,6,'craft\\elements\\Entry',1,0,'2026-03-19 16:30:27','2026-03-19 16:30:27',NULL,NULL,NULL,'46d32a79-46a0-435b-a4da-4ad67cc7955d'),
(4700,4593,NULL,1938,6,'craft\\elements\\Entry',1,0,'2026-03-19 18:36:32','2026-03-19 18:36:32',NULL,NULL,NULL,'58c36339-62a6-4a4f-9d51-85a026c3c9fe'),
(4701,4594,NULL,1939,39,'craft\\elements\\Entry',1,0,'2026-03-19 18:36:32','2026-03-19 18:36:32',NULL,NULL,NULL,'427325a5-66ba-48ed-9772-43140ce08cd3'),
(4702,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-04-20 19:17:00',NULL,NULL,NULL,'d9855793-4e1f-42a8-9eb7-a222c2521f9f'),
(4703,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-04-17 16:29:09',NULL,NULL,NULL,'6b5a403b-61c7-4a1e-85a1-024cb0f5c39f'),
(4704,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-04-13 09:29:39',NULL,NULL,NULL,'d7f341c1-82ea-4da6-91d7-3343f4747638'),
(4705,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-04-13 09:29:39',NULL,NULL,NULL,'733bab32-0ab3-433b-9ba1-d1a0ee1f25f6'),
(4706,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 19:07:56',NULL,NULL,NULL,'8a22b54d-eb93-48d7-84a3-2e3fc46170f1'),
(4707,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 19:07:56',NULL,NULL,NULL,'7e83bf59-9523-45b8-8238-7bdb1fb592c2'),
(4708,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 19:07:56',NULL,NULL,NULL,'4cd748a3-8f35-4cd5-88fd-3cde679cb4b5'),
(4709,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-04-15 17:26:19',NULL,NULL,NULL,'67039647-b62c-4198-9ad8-19f385746f0b'),
(4710,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 19:07:56',NULL,'2026-03-19 19:07:56',NULL,'1e5ac9c7-c341-44b4-8071-77c3d9f9b2dc'),
(4711,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 19:07:56',NULL,'2026-03-19 19:07:56',NULL,'12e84f08-630a-4ad8-90de-b00ea7e47e71'),
(4712,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 19:07:56',NULL,'2026-03-19 19:07:56',NULL,'718d2d07-cd07-4da1-8fde-43e17fd4e83e'),
(4713,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 19:07:56',NULL,'2026-03-19 19:07:56',NULL,'0de46eab-bb48-482a-8cf5-ba065fe5d05a'),
(4714,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-20 19:17:00',NULL,NULL,NULL,'32d5ce5c-7ff1-49ec-8f24-6e2e8f52d822'),
(4715,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-15 17:20:20',NULL,NULL,NULL,'4d54435a-a1f6-44ab-bfcf-687c0194c065'),
(4716,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-26 08:52:03',NULL,NULL,NULL,'6dd53ebb-495c-4f4b-bfe2-b4f2f371b27d'),
(4717,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-13 09:29:39',NULL,NULL,NULL,'ca7ed311-faa7-4870-b1ce-024d495d1bf8'),
(4719,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-13 09:29:39',NULL,NULL,NULL,'d37bb393-171c-4bb8-93e9-9865252cafe4'),
(4720,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-13 09:29:39',NULL,NULL,NULL,'25bdf78e-008f-4e42-955f-9456b09e4f8d'),
(4722,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-13 09:29:39',NULL,NULL,NULL,'5b09a050-be28-4630-b2f6-5b223fc211c9'),
(4723,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-13 09:29:39',NULL,NULL,NULL,'7a6aec11-cb81-44ec-a0dc-14c093d68cfd'),
(4725,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-04-20 19:17:00',NULL,NULL,NULL,'817bd35a-151a-42de-99dc-2974dd38c9f9'),
(4726,4702,NULL,1940,6,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:39','2026-03-19 18:39:39',NULL,NULL,NULL,'8d90ec35-1062-4bf2-b248-77ba1fa90e11'),
(4727,4703,NULL,1941,39,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'08505162-9390-4be3-a2a4-ef11f5b60535'),
(4728,4704,NULL,1942,36,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'7d56e3d5-36e3-4edb-9152-309176fb79bf'),
(4729,4705,NULL,1943,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'aeeac363-35d0-44ee-b7ce-41f38c312e65'),
(4730,4706,NULL,1944,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'04938bf3-9a67-4813-bdab-a3e0d7aa7e4c'),
(4731,4707,NULL,1945,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'c01c3eb6-0da4-4255-b53f-a97d48e01098'),
(4732,4708,NULL,1946,37,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'bcc81a3a-a950-4807-b6ba-7a17d672c5bb'),
(4733,4709,NULL,1947,41,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,NULL,NULL,'b6ff631f-a5e6-4f90-ad20-fbea87e01e5c'),
(4734,4710,NULL,1948,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:02','2026-03-19 18:39:39',NULL,'2026-03-19 19:07:56',NULL,'3d4385bf-01f3-4119-8d44-c408318e530c'),
(4735,4711,NULL,1949,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,'2026-03-19 19:07:56',NULL,'15021b0d-57ca-4d55-aef4-15743d38ca33'),
(4736,4712,NULL,1950,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,'2026-03-19 19:07:56',NULL,'dc2ab89e-4caa-49cc-ac4b-6ad974959367'),
(4737,4713,NULL,1951,40,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,'2026-03-19 19:07:56',NULL,'a7f471d6-2606-4ba4-8f31-86de986872e7'),
(4738,4714,NULL,1952,42,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'8de62bd0-c119-4245-a4d7-afcbf28e9f5f'),
(4739,4715,NULL,1953,43,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'8fe9c260-9be0-4077-a126-a6373b05b064'),
(4740,4716,NULL,1954,8,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'1fe49ecd-ea2c-4590-8bb8-844c4fc3c16b'),
(4741,4717,NULL,1955,44,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'88f2bc11-8a6d-40a5-86f0-1c4a47de66c3'),
(4743,4719,NULL,1957,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'a6a89c35-1457-4448-a97f-e44dcc6bc105'),
(4744,4720,NULL,1958,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'55c8ee72-6c22-4f08-8429-cea23b8e6c8c'),
(4746,4722,NULL,1960,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'9a0bdbbf-5ce9-4c2c-a9cb-951fd19e6537'),
(4747,4723,NULL,1961,35,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'23b9ce3b-9085-4a6b-9af4-a07a1eb7c3a9'),
(4749,4725,NULL,1963,49,'craft\\elements\\Entry',1,0,'2026-03-19 18:39:03','2026-03-19 18:39:39',NULL,NULL,NULL,'13c7a433-d064-47c7-911c-a2661deba2b7'),
(4752,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 18:45:19','2026-03-19 18:45:19',NULL,NULL,NULL,'4a29f323-8507-4af9-920d-eefa993d4c32'),
(4753,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 18:45:19','2026-03-19 18:45:19',NULL,NULL,NULL,'4d0274da-4cf1-4131-90f2-29dd3f24ae33'),
(4754,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 18:45:20','2026-03-19 18:45:20',NULL,NULL,NULL,'dedb8bd2-6bf1-4aeb-b840-19f339211323'),
(4780,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-04-13 09:29:39',NULL,NULL,NULL,'133ef326-9619-40f9-82f3-8304bb9c9972'),
(4781,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-04-13 09:29:39',NULL,NULL,NULL,'c2522b6b-2a89-4916-9407-7823dc7e1234'),
(4782,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-04-13 09:29:39',NULL,NULL,NULL,'0a5b96e2-2200-4bd8-9dd0-253d87377e8e'),
(4783,4702,NULL,1964,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'368bb467-5c70-4d02-8776-480e0d18d540'),
(4784,4703,NULL,1965,39,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'cb84d8a6-9e0f-4c36-8cbe-8d90e3215717'),
(4785,4704,NULL,1966,36,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'b575540e-0c77-4729-822e-b27f51c4cd94'),
(4786,4705,NULL,1967,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'50ecc51b-9018-45d1-95a6-36ee1df8f238'),
(4787,4706,NULL,1968,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'6bd66f41-b9e7-475f-92b7-cded379fef69'),
(4788,4707,NULL,1969,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'ab5f8622-a270-407d-b154-ee04f3679d66'),
(4789,4708,NULL,1970,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'14a9ad8f-8616-444f-a30f-035fedeb1462'),
(4790,4709,NULL,1971,41,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'3f1a7bfb-779f-4e6f-b100-c7a959751783'),
(4791,4714,NULL,1972,42,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'0a036cd6-a411-456b-bd45-f8b954f73685'),
(4792,4715,NULL,1973,43,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:56','2026-03-19 19:07:57',NULL,NULL,NULL,'ce47c199-0545-4bde-9adf-653afe78b1da'),
(4793,4717,NULL,1974,44,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'d60cd268-2d61-49dc-afac-744b93fda378'),
(4795,4719,NULL,1976,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'0db1da2e-e740-46dd-be77-8faa8720ed07'),
(4796,4720,NULL,1977,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'5d4900be-f4a6-48f6-8e16-26dd97c20d37'),
(4798,4722,NULL,1979,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'bfd677e8-f1ed-4ced-9728-ef24e881ffb8'),
(4799,4723,NULL,1980,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'c744e9d6-b4b0-4185-86a4-e66a341b675d'),
(4801,4780,NULL,1982,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'aba1560f-5435-4341-9e7c-537e89bbde1d'),
(4802,4781,NULL,1983,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'84d7076c-b5d7-4af2-9682-4aaccac6b2a4'),
(4803,4782,NULL,1984,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:07:57','2026-03-19 19:07:57',NULL,NULL,NULL,'8827da8b-8fe4-491d-bb33-c1e4336425fe'),
(4804,4702,NULL,1985,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:00','2026-03-19 19:08:00',NULL,NULL,NULL,'22510cfd-4413-4472-b03b-7996ed635d5a'),
(4805,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-20 19:16:43',NULL,NULL,NULL,'9665647d-e94a-408f-8e44-9fab4d73467d'),
(4806,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-17 16:28:58',NULL,NULL,NULL,'1c8da20b-ad8a-4c5d-ab6e-4fddfff9af56'),
(4807,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:15:03',NULL,NULL,NULL,'74626d51-2923-4719-81e6-175f64179689'),
(4808,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:15:03',NULL,NULL,NULL,'ccdec26f-16e4-4922-b7fc-89ef21aecf9c'),
(4809,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:15:03',NULL,NULL,NULL,'4ff3514e-bad1-4828-b89e-f0d857dda19b'),
(4810,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:15:03',NULL,NULL,NULL,'2df7ec55-3643-4e55-992e-7c51e7ffdd2e'),
(4811,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:15:03',NULL,NULL,NULL,'df7fd538-6221-4b47-b048-01efcb6b6973'),
(4812,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-06 14:05:30',NULL,NULL,NULL,'670d56ca-0c4c-477b-90d6-46b215277a77'),
(4813,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-20 19:16:43',NULL,NULL,NULL,'27a5a154-16d1-499a-8b1e-7c8f758940da'),
(4814,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-06 14:05:30',NULL,NULL,NULL,'24afae33-fdd1-491d-882c-88eb4f406ddb'),
(4815,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-26 08:51:52',NULL,NULL,NULL,'7036734e-9fb3-4a8b-a30b-c2b139426077'),
(4816,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-13 09:36:40',NULL,NULL,NULL,'8a324f35-9909-472f-8008-cf0c4b67b6b9'),
(4817,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-13 09:36:40',NULL,NULL,NULL,'f846c0f7-56b1-46f6-89c2-0635ba399e84'),
(4818,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'eae88375-92a3-4f87-90da-900a0231344e'),
(4819,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'c45a7a17-3d6e-443e-8160-ce390c20bfe7'),
(4820,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'8d1f0c0c-ca54-4a12-a90a-ffa8a1a9ed83'),
(4821,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'31c23e58-b2e2-4877-9e43-8336dd6b3671'),
(4822,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'4f89a26c-cf4f-45b3-a4ea-908f4fd03c26'),
(4823,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'620be311-39cd-43bd-9f3e-f624468d57e2'),
(4824,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'7e488217-dade-4bd8-b676-7cf1776b8ad5'),
(4825,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'a5c2af60-2d00-4a4c-903d-6c70eab61fa6'),
(4826,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-20 20:12:09',NULL,NULL,NULL,'535d5f76-e4f4-4f82-82a5-907610f3d881'),
(4827,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-04-20 19:16:43',NULL,NULL,NULL,'88afcdc7-01ed-46c8-9fed-66b66806b3e1'),
(4828,4805,NULL,1986,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:09:14','2026-03-19 19:09:14',NULL,NULL,NULL,'3b033862-d43d-444a-a337-09bb71a1efa0'),
(4829,4806,NULL,1987,39,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'05eed135-2b16-4e39-9e4d-85ddf6287476'),
(4830,4807,NULL,1988,36,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'c10efd5c-9204-4a60-a4ef-fa10ed63a1a9'),
(4831,4808,NULL,1989,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'aa9888a1-e0cf-4353-9b70-27959f2e69fd'),
(4832,4809,NULL,1990,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'f33b7634-887f-4920-9e44-3b3a1a88945f'),
(4833,4810,NULL,1991,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'0ec9084c-6118-48dd-aae9-37de3b37b19f'),
(4834,4811,NULL,1992,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'70c585c3-3a66-43e3-bbc3-c77cb88cce3a'),
(4835,4812,NULL,1993,41,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'4fa9fef4-4fad-43f9-975f-bcdaece9cbae'),
(4836,4813,NULL,1994,42,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'fdff1f60-4fde-4b5f-bb54-d483ff9dd096'),
(4837,4814,NULL,1995,43,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'6510fc0b-9f43-4474-b81f-d87985708bf8'),
(4838,4815,NULL,1996,8,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'c098183b-325a-4c90-a2a1-5b9f048914de'),
(4839,4816,NULL,1997,44,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'e7624a89-57fd-4b31-8e10-d36c6fa65281'),
(4840,4817,NULL,1998,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'8dca6e42-d55b-4421-9e9a-7c3625c9c923'),
(4841,4818,NULL,1999,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:14',NULL,NULL,NULL,'7e952923-6af4-4ea2-82b2-0857ee7eaf4e'),
(4842,4819,NULL,2000,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'51a6e822-14a3-4cf5-9d3b-87c6a653f6ca'),
(4843,4820,NULL,2001,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'9143db56-6d35-449c-801f-ddb37c7b486e'),
(4844,4821,NULL,2002,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'9cf3f03c-b559-42d3-8ed4-a68c09777194'),
(4845,4822,NULL,2003,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'c83ab5c0-c033-4e5c-80ca-a7a3432614ea'),
(4846,4823,NULL,2004,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'fab37d91-124e-4b1a-bd88-ae41503d29f9'),
(4847,4824,NULL,2005,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'f4ee0b4a-6f6a-4ae0-8202-c7d177b7b2e9'),
(4848,4825,NULL,2006,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'b7294a1e-98d7-40d3-92e0-81ab1ba4d494'),
(4849,4826,NULL,2007,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'2874d4c9-80f9-4d6b-889d-560e8a008cf1'),
(4850,4827,NULL,2008,49,'craft\\elements\\Entry',1,0,'2026-03-19 19:08:52','2026-03-19 19:09:15',NULL,NULL,NULL,'f9dfe7ff-60c5-4a45-9207-6e22797dfc14'),
(4869,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-04-06 14:05:30',NULL,NULL,NULL,'0f2c036c-02e9-4b9a-917e-9276b89be286'),
(4870,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'318d3b04-9c2c-4eee-a34d-0b7ffd829473'),
(4871,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'749f3981-cbaa-463f-840e-1ed54691920f'),
(4872,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'d941fa2c-8d02-4ed2-966c-9134bb3ce7a2'),
(4873,4805,NULL,2009,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'83e69618-61de-4e87-ad62-ff4f08dd0be9'),
(4874,4806,NULL,2010,39,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'2287488d-c8f4-4221-9537-69cf2dc7d142'),
(4875,4807,NULL,2011,36,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'7ab9729b-5d2e-4287-8619-a6a5c06fcfd2'),
(4876,4808,NULL,2012,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'052274d2-afa8-40e9-9233-41fa50488f36'),
(4877,4809,NULL,2013,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'f320c874-8210-4854-81a2-6c6544b57413'),
(4878,4810,NULL,2014,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'a7d8b0cf-77a1-4782-9de5-ccab3edbd57b'),
(4879,4811,NULL,2015,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'9df02004-fc1c-4ba7-8419-4b39914d45a6'),
(4880,4812,NULL,2016,41,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'1704d19a-9666-42e9-964f-5a365191d0fb'),
(4881,4869,NULL,2017,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'ea54ed17-4fb9-4b56-87a6-96efb1eabcf5'),
(4882,4870,NULL,2018,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'1bbdd711-7ee7-4d83-a84c-411b1e411255'),
(4883,4871,NULL,2019,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'747b5c32-ea89-478e-b677-ec59c93f71fd'),
(4884,4872,NULL,2020,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:15:03','2026-03-19 19:15:03',NULL,NULL,NULL,'4252a3a0-d854-4ce5-965d-97ef94374d9c'),
(4886,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 19:23:10','2026-03-19 19:23:10',NULL,NULL,NULL,'ce0065cf-7b86-495a-b5e6-f1981a797d02'),
(4887,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 19:23:10','2026-03-19 19:23:10',NULL,NULL,NULL,'77d4eca3-54e2-47b0-ad05-579f34528a4d'),
(4888,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 19:23:11','2026-03-19 19:23:11',NULL,NULL,NULL,'7723cc7f-8fa3-44cc-9362-785e5ae6b0d9'),
(4890,4805,NULL,2021,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:23:50','2026-03-19 19:23:50',NULL,NULL,NULL,'76887762-c581-4baf-ada3-8dde0f708fa8'),
(4891,4813,NULL,2022,42,'craft\\elements\\Entry',1,0,'2026-03-19 19:23:50','2026-03-19 19:23:50',NULL,NULL,NULL,'1cd7f6b1-1adc-4efc-b74a-ec3dd921c0ef'),
(4892,4805,NULL,2023,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:23:52','2026-03-19 19:23:52',NULL,NULL,NULL,'a6f65181-a0f6-4c1c-bcfa-0e54e2b3ae8f'),
(4893,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 19:41:00','2026-03-19 19:41:00',NULL,NULL,NULL,'ca18addf-947c-4c7a-b10a-fa69287a186e'),
(4895,4502,NULL,2024,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:41:03','2026-03-19 19:41:04',NULL,NULL,NULL,'fc74fedd-bea0-486f-902b-477cc77d2c1a'),
(4896,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-20 19:18:06',NULL,NULL,NULL,'65ea90f3-2691-405e-8592-942296d7aa14'),
(4897,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-17 16:29:46',NULL,NULL,NULL,'7e35d604-4f3c-4185-bd51-e7c8102eb29c'),
(4898,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:30:42',NULL,NULL,NULL,'21715a25-d0f0-439b-aecf-93e06454b701'),
(4899,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:30:42',NULL,NULL,NULL,'c83b6902-bb0c-4301-9644-fbad268f6793'),
(4900,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:30:42',NULL,NULL,NULL,'0fd1c475-1c52-4eb0-8986-fff21bcd09f6'),
(4901,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-19 19:49:03',NULL,NULL,NULL,'1f9e9dec-ed2e-44b2-9f9f-74d2bd2fd39c'),
(4902,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-19 19:49:03',NULL,NULL,NULL,'d8a6fecc-6003-4cc1-9f37-fd3fe222c4f3'),
(4903,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:50:15',NULL,NULL,NULL,'f51a8cea-e7cf-4097-9f2e-b70774c24ddf'),
(4904,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:50:15',NULL,NULL,NULL,'ec0ace2b-b70d-4771-97eb-0d16e2d4e6bb'),
(4905,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:50:15',NULL,NULL,NULL,'9dd6ca73-8e15-4bab-976d-4732439fdce9'),
(4906,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:50:15',NULL,NULL,NULL,'e194cca3-5b31-4a0d-9e4c-2f5453ee405a'),
(4907,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-06 20:50:15',NULL,NULL,NULL,'bbb19c37-c245-4a61-a681-a5ebd672452e'),
(4908,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-20 19:18:06',NULL,NULL,NULL,'99191c51-8344-4fca-8174-69b8dccf435b'),
(4909,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-19 19:55:38',NULL,NULL,NULL,'2470265a-d752-4342-a73e-54adb0e90fd4'),
(4910,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-26 08:44:23',NULL,'2026-03-26 08:44:23',NULL,'8676aef8-69d8-4bc1-8800-105dd2f3f5b4'),
(4911,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-13 10:36:07',NULL,NULL,NULL,'2390277a-75a8-49c8-8153-dd07154bfd25'),
(4912,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'e6b8de6b-3c4d-464b-9e8d-45437a5748a9'),
(4913,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'90d520d4-e1c1-41ed-82db-ceb311dfe24e'),
(4914,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'1fcca5f5-8fa4-477c-b30c-66be9d6aae6c'),
(4915,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-13 10:36:07',NULL,NULL,NULL,'09d309f6-a9d5-4337-a48b-da39b57705c5'),
(4916,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'9ab82183-1105-4a57-9102-89708e333fa7'),
(4917,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-13 10:36:07',NULL,NULL,NULL,'58889d0d-5984-41e6-b302-733f5e00bc38'),
(4918,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-13 10:36:07',NULL,NULL,NULL,'c78483f7-c640-4013-afcd-9fb07abaf8d0'),
(4919,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'fea1e638-622d-4fd5-974a-7040bb1a56b2'),
(4920,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'53a39383-b212-4de9-abcb-4026f8cd90d8'),
(4921,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-20 18:23:57',NULL,NULL,NULL,'bec2831a-3af4-4129-9173-48160d449bb8'),
(4922,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-19 20:01:29',NULL,'2026-03-19 20:01:29',NULL,'8161733e-bb22-4e91-be64-60c25b2a84d3'),
(4923,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-04-20 19:18:06',NULL,NULL,NULL,'62611f27-3209-41a5-80fa-b86f3f54fe90'),
(4948,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 20:04:27','2026-03-19 20:04:27',NULL,NULL,NULL,'63e6570e-1436-4f05-a218-d601d54a0bb7'),
(4949,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 20:04:28','2026-03-19 20:04:28',NULL,NULL,NULL,'f491bc0a-8885-4dab-9bce-a87eb9ee5f0c'),
(4950,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 20:04:29','2026-03-19 20:04:29',NULL,NULL,NULL,'e10c1044-9ca7-4655-8087-c87891b9889a'),
(4952,4896,NULL,2025,6,'craft\\elements\\Entry',1,0,'2026-03-19 20:05:19','2026-03-19 20:05:19',NULL,NULL,NULL,'6df1a5dd-43b6-47a4-97a5-c672959a8588'),
(4953,4897,NULL,2026,39,'craft\\elements\\Entry',1,0,'2026-03-19 19:47:56','2026-03-19 20:05:19',NULL,NULL,NULL,'40ca3677-92bf-41a6-ba77-cd3439507a3e'),
(4954,4898,NULL,2027,36,'craft\\elements\\Entry',1,0,'2026-03-19 19:49:03','2026-03-19 20:05:19',NULL,NULL,NULL,'93a6ece2-b847-43f4-8b08-bcd75e0224c6'),
(4955,4899,NULL,2028,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:49:03','2026-03-19 20:05:19',NULL,NULL,NULL,'fb209227-807e-4e56-bcf6-125063259653'),
(4956,4900,NULL,2029,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:49:03','2026-03-19 20:05:19',NULL,NULL,NULL,'2b343b2a-b11b-4b6d-81a0-4aaa511d3323'),
(4957,4901,NULL,2030,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:49:03','2026-03-19 20:05:19',NULL,NULL,NULL,'6445ad53-bae5-4f14-9fb1-9d9f9faf54c8'),
(4958,4902,NULL,2031,37,'craft\\elements\\Entry',1,0,'2026-03-19 19:49:03','2026-03-19 20:05:19',NULL,NULL,NULL,'9a2b90b1-54ed-4936-86c5-e8446dbb7a61'),
(4959,4903,NULL,2032,41,'craft\\elements\\Entry',1,0,'2026-03-19 19:51:42','2026-03-19 20:05:19',NULL,NULL,NULL,'db902f77-0313-4b46-91c6-d6999b6e7054'),
(4960,4904,NULL,2033,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:51:42','2026-03-19 20:05:19',NULL,NULL,NULL,'4bade1f1-46b0-45ca-8c1e-3b876672e9d3'),
(4961,4905,NULL,2034,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:51:42','2026-03-19 20:05:19',NULL,NULL,NULL,'9fc5c690-40ac-4130-8214-90e903e8c4ad'),
(4962,4906,NULL,2035,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:51:42','2026-03-19 20:05:19',NULL,NULL,NULL,'2c22f352-9e7f-4a3d-ac42-d81b500b31f6'),
(4963,4907,NULL,2036,40,'craft\\elements\\Entry',1,0,'2026-03-19 19:51:42','2026-03-19 20:05:19',NULL,NULL,NULL,'e8b4b4df-eef0-44cf-9877-36305fdc3023'),
(4964,4908,NULL,2037,42,'craft\\elements\\Entry',1,0,'2026-03-19 20:05:15','2026-03-19 20:05:19',NULL,NULL,NULL,'b4bb5646-4ea4-4389-8936-ac36ad653895'),
(4965,4909,NULL,2038,43,'craft\\elements\\Entry',1,0,'2026-03-19 19:55:38','2026-03-19 20:05:19',NULL,NULL,NULL,'1add15ac-a3af-435f-bb23-d560b3e32b41'),
(4966,4910,NULL,2039,8,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-19 20:05:19',NULL,'2026-03-26 08:44:23',NULL,'abfccc44-e5c2-4893-b114-e040f5ecadd5'),
(4967,4911,NULL,2040,44,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'b0414d22-16c0-4b69-a79e-b383ed835d35'),
(4968,4912,NULL,2041,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'948304db-c123-4f66-a8fd-479c68bc9952'),
(4969,4913,NULL,2042,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'54952a92-7602-4d99-944e-156b6a886414'),
(4970,4914,NULL,2043,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'bf3889b4-46dd-40f3-ae17-bda270f5da76'),
(4971,4915,NULL,2044,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'3999eaec-8bd2-43d9-ada6-ba24ab5f4407'),
(4972,4916,NULL,2045,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'db2fd8ce-c58f-490b-89c9-ca587b63c5ef'),
(4973,4917,NULL,2046,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'0d724490-53ab-4716-8c57-da1b908bf63f'),
(4974,4918,NULL,2047,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'c8541ab0-3b02-418e-a373-e953047dea5c'),
(4975,4919,NULL,2048,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'037f13a3-54bc-4d29-a383-599e69a75eef'),
(4976,4920,NULL,2049,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'c9fcbf14-cc3a-4d07-8340-9e64fe7a0325'),
(4977,4921,NULL,2050,35,'craft\\elements\\Entry',1,0,'2026-03-19 20:01:29','2026-03-19 20:05:19',NULL,NULL,NULL,'ac62a720-f107-4487-9a39-67421e7a9aee'),
(4978,4923,NULL,2051,49,'craft\\elements\\Entry',1,0,'2026-03-19 19:45:54','2026-03-19 20:05:19',NULL,NULL,NULL,'62e8e0d2-696e-4ff8-9df1-cdd8f23c779c'),
(4979,4896,NULL,2052,6,'craft\\elements\\Entry',1,0,'2026-03-19 20:05:21','2026-03-19 20:05:21',NULL,NULL,NULL,'684a9520-2af0-43c5-81cb-c065d5f77a27'),
(4980,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 20:07:35','2026-03-19 20:07:35',NULL,NULL,NULL,'2e24e8b2-2aa0-4ae3-a311-05bdf132c7ce'),
(4982,1951,NULL,2053,6,'craft\\elements\\Entry',1,0,'2026-03-19 20:07:42','2026-03-19 20:07:42',NULL,NULL,NULL,'7b649038-2eb2-4954-8b1b-539252ee81af'),
(4994,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 21:58:46','2026-03-19 21:58:46',NULL,NULL,NULL,'7d36784c-d73f-49a3-9b53-55c3c92596f5'),
(4995,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-03-19 22:01:59','2026-03-19 22:16:36',NULL,'2026-03-19 22:16:36',NULL,'1e248ff4-a892-4666-9522-50e3a3ac08fe'),
(5014,NULL,1670,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-19 22:06:00','2026-03-19 22:06:00',NULL,NULL,NULL,'ea2a7356-8d30-4c54-b4e2-bac37bf58f64'),
(5070,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 22:36:24','2026-03-19 22:36:24',NULL,NULL,NULL,'83ad53cb-fcfd-4536-a6e8-503ddf36cf88'),
(5071,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 22:36:27','2026-03-19 22:36:27',NULL,NULL,NULL,'44f75e21-b3ef-45d8-be66-8a0dae6508a3'),
(5075,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 22:38:46','2026-03-19 22:38:46',NULL,NULL,NULL,'95a5d683-dbb3-4214-b5e6-5680ab137321'),
(5076,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-19 22:38:46','2026-03-19 22:38:46',NULL,NULL,NULL,'5b5ca5a7-23c3-492c-8a17-72cc00287716'),
(5087,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-04-16 14:33:57',NULL,NULL,NULL,'d2840a3b-a00b-4bc6-b6a1-35d77b08e9ef'),
(5088,3086,NULL,2091,47,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'48babfdf-6f95-4d86-88a4-6ddd002a1553'),
(5089,3089,NULL,2092,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'71703cb0-d0b4-409d-abcb-02ccb0aeaa60'),
(5090,3088,NULL,2093,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'9e94d43d-52ca-44a3-b2ce-7b2ad9c93f9f'),
(5091,3090,NULL,2094,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'24c41843-14ed-4c46-9b86-e3bbe985c6f1'),
(5092,3093,NULL,2095,44,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'c73c0e5f-c943-42eb-91c7-e4d4ddc2be9e'),
(5093,3116,NULL,2096,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'e6f9543d-1a2f-4e45-b20e-cfb7a633e6ed'),
(5094,3117,NULL,2097,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'82de5f6f-57b3-4fc9-ab31-2d6be9b324e8'),
(5095,3118,NULL,2098,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'7ef4219d-b776-4fb0-ab87-eac41aa13ea1'),
(5096,3119,NULL,2099,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'4344314e-2541-4b48-b19b-daa99c9cf71f'),
(5097,3120,NULL,2100,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'138ab4f0-1d26-4c84-8023-179f3c7150c6'),
(5098,3121,NULL,2101,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'6ba6da76-accc-448d-b497-546f03d8e710'),
(5099,3122,NULL,2102,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'b908d6bb-546e-4bc9-afe6-db8a852a91cc'),
(5100,5087,NULL,2103,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:23','2026-03-19 22:43:23',NULL,NULL,NULL,'5454882b-e7d6-4ec1-8844-11c278674cf1'),
(5101,3086,NULL,2104,47,'craft\\elements\\Entry',1,0,'2026-03-19 22:43:31','2026-03-19 22:43:31',NULL,NULL,NULL,'e3f38fad-d9f4-4ff9-b539-261eee0d63c4'),
(5105,3086,NULL,2105,47,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:36','2026-03-19 22:45:36',NULL,NULL,NULL,'368d1ff8-7355-4072-8df2-2c0c54df5443'),
(5106,3089,NULL,2106,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:36','2026-03-19 22:45:36',NULL,NULL,NULL,'a38f73cf-9330-48d1-b310-0bdea1be4825'),
(5107,3090,NULL,2107,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:36','2026-03-19 22:45:36',NULL,NULL,NULL,'ec63445d-62dd-4065-af80-3b6c8083cf29'),
(5108,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-20 19:09:20',NULL,NULL,NULL,'8f57b4d2-5b69-421c-91d4-d503ca4eba0c'),
(5109,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'60cc6758-7e48-4872-92c6-e48e64086d35'),
(5110,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'1a32fc7b-b6c4-4aed-8d36-dc70deea8cd2'),
(5111,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'1db3bcc0-be3f-4fb7-ae92-d1576ef81be0'),
(5112,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:45:52',NULL,NULL,NULL,'afa779cf-0f31-4bbd-9914-4ea3df9085f8'),
(5113,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'986402f4-c735-406b-b5ca-b3b1f6f08dc6'),
(5114,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'3b11d6a7-6ed9-4b71-ae9b-3e732679f0ce'),
(5117,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'d6cdd26c-46a1-47d3-ad61-fa2129597830'),
(5118,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'7bc68a51-2fa7-4b44-8aa6-33f4ea0b6bae'),
(5119,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'77faa62f-d00c-49b2-903c-c4a300fb0094'),
(5120,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-16 14:17:03',NULL,NULL,NULL,'02807dd3-86ad-4f83-acfd-67f8eefd7dad'),
(5121,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-01 14:56:05',NULL,'2026-04-01 14:56:05',NULL,'cb8e2128-9779-4b7c-b99e-ee9555755dfa'),
(5122,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-04-20 19:09:20',NULL,NULL,NULL,'4becc32c-9f49-4b9f-a55c-f016326c4be1'),
(5123,5108,NULL,2108,47,'craft\\elements\\Entry',1,0,'2026-03-19 22:46:15','2026-03-19 22:46:15',NULL,NULL,NULL,'140910cc-4236-4653-b77d-9b340ac27ca7'),
(5124,5109,NULL,2109,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:15',NULL,NULL,NULL,'bd30fcd1-22bb-4406-abcf-5284c7023c34'),
(5125,5110,NULL,2110,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'150decaa-55fa-4b5d-a105-d27a1a07cc9f'),
(5126,5111,NULL,2111,42,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'d4143ffe-4b13-4765-a27a-560fe274a7a6'),
(5127,5112,NULL,2112,8,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'b7f58168-163a-4318-a1d3-5aa55fe60e38'),
(5128,5113,NULL,2113,44,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'d45f0ce8-dfd0-4fec-9b94-184569eb9589'),
(5129,5114,NULL,2114,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'a6a85e83-2513-4c7a-ae8c-8426d8baa152'),
(5132,5117,NULL,2117,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'f344c8e7-109b-4055-a6e5-07d9c5c4671b'),
(5133,5118,NULL,2118,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'e02b4605-7edd-4c5c-942a-923493903367'),
(5134,5119,NULL,2119,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'a26330c7-0cfb-4de5-bfc2-e3810b7135f0'),
(5135,5120,NULL,2120,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'54375494-57b9-4927-8abb-05a38355a7c3'),
(5136,5121,NULL,2121,35,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,'2026-04-01 14:56:05',NULL,'a34d3706-83c0-4d9f-b8d3-841de6367676'),
(5137,5122,NULL,2122,49,'craft\\elements\\Entry',1,0,'2026-03-19 22:45:52','2026-03-19 22:46:16',NULL,NULL,NULL,'a66e87f5-1394-473c-a69c-edad89d960dc'),
(5143,5108,NULL,2123,47,'craft\\elements\\Entry',1,0,'2026-03-19 23:02:46','2026-03-19 23:02:46',NULL,NULL,NULL,'17c6fe9a-4d3d-4df1-bf35-4f36e39178c8'),
(5144,5109,NULL,2124,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:02:46','2026-03-19 23:02:46',NULL,NULL,NULL,'bae18c07-bec7-4afa-9f59-a854483ea005'),
(5145,5110,NULL,2125,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:02:46','2026-03-19 23:02:46',NULL,NULL,NULL,'7572ebd1-1551-48cc-993d-4fb23d7e065d'),
(5146,5111,NULL,2126,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:02:46','2026-03-19 23:02:46',NULL,NULL,NULL,'c2557fec-5337-4742-a103-bc415aeeb506'),
(5149,3086,NULL,2127,47,'craft\\elements\\Entry',1,0,'2026-03-19 23:03:27','2026-03-19 23:03:27',NULL,NULL,NULL,'e894f6e8-0984-4608-8240-f5d1fc15c400'),
(5150,3089,NULL,2128,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:03:27','2026-03-19 23:03:27',NULL,NULL,NULL,'c7c577cd-41dd-45ed-9ab0-877f174bc74e'),
(5151,3086,NULL,2129,47,'craft\\elements\\Entry',1,0,'2026-03-19 23:07:26','2026-03-19 23:07:26',NULL,NULL,NULL,'68c56d8f-ab12-45bc-a9c5-b2c798a9d6b0'),
(5154,NULL,1725,NULL,34,'craft\\elements\\Entry',1,0,'2026-03-19 23:13:39','2026-03-19 23:13:39',NULL,NULL,NULL,'e1a733ed-1204-4fc0-8fdd-eb489cca5442'),
(5159,NULL,1730,NULL,3,'craft\\elements\\Entry',1,0,'2026-03-19 23:23:02','2026-03-19 23:23:02',NULL,NULL,NULL,'83e280f2-7208-4178-85dc-90f1ed893cf8'),
(5161,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2026-03-19 23:23:38','2026-03-19 23:23:58',NULL,'2026-03-19 23:23:58',NULL,'d6f7a84b-d972-4441-9933-9ed3f63bcb9f'),
(5162,887,NULL,2130,7,'craft\\elements\\Entry',1,0,'2026-03-19 23:23:38','2026-03-19 23:23:38',NULL,NULL,NULL,'21982822-bac3-452a-861b-f82085923c82'),
(5163,5161,NULL,2131,4,'craft\\elements\\Entry',1,0,'2026-03-19 23:23:38','2026-03-19 23:23:38',NULL,'2026-03-19 23:23:58',NULL,'5f24e1ca-3289-458a-b617-d6300ba92c12'),
(5164,903,NULL,2132,34,'craft\\elements\\Entry',1,0,'2026-03-19 23:23:38','2026-03-19 23:23:38',NULL,'2026-04-16 12:11:07',NULL,'988d6727-fb18-4956-a7d3-022ab250c439'),
(5166,887,NULL,2133,7,'craft\\elements\\Entry',1,0,'2026-03-19 23:23:58','2026-03-19 23:23:58',NULL,NULL,NULL,'3b529005-04f9-47e5-a9ba-257c5730916e'),
(5167,887,NULL,2134,7,'craft\\elements\\Entry',1,0,'2026-03-19 23:24:02','2026-03-19 23:24:02',NULL,NULL,NULL,'b1f6d271-75bb-4ce9-b395-23568d5bf243'),
(5178,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:40:52','2026-04-16 12:20:07',NULL,NULL,NULL,'c0777767-06a4-48df-9221-07ec95e99d2d'),
(5179,912,NULL,2137,7,'craft\\elements\\Entry',1,0,'2026-03-19 23:40:52','2026-03-19 23:40:52',NULL,NULL,NULL,'6a6605a4-cab3-45f4-b827-70297c7c9466'),
(5180,1367,NULL,2138,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:40:52','2026-03-19 23:40:52',NULL,NULL,NULL,'1710f90b-706f-43dd-83ad-dc533b6a4984'),
(5181,5178,NULL,2139,42,'craft\\elements\\Entry',1,0,'2026-03-19 23:40:52','2026-03-19 23:40:52',NULL,NULL,NULL,'ea1ac004-9856-4534-8759-b997d6ae498b'),
(5182,1385,NULL,2140,44,'craft\\elements\\Entry',1,0,'2026-03-19 23:40:52','2026-03-19 23:40:52',NULL,'2026-03-20 20:22:43',NULL,'075a1a4f-f80b-4aab-ba1c-966fbb4b9e23'),
(5183,912,NULL,2141,7,'craft\\elements\\Entry',1,0,'2026-03-19 23:40:55','2026-03-19 23:40:55',NULL,NULL,NULL,'6ce1301d-8511-494c-8a89-b46867e93c93'),
(5192,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-03-20 00:44:45','2026-04-17 12:19:21',NULL,NULL,NULL,'767da274-163b-4e30-a0ac-52ac661d46d6'),
(5195,5192,NULL,2144,3,'craft\\elements\\Entry',1,0,'2026-03-20 00:44:45','2026-04-13 12:45:35',NULL,NULL,NULL,'7cb3a31d-85b3-48e0-81b3-62188a09101e'),
(5200,143,NULL,2147,4,'craft\\elements\\Entry',1,0,'2026-03-20 09:47:55','2026-04-17 12:19:35',NULL,NULL,NULL,'82e4de6c-5edd-4bb5-930b-ea6109f17810'),
(5237,4203,NULL,2164,6,'craft\\elements\\Entry',1,0,'2026-03-20 10:12:38','2026-03-20 10:12:38',NULL,NULL,NULL,'68f0b18c-fc00-4197-aeb2-a0c3ea6c3f28'),
(5238,4210,NULL,2165,41,'craft\\elements\\Entry',1,0,'2026-03-20 10:12:38','2026-03-20 10:12:38',NULL,NULL,NULL,'a52d2879-b5c1-488d-b52c-93db30403cc1'),
(5239,NULL,1769,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-20 10:16:11','2026-03-20 10:16:11',NULL,NULL,NULL,'c5d21cec-7faf-4a2d-89b8-28f44f78e88a'),
(5240,NULL,1770,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-20 10:16:35','2026-03-20 10:16:35',NULL,NULL,NULL,'017a2b28-c0c2-48b1-ac52-4f0e3064f42e'),
(5241,NULL,1771,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-20 10:18:24','2026-03-20 10:18:24',NULL,NULL,NULL,'5bba46ef-de67-4224-be71-12700f9d60a3'),
(5256,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2026-03-20 10:46:55','2026-04-20 20:13:57',NULL,'2026-04-20 20:13:57',1,'192c409f-8bfe-4061-b102-e6696d5237a0'),
(5257,1286,NULL,2170,6,'craft\\elements\\Entry',1,0,'2026-03-20 10:46:55','2026-03-20 10:46:55',NULL,'2026-04-20 20:13:57',NULL,'8a0d8818-6ac8-4145-81b2-9a489d87059e'),
(5258,5256,NULL,2171,4,'craft\\elements\\Entry',1,0,'2026-03-20 10:46:55','2026-03-20 10:46:55',NULL,'2026-04-20 20:13:57',NULL,'aa1a9ba3-0ef1-4f94-a957-31fd2ebb1a18'),
(5263,NULL,NULL,NULL,9,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-04-20 20:13:57',NULL,'2026-04-20 20:13:57',1,'81bb7abd-e524-4b73-8fe1-d9178bb5bae5'),
(5264,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-04-20 20:13:57',NULL,'2026-04-20 20:13:57',1,'8f3a3390-1fa5-4bca-ba1f-b9d08dfa90e6'),
(5265,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-04-20 20:13:57',NULL,'2026-04-20 20:13:57',1,'f8369124-e60d-4b6b-ac60-ed4f7ff07003'),
(5266,1286,NULL,2172,6,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-03-20 10:50:16',NULL,'2026-04-20 20:13:57',NULL,'b757fbaa-9141-4840-b8a3-9a42088b87ba'),
(5267,5263,NULL,2173,9,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-03-20 10:50:16',NULL,'2026-04-20 20:13:57',NULL,'49e1bba7-3639-48e3-95b2-fe8e90882230'),
(5268,5264,NULL,2174,41,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-03-20 10:50:16',NULL,'2026-04-20 20:13:57',NULL,'fc3a9375-d635-4327-a5a4-f1af073ed217'),
(5269,5265,NULL,2175,40,'craft\\elements\\Entry',1,0,'2026-03-20 10:50:16','2026-03-20 10:50:16',NULL,'2026-04-20 20:13:57',NULL,'4858f35f-65b6-49d8-a65e-00d5a75817d6'),
(5364,604,NULL,2221,20,'craft\\elements\\Entry',1,0,'2026-03-20 11:36:02','2026-04-17 12:19:35',NULL,NULL,NULL,'f483d99a-a0ea-48e3-8b44-14530efb465c'),
(5365,654,NULL,2222,30,'craft\\elements\\Entry',1,0,'2026-03-20 11:36:02','2026-03-20 11:36:02',NULL,NULL,NULL,'bbba6251-5877-46c5-ae38-5839f3ddc7f5'),
(5366,657,NULL,2223,21,'craft\\elements\\Entry',1,0,'2026-03-20 11:36:02','2026-03-20 11:36:02',NULL,NULL,NULL,'b9e48292-d5e6-45cc-9ea0-56a0a196b95e'),
(5369,887,NULL,2224,7,'craft\\elements\\Entry',1,0,'2026-03-20 12:05:00','2026-03-20 12:05:01',NULL,NULL,NULL,'cf7ed805-c26d-41be-ab78-e90168f48a4d'),
(5370,903,NULL,2225,34,'craft\\elements\\Entry',1,0,'2026-03-20 12:05:00','2026-03-20 12:05:01',NULL,'2026-04-16 12:11:07',NULL,'41a313a5-5387-4362-8c03-c111b29ee339'),
(5372,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-20 12:54:18','2026-03-20 12:54:18',NULL,NULL,NULL,'7f400a11-c2f6-46e1-b546-1b9441527bcf'),
(5373,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-20 12:54:18','2026-03-20 12:54:18',NULL,NULL,NULL,'820ad2e9-edf8-42b6-9429-6d579cdda439'),
(5374,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-20 12:54:19','2026-03-20 12:54:19',NULL,NULL,NULL,'959ae852-5058-41d7-8e49-431d3063486c'),
(5389,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2026-03-20 13:33:42','2026-03-20 13:33:42',NULL,NULL,NULL,'e145e60a-711c-417a-9e28-3d8993830989'),
(5390,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2026-03-20 13:34:33','2026-03-20 13:34:33',NULL,NULL,NULL,'69d2e98d-8fea-4232-ad09-3abb8673c4e8'),
(5391,NULL,NULL,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:15:42','2026-03-23 17:01:38',NULL,NULL,NULL,'5b097a74-f755-4001-b429-9af6df2cd415'),
(5392,5391,NULL,2232,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:16:40','2026-03-20 17:16:40',NULL,NULL,NULL,'81f26cbb-5058-4e5f-b7fc-584335750dd5'),
(5397,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-20 17:24:58','2026-03-20 18:05:19',NULL,NULL,NULL,'4578a268-7694-4e27-85fd-4e1649372839'),
(5398,5391,NULL,2233,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:24:58','2026-03-20 17:24:58',NULL,NULL,NULL,'fda1179c-35a7-40dc-8cce-c4b037b39954'),
(5399,5397,NULL,2234,42,'craft\\elements\\Entry',1,0,'2026-03-20 17:24:58','2026-03-20 17:24:58',NULL,NULL,NULL,'bb4aa275-3277-47c0-b109-9575b93ae3d6'),
(5402,5391,NULL,2235,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:49:51','2026-03-20 17:49:51',NULL,NULL,NULL,'b285c9b0-5c73-463a-a609-2462af0161cb'),
(5403,5397,NULL,2236,42,'craft\\elements\\Entry',1,0,'2026-03-20 17:49:51','2026-03-20 17:49:51',NULL,NULL,NULL,'8e6fccda-7e2d-4f25-873b-e0a354b0b786'),
(5404,5391,NULL,2237,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:49:57','2026-03-20 17:49:57',NULL,NULL,NULL,'08e43c68-2069-4392-b589-52960ae4395c'),
(5405,NULL,NULL,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:50:10','2026-03-23 17:02:10',NULL,NULL,NULL,'bd4d3e19-1761-4533-b195-7c66ea3a1cec'),
(5406,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-20 17:50:10','2026-03-20 18:05:02',NULL,NULL,NULL,'38d3754a-44a7-4c9e-9711-ed9d2d25c153'),
(5407,5405,NULL,2238,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:50:25','2026-03-20 17:50:25',NULL,NULL,NULL,'9d839e91-c186-4f96-9c10-e1a927a9274c'),
(5408,5406,NULL,2239,42,'craft\\elements\\Entry',1,0,'2026-03-20 17:50:10','2026-03-20 17:50:25',NULL,NULL,NULL,'740b2672-be82-4847-bf8c-d4e63b16a069'),
(5412,5405,NULL,2240,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:55:59','2026-03-20 17:55:59',NULL,NULL,NULL,'367af24e-6f8b-4450-a346-5b5e85094d35'),
(5413,5406,NULL,2241,42,'craft\\elements\\Entry',1,0,'2026-03-20 17:55:59','2026-03-20 17:55:59',NULL,NULL,NULL,'0b595701-a12a-4d7c-a5af-02502fbacf4e'),
(5414,5405,NULL,2242,48,'craft\\elements\\Entry',1,0,'2026-03-20 17:56:02','2026-03-20 17:56:02',NULL,NULL,NULL,'1fcf5f3c-2fe2-4351-962f-3850cb375d31'),
(5418,5391,NULL,2243,48,'craft\\elements\\Entry',1,0,'2026-03-20 18:00:13','2026-03-20 18:00:13',NULL,NULL,NULL,'dbc8df22-570c-47ce-8ff3-353b94b9b917'),
(5419,5397,NULL,2244,42,'craft\\elements\\Entry',1,0,'2026-03-20 18:00:13','2026-03-20 18:00:13',NULL,NULL,NULL,'d8ddd876-e5e3-4c74-8b77-1637446fa034'),
(5420,5391,NULL,2245,48,'craft\\elements\\Entry',1,0,'2026-03-20 18:00:15','2026-03-20 18:00:15',NULL,NULL,NULL,'c4a69da5-4719-45a1-856e-2bd94f8e39c5'),
(5423,5405,NULL,2246,48,'craft\\elements\\Entry',1,0,'2026-03-20 18:00:39','2026-03-20 18:00:39',NULL,NULL,NULL,'24b9aacc-7f4f-4f29-ab3e-4bc39b567875'),
(5424,5406,NULL,2247,42,'craft\\elements\\Entry',1,0,'2026-03-20 18:00:39','2026-03-20 18:00:39',NULL,NULL,NULL,'247e32a9-873b-4cf8-a9f9-1e5abd54234a'),
(5427,5405,NULL,2248,48,'craft\\elements\\Entry',1,0,'2026-03-20 18:05:02','2026-03-20 18:05:03',NULL,NULL,NULL,'925f8ea6-7413-4286-a729-49425dfa12ce'),
(5428,5406,NULL,2249,42,'craft\\elements\\Entry',1,0,'2026-03-20 18:05:02','2026-03-20 18:05:03',NULL,NULL,NULL,'0cefe2e3-d9aa-4952-948d-04976b79024f'),
(5429,5405,NULL,2250,48,'craft\\elements\\Entry',1,0,'2026-03-20 18:05:06','2026-03-20 18:05:06',NULL,NULL,NULL,'8320c090-8603-4ab2-91bd-d1fd7a792415'),
(5432,5391,NULL,2251,48,'craft\\elements\\Entry',1,0,'2026-03-20 18:05:19','2026-03-20 18:05:19',NULL,NULL,NULL,'72285b03-7510-4184-8b7d-d3ef736e1021'),
(5433,5397,NULL,2252,42,'craft\\elements\\Entry',1,0,'2026-03-20 18:05:19','2026-03-20 18:05:19',NULL,NULL,NULL,'cb186ebf-ae15-42e6-8cd8-923eaaa16868'),
(5449,1951,NULL,2253,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:16:59','2026-03-20 18:16:59',NULL,NULL,NULL,'29394334-65b7-444a-9433-e028f6ebfecc'),
(5450,1964,NULL,2254,43,'craft\\elements\\Entry',1,0,'2026-03-20 18:16:59','2026-03-20 18:16:59',NULL,NULL,NULL,'1f1948e2-8276-40a5-9b09-1ed2a732b112'),
(5451,1966,NULL,2255,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:16:59','2026-03-20 18:17:00',NULL,NULL,NULL,'b5c858c1-4600-435c-a8f1-639285d3740b'),
(5462,1951,NULL,2266,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:18:40','2026-03-20 18:18:40',NULL,NULL,NULL,'7a380585-8a7c-43d0-ae44-635b2e4c37a2'),
(5476,4896,NULL,2267,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'c7e5b292-56d8-410e-9aa0-7869764689be'),
(5477,4911,NULL,2268,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'80bc45c2-0691-45e6-affa-a654e5828d88'),
(5478,4912,NULL,2269,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'e089fab4-574c-4bb7-b47b-fc3c388087f8'),
(5479,4913,NULL,2270,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'7b0c43f7-254a-4573-88d9-144782a52835'),
(5480,4914,NULL,2271,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'9ff3112d-9243-45b3-9af3-9f8a9abe3c9b'),
(5481,4915,NULL,2272,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'99e4984f-c86a-42b1-82c5-47f452460552'),
(5482,4916,NULL,2273,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'90b8ae90-f6f5-43e5-920b-4fd1eb2c8f07'),
(5483,4917,NULL,2274,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'fa06bf0e-aebf-4163-98d2-bbb9ce7556e0'),
(5484,4918,NULL,2275,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'e5b4447e-1e7e-4506-862f-159e29cfdf5f'),
(5485,4919,NULL,2276,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'072ddb6b-cb8a-457b-bfe5-a072e5362ae0'),
(5486,4920,NULL,2277,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'748b1bb0-c173-4544-ac3c-af56b43044e9'),
(5487,4921,NULL,2278,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:23:57','2026-03-20 18:23:57',NULL,NULL,NULL,'2324c9bf-362f-4353-9919-cdee7947d614'),
(5501,4026,NULL,2279,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'95ed5002-8be5-4e57-9abc-97e8b6644ac7'),
(5502,4041,NULL,2280,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'c46a9137-a5a5-475a-a010-e299fa9f745a'),
(5503,4042,NULL,2281,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'2bf8b193-d209-4884-8ad4-87981b3a108c'),
(5504,4043,NULL,2282,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'e91576a5-b496-4b47-bbd1-00b71c7c2e2b'),
(5505,4044,NULL,2283,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'847de989-4d35-421d-bca5-e98509a2d5b3'),
(5506,4045,NULL,2284,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'4a4bdad2-db15-4b55-98cb-91a88709eb2c'),
(5507,4046,NULL,2285,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'3e4d2ff6-fd76-4648-acb1-8da37369422d'),
(5508,4047,NULL,2286,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'9b1e2df9-b5f5-42b3-9908-192e4fecf578'),
(5509,4048,NULL,2287,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'3b766e69-2ffa-4544-a265-a16a9d663a7e'),
(5510,4049,NULL,2288,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'bb767223-c463-4487-8c6a-f65e12d733d1'),
(5511,4050,NULL,2289,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'ce9d32aa-3014-4ed4-b521-40acaf9d798b'),
(5512,4051,NULL,2290,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'a3ec00ba-ed37-4bb0-b803-78215414296d'),
(5513,4052,NULL,2291,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:29:19','2026-03-20 18:29:19',NULL,NULL,NULL,'f2b9fc33-6f94-4828-89d8-224157698268'),
(5525,4203,NULL,2292,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:51','2026-03-20 18:34:52',NULL,NULL,NULL,'b6390ade-a6f7-44da-b8d9-9ce314943080'),
(5526,4218,NULL,2293,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:51','2026-03-20 18:34:52',NULL,NULL,NULL,'a149c71e-7ac1-4625-add5-cdedac720e9b'),
(5528,4220,NULL,2295,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,NULL,NULL,'37816f23-d855-468c-a10d-4ab4e9416a6e'),
(5529,4221,NULL,2296,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,NULL,NULL,'2199c68c-5f01-44ff-b0e7-80ff23e2cfb7'),
(5531,4223,NULL,2298,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,NULL,NULL,'52220c8e-dc7e-4202-aaf1-ad9dc19c494f'),
(5532,4224,NULL,2299,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,NULL,NULL,'db8d380b-4d26-4a26-9c16-14ab1695547e'),
(5533,4225,NULL,2300,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,NULL,NULL,'10780c8a-5f83-4993-8dbb-1bb9b1f4a787'),
(5534,4226,NULL,2301,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,'2026-04-13 12:48:59',NULL,'0debf1c4-3b4d-430e-af7d-5f9fa26aa097'),
(5535,4227,NULL,2302,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:34:52','2026-03-20 18:34:52',NULL,NULL,NULL,'3fbccceb-66d4-42cc-91ec-3ea27be4628f'),
(5549,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'57e0b405-9db3-4d02-a84a-41e58dc69e3b'),
(5550,4303,NULL,2303,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'3d599b68-637f-4b20-abb9-fe87c422f705'),
(5551,4318,NULL,2304,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'44a77d67-dd91-464a-882f-78c45023dd95'),
(5552,4319,NULL,2305,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'ab41deec-01b4-4387-a3ea-470e4d5e2469'),
(5553,4320,NULL,2306,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'d44b4bd3-aa38-410d-aeb0-11e38a8d7bba'),
(5554,4321,NULL,2307,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'8ae314ad-1682-44a5-aab9-4c40d977300f'),
(5555,5549,NULL,2308,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'7e02dc54-289c-478a-bcf6-94663a09eb78'),
(5556,4322,NULL,2309,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'b08cca04-1758-43cc-9957-ce7939ae69bb'),
(5557,4323,NULL,2310,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'389cfc19-b924-4aa0-941b-5942d14affed'),
(5558,4324,NULL,2311,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'8933725e-6ed4-42a1-afba-59c08b763c89'),
(5559,4325,NULL,2312,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'30c8cf6a-3184-461c-9e93-19375552d8be'),
(5560,4326,NULL,2313,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'36a65ee3-d93d-4844-b6c8-a619118e031c'),
(5561,4327,NULL,2314,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:41:36','2026-03-20 18:41:36',NULL,NULL,NULL,'91002ead-5eab-4121-8e2c-cade6cc0636c'),
(5567,4418,NULL,2315,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:51:27','2026-03-20 18:51:27',NULL,NULL,NULL,'695b24c9-783b-4118-8268-2610599f8d5e'),
(5568,4433,NULL,2316,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:51:27','2026-03-20 18:51:27',NULL,NULL,NULL,'7da3c63d-0594-4873-b5af-5b80880295fc'),
(5570,4435,NULL,2318,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:51:27','2026-03-20 18:51:27',NULL,NULL,NULL,'0582543c-cf97-4c46-92c7-21aaf48e28ee'),
(5571,4436,NULL,2319,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:51:27','2026-03-20 18:51:27',NULL,NULL,NULL,'0deafb09-0a25-46c7-8c8e-d0ecbe988dfc'),
(5576,4418,NULL,2320,6,'craft\\elements\\Entry',1,0,'2026-03-20 18:57:13','2026-03-20 18:57:13',NULL,NULL,NULL,'bb8e7701-e35a-4619-bb8d-7fbb060384ff'),
(5577,4433,NULL,2321,44,'craft\\elements\\Entry',1,0,'2026-03-20 18:57:13','2026-03-20 18:57:13',NULL,NULL,NULL,'3c630086-2a80-4c90-afd1-22a6464e092a'),
(5578,4436,NULL,2322,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:57:13','2026-03-20 18:57:13',NULL,NULL,NULL,'47b4e22b-4f8d-4961-9415-f90a0e68ce08'),
(5580,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 18:57:33','2026-04-13 13:01:09',NULL,NULL,NULL,'09b7d346-f540-4a74-9c4d-86d86c483241'),
(5594,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:03:00','2026-04-13 13:01:09',NULL,NULL,NULL,'a25fc3e7-79b5-467a-b43a-f3f6f60e9439'),
(5598,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:03:00','2026-04-13 13:01:09',NULL,NULL,NULL,'bbf43c2c-fb0a-426c-b99b-b15c5558577d'),
(5600,4418,NULL,2324,6,'craft\\elements\\Entry',1,0,'2026-03-20 19:02:59','2026-03-20 19:03:00',NULL,NULL,NULL,'5fab773c-4f97-452a-a730-7211e5d1a4e6'),
(5601,4433,NULL,2325,44,'craft\\elements\\Entry',1,0,'2026-03-20 19:02:59','2026-03-20 19:03:00',NULL,NULL,NULL,'3e57f344-86e0-4b73-8e99-bca8d2623434'),
(5603,4435,NULL,2327,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:02:59','2026-03-20 19:03:00',NULL,NULL,NULL,'5feb84c8-50c0-44f2-9fac-303714bf1787'),
(5604,4436,NULL,2328,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:03:00','2026-03-20 19:03:00',NULL,NULL,NULL,'b2390e39-eb7e-4a75-8233-fb2a20c452c1'),
(5605,5580,NULL,2329,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:03:00','2026-03-20 19:03:00',NULL,NULL,NULL,'6f28e17a-d97e-45c4-a94a-a14fdb418b7e'),
(5606,5594,NULL,2330,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:03:00','2026-03-20 19:03:00',NULL,NULL,NULL,'17a6a5f9-585a-4f99-94f6-5b4adc06bd10'),
(5610,5598,NULL,2334,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:03:00','2026-03-20 19:03:00',NULL,NULL,NULL,'86ad3ea3-4cb7-4255-a573-fb2992adf9a0'),
(5617,4502,NULL,2336,6,'craft\\elements\\Entry',1,0,'2026-03-20 19:05:26','2026-03-20 19:05:26',NULL,NULL,NULL,'b6df5111-7d07-4557-bdc1-473af1c38c80'),
(5618,4517,NULL,2337,44,'craft\\elements\\Entry',1,0,'2026-03-20 19:05:26','2026-03-20 19:05:26',NULL,NULL,NULL,'510298d1-be29-49f4-a0b5-f3c73ec6463b'),
(5619,4518,NULL,2338,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:05:26','2026-03-20 19:05:26',NULL,NULL,NULL,'83f55b90-5fbb-4bd5-abd8-b021adee3c93'),
(5620,4519,NULL,2339,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:05:26','2026-03-20 19:05:26',NULL,NULL,NULL,'a61facad-5cb8-4e0b-a02b-8c456da0d250'),
(5621,4520,NULL,2340,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:05:26','2026-03-20 19:05:26',NULL,NULL,NULL,'0a72dada-9a83-40a5-a6fb-36b97c9c115c'),
(5633,4502,NULL,2341,6,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'f4da65fe-5abd-4c6f-abe3-ca8a52fdaede'),
(5634,4517,NULL,2342,44,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'fc4daa5a-a3cc-474e-acf5-9c1472472521'),
(5635,4520,NULL,2343,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'f1f5169a-665c-466d-a99a-5fe4390413d5'),
(5636,4521,NULL,2344,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'fb6f8c9f-a630-4500-9d16-4f9f2a32a10c'),
(5637,4522,NULL,2345,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'4217c52b-1cac-4507-94c8-5151f01d57eb'),
(5638,4523,NULL,2346,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'19e4ff81-3b3a-4edf-9cac-a8516df2545a'),
(5639,4524,NULL,2347,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'0fbc22f7-13a1-4333-a13c-805946ead708'),
(5640,4525,NULL,2348,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'21f968e7-b62c-46f1-89bb-558132ad7595'),
(5641,4526,NULL,2349,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'7db8cf30-edca-458a-8c7b-e9c5d5b2db48'),
(5642,4527,NULL,2350,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:14:32','2026-03-20 19:14:32',NULL,NULL,NULL,'9008dd46-55c3-4720-bc18-f1c9b854e0ee'),
(5655,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'ab6bfb38-c142-489b-98f9-7d9b68ce149b'),
(5656,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'2bd63b2b-f5c6-4ac1-b2e9-f3622a3634d4'),
(5657,4593,NULL,2351,6,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'4096f17a-9e04-4a74-a054-9c10031f4a76'),
(5658,4608,NULL,2352,44,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'5564616d-40e6-44d1-90b9-da49837f5c7f'),
(5659,4609,NULL,2353,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'42a1dbd5-b4f1-43c9-ba4d-60c9b2e7d5c9'),
(5660,4610,NULL,2354,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'00fe8bee-6dd5-44c7-b490-3d1ed5342cd1'),
(5661,4611,NULL,2355,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'7af77ab4-fee8-40e2-91e8-6e03dba7b4d6'),
(5662,4612,NULL,2356,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'c54a706a-beb4-4989-8b16-a4e8de52938f'),
(5663,5655,NULL,2357,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'0798d711-6ff8-4f1b-8c04-053560af6639'),
(5664,4613,NULL,2358,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'80ecc0f4-66bf-439f-8f2e-602642212d11'),
(5665,4614,NULL,2359,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'f52ea675-0a7a-4fb9-8ed6-4c6f1ecbc89f'),
(5666,4615,NULL,2360,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'194bc9fc-480b-4911-9dc2-d9ab3e496f4e'),
(5667,5656,NULL,2361,35,'craft\\elements\\Entry',1,0,'2026-03-20 19:57:20','2026-03-20 19:57:20',NULL,NULL,NULL,'1ba11ae4-d7f1-4691-8c25-08965ef7b743'),
(5680,4702,NULL,2362,6,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:02',NULL,NULL,NULL,'b22f13a1-2680-4d04-9b93-f817f48e4afe'),
(5681,4717,NULL,2363,44,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:02',NULL,NULL,NULL,'58973e46-4691-4344-bf5c-9dc905e1263d'),
(5683,4719,NULL,2365,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:02',NULL,NULL,NULL,'49617d5f-71d7-47a7-b691-de898e0699b3'),
(5684,4720,NULL,2366,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:02',NULL,NULL,NULL,'d2cbe1ce-4918-41dd-a640-d35d29171304'),
(5686,4722,NULL,2368,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:02',NULL,NULL,NULL,'eaedbafb-4c6a-486a-829a-eee9f9d243c3'),
(5687,4723,NULL,2369,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:02',NULL,NULL,NULL,'0874f6e4-4e7c-44ae-a880-1d948d681e95'),
(5689,4780,NULL,2371,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:03',NULL,NULL,NULL,'8755f7a2-e21b-4206-9093-9558728875d2'),
(5690,4781,NULL,2372,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:03',NULL,NULL,NULL,'429e99a1-7be7-41c9-b4fd-76ce50ff4a0e'),
(5691,4782,NULL,2373,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:04:02','2026-03-20 20:04:03',NULL,NULL,NULL,'39dc5392-32e8-4ee6-a834-a187984c8935'),
(5708,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'e40dcea6-f172-44a8-bde0-13617d8869ac'),
(5709,4805,NULL,2374,6,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'4a40a5a7-42ed-4760-927c-7388bbdf8c33'),
(5710,4816,NULL,2375,44,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'127ed743-25d0-4832-bff7-7267f10c25cb'),
(5711,4817,NULL,2376,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'e93d9ae6-3258-42cf-a3c6-82f73a86c9e9'),
(5712,4818,NULL,2377,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'4f672865-ac78-49e1-bacd-1907fbd362a3'),
(5713,4819,NULL,2378,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'66d647ee-f027-4b29-9e57-78ee0cae5220'),
(5714,4820,NULL,2379,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'461415a4-9fcf-4f14-9a71-1c46a297bb66'),
(5715,4821,NULL,2380,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'b1fa0479-9a91-4021-a00a-572c79dbfdd8'),
(5716,4822,NULL,2381,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'395b3e0e-dc4d-482a-bc5b-176c9743c7a5'),
(5717,4823,NULL,2382,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'e49cca3a-1497-405e-8218-9fe39716c992'),
(5718,4824,NULL,2383,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'c16f5bfc-338f-43a6-b18b-c552e44b8a9d'),
(5719,4825,NULL,2384,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'156bf7c9-0141-4d61-ba03-f0c7a8b6ae4b'),
(5720,4826,NULL,2385,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'adfa6525-79cc-4d8e-9e7e-e40f327976db'),
(5721,5708,NULL,2386,35,'craft\\elements\\Entry',1,0,'2026-03-20 20:12:09','2026-03-20 20:12:09',NULL,NULL,NULL,'55d24ebd-114d-4721-ad29-ef0a324feb4e'),
(5722,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:17:19','2026-04-20 19:17:34',NULL,NULL,NULL,'35abf7bd-703d-4ac8-8160-1c063e42fe56'),
(5723,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:17:19','2026-04-20 19:17:00',NULL,NULL,NULL,'4016a317-d248-4bf3-97c7-cf92fdd8c851'),
(5724,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:17:19','2026-04-20 19:28:02',NULL,NULL,NULL,'39dc0920-f1ce-4d7f-a2c2-e534cc13af53'),
(5725,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:17:19','2026-04-20 19:17:18',NULL,NULL,NULL,'7cbb1c50-c223-4753-9f2f-4fa90bd55b68'),
(5726,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:17:19','2026-04-20 19:16:43',NULL,NULL,NULL,'a2b9604f-3b7a-4896-831c-3abed42f1571'),
(5727,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:17:19','2026-04-20 19:18:06',NULL,NULL,NULL,'8ae85d5b-f99e-46f4-ae16-3273f31e3ec8'),
(5728,5263,2003,NULL,9,'craft\\elements\\Entry',1,0,'2026-03-20 20:19:34','2026-03-20 20:21:10',NULL,'2026-04-20 20:13:57',NULL,'b5b15871-15da-4c7d-818e-a97901135160'),
(5732,912,NULL,2387,7,'craft\\elements\\Entry',1,0,'2026-03-20 20:22:43','2026-03-20 20:22:43',NULL,NULL,NULL,'856dd80b-295c-4e08-a407-3cb5e613a582'),
(5733,1407,NULL,2388,33,'craft\\elements\\Entry',1,0,'2026-03-20 20:22:43','2026-03-20 20:22:43',NULL,NULL,NULL,'7206dd9a-5b92-4939-8a75-eccce5ec9b99'),
(5734,912,NULL,2389,7,'craft\\elements\\Entry',1,0,'2026-03-20 20:22:45','2026-03-20 20:22:45',NULL,NULL,NULL,'7b3a72d0-643b-4e46-b0dd-7e11c30a27c6'),
(5741,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-20 20:26:38','2026-03-25 17:25:16',NULL,'2026-03-25 17:25:16',NULL,'b5bef906-9ba0-4213-98d2-e61c032e5331'),
(5743,NULL,2010,NULL,50,'craft\\elements\\Entry',1,0,'2026-03-23 12:33:22','2026-03-23 12:33:22',NULL,NULL,NULL,'29e6fdc2-7cfd-4155-b169-095078e09db1'),
(5746,NULL,NULL,NULL,50,'craft\\elements\\Entry',1,0,'2026-03-23 16:54:29','2026-03-25 11:41:07',NULL,'2026-03-25 11:41:07',NULL,'56e4eb57-e7d2-4685-984f-c50202a26ae3'),
(5747,4203,NULL,2394,6,'craft\\elements\\Entry',1,0,'2026-03-23 16:54:29','2026-03-23 16:54:29',NULL,NULL,NULL,'a8b62c24-5b0c-440c-8190-bc73c7fbb571'),
(5748,5746,NULL,2395,50,'craft\\elements\\Entry',1,0,'2026-03-23 16:54:29','2026-03-23 16:54:29',NULL,'2026-03-25 11:41:07',NULL,'20a63625-a5cd-4516-8219-ec0cd5442892'),
(5750,5405,NULL,2396,48,'craft\\elements\\Entry',1,0,'2026-03-23 16:57:55','2026-03-23 16:57:55',NULL,NULL,NULL,'0721f5c7-76fa-4f5b-bf5a-805d1884e520'),
(5752,5391,NULL,2397,48,'craft\\elements\\Entry',1,0,'2026-03-23 16:58:03','2026-03-23 16:58:03',NULL,NULL,NULL,'1cdd9eff-447e-4df3-8e96-9dedbd968325'),
(5754,5391,NULL,2398,48,'craft\\elements\\Entry',1,0,'2026-03-23 17:01:38','2026-03-23 17:01:38',NULL,NULL,NULL,'348e9258-53a1-43d1-ab43-43cd9b4e21ab'),
(5756,5405,NULL,2399,48,'craft\\elements\\Entry',1,0,'2026-03-23 17:02:10','2026-03-23 17:02:10',NULL,NULL,NULL,'00d0a518-1964-4c2f-a173-648cbe0d40ae'),
(5760,1098,NULL,2400,45,'craft\\elements\\Entry',1,0,'2026-03-24 15:26:21','2026-03-24 15:26:21',NULL,'2026-03-27 13:24:52',NULL,'7240379b-0520-4f60-8097-de18908384d1'),
(5762,1098,NULL,2401,45,'craft\\elements\\Entry',1,0,'2026-03-24 15:27:00','2026-03-24 15:27:00',NULL,'2026-03-27 13:24:52',NULL,'cfc6ea78-d7d6-4819-9627-54c2a985306c'),
(5763,NULL,2021,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-25 11:33:47','2026-03-25 12:56:54',NULL,'2026-03-25 12:56:54',NULL,'9f948fc3-f74b-4bf6-ada8-c5fc8bc5bfa8'),
(5765,4203,NULL,2402,6,'craft\\elements\\Entry',1,0,'2026-03-25 11:41:07','2026-03-25 11:41:07',NULL,NULL,NULL,'c386d465-290d-4c13-86a4-3ae687464c64'),
(5766,NULL,2023,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-25 11:54:30','2026-03-25 12:56:54',NULL,'2026-03-25 12:56:54',NULL,'46ae986d-9809-4690-9152-95982c8e850e'),
(5767,NULL,2024,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-25 11:56:03','2026-03-25 12:50:30',NULL,'2026-03-25 12:50:30',NULL,'8fc1382a-7534-40c0-9dcb-dc693519fb01'),
(5768,NULL,2025,NULL,48,'craft\\elements\\Entry',1,0,'2026-03-25 11:57:35','2026-03-25 11:57:35',NULL,NULL,NULL,'ab7fc252-5f21-46a5-9d64-5e396cd8acc3'),
(5769,NULL,2026,NULL,18,'craft\\elements\\Entry',1,0,'2026-03-25 11:57:45','2026-03-25 11:57:45',NULL,NULL,NULL,'4242cbf2-eb56-430f-9dfa-4b2fff3cbd88'),
(5770,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-25 11:57:56','2026-03-25 17:51:36',NULL,'2026-03-25 17:51:36',NULL,'cc795ace-0aa5-4503-b0b6-75109f464ab6'),
(5771,5770,NULL,2403,51,'craft\\elements\\Entry',1,0,'2026-03-25 11:58:34','2026-03-25 11:58:34',NULL,'2026-03-25 17:51:36',NULL,'e7022fa8-c8cf-4ab4-bd91-1fadaffbb36e'),
(5772,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-25 11:58:44','2026-03-25 17:51:36',NULL,'2026-03-25 17:51:36',NULL,'edab9347-62dc-4ce1-a184-3cd23ccf4f12'),
(5773,5772,NULL,2404,51,'craft\\elements\\Entry',1,0,'2026-03-25 11:59:10','2026-03-25 11:59:10',NULL,'2026-03-25 17:51:36',NULL,'0ce4ce03-72fc-4de4-beb6-1ac1d0466f59'),
(5776,4702,NULL,2405,6,'craft\\elements\\Entry',1,0,'2026-03-25 17:07:07','2026-03-25 17:07:07',NULL,NULL,NULL,'da229b75-2247-4011-b99b-a8658f7a847a'),
(5777,4715,NULL,2406,43,'craft\\elements\\Entry',1,0,'2026-03-25 17:07:07','2026-03-25 17:07:07',NULL,NULL,NULL,'94a9cbb5-8702-412a-883c-74bcb6cddb03'),
(5778,4593,NULL,2407,6,'craft\\elements\\Entry',1,0,'2026-03-25 17:09:02','2026-03-25 17:09:02',NULL,NULL,NULL,'ab1d9f3d-ffd9-4ab6-9111-2f0925f23180'),
(5779,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:38:15','2026-03-25 17:51:36',NULL,'2026-03-25 17:51:36',NULL,'892a0e4a-0961-485a-b97f-a0ea271cfdb0'),
(5780,5779,NULL,2408,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:38:44','2026-03-25 17:38:44',NULL,'2026-03-25 17:51:36',NULL,'87157d92-3ece-4acd-89e2-a8de0eade685'),
(5781,1132,NULL,2409,45,'craft\\elements\\Entry',1,0,'2026-03-25 17:42:59','2026-03-25 17:42:59',NULL,NULL,NULL,'ca2cb33c-5faf-4792-aae0-907ec90ed171'),
(5782,5772,NULL,2410,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:43:01','2026-03-25 17:43:01',NULL,'2026-03-25 17:51:36',NULL,'3cc165a2-8d68-4537-95c6-a02320aac9ec'),
(5784,1098,NULL,2411,45,'craft\\elements\\Entry',1,0,'2026-03-25 17:43:34','2026-03-25 17:43:34',NULL,'2026-03-27 13:24:52',NULL,'879ba9ec-0ae7-469e-8756-1da9c33e374a'),
(5785,5772,NULL,2412,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:43:36','2026-03-25 17:43:36',NULL,'2026-03-25 17:51:36',NULL,'83fa61ae-b09f-48f2-b5df-b8984b679918'),
(5787,5779,NULL,2413,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:44:06','2026-03-25 17:44:06',NULL,'2026-03-25 17:51:36',NULL,'6fa2d5ea-4953-4e8b-ab5d-d286927a8df9'),
(5788,1098,2034,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-25 17:45:23','2026-03-25 17:45:23',NULL,'2026-03-27 13:24:52',NULL,'770328e7-aa33-42b7-a88b-24530d4316e1'),
(5790,5779,NULL,2414,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:46:41','2026-03-25 17:46:42',NULL,'2026-03-25 17:51:36',NULL,'8a66452d-0c90-4838-bf87-9b068fb14415'),
(5792,1118,NULL,2415,45,'craft\\elements\\Entry',1,0,'2026-03-25 17:48:36','2026-03-25 17:48:36',NULL,'2026-03-27 13:24:52',NULL,'c01ebeb1-d1f5-4f4b-ad4a-10212895fd96'),
(5793,5779,NULL,2416,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:48:38','2026-03-25 17:48:38',NULL,'2026-03-25 17:51:36',NULL,'57b9d963-ddd1-4896-a31b-151b166129ca'),
(5794,NULL,2037,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:53:24','2026-03-27 13:24:52',NULL,'2026-03-27 13:24:52',NULL,'33390388-aadf-4edf-b925-b6936231956e'),
(5795,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:54:16','2026-03-31 09:25:43',NULL,NULL,NULL,'56620d79-811e-4667-a7d5-cc0f7a144300'),
(5796,5795,NULL,2417,51,'craft\\elements\\Entry',1,0,'2026-03-25 17:54:46','2026-03-25 17:54:46',NULL,NULL,NULL,'2a859c5b-cdfe-4729-a689-c54d4293a1d3'),
(5819,302,NULL,2428,3,'craft\\elements\\Entry',1,0,'2026-03-26 08:31:58','2026-04-16 14:52:41',NULL,NULL,NULL,'c7824afd-e89b-42d7-8e1f-813c8ae9d4cc'),
(5823,761,NULL,2430,32,'craft\\elements\\Entry',1,0,'2026-03-26 08:32:42','2026-04-17 12:19:35',NULL,NULL,NULL,'79443b32-4cd3-41c3-930f-6fa8d64f08f0'),
(5843,867,NULL,2440,34,'craft\\elements\\Entry',1,0,'2026-03-26 08:36:40','2026-04-17 12:19:35',NULL,NULL,NULL,'74be3b00-bd9d-4379-9784-46a0df5b3efb'),
(5846,887,NULL,2441,7,'craft\\elements\\Entry',1,0,'2026-03-26 08:36:59','2026-03-26 08:36:59',NULL,NULL,NULL,'b9986c97-6cc9-40d8-8802-01f310278e1f'),
(5847,903,NULL,2442,34,'craft\\elements\\Entry',1,0,'2026-03-26 08:36:59','2026-03-26 08:36:59',NULL,'2026-04-16 12:11:07',NULL,'df94b066-0b66-4c77-a2d9-ebf9a1d025b1'),
(5850,4593,NULL,2443,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:27','2026-03-26 08:39:27',NULL,NULL,NULL,'c22759d5-06fa-4538-8d50-826b2b00523c'),
(5851,4620,NULL,2444,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:27','2026-03-26 08:39:27',NULL,NULL,NULL,'1c946ac0-2310-4a4c-b435-289b349ecc96'),
(5854,4702,NULL,2445,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:36','2026-03-26 08:39:36',NULL,NULL,NULL,'37c72fd6-7e04-4cc7-83ba-73a2a2225528'),
(5855,4725,NULL,2446,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:36','2026-03-26 08:39:36',NULL,NULL,NULL,'e32c0bed-978c-42d7-b220-a8f8d90b4822'),
(5858,4805,NULL,2447,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:47','2026-03-26 08:39:47',NULL,NULL,NULL,'070d50d6-a04e-4a38-b34c-eab275894275'),
(5859,4827,NULL,2448,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:47','2026-03-26 08:39:47',NULL,NULL,NULL,'ebc692d6-23ce-45fe-af46-16218fcc138c'),
(5862,4303,NULL,2449,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:57','2026-03-26 08:39:57',NULL,NULL,NULL,'271c3b60-7069-4de0-a294-a2f4f51a287b'),
(5863,4328,NULL,2450,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:39:57','2026-03-26 08:39:57',NULL,NULL,NULL,'83d669dd-d1d1-4201-b0af-fb91b0617e76'),
(5866,4303,NULL,2451,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:07','2026-03-26 08:40:08',NULL,NULL,NULL,'2c2c890e-54d1-4244-9a92-7910951bcc02'),
(5867,4328,NULL,2452,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:07','2026-03-26 08:40:08',NULL,NULL,NULL,'d4034147-7a6e-4bf4-a4d7-f67fc7b5c0e4'),
(5870,4418,NULL,2453,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:16','2026-03-26 08:40:16',NULL,NULL,NULL,'95755587-bab5-49dd-b4ba-6e54c7e672c6'),
(5871,4445,NULL,2454,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:16','2026-03-26 08:40:16',NULL,NULL,NULL,'c3c30ddb-818c-4b74-818d-2cb4e1e0de68'),
(5874,4502,NULL,2455,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:25','2026-03-26 08:40:25',NULL,NULL,NULL,'864da8a9-6cf5-46ac-a07b-66c1836be845'),
(5875,4529,NULL,2456,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:25','2026-03-26 08:40:26',NULL,NULL,NULL,'dfc9ca82-bdab-402c-870a-eac76b15bc85'),
(5878,4896,NULL,2457,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:34','2026-03-26 08:40:34',NULL,NULL,NULL,'d1861fc4-d28c-447d-9881-011fe521483e'),
(5879,4923,NULL,2458,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:34','2026-03-26 08:40:34',NULL,NULL,NULL,'54036995-bf15-47ff-bff4-bd313fc246d3'),
(5881,3793,NULL,2459,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:46','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'a10f21f3-6d24-45ca-b95d-1bf46858d792'),
(5882,3794,NULL,2460,39,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'4ce01085-69d3-4e7c-beb5-85f58cc9153d'),
(5883,3795,NULL,2461,36,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'8bfdb8ba-436d-45d2-9208-e8c469214579'),
(5884,3796,NULL,2462,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'c05255dc-5dd5-4e75-af76-9765f10aa574'),
(5885,3797,NULL,2463,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'87c57ff6-ac9d-48b1-8421-fe19f67a340f'),
(5886,3798,NULL,2464,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'1c86132c-0327-42fe-a206-36226a7d68e4'),
(5887,3799,NULL,2465,37,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'22cdfcf8-aad4-40de-a389-bc09d3571a70'),
(5888,3800,NULL,2466,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'8456dd16-d9e1-4008-af3e-f58514573d6b'),
(5889,3801,NULL,2467,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'ef92161c-1129-43f0-83e4-b4b4b2b1207f'),
(5890,3802,NULL,2468,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'13affed0-1037-4781-a4cf-88840f596c94'),
(5891,3803,NULL,2469,38,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'e36a3afa-4d23-4b76-aa11-5e6f00cee1bb'),
(5892,3804,NULL,2470,41,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'d6cec82d-f6fd-444b-ab3d-b1c5d2ef915e'),
(5893,3805,NULL,2471,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'316fc3c1-11e4-408b-86c8-864bfc4fbc71'),
(5894,3806,NULL,2472,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'efe4bc9b-81f9-4d48-be5b-83101509f8e6'),
(5895,3807,NULL,2473,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'efc04d32-baaa-4b5e-b028-e34c6d53a4f0'),
(5896,3808,NULL,2474,40,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'5d0ad72f-aa7c-414e-9fcd-52be018a403f'),
(5897,3809,NULL,2475,42,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'bdd790d4-927d-486b-94c1-168f157cc176'),
(5898,3810,NULL,2476,43,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'d70d9c77-25ad-4b4f-ac8a-4e36e9c3db79'),
(5899,3811,NULL,2477,8,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'ac4ab2bd-14ef-4cb3-8797-e862615c8102'),
(5900,3812,NULL,2478,44,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'f347c3b5-2d1e-4daa-b728-32c7ed488be0'),
(5901,3813,NULL,2479,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'1b84d970-d839-4688-a624-99ea73cf69a3'),
(5902,3814,NULL,2480,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'745cb67f-62f3-4c9b-a061-5e666c2a2d65'),
(5903,3815,NULL,2481,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'e4e52914-39d2-4ddb-8ae9-403eeb2de1d5'),
(5904,3816,NULL,2482,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'085e1666-54a3-4a60-bea9-f1e3166350a8'),
(5905,3817,NULL,2483,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'49626651-8e64-41db-bf62-0755b9bd5592'),
(5906,3818,NULL,2484,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'94aeb109-e166-45ac-a697-6ddc0956acfb'),
(5907,3819,NULL,2485,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'5c2f4713-13e2-4640-9199-a13d98109592'),
(5908,3820,NULL,2486,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'49594edd-1706-4a76-ae97-b4fe5dc87e51'),
(5909,3821,NULL,2487,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'893bb602-38eb-4b5b-8445-cf8349f40cff'),
(5910,3822,NULL,2488,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'c2cd62df-0ff5-4d29-934a-39c347660d8f'),
(5911,3823,NULL,2489,35,'craft\\elements\\Entry',1,0,'2026-03-13 13:40:59','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'477ca80c-4a88-46c8-b70d-604ea12c0605'),
(5912,3824,NULL,2490,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:42','2026-03-26 08:40:46',NULL,'2026-04-15 17:33:07',NULL,'f5b5859d-6bbc-49bb-8088-401f1cf80b39'),
(5915,1951,NULL,2491,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:56','2026-03-26 08:40:56',NULL,NULL,NULL,'781a92f0-3884-4cef-9f53-27cfff3b4751'),
(5916,1977,NULL,2492,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:40:56','2026-03-26 08:40:56',NULL,NULL,NULL,'8d90b85b-cbec-4e09-a03f-2fab46b406c9'),
(5919,4203,NULL,2493,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:04','2026-03-26 08:41:04',NULL,NULL,NULL,'00b6f2be-4470-42cd-a308-35703ff78e2a'),
(5920,4230,NULL,2494,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:04','2026-03-26 08:41:04',NULL,NULL,NULL,'0bf6befe-a347-42ab-97e0-0a55539af5ca'),
(5923,4026,NULL,2495,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:22','2026-03-26 08:41:22',NULL,NULL,NULL,'f3989d49-64b0-4db4-8244-13ec425009fc'),
(5924,4053,NULL,2496,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:22','2026-03-26 08:41:22',NULL,NULL,NULL,'fa7305ad-9d0f-484e-828b-89a891ba3211'),
(5927,5108,NULL,2497,47,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:34','2026-03-26 08:41:34',NULL,NULL,NULL,'e20c7ba6-29fd-40ab-9caf-3924b25456be'),
(5928,5122,NULL,2498,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:34','2026-03-26 08:41:34',NULL,NULL,NULL,'c08b6074-61ce-4cb6-abdb-d751894562b8'),
(5931,3086,NULL,2499,47,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:42','2026-03-26 08:41:42',NULL,NULL,NULL,'6daeb820-582f-4614-a2d7-0a17424285e7'),
(5932,3102,NULL,2500,49,'craft\\elements\\Entry',1,0,'2026-03-26 08:41:42','2026-03-26 08:41:42',NULL,NULL,NULL,'f43a1120-9507-4ff0-96be-058f019219bc'),
(5935,4702,NULL,2501,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:43:19','2026-03-26 08:43:19',NULL,NULL,NULL,'e95222fb-bb09-4035-b2d9-e6438e34ed7e'),
(5936,4716,NULL,2502,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:43:19','2026-03-26 08:43:19',NULL,NULL,NULL,'612a8f09-fa7b-4084-a3a0-6f9e6059e25e'),
(5939,4805,NULL,2503,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:43:54','2026-03-26 08:43:54',NULL,NULL,NULL,'cb478f72-e9de-45ed-91e1-fadba7a50100'),
(5940,4815,NULL,2504,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:43:54','2026-03-26 08:43:54',NULL,NULL,NULL,'d2bd908a-2ba1-47b3-a12c-b6e603462994'),
(5943,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:44:22','2026-03-26 08:52:55',NULL,NULL,NULL,'e0950639-c0a6-4363-9d52-d76c82916738'),
(5944,4896,NULL,2505,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:44:22','2026-03-26 08:44:23',NULL,NULL,NULL,'4bc8328f-54c5-406e-9228-756b28b6ffdf'),
(5945,5943,NULL,2506,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:44:22','2026-03-26 08:44:23',NULL,NULL,NULL,'6a53d2e4-5315-4ee9-babc-a024fee8b619'),
(5946,4702,NULL,2507,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:44:28','2026-03-26 08:44:28',NULL,NULL,NULL,'527b241f-50c4-4cb2-a967-1603c89d91fa'),
(5949,4418,NULL,2508,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:45:01','2026-03-26 08:45:01',NULL,NULL,NULL,'48846023-5dda-4552-b7d5-53be33336236'),
(5950,4432,NULL,2509,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:45:01','2026-03-26 08:45:01',NULL,NULL,NULL,'b3c6ac1d-4492-49a4-be5f-d02635ae10b3'),
(5953,4593,NULL,2510,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:45:27','2026-03-26 08:45:27',NULL,NULL,NULL,'03a34345-e2b3-4995-8721-3f45be957db9'),
(5954,4607,NULL,2511,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:45:27','2026-03-26 08:45:27',NULL,NULL,NULL,'0901c84a-918c-4f74-adcb-a58c90dfb6d2'),
(5957,1951,NULL,2512,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:46:03','2026-03-26 08:46:03',NULL,NULL,NULL,'059a881a-545e-48bd-88ff-73216c4a74c6'),
(5958,1965,NULL,2513,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:46:03','2026-03-26 08:46:03',NULL,NULL,NULL,'6f0510b6-be83-4bcd-b8bb-c667c993ca0c'),
(5961,4203,NULL,2514,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:46:27','2026-03-26 08:46:27',NULL,NULL,NULL,'ec022e4f-8aa5-4442-aef3-72965265fad4'),
(5962,4217,NULL,2515,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:46:27','2026-03-26 08:46:27',NULL,NULL,NULL,'00dab163-0180-47bc-bdce-b660b0cc7923'),
(5965,4303,NULL,2516,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:46:49','2026-03-26 08:46:49',NULL,NULL,NULL,'740b260d-150e-4929-9b2b-4de2443a5f3d'),
(5966,4317,NULL,2517,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:46:49','2026-03-26 08:46:49',NULL,NULL,NULL,'2656d7f2-40c7-42b4-bae7-5bc9f2e55f64'),
(5969,4026,NULL,2518,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:47:54','2026-03-26 08:47:54',NULL,NULL,NULL,'0430860a-01a5-4ade-8587-ff30738a1a9a'),
(5970,4040,NULL,2519,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:47:54','2026-03-26 08:47:54',NULL,NULL,NULL,'8f20e8b6-3a3a-4c11-a514-095f762e6a08'),
(5973,4502,NULL,2520,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:49:51','2026-03-26 08:49:51',NULL,NULL,NULL,'2e1ae061-a860-4b5d-8149-3f4dd8654eab'),
(5974,4516,NULL,2521,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:49:51','2026-03-26 08:49:51',NULL,NULL,NULL,'646cdbf7-d183-460e-a47a-350087083361'),
(5977,4026,NULL,2522,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:50:21','2026-03-26 08:50:21',NULL,NULL,NULL,'d5faac60-4a76-4f4e-874b-ca178287759d'),
(5978,4040,NULL,2523,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:50:21','2026-03-26 08:50:21',NULL,NULL,NULL,'fb48a8be-f6d4-4855-9eec-968089174569'),
(5981,4026,NULL,2524,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:05','2026-03-26 08:51:05',NULL,NULL,NULL,'9c4d9e5e-4a18-46d0-967c-37d513d002e6'),
(5982,4040,NULL,2525,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:05','2026-03-26 08:51:05',NULL,NULL,NULL,'b764b7a4-421a-4f5c-919f-e3478f77cbff'),
(5985,4026,NULL,2526,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:18','2026-03-26 08:51:18',NULL,NULL,NULL,'f89af922-272d-4033-b30a-9eb2ecae2878'),
(5986,4040,NULL,2527,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:18','2026-03-26 08:51:18',NULL,NULL,NULL,'52b40472-bcf1-4775-bab4-8a0d83d61375'),
(5989,4303,NULL,2528,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:41','2026-03-26 08:51:41',NULL,NULL,NULL,'5e20a4bd-823c-44a6-93af-d85990bfbaaa'),
(5990,4317,NULL,2529,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:41','2026-03-26 08:51:41',NULL,NULL,NULL,'bbbb42e0-042c-4b07-b703-dc88a575eff6'),
(5993,4805,NULL,2530,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:52','2026-03-26 08:51:52',NULL,NULL,NULL,'6e36e577-7adf-4f8e-905a-e1cf216a6890'),
(5994,4815,NULL,2531,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:51:52','2026-03-26 08:51:52',NULL,NULL,NULL,'43515919-ea1e-42e0-95da-7e7b5988a97f'),
(5997,4702,NULL,2532,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:03','2026-03-26 08:52:03',NULL,NULL,NULL,'df30f8b5-b19e-40f1-bb9f-46a712d80e3b'),
(5998,4716,NULL,2533,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:03','2026-03-26 08:52:03',NULL,NULL,NULL,'793211db-225a-4086-909c-5b241074581b'),
(6001,4203,NULL,2534,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:14','2026-03-26 08:52:14',NULL,NULL,NULL,'49e24c5e-b714-4997-8784-4734481a60b3'),
(6002,4217,NULL,2535,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:14','2026-03-26 08:52:14',NULL,NULL,NULL,'1077d19e-01c4-4fb1-8024-8622756a1da8'),
(6005,4418,NULL,2536,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:24','2026-03-26 08:52:24',NULL,NULL,NULL,'90d97cdc-1508-49a4-af3b-6e1a5dbc7e40'),
(6006,4432,NULL,2537,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:24','2026-03-26 08:52:24',NULL,NULL,NULL,'d54c79a6-857e-4468-a53f-3316f47b2c29'),
(6009,4593,NULL,2538,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:34','2026-03-26 08:52:34',NULL,NULL,NULL,'0331f15b-7580-4d1c-a20c-a523c758db8b'),
(6010,4607,NULL,2539,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:34','2026-03-26 08:52:34',NULL,NULL,NULL,'817a92c4-1e0c-4d01-a568-d1a681340889'),
(6013,4502,NULL,2540,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:45','2026-03-26 08:52:45',NULL,NULL,NULL,'b94396c5-bc4d-4b85-95de-5253d91f7c42'),
(6014,4516,NULL,2541,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:45','2026-03-26 08:52:45',NULL,NULL,NULL,'b7c91c8c-3267-4e8a-9a40-99f882d9ca20'),
(6017,4896,NULL,2542,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:55','2026-03-26 08:52:56',NULL,NULL,NULL,'859854d4-1644-41c4-8dc9-47f09bde847a'),
(6018,5943,NULL,2543,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:52:55','2026-03-26 08:52:56',NULL,NULL,NULL,'aecb8dc3-d585-4b6c-a525-e40882887071'),
(6021,1951,NULL,2544,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:53:08','2026-03-26 08:53:08',NULL,NULL,NULL,'99d54714-3ede-4e62-b23f-85acf0d9e6cc'),
(6022,1965,NULL,2545,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:53:08','2026-03-26 08:53:08',NULL,NULL,NULL,'b61c24d6-6778-4598-ae38-9e3e26179265'),
(6025,3793,NULL,2546,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:53:37','2026-03-26 08:53:37',NULL,'2026-04-15 17:33:07',NULL,'1a46c0c1-5ca9-4573-a61a-1ffe9f60e5c5'),
(6026,3811,NULL,2547,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:53:37','2026-03-26 08:53:37',NULL,'2026-04-15 17:33:07',NULL,'1449aa13-671a-4cc0-bcbc-5a5071b4943c'),
(6030,750,NULL,2549,8,'craft\\elements\\Entry',1,0,'2026-03-26 08:54:11','2026-04-17 12:19:35',NULL,NULL,NULL,'f2d2caae-4e4c-4bf2-ad97-314c6b4e70e1'),
(6031,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-26 08:56:03','2026-03-26 08:56:03',NULL,NULL,NULL,'0abc7946-792a-4084-9ad7-a80ed48bf1b1'),
(6034,4026,NULL,2550,6,'craft\\elements\\Entry',1,0,'2026-03-26 08:58:14','2026-03-26 08:58:14',NULL,NULL,NULL,'ae9157d8-fafa-473d-b4c2-b5b8afaa0b55'),
(6035,4041,NULL,2551,44,'craft\\elements\\Entry',1,0,'2026-03-26 08:58:14','2026-03-26 08:58:14',NULL,NULL,NULL,'46f5a30f-c5ac-493d-b531-be5a9acc3c24'),
(6043,774,NULL,2555,9,'craft\\elements\\Entry',1,0,'2026-03-26 09:58:08','2026-04-17 12:19:35',NULL,NULL,NULL,'440d177c-cc7c-45d7-8cf1-5b2bf72ac045'),
(6048,274,NULL,2557,16,'craft\\elements\\Entry',1,0,'2026-03-26 09:59:19','2026-04-17 12:19:35',NULL,NULL,NULL,'8c4c2ed5-8fa9-41e4-a3fd-1652f1685210'),
(6053,843,NULL,2560,33,'craft\\elements\\Entry',1,0,'2026-03-26 10:00:29','2026-04-17 12:19:35',NULL,NULL,NULL,'c56d4e34-b18d-426a-bb26-e33781f78eb5'),
(6056,912,NULL,2561,7,'craft\\elements\\Entry',1,0,'2026-03-26 10:00:59','2026-03-26 10:00:59',NULL,NULL,NULL,'6a8f9d34-d985-4c0f-b6bf-fea4048c9774'),
(6057,1407,NULL,2562,33,'craft\\elements\\Entry',1,0,'2026-03-26 10:00:59','2026-03-26 10:00:59',NULL,NULL,NULL,'f9692a0b-82f3-473f-8e3d-06be565ac898'),
(6060,38,NULL,2563,7,'craft\\elements\\Entry',1,0,'2026-03-26 10:01:24','2026-03-26 10:01:24',NULL,NULL,NULL,'02ab0055-ae24-4309-98aa-a1fb605d9fa6'),
(6061,255,NULL,2564,15,'craft\\elements\\Entry',1,0,'2026-03-26 10:01:24','2026-03-26 10:01:24',NULL,NULL,NULL,'e09d492b-c9b2-4273-a357-f896cea63567'),
(6063,4303,NULL,2565,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:22:10','2026-03-26 10:22:10',NULL,NULL,NULL,'89bdff05-ac1e-4015-80a3-be2e8e7a9a90'),
(6065,4303,NULL,2566,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:23:33','2026-03-26 10:23:33',NULL,NULL,NULL,'52b8f33e-bfba-495b-ab29-7a0db11b9096'),
(6067,4303,NULL,2567,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:23:52','2026-03-26 10:23:52',NULL,NULL,NULL,'b624e359-e7d4-4ff3-a893-8a1cea5f1317'),
(6069,4702,NULL,2568,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:24:07','2026-03-26 10:24:07',NULL,NULL,NULL,'85d209da-7ff9-4429-9cf2-0a807962b576'),
(6071,4418,NULL,2569,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:24:32','2026-03-26 10:24:32',NULL,NULL,NULL,'7220009b-d831-45a8-a955-9c7458563d8c'),
(6073,4026,NULL,2570,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:24:56','2026-03-26 10:24:56',NULL,NULL,NULL,'da2fcd6a-8e0f-4cef-8e33-1de02dacf3f6'),
(6075,4502,NULL,2571,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:25:19','2026-03-26 10:25:19',NULL,NULL,NULL,'889baaf8-46bb-4fe3-8f19-627273c28447'),
(6077,4593,NULL,2572,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:25:39','2026-03-26 10:25:39',NULL,NULL,NULL,'67a0421d-4e47-4ba6-a595-5a4923ef1121'),
(6078,1951,NULL,2573,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:26:08','2026-03-26 10:26:08',NULL,NULL,NULL,'ac2239f9-d5c8-43c9-a4ba-7e838fd2dc73'),
(6080,4203,NULL,2574,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:26:23','2026-03-26 10:26:23',NULL,NULL,NULL,'9067e1e3-943a-46fd-86a2-4ff297124cd7'),
(6081,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2026-03-26 10:31:52','2026-04-20 19:15:28',NULL,NULL,NULL,'59aeea82-ed1e-4531-b1a9-3ef8ff4cb307'),
(6082,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2026-03-26 10:31:52','2026-04-20 19:16:21',NULL,NULL,NULL,'909888c8-d338-4e6e-bf57-d63205d779c2'),
(6083,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2026-03-26 10:31:52','2026-04-20 19:17:18',NULL,NULL,NULL,'a5618f5b-8ced-4c5a-915c-1a2dc5f4a1e7'),
(6084,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2026-03-26 10:31:52','2026-04-20 19:17:00',NULL,NULL,NULL,'fba9c6bb-7808-4171-b6bd-b91fe0fceaf7'),
(6089,38,NULL,2575,7,'craft\\elements\\Entry',1,0,'2026-03-26 10:35:57','2026-03-26 10:35:57',NULL,NULL,NULL,'a326007f-4f04-4fcb-9791-d2b7a070e5eb'),
(6090,274,NULL,2576,16,'craft\\elements\\Entry',1,0,'2026-03-26 10:35:57','2026-03-26 10:35:57',NULL,NULL,NULL,'febd120f-70a0-4035-b8c6-7bf4a93d8f6f'),
(6095,38,NULL,2578,7,'craft\\elements\\Entry',1,0,'2026-03-26 10:36:18','2026-03-26 10:36:18',NULL,NULL,NULL,'b16586f1-4443-4e5b-b88f-b06dc1ad2b03'),
(6096,274,NULL,2579,16,'craft\\elements\\Entry',1,0,'2026-03-26 10:36:18','2026-03-26 10:36:18',NULL,NULL,NULL,'35f73423-2963-4569-9b7d-defc875758d5'),
(6099,326,NULL,2581,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:40:38','2026-03-26 10:40:38',NULL,NULL,NULL,'38bee91b-224c-466d-b383-9906f1893e5b'),
(6101,319,NULL,2582,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:41:15','2026-03-26 10:41:15',NULL,NULL,NULL,'27a8806a-5844-4cf0-b518-2e64c044fbbf'),
(6103,324,NULL,2583,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:41:54','2026-03-26 10:41:54',NULL,NULL,NULL,'b40a51b8-6811-4ff1-a095-9bf13799aaec'),
(6105,322,NULL,2584,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:42:34','2026-03-26 10:42:34',NULL,NULL,NULL,'5cb93944-0ffd-44a1-8ee1-ede182779eab'),
(6107,326,NULL,2585,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:43:06','2026-03-26 10:43:06',NULL,NULL,NULL,'3121e9d3-aa80-4899-9dc5-fb3fa3534cfb'),
(6109,324,NULL,2586,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:44:18','2026-03-26 10:44:18',NULL,NULL,NULL,'f73bae9c-25e1-4fa8-a54e-59b91fd7b050'),
(6111,319,NULL,2587,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:45:00','2026-03-26 10:45:00',NULL,NULL,NULL,'6b8f1cae-4366-4dae-8c53-52f4bb6b8833'),
(6113,319,NULL,2588,18,'craft\\elements\\Entry',1,0,'2026-03-26 10:46:59','2026-03-26 10:46:59',NULL,NULL,NULL,'80089e7e-5437-4b0b-aa5e-b663494a76e1'),
(6115,4026,NULL,2589,6,'craft\\elements\\Entry',1,0,'2026-03-26 10:47:41','2026-03-26 10:47:41',NULL,NULL,NULL,'1ba3eb65-b6ba-4db9-9519-5aa8a68ccba7'),
(6120,38,NULL,2590,7,'craft\\elements\\Entry',1,0,'2026-03-27 11:41:20','2026-03-27 11:41:20',NULL,NULL,NULL,'d79d8acd-16a5-4a8a-885b-d5a4298be4da'),
(6121,604,NULL,2591,20,'craft\\elements\\Entry',1,0,'2026-03-27 11:41:20','2026-03-27 11:41:20',NULL,NULL,NULL,'c2b9c9d5-3e52-453c-8b3a-20a5f0d3b70d'),
(6122,654,NULL,2592,30,'craft\\elements\\Entry',1,0,'2026-03-27 11:41:20','2026-03-27 11:41:20',NULL,NULL,NULL,'0273ec15-3c71-4047-b8be-9aa834b4bf48'),
(6123,656,NULL,2593,22,'craft\\elements\\Entry',1,0,'2026-03-27 11:41:20','2026-03-27 11:41:20',NULL,NULL,NULL,'23869500-5042-4309-b80e-4f075fa7cce2'),
(6128,38,NULL,2594,7,'craft\\elements\\Entry',1,0,'2026-03-27 11:42:35','2026-03-27 11:42:35',NULL,NULL,NULL,'63763d6d-af6f-4ee0-a4d8-71c0b9f901d8'),
(6129,604,NULL,2595,20,'craft\\elements\\Entry',1,0,'2026-03-27 11:42:35','2026-03-27 11:42:35',NULL,NULL,NULL,'1da5e5ed-afd5-4f08-8a96-0a92d9ec8f9d'),
(6130,654,NULL,2596,30,'craft\\elements\\Entry',1,0,'2026-03-27 11:42:35','2026-03-27 11:42:35',NULL,NULL,NULL,'195ecc2f-d314-4448-a907-f8cf737b1d7c'),
(6131,656,NULL,2597,22,'craft\\elements\\Entry',1,0,'2026-03-27 11:42:35','2026-03-27 11:42:35',NULL,NULL,NULL,'c910c9c9-be97-4fec-9785-248c585e6127'),
(6134,38,NULL,2598,7,'craft\\elements\\Entry',1,0,'2026-03-27 11:44:14','2026-03-27 11:44:14',NULL,NULL,NULL,'5165573c-0f4e-4aed-bf63-6372dcea8acd'),
(6135,761,NULL,2599,32,'craft\\elements\\Entry',1,0,'2026-03-27 11:44:14','2026-03-27 11:44:14',NULL,NULL,NULL,'485b65b0-c96d-4bf7-8c6b-bfe96a750a78'),
(6138,38,NULL,2600,7,'craft\\elements\\Entry',1,0,'2026-03-27 11:44:36','2026-03-27 11:44:36',NULL,NULL,NULL,'45dd60f7-e58f-4fcd-a56e-0c8994d53b91'),
(6139,761,NULL,2601,32,'craft\\elements\\Entry',1,0,'2026-03-27 11:44:36','2026-03-27 11:44:36',NULL,NULL,NULL,'03252fd2-5214-4a52-904c-20ebe7bf4c63'),
(6143,38,NULL,2602,7,'craft\\elements\\Entry',1,0,'2026-03-27 11:52:22','2026-03-27 11:52:22',NULL,NULL,NULL,'85100ff8-2af0-4960-a23b-1c8f0a5c4183'),
(6144,274,NULL,2603,16,'craft\\elements\\Entry',1,0,'2026-03-27 11:52:22','2026-03-27 11:52:22',NULL,NULL,NULL,'aaf55364-0d62-47bd-abf1-7eee0578c7c1'),
(6149,1132,NULL,2605,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:23:57','2026-03-27 13:23:57',NULL,NULL,NULL,'1639d35c-9e3b-429d-824e-51b1c152787c'),
(6150,1133,NULL,2606,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:23:57','2026-03-27 13:23:57',NULL,NULL,NULL,'c783adb5-f63e-407f-b6ae-dafc010581a6'),
(6151,5795,NULL,2607,51,'craft\\elements\\Entry',1,0,'2026-03-27 13:24:03','2026-03-27 13:24:03',NULL,NULL,NULL,'5d44a768-6253-4942-b6f0-c9064371b8ac'),
(6153,1132,NULL,2608,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:24:23','2026-03-27 13:24:23',NULL,NULL,NULL,'8782cc20-03af-474d-8aa1-7235b8502480'),
(6155,5795,NULL,2609,51,'craft\\elements\\Entry',1,0,'2026-03-27 13:24:42','2026-03-27 13:24:42',NULL,NULL,NULL,'02eb1bf9-89c9-44be-885d-583bb1104ab8'),
(6156,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-27 13:25:02','2026-03-31 09:26:35',NULL,NULL,NULL,'c0730259-b694-44b9-a08e-d8ffc876e57c'),
(6157,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:25:20','2026-03-27 13:26:29',NULL,NULL,NULL,'fc7724e7-ec1d-466b-90b6-895565e3f36a'),
(6158,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:25:31','2026-03-27 13:25:45',NULL,NULL,NULL,'bbc938cf-7e36-4a1d-bd8d-3a42f9dece92'),
(6159,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:25:47','2026-03-27 13:26:00',NULL,NULL,NULL,'aaaf3bd2-35b8-472f-9918-0aa834e29143'),
(6160,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:26:02','2026-03-27 13:26:10',NULL,NULL,NULL,'bb9f7925-1127-4595-8f97-2aaa5a35a829'),
(6161,NULL,2203,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:26:12','2026-03-27 13:26:12',NULL,NULL,NULL,'b2041b37-d731-4ee0-80cd-7582ab598cde'),
(6162,6157,NULL,2610,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:26:29','2026-03-27 13:26:29',NULL,NULL,NULL,'a516526e-985b-4cc6-a5fa-466afa66ae9e'),
(6163,6158,NULL,2611,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:25:45','2026-03-27 13:26:29',NULL,NULL,NULL,'6785cbe1-0049-4145-9872-7774ed483e64'),
(6164,6159,NULL,2612,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:26:00','2026-03-27 13:26:29',NULL,NULL,NULL,'9328e320-b6c5-4bbe-aaaf-b489a6681adb'),
(6165,6160,NULL,2613,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:26:10','2026-03-27 13:26:29',NULL,NULL,NULL,'e9c33f47-d62e-416f-837c-6b73f6429931'),
(6166,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:26:47','2026-03-27 13:28:30',NULL,NULL,NULL,'9a2a84a5-3572-48b7-96c5-3c2d1c606329'),
(6167,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:27:23','2026-03-27 13:27:32',NULL,NULL,NULL,'1b7454fa-b11b-4e6c-bb15-44e3586b2af9'),
(6168,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:27:39','2026-03-27 13:27:46',NULL,NULL,NULL,'002dae8b-b14b-4cc5-b0f5-9c8137dbb375'),
(6169,NULL,2207,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:27:54','2026-03-27 13:28:05',NULL,'2026-03-27 13:28:05',NULL,'57a11674-e628-40b8-9099-91ba6e5d8f93'),
(6170,6166,NULL,2614,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:28:30','2026-03-27 13:28:30',NULL,NULL,NULL,'766f51a8-f97c-4cde-8561-b109283a61f7'),
(6171,6167,NULL,2615,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:27:32','2026-03-27 13:28:30',NULL,NULL,NULL,'83ba2320-aeee-475f-a860-7e8d7d1532b4'),
(6172,6168,NULL,2616,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:27:46','2026-03-27 13:28:30',NULL,NULL,NULL,'dd7a4976-a03f-42c8-9f00-b63e0c2ce302'),
(6173,6156,NULL,2617,51,'craft\\elements\\Entry',1,0,'2026-03-27 13:28:42','2026-03-27 13:28:42',NULL,NULL,NULL,'743209b6-f80f-4e3a-b014-fa6e493eb592'),
(6174,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:57:18','2026-03-27 13:57:32',NULL,NULL,NULL,'d0bb8f30-5e71-4fd7-871e-2fc467643fd6'),
(6175,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:57:23','2026-03-27 13:57:31',NULL,NULL,NULL,'364ec677-d017-4c97-9bbe-fc97a5f24cc3'),
(6176,6174,NULL,2618,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:57:32','2026-03-27 13:57:32',NULL,NULL,NULL,'67688c8e-b09e-495c-83f1-f4bded7b3291'),
(6177,6175,NULL,2619,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:57:31','2026-03-27 13:57:32',NULL,NULL,NULL,'c0cac0f3-9bf8-4635-93ee-f8fd8c35b8e4'),
(6179,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 13:57:43','2026-03-31 09:22:48',NULL,NULL,NULL,'337fe51c-7aa1-41db-a924-ed32e4069261'),
(6180,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:58:37','2026-03-31 09:22:48',NULL,'2026-03-31 09:22:48',NULL,'c1c2d7be-1b5b-42af-ac4e-c547642b29e8'),
(6181,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:59:02','2026-03-27 13:59:20',NULL,NULL,NULL,'b1c26b12-c12e-41f7-918e-551871d2778c'),
(6182,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:59:27','2026-03-27 14:16:53',NULL,NULL,NULL,'39f037f4-cf19-445e-9bcd-6d6df6c3375e'),
(6183,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:00:28','2026-03-27 14:00:38',NULL,NULL,NULL,'81176a38-6acd-498f-81dd-18cfb8ffb52c'),
(6184,6179,NULL,2620,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:00:40','2026-03-27 14:00:40',NULL,NULL,NULL,'35775c22-1c88-4cda-9850-a28cb85dbeb4'),
(6185,6180,NULL,2621,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:58:49','2026-03-27 14:00:40',NULL,'2026-03-31 09:22:48',NULL,'4a624632-ab65-4d1d-a52f-8b183e987fda'),
(6186,6181,NULL,2622,46,'craft\\elements\\Entry',1,0,'2026-03-27 13:59:20','2026-03-27 14:00:40',NULL,NULL,NULL,'438ae5b7-faf6-45e5-bfd0-76bd761e0428'),
(6187,6182,NULL,2623,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:00:00','2026-03-27 14:00:40',NULL,NULL,NULL,'84ba9cbc-347c-479b-9cbb-f565f8573545'),
(6188,6183,NULL,2624,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:00:38','2026-03-27 14:00:40',NULL,NULL,NULL,'8083f68f-da7a-4995-bdac-d5fd96031124'),
(6189,6156,NULL,2625,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:02:42','2026-03-27 14:02:42',NULL,NULL,NULL,'a1397563-d4cd-4f45-be46-011af26ed8e8'),
(6192,6179,NULL,2626,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:16:53','2026-03-27 14:16:53',NULL,NULL,NULL,'20993bc8-e411-4f23-9c6e-01613c744c6c'),
(6193,6182,NULL,2627,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:16:53','2026-03-27 14:16:53',NULL,NULL,NULL,'59c8cc14-1c0c-408b-8c3c-4b31f067362d'),
(6195,NULL,2219,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:18:05','2026-03-27 14:18:05',NULL,NULL,NULL,'5143d402-dd83-4c46-a1cc-14253ef22abf'),
(6196,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:18:41','2026-03-31 09:34:32',NULL,NULL,NULL,'03fbef23-187c-4408-83c0-d6b21a6f08c3'),
(6197,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:18:52','2026-03-31 09:34:32',NULL,NULL,NULL,'71e3f8f8-6c6e-4364-af23-1f5fcdb85ec3'),
(6198,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:19:19','2026-03-31 09:28:32',NULL,'2026-03-31 09:28:32',NULL,'fc151364-174a-431e-af61-9d8e007b01fd'),
(6199,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:19:32','2026-03-31 09:28:32',NULL,'2026-03-31 09:28:32',NULL,'1cab1594-bfdc-43a8-a393-774aef5a5336'),
(6200,6196,NULL,2628,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:19:56','2026-03-27 14:19:56',NULL,NULL,NULL,'699224f6-822f-430b-82ff-a6c9048ccfd5'),
(6201,6197,NULL,2629,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:19:09','2026-03-27 14:19:56',NULL,NULL,NULL,'60384645-58f1-484b-b3ab-5491582b0bf9'),
(6202,6198,NULL,2630,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:19:27','2026-03-27 14:19:56',NULL,'2026-03-31 09:28:32',NULL,'854ab9ee-daa3-43ac-b240-b5273869ffee'),
(6203,6199,NULL,2631,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:19:45','2026-03-27 14:19:56',NULL,'2026-03-31 09:28:32',NULL,'f27be8ec-b248-45cb-aab9-5a08b65c66a7'),
(6207,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:20:36','2026-03-31 09:25:13',NULL,NULL,NULL,'b2bc2bf4-8176-47e3-9f7f-870e29dc0f0d'),
(6208,6196,NULL,2632,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:20:36','2026-03-27 14:20:36',NULL,NULL,NULL,'036ecd6c-1b5f-48d0-af29-eaa2b92c8b94'),
(6209,6207,NULL,2633,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:20:36','2026-03-27 14:20:36',NULL,NULL,NULL,'6c982eaa-c43b-413f-918c-f6dc6bada80b'),
(6210,6156,NULL,2634,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:20:48','2026-03-27 14:20:48',NULL,NULL,NULL,'83e7a9e7-1ad0-47a5-97c2-1b9edb412ad3'),
(6211,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:20:52','2026-03-31 09:26:59',NULL,NULL,NULL,'57f88f84-eeea-4aa4-8e96-c9d7e79995a7'),
(6212,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:21:27','2026-03-27 14:21:58',NULL,NULL,NULL,'d3d7a2c2-866d-49d6-9f91-b8d107ece2eb'),
(6213,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:21:31','2026-03-27 14:21:49',NULL,NULL,NULL,'1e2bbea6-d7f8-4abc-92a3-6e75ea3950bb'),
(6214,6212,NULL,2635,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:21:58','2026-03-27 14:21:58',NULL,NULL,NULL,'99abca1e-ea73-4b9f-a8f5-37729ccf2acb'),
(6215,6213,NULL,2636,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:21:49','2026-03-27 14:21:58',NULL,NULL,NULL,'9e963c92-6df1-4010-886b-f053c3c80840'),
(6216,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:02','2026-03-31 09:40:07',NULL,NULL,NULL,'2581c223-d610-43fb-9d5a-5bc37c397585'),
(6217,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:09','2026-03-31 09:40:07',NULL,NULL,NULL,'52c5ea34-f0cc-44db-bafe-a783d388d309'),
(6218,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:29','2026-03-31 09:39:18',NULL,NULL,NULL,'8cafcdb2-cf6e-4a88-acd8-dd0d215ce03f'),
(6219,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:46','2026-03-31 09:38:35',NULL,NULL,NULL,'2c7822bc-4fc1-4e9f-b35c-242c70a439c4'),
(6220,6216,NULL,2637,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:23:11','2026-03-27 14:23:11',NULL,NULL,NULL,'34542fc6-0c2f-4ea3-b3df-26a8b58627d4'),
(6221,6217,NULL,2638,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:21','2026-03-27 14:23:11',NULL,NULL,NULL,'2a18a8df-1b68-4fe3-833c-6a15d8cbccea'),
(6222,6218,NULL,2639,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:41','2026-03-27 14:23:11',NULL,NULL,NULL,'8b431a42-eb9c-4c60-ae2a-439739804eff'),
(6223,6219,NULL,2640,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:22:56','2026-03-27 14:23:11',NULL,NULL,NULL,'5a4a8081-e358-4ab2-8888-1482e87a54d7'),
(6224,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:25:17','2026-03-31 09:36:10',NULL,NULL,NULL,'ac2b9a54-52d4-4197-8a3b-08d8190e07d8'),
(6225,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:25:38','2026-03-27 14:25:45',NULL,NULL,NULL,'a39b7dd3-ca98-45f2-950a-067b77540ddc'),
(6226,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:25:47','2026-03-27 14:25:59',NULL,NULL,NULL,'b2a34c36-08ca-40e7-9a9a-ca377008bf04'),
(6227,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:26:06','2026-03-31 09:36:10',NULL,NULL,NULL,'6b50ba5a-9bc7-4bd1-b663-f86c80ea09f2'),
(6228,6224,NULL,2641,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:26:44','2026-03-27 14:26:44',NULL,NULL,NULL,'69056ce3-0afa-47b4-824b-6d57f7472fb9'),
(6229,6225,NULL,2642,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:25:45','2026-03-27 14:26:44',NULL,NULL,NULL,'978795e9-89ec-47ad-8782-525cf1c35fa3'),
(6230,6226,NULL,2643,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:25:59','2026-03-27 14:26:44',NULL,NULL,NULL,'78a84946-cf4b-497b-be13-b5c37cdebf5e'),
(6231,6227,NULL,2644,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:26:24','2026-03-27 14:26:44',NULL,NULL,NULL,'56aeba0a-3d02-4e25-8407-9edd2efc0eed'),
(6232,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:26:51','2026-04-02 08:56:55',NULL,NULL,NULL,'63707ff1-67fb-46d5-92b9-7e5a63d3d62b'),
(6233,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:26:57','2026-03-31 09:33:06',NULL,NULL,NULL,'8afff0ce-7700-4396-8606-05b18b16ed32'),
(6234,6232,NULL,2645,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:33:15','2026-03-27 14:33:15',NULL,NULL,NULL,'d518cddc-2041-4ee6-b551-7bcc67cf582e'),
(6235,6233,NULL,2646,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:28:17','2026-03-27 14:33:15',NULL,NULL,NULL,'dd2ebd82-ce3e-4876-bb2f-c917f3cee804'),
(6236,6211,NULL,2647,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:33:18','2026-03-27 14:33:18',NULL,NULL,NULL,'5a0b4922-73a9-4da8-b60d-707c2844bb07'),
(6242,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-31 09:30:41',NULL,NULL,NULL,'2d421392-1351-4943-b817-8a9689145908'),
(6243,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-31 09:30:41',NULL,NULL,NULL,'7547a8d9-4a7a-4d0a-ba49-804982dab2d3'),
(6244,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-31 09:35:14',NULL,NULL,NULL,'f4a19ba3-d803-41b4-941d-7447035f4044'),
(6245,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-31 09:30:41',NULL,NULL,NULL,'620a11c0-821c-4053-8646-3d0688ad3478'),
(6246,6232,NULL,2648,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-27 14:48:19',NULL,NULL,NULL,'2a54bcff-0ae2-46ed-b620-6a77bd6a27bb'),
(6247,6242,NULL,2649,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-27 14:48:19',NULL,NULL,NULL,'c34c5563-9cc1-4567-9ea5-2a4a9af46fd5'),
(6248,6243,NULL,2650,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-27 14:48:19',NULL,NULL,NULL,'949542c8-59af-4df8-b1a4-a0f4b8326bba'),
(6249,6244,NULL,2651,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-27 14:48:19',NULL,NULL,NULL,'81527c01-5e54-4648-8980-78ab1f9b54ee'),
(6250,6245,NULL,2652,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:19','2026-03-27 14:48:19',NULL,NULL,NULL,'26015a75-06dd-4ffa-ad5c-46fa4ab4097e'),
(6251,6211,NULL,2653,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:23','2026-03-27 14:48:23',NULL,NULL,NULL,'fd826d16-a347-4051-ae11-5484d6720872'),
(6252,NULL,NULL,NULL,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:25','2026-03-31 09:33:52',NULL,NULL,NULL,'29f17ad8-4819-422b-9dbe-37e4b6ba7f92'),
(6253,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:42','2026-03-31 09:22:14',NULL,NULL,NULL,'9b57fe16-90e8-44f6-b650-88acd7672c81'),
(6254,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:48:51','2026-03-31 09:22:14',NULL,NULL,NULL,'ef357528-ed6f-4c01-a774-cad6bd68ca00'),
(6255,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:10','2026-03-27 14:49:18',NULL,NULL,NULL,'545fe210-7842-49f8-99af-c8d5f4e9e57f'),
(6256,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:19','2026-03-27 14:49:30',NULL,NULL,NULL,'9f6cafce-0dd4-4e75-9be3-c4c68cde00e3'),
(6257,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:31','2026-03-27 14:49:41',NULL,NULL,NULL,'bef47fe1-87d6-480c-a3e4-0f1c7d30faaf'),
(6258,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:45','2026-03-27 14:49:52',NULL,NULL,NULL,'9d9c3f96-5098-4847-aa43-885334a8934d'),
(6259,6253,NULL,2654,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:54','2026-03-27 14:49:54',NULL,NULL,NULL,'99908226-ee68-4bed-824f-8495379ed43e'),
(6260,6254,NULL,2655,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:04','2026-03-27 14:49:54',NULL,NULL,NULL,'8510041e-802f-42af-b59d-434e7b494b98'),
(6261,6255,NULL,2656,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:18','2026-03-27 14:49:54',NULL,NULL,NULL,'fb4eff19-51eb-4339-9b77-870dd4195f9a'),
(6262,6256,NULL,2657,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:30','2026-03-27 14:49:54',NULL,NULL,NULL,'8c95529f-ca5d-47d3-9f43-a5f4a3b170c9'),
(6263,6257,NULL,2658,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:41','2026-03-27 14:49:55',NULL,NULL,NULL,'4568c0a1-95b1-4151-9cdc-009714b31f60'),
(6264,6258,NULL,2659,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:49:52','2026-03-27 14:49:55',NULL,NULL,NULL,'acea2cc5-5598-4e04-9e63-7cbeadfee6cf'),
(6265,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:02','2026-03-27 14:50:22',NULL,NULL,NULL,'7d9c1635-a898-4b9c-b67b-8ac079f5bad3'),
(6266,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:04','2026-03-27 14:50:12',NULL,NULL,NULL,'00a7dfc6-ef0c-46f6-8e9a-f1f50c69e010'),
(6267,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:13','2026-03-27 14:50:21',NULL,NULL,NULL,'bb1ed64b-4113-4710-bb84-b7789a10c3bf'),
(6268,6265,NULL,2660,45,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:22','2026-03-27 14:50:22',NULL,NULL,NULL,'4f40f53d-a73c-4e57-8b4f-870acb2149f2'),
(6269,6266,NULL,2661,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:12','2026-03-27 14:50:22',NULL,NULL,NULL,'56899574-4292-400c-8bdd-09ff6dc75399'),
(6270,6267,NULL,2662,46,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:21','2026-03-27 14:50:22',NULL,NULL,NULL,'fd660bd0-6e76-43b7-9fe6-e9e5221f1a1d'),
(6271,6252,NULL,2663,51,'craft\\elements\\Entry',1,0,'2026-03-27 14:50:26','2026-03-27 14:50:26',NULL,NULL,NULL,'06594a42-2821-43a0-8a82-cde30225bdb1'),
(6274,38,NULL,2664,7,'craft\\elements\\Entry',1,0,'2026-03-29 10:07:47','2026-03-29 10:07:47',NULL,NULL,NULL,'59aecfaf-6f9a-44b1-aac1-87884e6a3eb4'),
(6275,143,NULL,2665,4,'craft\\elements\\Entry',1,0,'2026-03-29 10:07:47','2026-03-29 10:07:47',NULL,NULL,NULL,'3339c2c4-a473-4b70-adda-9f190a946247'),
(6278,NULL,NULL,NULL,52,'craft\\elements\\Entry',1,0,'2026-03-29 10:42:40','2026-04-01 14:59:54',NULL,NULL,NULL,'ebfa8434-27ad-4309-a646-87374c2ba81f'),
(6279,38,NULL,2666,7,'craft\\elements\\Entry',1,0,'2026-03-29 10:42:40','2026-03-29 10:42:40',NULL,NULL,NULL,'b26ef5e7-2dde-4d3c-85f8-dd8723ccc378'),
(6280,6278,NULL,2667,52,'craft\\elements\\Entry',1,0,'2026-03-29 10:42:40','2026-03-29 10:42:40',NULL,NULL,NULL,'200b26f1-0914-4992-b7f9-b32fbadcc316'),
(6283,38,NULL,2668,7,'craft\\elements\\Entry',1,0,'2026-03-29 10:49:24','2026-03-29 10:49:24',NULL,NULL,NULL,'877974e0-c0ec-4d7b-96d5-f9c7c7b712d7'),
(6284,6278,NULL,2669,52,'craft\\elements\\Entry',1,0,'2026-03-29 10:49:24','2026-03-29 10:49:24',NULL,NULL,NULL,'10ef7654-3a2a-4426-9eb2-709385e91bed'),
(6287,38,NULL,2670,7,'craft\\elements\\Entry',1,0,'2026-03-29 10:52:16','2026-03-29 10:52:16',NULL,NULL,NULL,'7f21d8df-cbad-4e9e-8fa1-d81f3e095e3d'),
(6288,6278,NULL,2671,52,'craft\\elements\\Entry',1,0,'2026-03-29 10:52:16','2026-03-29 10:52:16',NULL,NULL,NULL,'2b4b5936-7767-47fc-a012-c7af6792e254'),
(6291,38,NULL,2672,7,'craft\\elements\\Entry',1,0,'2026-03-29 10:53:27','2026-03-29 10:53:27',NULL,NULL,NULL,'a49e7806-2a0f-4805-aec8-102d28c0cd9d'),
(6292,6278,NULL,2673,52,'craft\\elements\\Entry',0,0,'2026-03-29 10:53:27','2026-03-29 10:53:27',NULL,NULL,NULL,'3a04b74c-b543-44cd-8599-b482126697e6'),
(6295,38,NULL,2674,7,'craft\\elements\\Entry',1,0,'2026-03-29 10:53:43','2026-03-29 10:53:43',NULL,NULL,NULL,'3936be33-288f-48e7-9d10-cb9c19734cbe'),
(6296,143,NULL,2675,4,'craft\\elements\\Entry',1,0,'2026-03-29 10:53:43','2026-03-29 10:53:43',NULL,NULL,NULL,'015ffcc1-5881-429a-8c7c-2dbe3cb1ef43'),
(6299,38,NULL,2676,7,'craft\\elements\\Entry',1,0,'2026-03-29 11:46:49','2026-03-29 11:46:49',NULL,NULL,NULL,'0fd13925-5a16-4f6b-a194-480e85e43763'),
(6300,843,NULL,2677,33,'craft\\elements\\Entry',1,0,'2026-03-29 11:46:49','2026-03-29 11:46:49',NULL,NULL,NULL,'3fb24a54-316c-454a-a562-d8258aef9af3'),
(6303,38,NULL,2678,7,'craft\\elements\\Entry',1,0,'2026-03-29 11:55:05','2026-03-29 11:55:05',NULL,NULL,NULL,'3738f951-fbfa-4818-83c9-30a511ca1ebb'),
(6304,843,NULL,2679,33,'craft\\elements\\Entry',1,0,'2026-03-29 11:55:05','2026-03-29 11:55:05',NULL,NULL,NULL,'3646cd96-bd1a-4a01-a967-b6119502688c'),
(6307,38,NULL,2680,7,'craft\\elements\\Entry',1,0,'2026-03-29 11:55:36','2026-03-29 11:55:36',NULL,NULL,NULL,'16233763-0e63-492e-b745-1b9695b959d2'),
(6308,843,NULL,2681,33,'craft\\elements\\Entry',1,0,'2026-03-29 11:55:36','2026-03-29 11:55:36',NULL,NULL,NULL,'2c98a812-5421-434f-abdd-c85826087ed4'),
(6311,38,NULL,2682,7,'craft\\elements\\Entry',1,0,'2026-03-30 10:18:17','2026-03-30 10:18:17',NULL,NULL,NULL,'42559100-d2f5-4bf9-9aa8-80bb507febc5'),
(6312,143,NULL,2683,4,'craft\\elements\\Entry',1,0,'2026-03-30 10:18:17','2026-03-30 10:18:17',NULL,NULL,NULL,'08f55830-572c-415b-9ce5-8a2998ec27db'),
(6315,38,NULL,2684,7,'craft\\elements\\Entry',1,0,'2026-03-30 10:56:54','2026-03-30 10:56:54',NULL,NULL,NULL,'e4db84cb-63d3-4849-ad18-31f4fd395f7d'),
(6316,143,NULL,2685,4,'craft\\elements\\Entry',1,0,'2026-03-30 10:56:54','2026-03-30 10:56:54',NULL,NULL,NULL,'fd6c0538-a8f0-43c7-b973-17450e27f038'),
(6320,38,NULL,2686,7,'craft\\elements\\Entry',1,0,'2026-03-30 10:57:29','2026-03-30 10:57:29',NULL,NULL,NULL,'2baee718-b85f-458b-9d90-308cb4c51dea'),
(6321,143,NULL,2687,4,'craft\\elements\\Entry',1,0,'2026-03-30 10:57:29','2026-03-30 10:57:29',NULL,NULL,NULL,'e70853f4-655f-4361-bdb9-9d531e2a5eb2'),
(6327,38,NULL,2688,7,'craft\\elements\\Entry',1,0,'2026-03-30 10:57:52','2026-03-30 10:57:52',NULL,NULL,NULL,'88bbae98-63c9-4c60-8e68-91080c8d21d3'),
(6328,38,NULL,2689,7,'craft\\elements\\Entry',1,0,'2026-03-30 10:58:01','2026-03-30 10:58:01',NULL,NULL,NULL,'fe6e2d15-d700-42d5-ab4f-6336d39baf71'),
(6332,38,NULL,2690,7,'craft\\elements\\Entry',1,0,'2026-03-30 16:48:42','2026-03-30 16:48:43',NULL,NULL,NULL,'f42f2b5f-ed60-4a88-8c58-0e36d1371554'),
(6333,843,NULL,2691,33,'craft\\elements\\Entry',1,0,'2026-03-30 16:48:42','2026-03-30 16:48:43',NULL,NULL,NULL,'947449b8-2cca-44f5-9f62-71422f99533a'),
(6334,6278,NULL,2692,52,'craft\\elements\\Entry',1,0,'2026-03-30 16:48:43','2026-03-30 16:48:43',NULL,NULL,NULL,'36de34be-ca7c-42cc-bd86-749882c2501e'),
(6336,38,NULL,2693,7,'craft\\elements\\Entry',1,0,'2026-03-30 16:49:56','2026-03-30 16:49:56',NULL,NULL,NULL,'5e2f874e-9c08-4d27-b6de-e0980edd8809'),
(6337,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-30 18:01:06','2026-03-30 18:01:06',NULL,NULL,NULL,'8c17c3f8-eaca-4492-a377-e7ccbd42e366'),
(6338,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-30 18:01:07','2026-03-30 18:01:07',NULL,NULL,NULL,'a99f5d42-5457-4883-902a-c635e7c54521'),
(6340,4593,NULL,2694,6,'craft\\elements\\Entry',1,0,'2026-03-30 18:01:13','2026-03-30 18:01:13',NULL,NULL,NULL,'4d39bc8b-012e-47da-9242-1991c128b32c'),
(6342,1951,NULL,2695,6,'craft\\elements\\Entry',1,0,'2026-03-30 18:01:34','2026-03-30 18:01:34',NULL,NULL,NULL,'6f8efb0f-1403-4026-9979-2148962359a7'),
(6343,4203,NULL,2696,6,'craft\\elements\\Entry',1,0,'2026-03-30 18:02:28','2026-03-30 18:02:28',NULL,NULL,NULL,'f97620d0-07b1-43d0-b7f7-2e809884260f'),
(6344,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-30 18:30:49','2026-03-30 18:30:49',NULL,NULL,NULL,'a7ca700b-e582-4476-8d9b-5d19ea630e5e'),
(6346,4303,NULL,2697,6,'craft\\elements\\Entry',1,0,'2026-03-30 18:31:48','2026-03-30 18:31:48',NULL,NULL,NULL,'f65a16f3-8e96-40d0-9bfc-9a3f4d31e834'),
(6347,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-03-31 09:16:56','2026-03-31 09:16:56',NULL,NULL,NULL,'099086ba-0c70-4033-ba9f-9f5d363fe1de'),
(6350,38,NULL,2698,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:17:00','2026-03-31 09:17:00',NULL,NULL,NULL,'35847b8e-bf50-449e-98d1-57455d4e31fe'),
(6351,761,NULL,2699,32,'craft\\elements\\Entry',1,0,'2026-03-31 09:17:00','2026-03-31 09:17:00',NULL,NULL,NULL,'2aca3953-d107-4c67-ba62-a48555c8b495'),
(6352,6179,NULL,2700,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:18:49','2026-03-31 09:18:49',NULL,NULL,NULL,'95d3a8cd-9863-4630-93b5-e2326f86fa34'),
(6355,6232,NULL,2701,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:20:18','2026-03-31 09:20:18',NULL,NULL,NULL,'2993fca1-c68a-4496-b8b4-caad258a8660'),
(6356,6243,NULL,2702,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:20:18','2026-03-31 09:20:18',NULL,NULL,NULL,'df097fbe-6240-4f73-833a-6968c8ac0a28'),
(6359,6232,NULL,2703,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:21:10','2026-03-31 09:21:10',NULL,NULL,NULL,'7ba6bc81-41cf-4f11-9f95-994f98e3cab9'),
(6360,6242,NULL,2704,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:21:10','2026-03-31 09:21:10',NULL,NULL,NULL,'4d2fd1df-a77b-4feb-a8dc-6f0da5277a4b'),
(6363,6253,NULL,2705,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:22:14','2026-03-31 09:22:14',NULL,NULL,NULL,'4a6049a1-b0f4-4478-9d44-e0fe930801c9'),
(6364,6254,NULL,2706,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:22:14','2026-03-31 09:22:14',NULL,NULL,NULL,'3565867e-7a11-45d8-9e4b-a36cad9a5f6e'),
(6365,6252,NULL,2707,51,'craft\\elements\\Entry',1,0,'2026-03-31 09:22:16','2026-03-31 09:22:16',NULL,NULL,NULL,'42d814d9-37ba-4b79-b579-d03faa409651'),
(6367,6179,NULL,2708,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:22:48','2026-03-31 09:22:48',NULL,NULL,NULL,'437dca33-5c0b-4f79-bdaf-1425d4ce6c83'),
(6370,6216,NULL,2709,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:23:36','2026-03-31 09:23:36',NULL,NULL,NULL,'ef7da853-2ba4-46f2-81df-c408601bbd10'),
(6371,6217,NULL,2710,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:23:36','2026-03-31 09:23:36',NULL,NULL,NULL,'cc347410-e31b-47b2-87b2-d6b5c04f3b26'),
(6374,6216,NULL,2711,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:24:13','2026-03-31 09:24:13',NULL,NULL,NULL,'9ad4ee68-8fbf-4e08-94e8-c425ba8e2fd6'),
(6375,6219,NULL,2712,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:24:13','2026-03-31 09:24:13',NULL,NULL,NULL,'e1605f07-1de4-470b-aa62-56618118e9ef'),
(6378,6196,NULL,2713,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:25:13','2026-03-31 09:25:13',NULL,NULL,NULL,'3c0fd84b-f7ce-427e-a847-8313097c0f29'),
(6379,6207,NULL,2714,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:25:13','2026-03-31 09:25:13',NULL,NULL,NULL,'068c1116-00d7-4731-bda6-b9f390f47ab2'),
(6381,5795,NULL,2715,51,'craft\\elements\\Entry',1,0,'2026-03-31 09:25:43','2026-03-31 09:25:43',NULL,NULL,NULL,'bce17dbf-3a72-4fc6-9714-a0d5e82f214f'),
(6383,6156,NULL,2716,51,'craft\\elements\\Entry',1,0,'2026-03-31 09:26:35','2026-03-31 09:26:35',NULL,NULL,NULL,'2450836a-51e1-484b-87b0-f483d534f278'),
(6385,6211,NULL,2717,51,'craft\\elements\\Entry',1,0,'2026-03-31 09:26:59','2026-03-31 09:26:59',NULL,NULL,NULL,'a5bd40d1-3923-4f52-b33c-1c39e4417a45'),
(6387,6196,NULL,2718,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:28:32','2026-03-31 09:28:32',NULL,NULL,NULL,'1c8cb857-30fd-4871-8cd6-81bf2d030724'),
(6389,6232,NULL,2719,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:29:27','2026-03-31 09:29:27',NULL,NULL,NULL,'6f972014-3e6c-4132-ac03-b3296b6fbebd'),
(6392,6216,NULL,2720,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:29:58','2026-03-31 09:29:58',NULL,NULL,NULL,'37bbb9ad-9e76-4255-b87b-817c602d62c1'),
(6393,6219,NULL,2721,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:29:58','2026-03-31 09:29:58',NULL,NULL,NULL,'6b7941c2-21a4-43ff-93b7-aaece93dcd32'),
(6400,6232,NULL,2722,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:30:41','2026-03-31 09:30:41',NULL,NULL,NULL,'3005abd2-f483-4f78-90c4-7786ff72351b'),
(6401,6233,NULL,2723,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:30:41','2026-03-31 09:30:41',NULL,NULL,NULL,'0652bd3d-8aa4-46a7-9960-c0fc5b10f54e'),
(6402,6242,NULL,2724,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:30:41','2026-03-31 09:30:41',NULL,NULL,NULL,'bb4c7d00-1e44-4b1c-9c98-cfa4ad585d48'),
(6403,6243,NULL,2725,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:30:41','2026-03-31 09:30:41',NULL,NULL,NULL,'61b8e212-9180-4375-babf-d7716054601a'),
(6404,6244,NULL,2726,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:30:41','2026-03-31 09:30:41',NULL,NULL,NULL,'5771f7c7-4e55-4066-b8ee-f66dc4d19aa4'),
(6405,6245,NULL,2727,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:30:41','2026-03-31 09:30:41',NULL,NULL,NULL,'db071585-9111-492b-98e2-c89a0fc105bb'),
(6408,6232,NULL,2728,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:33:06','2026-03-31 09:33:06',NULL,NULL,NULL,'2c76b339-5972-41f5-9b56-e49b382dffa5'),
(6409,6233,NULL,2729,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:33:06','2026-03-31 09:33:06',NULL,NULL,NULL,'8bf4499b-766d-4bc0-9c3a-ebd74544860c'),
(6411,6252,NULL,2730,51,'craft\\elements\\Entry',1,0,'2026-03-31 09:33:52','2026-03-31 09:33:52',NULL,NULL,NULL,'4e46648a-3d25-4a93-8663-fef01fac34ea'),
(6414,6196,NULL,2731,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:34:32','2026-03-31 09:34:32',NULL,NULL,NULL,'4e603d8f-9fdc-4bf3-bab3-47bd2ab146cc'),
(6415,6197,NULL,2732,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:34:32','2026-03-31 09:34:32',NULL,NULL,NULL,'84aa0a70-fd20-400e-8c4b-542dfeee304b'),
(6418,6232,NULL,2733,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:35:14','2026-03-31 09:35:14',NULL,NULL,NULL,'933f34d3-c939-496a-8e35-a7bb3f7af9be'),
(6419,6244,NULL,2734,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:35:14','2026-03-31 09:35:14',NULL,NULL,NULL,'9dee0fb6-1adc-46ce-a18f-f99dec0b761e'),
(6422,6224,NULL,2735,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:36:10','2026-03-31 09:36:10',NULL,NULL,NULL,'12641e68-e0b2-46de-b34e-322776cb4d01'),
(6423,6227,NULL,2736,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:36:10','2026-03-31 09:36:10',NULL,NULL,NULL,'bb4155c1-4ec9-4833-9639-48f0c0412fd3'),
(6426,6216,NULL,2737,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:37:18','2026-03-31 09:37:18',NULL,NULL,NULL,'61e8d95f-1639-48f0-926e-a282f9a74416'),
(6427,6217,NULL,2738,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:37:18','2026-03-31 09:37:18',NULL,NULL,NULL,'675248a8-caf0-45a7-a829-b80293d1d6e7'),
(6430,6216,NULL,2739,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:38:35','2026-03-31 09:38:35',NULL,NULL,NULL,'85b718eb-159a-45eb-bd52-bf7c4a4cf58c'),
(6431,6219,NULL,2740,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:38:35','2026-03-31 09:38:35',NULL,NULL,NULL,'4656966d-f3d9-416f-ad79-62a464567ca1'),
(6434,6216,NULL,2741,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:39:18','2026-03-31 09:39:18',NULL,NULL,NULL,'3570f819-582b-4880-99db-b84b5e4999b1'),
(6435,6218,NULL,2742,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:39:18','2026-03-31 09:39:18',NULL,NULL,NULL,'d65672b0-f616-4a05-a42f-7f60f49e7274'),
(6438,6216,NULL,2743,45,'craft\\elements\\Entry',1,0,'2026-03-31 09:40:07','2026-03-31 09:40:07',NULL,NULL,NULL,'8fb44935-3042-4897-8215-8539c58354c9'),
(6439,6217,NULL,2744,46,'craft\\elements\\Entry',1,0,'2026-03-31 09:40:07','2026-03-31 09:40:07',NULL,NULL,NULL,'eb3649b9-b3de-437a-89f1-96a2498444d2'),
(6444,38,NULL,2745,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:41:19','2026-03-31 09:41:19',NULL,NULL,NULL,'e109a9e4-0c1d-49b2-95a6-c131f24f1d16'),
(6445,604,NULL,2746,20,'craft\\elements\\Entry',1,0,'2026-03-31 09:41:19','2026-03-31 09:41:19',NULL,NULL,NULL,'a280d5f6-9ba7-4809-9006-14d91c07c9dc'),
(6446,654,NULL,2747,30,'craft\\elements\\Entry',1,0,'2026-03-31 09:41:19','2026-03-31 09:41:19',NULL,NULL,NULL,'61fb2068-4535-4478-9721-37fae3b97335'),
(6447,656,NULL,2748,22,'craft\\elements\\Entry',1,0,'2026-03-31 09:41:19','2026-03-31 09:41:19',NULL,NULL,NULL,'d43c6055-2db0-4544-819a-47f82b107fae'),
(6448,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:43:42','2026-03-31 09:53:06',NULL,NULL,NULL,'5ce9741c-6d14-4f55-8d2f-126312beb14f'),
(6459,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'18bf9d90-e871-48b8-b2d4-b26859670107'),
(6460,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'eddd978c-e450-4472-ace6-3d824a9a74ab'),
(6461,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'7c2e5060-97e8-4302-b434-f74ebd9af7ef'),
(6462,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-04-16 14:35:29',NULL,NULL,NULL,'5b366b2e-8267-4eee-8fad-589c130985aa'),
(6463,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'ce1fc439-d84d-4dbf-b1e5-8d80d9fdf23b'),
(6464,38,NULL,2749,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'96766632-8371-4b63-9ad2-bab392b37a5c'),
(6465,274,NULL,2750,16,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'3c306cfb-de8b-4180-bd01-83e35fb3e0d5'),
(6466,6459,NULL,2751,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'2fc000fe-280c-444d-9aec-9a49118389cc'),
(6467,6448,NULL,2752,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'769bda77-fbea-450a-bec9-59ce78132087'),
(6468,6460,NULL,2753,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'959172a7-f0e8-405e-971b-1608c38d347c'),
(6469,6461,NULL,2754,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'984c0a72-0961-43db-937b-e2b18b9b1626'),
(6470,6462,NULL,2755,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'03524f60-3da7-4faa-81df-f26c5916cab0'),
(6471,6463,NULL,2756,17,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:06','2026-03-31 09:53:06',NULL,NULL,NULL,'868cf62c-0e7d-46de-8225-e380dbee9c24'),
(6472,38,NULL,2757,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:53:10','2026-03-31 09:53:10',NULL,NULL,NULL,'6e12d6d2-ee31-4f2f-af08-f226ca68d5aa'),
(6475,38,NULL,2758,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:54:30','2026-03-31 09:54:30',NULL,NULL,NULL,'b8bb55e7-ac6d-46b2-b92d-8d7820c88ddf'),
(6476,843,NULL,2759,33,'craft\\elements\\Entry',1,0,'2026-03-31 09:54:30','2026-03-31 09:54:30',NULL,NULL,NULL,'d14e36e1-9028-4542-b089-efbd6195a367'),
(6480,38,NULL,2760,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:55:41','2026-03-31 09:55:41',NULL,NULL,NULL,'266d7222-b59b-4cd0-b7e3-6ac5628e136c'),
(6481,761,NULL,2761,32,'craft\\elements\\Entry',1,0,'2026-03-31 09:55:41','2026-03-31 09:55:41',NULL,NULL,NULL,'2bbe6ed5-80c4-432b-b13b-331943aa5c68'),
(6484,38,NULL,2762,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:58:11','2026-03-31 09:58:11',NULL,NULL,NULL,'d4c1f640-577d-4d12-b6c3-a55c351aa3a7'),
(6485,867,NULL,2763,34,'craft\\elements\\Entry',1,0,'2026-03-31 09:58:11','2026-03-31 09:58:11',NULL,NULL,NULL,'7053746f-a935-4a0b-8535-4cbedaea1aa1'),
(6487,38,NULL,2764,7,'craft\\elements\\Entry',1,0,'2026-03-31 09:58:47','2026-03-31 09:58:47',NULL,NULL,NULL,'e7e6cd0c-6e1e-4005-b382-54412415fb31'),
(6488,143,NULL,2765,4,'craft\\elements\\Entry',1,0,'2026-03-31 09:58:47','2026-03-31 09:58:47',NULL,NULL,NULL,'844640fa-427e-4a32-8fb1-8d40120f2088'),
(6496,38,NULL,2766,7,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'a12f87e4-ec8b-40f3-b057-1ff821142cfa'),
(6497,604,NULL,2767,20,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'042bcb2d-7e18-419a-b13c-2bf6c80910fe'),
(6498,654,NULL,2768,30,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'8936849f-d9d5-476a-88c3-b09f01fe5daf'),
(6499,657,NULL,2769,21,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'1c4fd783-4087-415e-ab23-ea47799bed99'),
(6500,785,NULL,2770,20,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'5ab0d473-4545-4345-9cf8-34193d39feea'),
(6501,786,NULL,2771,30,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'f61412f1-4de4-43cc-84b9-732c0ac2e24a'),
(6502,789,NULL,2772,21,'craft\\elements\\Entry',1,0,'2026-03-31 10:00:26','2026-03-31 10:00:26',NULL,NULL,NULL,'9ea23086-f1ee-4cc5-8252-82587e817192'),
(6507,38,NULL,2773,7,'craft\\elements\\Entry',1,0,'2026-03-31 10:11:57','2026-03-31 10:11:57',NULL,NULL,NULL,'ea1b422e-bb1f-401e-bed6-42dadac2a87e'),
(6508,761,NULL,2774,32,'craft\\elements\\Entry',1,0,'2026-03-31 10:11:57','2026-03-31 10:11:57',NULL,NULL,NULL,'ef8bba77-1a1b-47f5-bf95-fbc0c73810f4'),
(6511,38,NULL,2775,7,'craft\\elements\\Entry',1,0,'2026-03-31 10:12:25','2026-03-31 10:12:25',NULL,NULL,NULL,'cff21766-cace-48fb-8bfe-b3d1a245c919'),
(6512,761,NULL,2776,32,'craft\\elements\\Entry',1,0,'2026-03-31 10:12:25','2026-03-31 10:12:25',NULL,NULL,NULL,'7ae6dd1a-1ba7-40c3-8715-a7210a356289'),
(6515,38,NULL,2777,7,'craft\\elements\\Entry',1,0,'2026-03-31 10:12:55','2026-03-31 10:12:55',NULL,NULL,NULL,'54a83801-27a4-4022-81e0-87cdac9e75f4'),
(6516,761,NULL,2778,32,'craft\\elements\\Entry',1,0,'2026-03-31 10:12:55','2026-03-31 10:12:55',NULL,NULL,NULL,'f8353f88-74d4-4f97-ab11-81504d6c6d6e'),
(6519,38,NULL,2779,7,'craft\\elements\\Entry',1,0,'2026-03-31 10:14:31','2026-03-31 10:14:31',NULL,NULL,NULL,'2a21728b-4bc7-4a87-a687-26759155572c'),
(6520,761,NULL,2780,32,'craft\\elements\\Entry',1,0,'2026-03-31 10:14:31','2026-03-31 10:14:31',NULL,NULL,NULL,'d0acdd27-bd4d-4926-a909-2368cf1b1126'),
(6523,38,NULL,2781,7,'craft\\elements\\Entry',1,0,'2026-03-31 17:20:16','2026-03-31 17:20:17',NULL,NULL,NULL,'8568aa0e-76cc-4dcc-9c12-cb8d158c677e'),
(6524,843,NULL,2782,33,'craft\\elements\\Entry',1,0,'2026-03-31 17:20:16','2026-03-31 17:20:17',NULL,NULL,NULL,'368fd57d-d834-4f63-9e87-67a7d3050112'),
(6528,38,NULL,2783,7,'craft\\elements\\Entry',1,0,'2026-04-01 09:45:16','2026-04-01 09:45:16',NULL,NULL,NULL,'9631eb95-2dbe-400b-bcd4-0e59559311f4'),
(6529,6278,NULL,2784,52,'craft\\elements\\Entry',1,0,'2026-04-01 09:45:16','2026-04-01 09:45:16',NULL,NULL,NULL,'834f135c-ef3b-4931-9669-c07347acf355'),
(6530,843,NULL,2785,33,'craft\\elements\\Entry',1,0,'2026-04-01 09:45:16','2026-04-01 09:45:16',NULL,NULL,NULL,'73e1e1ce-d847-4a09-93cd-f1d0dd8de042'),
(6531,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:03:41','2026-04-01 10:06:25',NULL,'2026-04-01 10:06:25',NULL,'22c2c875-7cb2-4413-ba80-646b00df81fa'),
(6532,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:03:42','2026-04-01 10:06:25',NULL,'2026-04-01 10:06:25',NULL,'15a5f7f3-e1da-4d47-ba74-8617b533ecb3'),
(6533,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:03:48','2026-04-01 10:03:48',NULL,NULL,NULL,'c85b15f4-25e6-47be-8163-5eb77ea1c5f1'),
(6537,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:06:33','2026-04-01 10:06:33',NULL,NULL,NULL,'1338cefb-7447-480f-8063-baa3b65ae5a2'),
(6538,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:06:34','2026-04-01 10:06:34',NULL,NULL,NULL,'da22fd3e-2aac-4343-b85f-b0f18402eca6'),
(6539,5108,NULL,2786,47,'craft\\elements\\Entry',1,0,'2026-04-01 10:07:09','2026-04-01 10:07:09',NULL,NULL,NULL,'9888567a-6226-44b1-8575-1ed9f3a97ffa'),
(6540,5109,NULL,2787,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:07:09','2026-04-01 10:07:09',NULL,NULL,NULL,'2b543b51-6e40-4865-a448-af00ea1d7fac'),
(6541,5110,NULL,2788,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:07:09','2026-04-01 10:07:09',NULL,NULL,NULL,'79047729-be08-456d-993c-ff561637502f'),
(6542,5108,NULL,2789,47,'craft\\elements\\Entry',1,0,'2026-04-01 10:07:12','2026-04-01 10:07:12',NULL,NULL,NULL,'156ae915-5920-4574-ae4e-fa2ec46c017d'),
(6546,5108,NULL,2790,47,'craft\\elements\\Entry',1,0,'2026-04-01 10:08:29','2026-04-01 10:08:29',NULL,NULL,NULL,'db46f5d1-4e6d-4087-b3d9-fa5f10686ae4'),
(6547,5110,NULL,2791,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:08:29','2026-04-01 10:08:29',NULL,NULL,NULL,'9cddfc6d-233a-4c57-8ff7-38b76b74645f'),
(6548,5111,NULL,2792,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:08:29','2026-04-01 10:08:29',NULL,NULL,NULL,'bb1e4cda-1187-48c6-97fa-db4356c8eb64'),
(6549,5108,NULL,2793,47,'craft\\elements\\Entry',1,0,'2026-04-01 10:08:33','2026-04-01 10:08:33',NULL,NULL,NULL,'624823e0-9609-4681-9928-161395cf8b61'),
(6550,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-20 19:14:16',NULL,NULL,NULL,'72774853-502f-48ca-9c46-f96da647d0d7'),
(6551,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-15 17:06:15',NULL,NULL,NULL,'caff1178-9660-4a4d-ad50-dc1cf1f2e6bc'),
(6552,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-13 10:30:04',NULL,NULL,NULL,'5e0c0a84-8be3-461c-8f83-9e6441289a9d'),
(6553,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-13 10:30:04',NULL,NULL,NULL,'1f4b15e8-d7d1-4118-80ba-84d37968a46c'),
(6554,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:09:16',NULL,NULL,NULL,'1819e637-db75-42b3-ad73-652232cdde61'),
(6555,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-16 13:27:28',NULL,NULL,NULL,'042c05f5-d4db-4f1b-a25d-e160168f1452'),
(6556,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-13 10:30:04',NULL,NULL,NULL,'3b9bbc75-6c7c-4a95-93b3-bbdf61c095de'),
(6557,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-13 10:30:04',NULL,NULL,NULL,'3805938d-33a0-43c3-8cd4-ee1417ade289'),
(6558,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-13 10:30:04',NULL,NULL,NULL,'70e3e7b2-0b86-4fe6-b899-5275338e5653'),
(6559,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-13 10:30:04',NULL,NULL,NULL,'e4ba070e-f352-4186-be48-759a8fd878bf'),
(6560,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-15 17:06:15',NULL,NULL,NULL,'230b8cd2-d7ae-4006-9af3-42cb461d5887'),
(6561,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-16 13:27:28',NULL,NULL,NULL,'4b46eec8-6655-4541-ac7b-866538910646'),
(6563,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 15:20:20',NULL,'2026-04-01 15:20:20',NULL,'1ecbdcc4-30e2-40c3-b1c6-69c4e7f9c9ab'),
(6564,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-20 19:14:16',NULL,NULL,NULL,'7219f8e2-d0e1-4c29-aaa9-2a2b38c9a72d'),
(6565,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:11:33','2026-04-01 10:11:33',NULL,NULL,NULL,'9f0879af-6223-41ed-a614-b2b4071ec3ab'),
(6566,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:11:39','2026-04-01 10:11:39',NULL,NULL,NULL,'d3a6fe83-271b-4903-b347-4b7e0b15b003'),
(6567,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 10:11:41','2026-04-01 10:11:41',NULL,NULL,NULL,'407ed310-e61c-4959-99e3-9a9f12ddb915'),
(6568,6550,NULL,2794,47,'craft\\elements\\Entry',1,0,'2026-04-01 10:12:10','2026-04-01 10:12:10',NULL,NULL,NULL,'f4831299-3c3f-455d-8092-1ccdc0ec6503'),
(6569,6551,NULL,2795,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'ba32c161-73a1-45d0-a151-2d0fe905cab5'),
(6570,6552,NULL,2796,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'ca1ed36f-b89f-4b34-9dce-6af0a6da3c4d'),
(6571,6553,NULL,2797,42,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'67321c39-208b-4f88-a76e-dda5a894de3e'),
(6572,6554,NULL,2798,8,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'68c82015-2f9a-4e7c-b8d4-1b1176c2fb17'),
(6573,6555,NULL,2799,44,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'ba5cb823-8ad3-45c8-b5db-2c84c876d59a'),
(6574,6556,NULL,2800,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'e2c4e923-64d8-49ee-97e2-82933cf75fcf'),
(6575,6557,NULL,2801,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'8138f5eb-eb8d-41ad-8b62-52f9e009639f'),
(6576,6558,NULL,2802,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'63ba3ac2-49ad-4e10-8f93-00f97c47ff6f'),
(6577,6559,NULL,2803,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'14ee2444-cdc9-4cd6-b1eb-b3b4358c93d2'),
(6578,6560,NULL,2804,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'349605b3-619b-4ff8-8826-10e69a3cc6fa'),
(6579,6561,NULL,2805,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'3520a159-6c52-4275-b071-1d96488607c2'),
(6581,6563,NULL,2807,35,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,'2026-04-01 15:20:20',NULL,'1789acf6-9602-4f03-adf1-e76e3cb883c9'),
(6582,6564,NULL,2808,49,'craft\\elements\\Entry',1,0,'2026-04-01 10:09:16','2026-04-01 10:12:10',NULL,NULL,NULL,'ccb6efeb-f477-466c-889b-2c7a5d23e9b5'),
(6590,38,NULL,2809,7,'craft\\elements\\Entry',1,0,'2026-04-01 10:45:35','2026-04-01 10:45:35',NULL,NULL,NULL,'3ad6f998-f229-4aef-bc2d-172979dfc10d'),
(6591,843,NULL,2810,33,'craft\\elements\\Entry',1,0,'2026-04-01 10:45:35','2026-04-01 10:45:35',NULL,NULL,NULL,'9dae3d99-8e78-4194-a109-1627b379a344'),
(6599,38,NULL,2811,7,'craft\\elements\\Entry',1,0,'2026-04-01 14:52:28','2026-04-01 14:52:28',NULL,NULL,NULL,'4764e608-edde-452d-80f9-4f666ecb5d0e'),
(6600,843,NULL,2812,33,'craft\\elements\\Entry',1,0,'2026-04-01 14:52:28','2026-04-01 14:52:28',NULL,NULL,NULL,'4fa35aae-5d6a-46fa-8fe7-a33a4481f427'),
(6606,5108,NULL,2813,47,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:05',NULL,NULL,NULL,'109dbc19-53e7-4926-8b7c-70ad70ec5359'),
(6607,5113,NULL,2814,44,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:06',NULL,NULL,NULL,'6bfba6ec-88df-4e89-a189-f9bc5f74896d'),
(6608,5114,NULL,2815,35,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:06',NULL,NULL,NULL,'232278f8-ca27-4ffb-803d-459965853133'),
(6611,5117,NULL,2818,35,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:06',NULL,NULL,NULL,'b346de27-8af7-46a3-b2ae-043d987ae7af'),
(6612,5118,NULL,2819,35,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:06',NULL,NULL,NULL,'a2725ac5-e24d-450b-a313-b1cfa71cd62a'),
(6613,5119,NULL,2820,35,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:06',NULL,NULL,NULL,'360fabbe-cec9-4944-a499-a5608d846558'),
(6614,5120,NULL,2821,35,'craft\\elements\\Entry',1,0,'2026-04-01 14:56:05','2026-04-01 14:56:06',NULL,NULL,NULL,'f021d7cd-b861-4a57-9c82-0469693db2c0'),
(6617,38,NULL,2822,7,'craft\\elements\\Entry',1,0,'2026-04-01 14:59:54','2026-04-01 14:59:54',NULL,NULL,NULL,'81a8bdbc-52d9-4497-8021-6dfe83457a56'),
(6618,6278,NULL,2823,52,'craft\\elements\\Entry',1,0,'2026-04-01 14:59:54','2026-04-01 14:59:54',NULL,NULL,NULL,'a39b91b8-0bae-4f83-a4a7-a411294b0586'),
(6621,112,NULL,2824,5,'craft\\elements\\Entry',1,0,'2026-04-01 15:06:48','2026-04-01 15:06:48',NULL,NULL,NULL,'53e1e560-7f8d-4581-a159-d316fc4ccc4f'),
(6623,99,NULL,2825,5,'craft\\elements\\Entry',1,0,'2026-04-01 15:07:49','2026-04-01 15:07:49',NULL,NULL,NULL,'9a579fb7-061f-40e2-b2b5-d1e7c0f457e0'),
(6634,6550,NULL,2826,47,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'4ca02d2e-8bf5-41cc-a0c2-ab2fc7795e38'),
(6635,6551,NULL,2827,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'1d6dd3ba-82af-4fa0-bfec-86718d1d7639'),
(6636,6552,NULL,2828,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'d5e09f2e-270e-43dc-befe-414c96f39729'),
(6637,6553,NULL,2829,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'0a22ee0a-d8ee-4ec7-a9ef-5febf5ef8264'),
(6638,6555,NULL,2830,44,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'30060088-507c-445a-8d9b-568eab0adeff'),
(6639,6556,NULL,2831,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'128a13f2-a16f-481e-80c2-b071a74bf15b'),
(6640,6557,NULL,2832,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'6202031e-d8e0-4d94-beae-94d7a2ae8da3'),
(6641,6558,NULL,2833,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'c653d492-3103-4d36-a0ee-e108f546552f'),
(6642,6559,NULL,2834,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'2738aa93-8d5e-4dd3-98ec-a07e0a86bdb4'),
(6643,6560,NULL,2835,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'69a66c12-543c-43cf-a73a-93891c6600f7'),
(6644,6561,NULL,2836,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:20:20','2026-04-01 15:20:20',NULL,NULL,NULL,'ae458c69-4572-4cdf-9aa6-754ae18e0034'),
(6646,6550,NULL,2838,47,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:25','2026-04-01 15:23:25',NULL,NULL,NULL,'22ecdb91-e189-42d5-bf0a-56c0e04777f2'),
(6647,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-20 19:05:34',NULL,NULL,NULL,'4dae5601-61d5-44f0-86f1-dada6923b394'),
(6648,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-16 13:20:33',NULL,NULL,NULL,'cf49bbce-17ce-4129-b8f0-42679e6b6790'),
(6649,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-16 13:20:33',NULL,NULL,NULL,'9c3eca01-3acc-4e6c-bf52-ceed72106785'),
(6650,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-16 13:20:33',NULL,NULL,NULL,'1305f9b6-7bd6-42df-9cb1-9c0cc5bd4ef3'),
(6651,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 15:23:44',NULL,NULL,NULL,'3dcc03ed-d639-4ae5-b9d3-93706b40b995'),
(6652,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-16 13:20:33',NULL,NULL,NULL,'2ebbf417-9fe1-4b52-ae8d-41d5c181c8f5'),
(6653,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-16 13:20:34',NULL,'2026-04-16 13:20:34',NULL,'67e1cc7a-010a-4b36-ae94-66b2fe4d90ff'),
(6654,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-16 13:20:34',NULL,'2026-04-16 13:20:34',NULL,'7129dbd9-ed7e-4416-be7f-c04a39150c98'),
(6657,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-16 13:20:34',NULL,'2026-04-16 13:20:34',NULL,'e4525380-e779-46c5-a2a8-3b8c1d5398a4'),
(6660,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-20 19:05:34',NULL,NULL,NULL,'eb58112a-2a84-4528-a23d-385959383717'),
(6661,6647,NULL,2839,47,'craft\\elements\\Entry',1,0,'2026-04-01 16:58:02','2026-04-01 16:58:02',NULL,NULL,NULL,'63b3cd25-a3cf-4168-9e30-953428e8e0f1'),
(6662,6648,NULL,2840,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-01 16:58:02',NULL,NULL,NULL,'dae0b6b1-713d-46d3-b14d-09a784203cd5'),
(6663,6649,NULL,2841,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-01 16:58:03',NULL,NULL,NULL,'6824cd67-58c5-4785-8586-d95115ff5e2e'),
(6664,6650,NULL,2842,42,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:43','2026-04-01 16:58:03',NULL,NULL,NULL,'59d3f268-ec27-4918-aa81-f8c1c98c1178'),
(6665,6651,NULL,2843,8,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 16:58:03',NULL,NULL,NULL,'b1a528f1-8419-4b14-ab86-35cf7f36d817'),
(6666,6652,NULL,2844,44,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 16:58:03',NULL,NULL,NULL,'713b4754-e83f-42c5-a2c5-5bf9e128ceb5'),
(6667,6653,NULL,2845,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 16:58:03',NULL,'2026-04-16 13:20:34',NULL,'67d59f71-6b14-4a9a-9a84-24b006706d07'),
(6668,6654,NULL,2846,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 16:58:03',NULL,'2026-04-16 13:20:34',NULL,'34fd1948-4ada-4911-b36a-4592fc03367f'),
(6671,6657,NULL,2849,35,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 16:58:03',NULL,'2026-04-16 13:20:34',NULL,'0ace17a2-3330-48e4-9a75-53e481b10cfd'),
(6674,6660,NULL,2852,49,'craft\\elements\\Entry',1,0,'2026-04-01 15:23:44','2026-04-01 16:58:03',NULL,NULL,NULL,'bf8bfa56-43e9-473a-bd15-3ea90d81e153'),
(6679,6647,NULL,2853,47,'craft\\elements\\Entry',1,0,'2026-04-01 17:11:07','2026-04-01 17:11:07',NULL,NULL,NULL,'68819a7a-59e4-49b2-a7bf-4af249479166'),
(6680,6648,NULL,2854,42,'craft\\elements\\Entry',1,0,'2026-04-01 17:11:07','2026-04-01 17:11:07',NULL,NULL,NULL,'e6611f10-25a0-4513-ab76-06237cea23a0'),
(6681,6649,NULL,2855,42,'craft\\elements\\Entry',1,0,'2026-04-01 17:11:07','2026-04-01 17:11:07',NULL,NULL,NULL,'2db758cf-8be7-4eef-9949-3b075c872190'),
(6684,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 17:43:13','2026-04-01 17:43:13',NULL,NULL,NULL,'53a82212-8f51-4363-8e60-de46f1cc9346'),
(6685,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 17:43:14','2026-04-01 17:43:14',NULL,NULL,NULL,'b60d317b-891b-47f5-8e6e-9f9120698282'),
(6686,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 17:43:17','2026-04-01 17:43:17',NULL,NULL,NULL,'21448f10-4986-40ad-8c9b-a1f878ca2964'),
(6698,6647,NULL,2856,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:21','2026-04-01 18:00:22',NULL,NULL,NULL,'803fa9b2-a275-4372-8ae8-172e97d24b0e'),
(6699,6648,NULL,2857,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:21','2026-04-01 18:00:22',NULL,NULL,NULL,'5fc77611-db29-4feb-9ab6-25f53bbd339d'),
(6700,6649,NULL,2858,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:21','2026-04-01 18:00:22',NULL,NULL,NULL,'1279e8ff-b266-47e4-860e-19b9a04101e6'),
(6701,6650,NULL,2859,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:21','2026-04-01 18:00:22',NULL,NULL,NULL,'e9513bdc-adb7-42cb-90f3-d4cd1eb51eb9'),
(6702,6652,NULL,2860,44,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:22','2026-04-01 18:00:22',NULL,NULL,NULL,'bd9ddb67-76e6-4f56-ae29-d0fb0587aa63'),
(6703,6653,NULL,2861,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:22','2026-04-01 18:00:22',NULL,'2026-04-16 13:20:34',NULL,'21da807c-a5e4-4291-b137-b58d2632cbac'),
(6704,6654,NULL,2862,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:22','2026-04-01 18:00:22',NULL,'2026-04-16 13:20:34',NULL,'497790ac-91f7-41e4-8497-baba22919c57'),
(6707,6657,NULL,2865,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:22','2026-04-01 18:00:22',NULL,'2026-04-16 13:20:34',NULL,'bc9638d9-1cc8-4cb9-8552-e0c0b7e1a4a1'),
(6711,6647,NULL,2868,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:00:40','2026-04-01 18:00:41',NULL,NULL,NULL,'bd7af2b2-45f5-4fa2-b3c6-1e2993722410'),
(6712,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-20 19:05:48',NULL,NULL,NULL,'989c48ac-8097-4823-ab4e-0f42cd2012f4'),
(6713,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:36:18',NULL,NULL,NULL,'a2054680-6da2-4984-8c2e-b86d73044d00'),
(6714,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:41:20',NULL,NULL,NULL,'2b8aab06-1e2f-4ff2-bca5-70a0f7fffa08'),
(6715,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:49:02',NULL,NULL,NULL,'8c4a5e7a-4b30-45e5-9463-60821f733f12'),
(6716,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-01 18:04:12',NULL,NULL,NULL,'b890bc8f-a582-4197-8189-732e605b06dc'),
(6717,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:49:02',NULL,NULL,NULL,'09528142-faae-4fc6-bbff-8d9740b17959'),
(6718,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:36:18',NULL,NULL,NULL,'7b8f9f59-ec9c-4f23-a90d-b2d42cf06fe6'),
(6719,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:49:02',NULL,NULL,NULL,'8451d42e-218a-45aa-9d1e-20cab9390261'),
(6720,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:49:02',NULL,NULL,NULL,'0eba225e-f8f8-4522-a9b1-b8c8316bb843'),
(6721,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-16 12:49:02',NULL,NULL,NULL,'8110b102-a30e-481c-9060-cecf918f67c8'),
(6722,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-01 18:42:04',NULL,'2026-04-01 18:42:04',NULL,'296d8af8-11d5-4c13-bb0c-b183d74aa690'),
(6723,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-01 18:42:04',NULL,'2026-04-01 18:42:04',NULL,'c4d9c19f-8bd9-426e-9484-b4a810614841'),
(6724,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-01 18:42:04',NULL,'2026-04-01 18:42:04',NULL,'3e0c7056-04be-43ea-9db1-51f13a117ed7'),
(6725,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-20 19:05:48',NULL,NULL,NULL,'f07e2f4e-0250-430a-9b9e-e50897bfa36a'),
(6726,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 18:17:05','2026-04-01 18:17:05',NULL,NULL,NULL,'de23aac2-29f4-4818-9167-4840ca1bf960'),
(6727,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 18:17:06','2026-04-01 18:17:06',NULL,NULL,NULL,'f5c4b568-681c-4c4e-97e3-9fd5c27d531d'),
(6743,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-16 12:49:02',NULL,NULL,NULL,'fa742308-72e0-493b-8554-651b08e321d4'),
(6744,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-16 12:49:02',NULL,NULL,NULL,'b9328f67-267c-4894-a380-767f178bed31'),
(6745,6712,NULL,2869,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:07','2026-04-01 18:42:07',NULL,NULL,NULL,'c6674920-6f3f-4489-ab04-8eaa5092ca97'),
(6746,6713,NULL,2870,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:20:04','2026-04-01 18:42:07',NULL,NULL,NULL,'4d5743b4-0bf0-4cf4-85ed-973ea3ee4bd7'),
(6747,6714,NULL,2871,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:25:54','2026-04-01 18:42:07',NULL,NULL,NULL,'bb83aa21-fd3b-442d-a1e5-faf7b0c00c4d'),
(6748,6715,NULL,2872,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:30:44','2026-04-01 18:42:08',NULL,NULL,NULL,'ce226a83-a4e6-4848-835f-2e2b2f882a72'),
(6749,6716,NULL,2873,8,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-01 18:42:08',NULL,NULL,NULL,'16c788c4-4335-4e5f-8937-44c59f78c822'),
(6750,6717,NULL,2874,44,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:03','2026-04-01 18:42:08',NULL,NULL,NULL,'c764fdd9-6ed5-4828-89e9-4441cb58c2db'),
(6751,6718,NULL,2875,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-01 18:42:08',NULL,NULL,NULL,'239bd6bb-6843-4ea9-8d67-fea01f477115'),
(6752,6719,NULL,2876,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-01 18:42:08',NULL,NULL,NULL,'2de671c2-766d-4f60-9517-f0beace4fdf6'),
(6753,6720,NULL,2877,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-01 18:42:08',NULL,NULL,NULL,'167e54d4-997a-4fde-9e2d-cfe17e2a90cc'),
(6754,6721,NULL,2878,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-01 18:42:08',NULL,NULL,NULL,'16b2d3ab-4abc-4758-aaa1-41be26d1ca8c'),
(6755,6743,NULL,2879,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-01 18:42:08',NULL,NULL,NULL,'05c446e8-86bc-4749-9ee7-c1b3f73e8774'),
(6756,6744,NULL,2880,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:04','2026-04-01 18:42:08',NULL,NULL,NULL,'3b82c4e1-1d93-4741-ac4c-e0d717e88f40'),
(6757,6725,NULL,2881,49,'craft\\elements\\Entry',1,0,'2026-04-01 18:04:12','2026-04-01 18:42:08',NULL,NULL,NULL,'e7707224-21cf-45ef-918f-efe5121d130a'),
(6758,6712,NULL,2882,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:12','2026-04-01 18:42:12',NULL,NULL,NULL,'1ddef695-7f39-44e0-94b5-d67b46c1b1ae'),
(6759,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-20 19:08:02',NULL,NULL,NULL,'193d5192-c34c-4a4b-9853-f7b404114579'),
(6760,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-16 13:28:51',NULL,NULL,NULL,'e836d3c7-927b-4330-9bae-aee08fb5e1e6'),
(6761,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'8d3272c8-2b49-477b-9351-23a357f96882'),
(6762,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'f9c9a2e9-35c7-4a8e-8dfc-6139414c8edb'),
(6763,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:42:39',NULL,NULL,NULL,'53140bcd-2d4d-42c8-875d-6f5a85ba89a3'),
(6764,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'ccdda3bb-5c6c-4d3f-b98d-e07a4f95f8dc'),
(6765,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'4eadaf20-d2ff-4397-b034-3266af46762a'),
(6766,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'4f8fb194-b6dd-469f-9923-dd3f96525972'),
(6767,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'b06276f9-9aa9-4cb3-885c-f228eba35e10'),
(6768,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'23245a9d-3b92-40e7-94a5-78a4eb63dc9d'),
(6769,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'70e42b69-3c68-4d4f-aa98-b1a828f1a061'),
(6770,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 19:10:02',NULL,NULL,NULL,'66230534-c7dd-49ee-94e3-24914dee1cb6'),
(6771,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-20 19:08:02',NULL,NULL,NULL,'9d52491b-9a21-4548-a3dd-e766778858f1'),
(6772,6759,NULL,2883,47,'craft\\elements\\Entry',1,0,'2026-04-01 18:43:00','2026-04-01 18:43:00',NULL,NULL,NULL,'965f6f1d-20e1-44d9-9ee0-567a9c7b0f89'),
(6773,6760,NULL,2884,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'30063bf9-d95b-44b4-b93a-ae5bd356c27a'),
(6774,6761,NULL,2885,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'aaacd241-5554-4a9b-a40e-5a055ca2b8c7'),
(6775,6762,NULL,2886,42,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'cc358311-ebbd-4cac-924a-fb98321e7537'),
(6776,6763,NULL,2887,8,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'6f07a10d-84fc-4e60-896b-97617f6ae6d3'),
(6777,6764,NULL,2888,44,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'ee04b724-fdf7-4c5f-8f64-d45d8e300128'),
(6778,6765,NULL,2889,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'0b8b5416-3ffd-4807-84bf-2554e96522a7'),
(6779,6766,NULL,2890,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'da7a5b1b-bb5d-48cb-9560-cb2c184e450b'),
(6780,6767,NULL,2891,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'d025f97d-4f5a-46e0-8ba2-a6803ff934c1'),
(6781,6768,NULL,2892,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'e463fbf3-5982-47d2-8cfc-030591c5fe84'),
(6782,6769,NULL,2893,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'d554176c-ec01-4a62-b430-c9d7813d1077'),
(6783,6770,NULL,2894,35,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'85417f6d-a64e-4429-9196-a93caac46cea'),
(6784,6771,NULL,2895,49,'craft\\elements\\Entry',1,0,'2026-04-01 18:42:39','2026-04-01 18:43:00',NULL,NULL,NULL,'e2e09442-9dc6-4415-a8b4-41f81cd170bb'),
(6785,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 18:46:33','2026-04-01 18:46:33',NULL,NULL,NULL,'92cac22d-1b0c-4be3-be27-b828cfe3dc5a'),
(6786,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 18:46:36','2026-04-01 18:46:36',NULL,NULL,NULL,'82c523af-2f2b-4b69-847f-207a2dc67507'),
(6787,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 18:46:41','2026-04-01 18:46:41',NULL,NULL,NULL,'674c944c-f798-4241-b6df-0625387c4349'),
(6804,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'1f96a370-8daf-4625-bb80-9d4ab5a5f066'),
(6805,6759,NULL,2896,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'59dd78af-5bff-49b7-abc9-9f3fc6e1bcdb'),
(6806,6760,NULL,2897,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'82645cef-8238-438e-81e8-dc0cd1979f99'),
(6807,6761,NULL,2898,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'7765cd8e-277d-428f-9f58-998318dae1e7'),
(6808,6762,NULL,2899,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'14ce21ad-6e73-4724-8385-b5f3b976529b'),
(6809,6764,NULL,2900,44,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'9227b821-906b-4fe0-9259-c52d695e2597'),
(6810,6765,NULL,2901,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'8890f9a7-7299-4d99-be26-43f77ae60caf'),
(6811,6766,NULL,2902,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'3acebab6-cc65-4124-8cf3-ea104d995ca1'),
(6812,6767,NULL,2903,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'c671848f-ecdc-4f02-ba10-13882c928882'),
(6813,6768,NULL,2904,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'1f958bc8-78f4-4915-86ef-660ad72ebb63'),
(6814,6769,NULL,2905,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'fafbdbfa-d6a4-4dcc-bde3-05fba3a29ede'),
(6815,6770,NULL,2906,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'c085e307-5857-48ae-a724-b257221bc589'),
(6816,6804,NULL,2907,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:10:02','2026-04-01 19:10:02',NULL,NULL,NULL,'396cfe8d-d1d9-42db-bd23-f7264faabae7'),
(6817,6759,NULL,2908,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:18:01','2026-04-01 19:18:01',NULL,NULL,NULL,'666d2652-e002-4fe6-ad45-8d6e8b4a2355'),
(6818,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-20 19:13:53',NULL,NULL,NULL,'c73f3d32-2018-4e27-9305-f06f8d206778'),
(6819,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-16 13:51:08',NULL,NULL,NULL,'2e7c2e53-a85e-4f58-a6ba-8c9c3e936753'),
(6820,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-16 13:51:08',NULL,NULL,NULL,'f1df1b31-e3ff-48a2-bf57-8e25dcf74823'),
(6821,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-16 13:51:08',NULL,NULL,NULL,'bfeb9c9e-944e-499c-9f22-1c66932b88e9'),
(6822,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-01 19:19:05',NULL,NULL,NULL,'ba0bc5b5-105d-4786-ab98-b97216678b81'),
(6823,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-16 13:51:08',NULL,NULL,NULL,'0ef58441-15c8-4ba6-b9b9-74ff36ee3b74'),
(6824,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-16 13:51:08',NULL,NULL,NULL,'6a545a24-00d0-4eb1-9961-42acca4a245d'),
(6825,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-16 13:51:08',NULL,NULL,NULL,'4545c6b2-a62f-4ec5-9f4a-53f53f94387b'),
(6830,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-20 19:13:53',NULL,NULL,NULL,'569530f9-4d09-43e8-bfc2-c4c15cedb5c0'),
(6831,6818,NULL,2909,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:30','2026-04-01 19:19:31',NULL,NULL,NULL,'d9c30152-b09c-4091-a779-c8d1709471fe'),
(6832,6819,NULL,2910,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-01 19:19:31',NULL,NULL,NULL,'0e26fefd-e364-4326-8cee-f3d05dac92a6'),
(6833,6820,NULL,2911,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-01 19:19:31',NULL,NULL,NULL,'483bde93-6e3a-4c73-a110-01d52b967577'),
(6834,6821,NULL,2912,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-01 19:19:31',NULL,NULL,NULL,'84423d5f-0989-435e-8695-b9c1be0d5ace'),
(6835,6822,NULL,2913,8,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:05','2026-04-01 19:19:31',NULL,NULL,NULL,'e777bd89-82f6-4282-b075-400ffaa6ccd3'),
(6836,6823,NULL,2914,44,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-01 19:19:31',NULL,NULL,NULL,'0ff6230a-1b62-426a-aaab-b97c02205caa'),
(6837,6824,NULL,2915,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-01 19:19:31',NULL,NULL,NULL,'9a962c9c-3eb6-4924-baee-f5efb8000ab9'),
(6838,6825,NULL,2916,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-01 19:19:31',NULL,NULL,NULL,'4a1ddc25-44eb-42d1-ac3e-681f1a049260'),
(6843,6830,NULL,2921,49,'craft\\elements\\Entry',1,0,'2026-04-01 19:19:06','2026-04-01 19:19:31',NULL,NULL,NULL,'e8369145-1c7c-4232-816f-e431aa3b35cd'),
(6845,6818,NULL,2922,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:22:42','2026-04-01 19:22:42',NULL,NULL,NULL,'52b17535-bdb8-441d-ad1a-565043757b90'),
(6846,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 19:24:02','2026-04-01 19:24:02',NULL,NULL,NULL,'cd4e33e7-589f-48ee-af6f-a1230a93075b'),
(6847,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 19:24:04','2026-04-01 19:24:04',NULL,NULL,NULL,'a8b83329-32f1-4400-8b39-a09cef2ed02a'),
(6848,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 19:24:06','2026-04-01 19:24:06',NULL,NULL,NULL,'682615db-ed8d-48db-891a-e7a373daac31'),
(6849,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-01 19:24:14','2026-04-01 19:24:14',NULL,NULL,NULL,'4c52b5d9-2c9f-46a1-8ad9-2dd683767616'),
(6864,6818,NULL,2923,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'2212eee3-90a4-4b32-9868-c8ff960a9a4a'),
(6865,6819,NULL,2924,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'05acf08b-9862-4a9e-8b57-6ab8b038b7e1'),
(6866,6820,NULL,2925,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'c687ad84-2481-46e4-8103-8228a0d9a220'),
(6867,6821,NULL,2926,42,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'53adf954-2dfc-4da0-8dc8-b07ac91d797f'),
(6868,6823,NULL,2927,44,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'e55bc78d-5dba-41f1-a92c-55b50eacd012'),
(6869,6824,NULL,2928,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'cfc274c4-189c-4f2c-ab31-81effae9c9fe'),
(6870,6825,NULL,2929,35,'craft\\elements\\Entry',1,0,'2026-04-01 19:44:58','2026-04-01 19:44:58',NULL,NULL,NULL,'5c3d5899-c6ad-4ed9-82b3-1da32e4f4ad0'),
(6875,6818,NULL,2934,47,'craft\\elements\\Entry',1,0,'2026-04-01 19:45:02','2026-04-01 19:45:02',NULL,NULL,NULL,'2955f8ae-ff60-4118-907c-48323a7c122c'),
(6878,912,NULL,2935,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:42:06','2026-04-02 08:42:06',NULL,NULL,NULL,'24e65f9d-18fc-4c6d-9392-6b308c165db0'),
(6879,1367,NULL,2936,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:42:06','2026-04-02 08:42:06',NULL,NULL,NULL,'4d78a19e-18f1-4298-9744-bc47f28b42c1'),
(6882,912,NULL,2937,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:42:34','2026-04-02 08:42:34',NULL,NULL,NULL,'434912c2-14d5-4067-a09e-fcaf5646ed3d'),
(6883,1367,NULL,2938,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:42:34','2026-04-02 08:42:34',NULL,NULL,NULL,'fdbc2398-946c-44e8-b649-a16bf2ee909a'),
(6892,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:49:29','2026-04-03 14:09:43',NULL,NULL,NULL,'fafd45ee-2a8e-409f-b32e-5cc4b5e1ca7c'),
(6893,912,NULL,2939,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:49:29','2026-04-02 08:49:29',NULL,NULL,NULL,'0bfc76a9-b354-44f7-a9fa-95186f4d58b1'),
(6894,1367,NULL,2940,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:49:29','2026-04-02 08:49:29',NULL,NULL,NULL,'a1ac476e-4175-4258-a7aa-afe68a71508e'),
(6895,5178,NULL,2941,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:49:29','2026-04-02 08:49:29',NULL,NULL,NULL,'8b35a34b-31a9-451d-b7ca-0024d227c1e9'),
(6896,6892,NULL,2942,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:49:29','2026-04-02 08:49:29',NULL,NULL,NULL,'60bab30d-f69a-4f14-868f-860b742b76e5'),
(6897,912,NULL,2943,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:49:31','2026-04-02 08:49:31',NULL,NULL,NULL,'af6d87dc-7c3b-4382-acca-d7fa4ed147a9'),
(6900,912,NULL,2944,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:51:27','2026-04-02 08:51:27',NULL,NULL,NULL,'47613fd5-e513-403d-83f1-8f85cae4d593'),
(6901,5178,NULL,2945,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:51:27','2026-04-02 08:51:27',NULL,NULL,NULL,'53b4cbeb-110e-463c-a31b-0c0168557a89'),
(6904,912,NULL,2946,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:52:45','2026-04-02 08:52:45',NULL,NULL,NULL,'fcb7fe4b-2252-41e1-a02e-c753c3688803'),
(6905,5178,NULL,2947,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:52:45','2026-04-02 08:52:45',NULL,NULL,NULL,'e174422d-47d1-45e9-86d8-7077f3678694'),
(6908,912,NULL,2948,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:53:13','2026-04-02 08:53:13',NULL,NULL,NULL,'88a3d663-33f8-4f12-a8e1-c26ebcd8e737'),
(6909,5178,NULL,2949,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:53:13','2026-04-02 08:53:13',NULL,NULL,NULL,'8c7003cd-d242-4498-8e21-9fd6e87a02e0'),
(6912,912,NULL,2950,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:53:36','2026-04-02 08:53:37',NULL,NULL,NULL,'09fa2669-f70d-4ab2-8d36-baacbee40f2b'),
(6913,6892,NULL,2951,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:53:37','2026-04-02 08:53:37',NULL,NULL,NULL,'aa02f95d-5a63-494b-85f5-806bfa1cf66c'),
(6916,912,NULL,2952,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:54:45','2026-04-02 08:54:45',NULL,NULL,NULL,'0747d4a1-135d-4572-b2a2-883b5a12a8db'),
(6917,1367,NULL,2953,42,'craft\\elements\\Entry',1,0,'2026-04-02 08:54:45','2026-04-02 08:54:45',NULL,NULL,NULL,'f2d44adb-65c8-4da3-be6a-17b6036a1e95'),
(6919,6232,NULL,2954,45,'craft\\elements\\Entry',1,0,'2026-04-02 08:56:55','2026-04-02 08:56:55',NULL,NULL,NULL,'efa9962d-6ac5-4897-99af-c636e1dabcba'),
(6922,887,NULL,2955,7,'craft\\elements\\Entry',1,0,'2026-04-02 08:57:51','2026-04-02 08:57:51',NULL,NULL,NULL,'1b2e16ff-ec69-4182-9eaa-997814b60fa6'),
(6923,903,NULL,2956,34,'craft\\elements\\Entry',1,0,'2026-04-02 08:57:51','2026-04-02 08:57:51',NULL,'2026-04-16 12:11:07',NULL,'a8685282-a2ef-4e9c-8702-1ffd4fb89803'),
(6926,887,NULL,2957,7,'craft\\elements\\Entry',1,0,'2026-04-02 09:00:44','2026-04-02 09:00:44',NULL,NULL,NULL,'aa0b5f7b-8a05-4699-9734-89a3f4775a91'),
(6927,903,NULL,2958,34,'craft\\elements\\Entry',1,0,'2026-04-02 09:00:44','2026-04-02 09:00:45',NULL,'2026-04-16 12:11:07',NULL,'ca95c045-4664-4389-8c4d-f932e83d47da'),
(6929,4203,NULL,2959,6,'craft\\elements\\Entry',1,0,'2026-04-02 09:10:40','2026-04-02 09:10:40',NULL,NULL,NULL,'f2ebd820-a65f-4c15-a581-7158b9c6bd4c'),
(6931,NULL,2518,NULL,20,'craft\\elements\\Entry',1,0,'2026-04-02 09:16:49','2026-04-02 09:17:39',NULL,'2026-04-02 09:17:39',NULL,'f2556a78-ccf1-4fd4-8292-b3bd8ba9f9dc'),
(6932,NULL,2519,NULL,30,'craft\\elements\\Entry',1,0,'2026-04-02 09:17:00','2026-04-02 09:17:32',NULL,NULL,NULL,'1dc2b13d-8b09-4957-9d22-6bc0fd613e3c'),
(6933,NULL,2520,NULL,21,'craft\\elements\\Entry',1,0,'2026-04-02 09:17:07','2026-04-02 09:17:30',NULL,NULL,NULL,'d19a0110-7285-4ee9-9016-4284b0c18e50'),
(6934,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-20 19:03:56',NULL,NULL,NULL,'12c00acf-d35e-4e55-9cb9-868dc3b6c2c7'),
(6935,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:56:14',NULL,NULL,NULL,'6bf44b04-dab9-452d-8c37-c766934dc1b9'),
(6936,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:56:14',NULL,NULL,NULL,'61532f12-0764-4a51-9077-f3fc86c6f162'),
(6937,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-07 09:18:17',NULL,NULL,NULL,'69de0e8e-4aed-4903-90b3-8110ddc710e4'),
(6938,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:33:52',NULL,NULL,NULL,'d88ba4cc-7b8f-444b-ad27-e08cd23fe3c2'),
(6939,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-13 08:55:16',NULL,NULL,NULL,'b8dfdef2-c657-44c5-9326-bcbdc17338d5'),
(6944,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-13 08:55:16',NULL,NULL,NULL,'9fba9022-9396-4d1f-9735-70be7ebb7e88'),
(6945,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-13 08:55:16',NULL,NULL,NULL,'a6453ed3-79b9-494d-bd57-6c5cb3ac6e3f'),
(6946,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-20 19:03:56',NULL,NULL,NULL,'83d692b7-87e7-4666-a139-486a36916c0e'),
(6947,6934,NULL,2960,47,'craft\\elements\\Entry',1,0,'2026-04-03 10:34:12','2026-04-03 10:34:12',NULL,NULL,NULL,'7bd7b7fa-05d3-4fd2-bd93-ef08e69197dd'),
(6948,6935,NULL,2961,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'48cf5402-bda4-42db-a066-42745eff3046'),
(6949,6936,NULL,2962,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'8bc92a6b-1487-49b7-84f9-8f69b55c06da'),
(6950,6937,NULL,2963,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'383e730b-2b58-46ed-8b59-dd4162f72cfc'),
(6951,6938,NULL,2964,8,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'de7bc81d-5e56-4333-a403-836c59da0aa2'),
(6952,6939,NULL,2965,44,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'6a906e6f-16a3-4077-ba5f-4ee513cf1b6f'),
(6957,6944,NULL,2970,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'e2ff2742-f424-4455-8047-2b880961cae1'),
(6958,6945,NULL,2971,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'18b2f266-42e3-4164-8841-06919c9f8d15'),
(6959,6946,NULL,2972,49,'craft\\elements\\Entry',1,0,'2026-04-03 10:33:52','2026-04-03 10:34:12',NULL,NULL,NULL,'1ff68a97-94db-4060-a0f3-44c881105971'),
(6960,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:34:36','2026-04-03 10:34:36',NULL,NULL,NULL,'a2eb4a7e-b434-4496-be65-bd98eb49d53e'),
(6961,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:34:48','2026-04-03 10:34:48',NULL,NULL,NULL,'7b2fb4c8-93d1-4bb5-a5c3-3212d05201c8'),
(6962,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:34:52','2026-04-03 10:34:52',NULL,NULL,NULL,'6535bc79-65b0-4a29-ab80-47f78b261f72'),
(6963,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:35:03','2026-04-03 10:35:03',NULL,NULL,NULL,'c610bf4e-7f0a-40c8-a6aa-5b8a890c8025'),
(6979,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-13 08:55:16',NULL,NULL,NULL,'c5cedec0-91cb-4089-9627-696b5a77310f'),
(6980,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-13 08:55:16',NULL,NULL,NULL,'0288205b-28f9-4d7d-900e-21d5951db536'),
(6981,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-13 08:55:16',NULL,NULL,NULL,'9199736a-4564-445d-865e-cf9fea40be7b'),
(6982,6934,NULL,2973,47,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:13','2026-04-03 10:56:14',NULL,NULL,NULL,'d5df2ce5-c484-4e81-bb2a-2a90dc5f6609'),
(6983,6935,NULL,2974,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'babc5cc6-daf2-46d5-aa21-91af282c2d48'),
(6984,6936,NULL,2975,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'8934b00e-1307-4a2f-a36d-1b69cffdc252'),
(6985,6937,NULL,2976,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'797fb2a7-a11a-4ee0-801f-34964a11263a'),
(6986,6939,NULL,2977,44,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'b9139fbc-6ad5-4783-af10-59ba15e25c48'),
(6991,6944,NULL,2982,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'26c945c5-5fa9-439b-9329-d4cb7151a9a8'),
(6992,6945,NULL,2983,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'e164c15e-4803-4de8-9153-8a23071573a6'),
(6993,6979,NULL,2984,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'fb71a859-7a39-4f71-a7af-0b86e57d1403'),
(6994,6980,NULL,2985,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'58410d78-4f0c-4a05-b744-271dc5747ec9'),
(6995,6981,NULL,2986,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:14','2026-04-03 10:56:14',NULL,NULL,NULL,'5d6371d9-e335-4d3a-8bfd-ebf37f9af1a1'),
(6996,6934,NULL,2987,47,'craft\\elements\\Entry',1,0,'2026-04-03 10:56:18','2026-04-03 10:56:18',NULL,NULL,NULL,'9823136c-1ccc-4db9-8d24-a2863623a095'),
(6997,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-20 19:04:59',NULL,NULL,NULL,'6dedd19d-95f7-4568-8d09-bdbdad1e3da9'),
(6998,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-07 19:20:04',NULL,NULL,NULL,'60f48139-ede7-47c9-aeaa-f7e452be0fb2'),
(6999,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-07 19:20:04',NULL,NULL,NULL,'a8274e53-824f-4d3d-bf39-014b26c65a63'),
(7000,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-16 13:55:16',NULL,NULL,NULL,'db09e683-9013-4c34-9516-d0e62fad1bc3'),
(7001,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:57:41',NULL,NULL,NULL,'cd72e550-7dbf-496d-95ef-8178fe17658d'),
(7002,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-16 13:55:58',NULL,NULL,NULL,'d3d09f16-a333-4714-b576-b866de9e415b'),
(7004,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:10',NULL,'2026-04-03 11:17:10',NULL,'a32e2e24-6244-4e67-863c-3716dbce2d86'),
(7005,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:10',NULL,'2026-04-03 11:17:10',NULL,'5afdbf06-785d-4f5e-9fc8-3c8bae171289'),
(7006,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:10',NULL,'2026-04-03 11:17:10',NULL,'f96073a4-1c94-4ad6-b563-3b275bd3f46b'),
(7007,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:11',NULL,'2026-04-03 11:17:11',NULL,'d84bc89a-6751-40fc-b16a-ddeef667d1a9'),
(7008,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:11',NULL,'2026-04-03 11:17:11',NULL,'631cfb43-cddb-48bd-8658-e6ae3b7cd2a0'),
(7009,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:11',NULL,'2026-04-03 11:17:11',NULL,'11311e90-52b8-472b-85b1-4cd9c113f5c4'),
(7010,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:11',NULL,'2026-04-03 11:17:11',NULL,'d1e28082-b49d-4a6d-b2e5-74523604523b'),
(7011,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 11:17:11',NULL,'2026-04-03 11:17:11',NULL,'9bf520e6-9a32-4051-9f47-bb5d4202b5c5'),
(7012,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-20 19:04:59',NULL,NULL,NULL,'7d921c9d-f6d9-42e1-a5e9-289b70f38707'),
(7013,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:58:03','2026-04-03 10:58:03',NULL,NULL,NULL,'3c7ac52f-6365-4e9d-8706-09ca9bded5e8'),
(7014,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:58:12','2026-04-03 10:58:12',NULL,NULL,NULL,'b411f83a-5d79-49b4-97e2-13a339eecb52'),
(7015,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:58:17','2026-04-03 10:58:17',NULL,NULL,NULL,'fb010fb8-8152-413c-a7f9-49ed50f70413'),
(7016,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 10:58:20','2026-04-03 10:58:20',NULL,NULL,NULL,'85c63a64-d9cc-48f8-ac5e-7db170ab2a43'),
(7017,6997,NULL,2988,47,'craft\\elements\\Entry',1,0,'2026-04-03 10:58:41','2026-04-03 10:58:41',NULL,NULL,NULL,'f3e6e289-7567-42d9-be86-b5c526dafbe4'),
(7018,6998,NULL,2989,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,NULL,NULL,'4b5ad745-2641-4b22-bb04-afb13e398237'),
(7019,6999,NULL,2990,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,NULL,NULL,'2eae420c-d486-467b-bb34-cc5c411285b1'),
(7020,7000,NULL,2991,42,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,NULL,NULL,'6a80e0bd-b882-4fbf-aa65-ec8e1b6cb517'),
(7021,7001,NULL,2992,8,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,NULL,NULL,'a1e6f516-c32c-4c2f-9dc8-a724d0d5e470'),
(7022,7002,NULL,2993,44,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,NULL,NULL,'1b1d51e2-2474-4a8b-ac28-80494c0472a3'),
(7024,7004,NULL,2995,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:10',NULL,'d8a250fb-68c2-42f4-af5b-3b7ba6eae9e4'),
(7025,7005,NULL,2996,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:10',NULL,'31aeb1a3-8671-49b5-9ccb-cf7e057a9826'),
(7026,7006,NULL,2997,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:10',NULL,'9f724bca-215a-4cb3-883d-71bf87637fa5'),
(7027,7007,NULL,2998,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:11',NULL,'7502feb5-5803-459b-add4-097633ca177a'),
(7028,7008,NULL,2999,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:11',NULL,'9330da25-9a96-4b66-a3d9-f8865e00f14b'),
(7029,7009,NULL,3000,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:11',NULL,'8b877551-f648-4691-9a7f-3eb11dd50204'),
(7030,7010,NULL,3001,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:11',NULL,'30d43a2d-7d9a-490c-9e92-e1722d592961'),
(7031,7011,NULL,3002,35,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,'2026-04-03 11:17:11',NULL,'d8c66859-b0c6-4522-ad48-8e88d5e5fdea'),
(7032,7012,NULL,3003,49,'craft\\elements\\Entry',1,0,'2026-04-03 10:57:41','2026-04-03 10:58:41',NULL,NULL,NULL,'23fa5017-22be-4943-af4f-086ccb2e6e98'),
(7053,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-13 12:26:24',NULL,NULL,NULL,'5e113be2-4134-4714-b339-388afb18a459'),
(7058,6997,NULL,3004,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-03 11:17:11',NULL,NULL,NULL,'a25892fb-145e-4760-a00c-2c978c9f4541'),
(7059,6998,NULL,3005,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-03 11:17:11',NULL,NULL,NULL,'52bcfb9c-7a02-44fa-9f2d-f088b3433b92'),
(7060,6999,NULL,3006,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-03 11:17:11',NULL,NULL,NULL,'cc08e02a-51eb-45bc-bc8d-67ce9de2cd64'),
(7061,7000,NULL,3007,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-03 11:17:11',NULL,NULL,NULL,'eead52c9-eb6b-4ba8-bf89-fcdf7833bde6'),
(7062,7002,NULL,3008,44,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-03 11:17:11',NULL,NULL,NULL,'c58d673f-5bbf-42a8-8b1d-540d5b4a6788'),
(7068,7053,NULL,3014,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:10','2026-04-03 11:17:11',NULL,NULL,NULL,'fe27ae9f-131f-427c-9d25-885816f9f4cf'),
(7073,6997,NULL,3019,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:17:26','2026-04-03 11:17:26',NULL,NULL,NULL,'2ea520f6-ec66-4555-b99c-e1cffa950a14'),
(7074,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-20 19:05:12',NULL,NULL,NULL,'854c14ff-17c3-4770-a205-65be0feeae6f'),
(7075,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-16 14:47:36',NULL,NULL,NULL,'2a6a494a-f44a-4509-a678-f2c8cab97d8e'),
(7076,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-16 14:47:36',NULL,NULL,NULL,'0efe8916-992d-45af-9b8e-0e0c9db8a325'),
(7077,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-16 14:47:36',NULL,NULL,NULL,'14f76114-73f9-4d7b-af83-69ae34b51ad9'),
(7078,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:25:38',NULL,NULL,NULL,'87482c22-b004-4ba8-83d1-47695d330685'),
(7079,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-16 14:47:36',NULL,NULL,NULL,'9494a966-5367-41b1-8dc9-35caca3a0f6d'),
(7080,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'6f7ca967-2408-47af-93bb-d9fff6f6400f'),
(7081,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'8dd43671-367b-4de2-ac70-8b94903592c1'),
(7082,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'6ce6b518-5fb3-44cc-a870-de38a7262bd8'),
(7083,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'bc33f839-0a95-46a8-9ac6-189576b97cf2'),
(7084,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'394527b9-815d-4c9d-b655-df235de3ac6a'),
(7085,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'cabc65e4-ca57-4f6e-8802-3fadeecae9eb'),
(7086,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'ad0e7dc3-e585-42ba-8550-085634e30391'),
(7087,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'aeea0f69-49a4-47dc-8d85-2729e123f639'),
(7088,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 12:19:57',NULL,'2026-04-03 12:19:57',NULL,'441cb162-76f7-47da-b327-749a54b56bb7'),
(7089,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-20 19:05:12',NULL,NULL,NULL,'2410cbe0-d932-413f-bf46-69a26f42f6bc'),
(7091,3086,NULL,3020,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:27:01','2026-04-03 11:27:01',NULL,NULL,NULL,'133420b2-fe04-4d04-8300-eb94d22f9693'),
(7093,5108,NULL,3021,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:27:18','2026-04-03 11:27:18',NULL,NULL,NULL,'0147c029-fb87-4601-9b03-392617d90999'),
(7094,7074,NULL,3022,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:52:20','2026-04-03 11:52:20',NULL,NULL,NULL,'9d3aed59-3456-4b22-bf51-e0a06062b5d7'),
(7095,7075,NULL,3023,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,NULL,NULL,'f352f7a3-d9bb-4c9c-a215-0abd8a201020'),
(7096,7076,NULL,3024,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,NULL,NULL,'d990e82b-c1ca-4f04-856e-1edd42330056'),
(7097,7077,NULL,3025,42,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,NULL,NULL,'85603650-e4e9-40ef-8ef6-27b42269cfa8'),
(7098,7078,NULL,3026,8,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,NULL,NULL,'49b85b0b-9c25-4398-8d3d-0211b7f516a8'),
(7099,7079,NULL,3027,44,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,NULL,NULL,'b7d1192a-8f01-404a-b2c3-e1613b88776e'),
(7100,7080,NULL,3028,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'fc86b9d1-48dd-48c7-90ca-9bbcfbed93fc'),
(7101,7081,NULL,3029,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'81f40e34-c0bb-45a7-9f32-67bffed4a563'),
(7102,7082,NULL,3030,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'f900d0d9-752f-49be-b151-e90626b5dd70'),
(7103,7083,NULL,3031,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'31f6500e-a79e-4b4f-a4a5-37b40943bbc9'),
(7104,7084,NULL,3032,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'6bab75a5-2f42-4992-ba1a-62882f59d843'),
(7105,7085,NULL,3033,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'ef086412-df2d-443f-b24e-aa0699e79b8c'),
(7106,7086,NULL,3034,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'58c42fdb-b618-4d15-bf0b-0ac37698007d'),
(7107,7087,NULL,3035,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'22cbe964-24d4-43ca-93ef-79d17832de1f'),
(7108,7088,NULL,3036,35,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,'2026-04-03 12:19:57',NULL,'431394ca-f99e-4996-940b-6ae854584626'),
(7109,7089,NULL,3037,49,'craft\\elements\\Entry',1,0,'2026-04-03 11:25:38','2026-04-03 11:52:20',NULL,NULL,NULL,'c61f78df-2e61-4fbc-9b4b-7e5af579e8f9'),
(7110,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 11:54:30','2026-04-03 11:54:30',NULL,NULL,NULL,'c73a4664-f013-48f0-9222-0c8e5c21268f'),
(7112,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 11:54:59','2026-04-03 11:54:59',NULL,NULL,NULL,'2dd0aee9-d7ab-4449-a1b8-0c9627350148'),
(7113,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 11:55:00','2026-04-03 11:55:00',NULL,NULL,NULL,'3ce857d6-f83b-4897-b2dd-23b2cdcea326'),
(7114,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-03 11:55:01','2026-04-03 11:55:01',NULL,NULL,NULL,'d1692fb7-3796-402d-8c9b-a9fa1175f2d6'),
(7115,7074,NULL,3038,47,'craft\\elements\\Entry',1,0,'2026-04-03 11:55:15','2026-04-03 11:55:15',NULL,NULL,NULL,'f8292f63-b9d5-4034-b20c-23089e6923df'),
(7131,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-16 14:47:36',NULL,NULL,NULL,'37f05475-9e9d-4f9a-ad5e-0e27ca1319c1'),
(7134,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-16 14:47:37',NULL,NULL,NULL,'d7e8ebb7-0d8c-40ac-aba5-ec9d983b7da7'),
(7135,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-16 14:47:37',NULL,NULL,NULL,'b515c0d7-5df7-4497-b51d-e419c8fd4060'),
(7136,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-16 14:47:37',NULL,NULL,NULL,'69e3bafe-7090-4266-8650-006e9b8cbcfe'),
(7137,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-16 14:47:37',NULL,NULL,NULL,'209dd19f-14c6-4f22-919c-1653c25fd6dc'),
(7139,7074,NULL,3039,47,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:57',NULL,NULL,NULL,'61a3c766-e485-4e94-9b6d-792fb2a0b34b'),
(7140,7075,NULL,3040,42,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'fc05882d-500f-40b4-b8a0-b7e1afd38a8f'),
(7141,7076,NULL,3041,42,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'791ad8ff-3fef-43af-b4fa-9bdbea32b2ca'),
(7142,7077,NULL,3042,42,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'a05e34de-6d81-4852-89b2-ede40d26bdd9'),
(7143,7079,NULL,3043,44,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'4fd733dc-f7df-4926-b4d0-34f094857afd'),
(7144,7131,NULL,3044,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'d9c50eb5-0fe9-47ff-bff6-1c9a7a8a4e5d'),
(7147,7134,NULL,3047,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'4f2ef106-fe28-400b-960c-b7559885a9ff'),
(7148,7135,NULL,3048,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'805fb2e9-9a08-4846-a112-68bb9572c409'),
(7149,7136,NULL,3049,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'20ce0812-8092-4f7e-ada9-4c85cf7a5122'),
(7150,7137,NULL,3050,35,'craft\\elements\\Entry',1,0,'2026-04-03 12:19:57','2026-04-03 12:19:58',NULL,NULL,NULL,'d2755c61-26dc-4bf8-a820-fad1bc4f84ce'),
(7152,7074,NULL,3052,47,'craft\\elements\\Entry',1,0,'2026-04-03 12:20:01','2026-04-03 12:20:01',NULL,NULL,NULL,'b03ce97b-39f6-42d4-8cc9-0ea87bf18de6'),
(7153,3793,NULL,3053,6,'craft\\elements\\Entry',0,0,'2026-04-03 12:20:16','2026-04-03 12:20:16',NULL,'2026-04-15 17:33:07',NULL,'8168e43d-7b58-4d35-b3b7-d14b6e40774c'),
(7154,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:24','2026-04-20 19:05:48',NULL,NULL,NULL,'9ad3d01e-1de2-4261-b721-153f66f9967b'),
(7155,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:24','2026-04-20 19:08:02',NULL,NULL,NULL,'a66c3fa9-3605-4a7e-9ec8-6c462992cd56'),
(7156,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:24','2026-04-20 19:05:34',NULL,NULL,NULL,'f70ad682-f667-4256-8ece-6fa896b355a6'),
(7157,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:41','2026-04-20 19:14:16',NULL,NULL,NULL,'9a1674a0-05b8-4e62-ab22-516745f05ca0'),
(7158,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:41','2026-04-20 19:05:12',NULL,NULL,NULL,'92ed2d50-7010-4009-82cd-d195ee4b3b89'),
(7159,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:41','2026-04-20 19:04:59',NULL,NULL,NULL,'69d8e5ed-fc40-4f37-b21b-b3fa65bb2e04'),
(7160,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:41','2026-04-20 19:13:53',NULL,NULL,NULL,'873f1196-2262-4d31-bfad-ec9ff9eb4697'),
(7161,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:41','2026-04-20 19:03:56',NULL,NULL,NULL,'354183b9-bddb-401f-83bf-1c4f8f04369c'),
(7162,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-04-03 12:21:41','2026-04-20 19:09:20',NULL,NULL,NULL,'bd23b8c2-a1d0-4e02-80a1-eea3e1aaf5c9'),
(7164,912,NULL,3054,7,'craft\\elements\\Entry',1,0,'2026-04-03 14:05:01','2026-04-03 14:05:01',NULL,NULL,NULL,'4281c322-442b-49e1-9e79-6cba8dd4da6a'),
(7165,1367,NULL,3055,42,'craft\\elements\\Entry',1,0,'2026-04-03 14:05:01','2026-04-03 14:05:01',NULL,NULL,NULL,'faeebecb-6c47-4508-9d2a-2e2af5e3ee76'),
(7168,38,NULL,3056,7,'craft\\elements\\Entry',1,0,'2026-04-03 14:06:15','2026-04-03 14:06:16',NULL,NULL,NULL,'b36645a8-0ffa-473b-a873-880724bf86a3'),
(7169,761,NULL,3057,32,'craft\\elements\\Entry',1,0,'2026-04-03 14:06:15','2026-04-03 14:06:16',NULL,NULL,NULL,'8f41a7a8-3c56-42f7-b886-fa311754a19b'),
(7172,912,NULL,3058,7,'craft\\elements\\Entry',1,0,'2026-04-03 14:06:48','2026-04-03 14:06:48',NULL,NULL,NULL,'ebec8769-f60b-4225-ae3e-8e726c076013'),
(7173,1367,NULL,3059,42,'craft\\elements\\Entry',1,0,'2026-04-03 14:06:48','2026-04-03 14:06:48',NULL,NULL,NULL,'f545de0f-a32b-4fc1-b6d7-d13970eec205'),
(7176,912,NULL,3060,7,'craft\\elements\\Entry',1,0,'2026-04-03 14:07:22','2026-04-03 14:07:22',NULL,NULL,NULL,'c32d5150-ef58-45d9-8482-6d5951931f93'),
(7177,1367,NULL,3061,42,'craft\\elements\\Entry',1,0,'2026-04-03 14:07:22','2026-04-03 14:07:22',NULL,NULL,NULL,'513135bc-f4ca-4951-bfd9-05bbab37b10d'),
(7181,912,NULL,3062,7,'craft\\elements\\Entry',1,0,'2026-04-03 14:09:43','2026-04-03 14:09:43',NULL,NULL,NULL,'a3be0446-94ea-440e-88ad-58418fb64c5b'),
(7182,5178,NULL,3063,42,'craft\\elements\\Entry',1,0,'2026-04-03 14:09:43','2026-04-03 14:09:43',NULL,NULL,NULL,'f6fcdb4b-ca62-4955-abdc-f602e09b1860'),
(7183,6892,NULL,3064,42,'craft\\elements\\Entry',1,0,'2026-04-03 14:09:43','2026-04-03 14:09:43',NULL,NULL,NULL,'68269b3b-dfbb-405f-aaf1-3d742767e3d1'),
(7186,912,NULL,3065,7,'craft\\elements\\Entry',1,0,'2026-04-03 14:10:18','2026-04-03 14:10:18',NULL,NULL,NULL,'913bd28e-7e37-41b6-b52e-2da4a610cea4'),
(7187,1367,NULL,3066,42,'craft\\elements\\Entry',1,0,'2026-04-03 14:10:18','2026-04-03 14:10:18',NULL,NULL,NULL,'fe819dbb-5de9-4255-aa90-5a0c9f36c648'),
(7190,NULL,NULL,NULL,53,'craft\\elements\\Entry',1,0,'2026-04-06 08:35:57','2026-04-06 09:29:37',NULL,'2026-04-06 09:29:37',NULL,'e171121d-a487-4e1c-b2ef-fc7bbf45b657'),
(7191,912,NULL,3067,7,'craft\\elements\\Entry',1,0,'2026-04-06 08:35:56','2026-04-06 08:35:57',NULL,NULL,NULL,'46980ef0-cfb1-4318-8829-0adf1ddcaee8'),
(7192,7190,NULL,3068,53,'craft\\elements\\Entry',1,0,'2026-04-06 08:35:57','2026-04-06 08:35:57',NULL,'2026-04-06 09:29:37',NULL,'e7eb72e7-88d1-4dc8-ae04-0c1245e1775d'),
(7195,912,NULL,3069,7,'craft\\elements\\Entry',1,0,'2026-04-06 09:02:54','2026-04-06 09:02:55',NULL,NULL,NULL,'42657541-9bd3-478e-a6c6-1c3f44430bfe'),
(7196,7190,NULL,3070,53,'craft\\elements\\Entry',1,0,'2026-04-06 09:02:54','2026-04-06 09:02:55',NULL,'2026-04-06 09:29:37',NULL,'564f4541-08ed-401c-a030-6420d1461963'),
(7199,912,NULL,3071,7,'craft\\elements\\Entry',1,0,'2026-04-06 09:22:51','2026-04-06 09:22:51',NULL,NULL,NULL,'61b16dfd-cc2f-4ecb-9ae6-6e93109128ef'),
(7200,7190,NULL,3072,53,'craft\\elements\\Entry',1,0,'2026-04-06 09:22:51','2026-04-06 09:22:51',NULL,'2026-04-06 09:29:37',NULL,'b6a01701-a9de-4cee-bc9d-3bbd3824e886'),
(7202,912,NULL,3073,7,'craft\\elements\\Entry',1,0,'2026-04-06 09:29:37','2026-04-06 09:29:37',NULL,NULL,NULL,'4d6a7399-f9ef-4c00-8544-119193e4f6bb'),
(7205,4026,NULL,3074,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:49:38','2026-04-06 09:49:38',NULL,NULL,NULL,'077cdac7-450e-4080-9a95-d1f6c96c7d05'),
(7206,4053,NULL,3075,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:49:38','2026-04-06 09:49:38',NULL,NULL,NULL,'89733b7c-6532-4225-a20f-8d3f8a13d0b9'),
(7209,4026,NULL,3076,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:50:31','2026-04-06 09:50:31',NULL,NULL,NULL,'2d02a864-3c6f-4a0d-b9f9-f5f70f1ca247'),
(7210,4053,NULL,3077,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:50:31','2026-04-06 09:50:31',NULL,NULL,NULL,'70b96624-0827-442a-bdd7-7e980509fc2f'),
(7218,4805,NULL,3078,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:01','2026-04-06 09:54:01',NULL,NULL,NULL,'58b051a5-a7d7-4462-ac30-9d1b2a582408'),
(7219,4827,NULL,3079,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:01','2026-04-06 09:54:01',NULL,NULL,NULL,'ddfa3ec4-5462-4d1a-9ff7-fc4564ce8d82'),
(7222,4702,NULL,3080,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:13','2026-04-06 09:54:13',NULL,NULL,NULL,'5381c61c-08d6-4b85-8a57-c5c080c1e034'),
(7223,4725,NULL,3081,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:13','2026-04-06 09:54:13',NULL,NULL,NULL,'e70b2b4a-14ff-49aa-b79f-36e419d150c6'),
(7226,4418,NULL,3082,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:27','2026-04-06 09:54:27',NULL,NULL,NULL,'dabf5d5f-673a-4c7b-b0b7-b9bf1772dd9a'),
(7227,4445,NULL,3083,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:27','2026-04-06 09:54:27',NULL,NULL,NULL,'fbd0ab6c-43d8-4405-aaaf-6bc8c3c88f60'),
(7230,4593,NULL,3084,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:39','2026-04-06 09:54:39',NULL,NULL,NULL,'298c465b-e209-4831-bc1b-d5f2473ed8f4'),
(7231,4620,NULL,3085,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:39','2026-04-06 09:54:39',NULL,NULL,NULL,'149572dd-c77e-4869-8759-0a2e1308b268'),
(7234,4502,NULL,3086,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:51','2026-04-06 09:54:51',NULL,NULL,NULL,'43fd276d-e09c-4fb7-bdc1-009215b68f0d'),
(7235,4529,NULL,3087,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:54:51','2026-04-06 09:54:51',NULL,NULL,NULL,'3c0a8b8a-da1d-4cab-8b84-4e87e3e09e7e'),
(7238,4896,NULL,3088,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:01','2026-04-06 09:55:01',NULL,NULL,NULL,'16a56887-3f4c-49f0-982f-12434a4596f0'),
(7239,4923,NULL,3089,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:01','2026-04-06 09:55:01',NULL,NULL,NULL,'b7290d72-222c-46a5-8563-16e9fe60811e'),
(7242,1951,NULL,3090,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:10','2026-04-06 09:55:10',NULL,NULL,NULL,'9de516ee-009c-457a-8aa5-19aefa80c71f'),
(7243,1977,NULL,3091,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:10','2026-04-06 09:55:10',NULL,NULL,NULL,'6008a5fa-801d-4358-85f6-8750ace2b413'),
(7246,4026,NULL,3092,6,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:23','2026-04-06 09:55:23',NULL,NULL,NULL,'c323c46b-44d8-4045-b270-23df90ff8d66'),
(7247,4053,NULL,3093,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:23','2026-04-06 09:55:23',NULL,NULL,NULL,'f3db4305-e69d-485b-94b5-1f5825230fe8'),
(7250,6712,NULL,3094,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:47','2026-04-06 09:55:47',NULL,NULL,NULL,'fd0ee38a-93da-42c8-8126-1554fc3b8fe2'),
(7251,6725,NULL,3095,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:47','2026-04-06 09:55:47',NULL,NULL,NULL,'a92af5d8-758c-4e73-a1e6-c0b3f41f2ce6'),
(7254,6759,NULL,3096,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:57','2026-04-06 09:55:57',NULL,NULL,NULL,'ce5aff9f-0f19-47d2-bd6e-86184c8e68f6'),
(7255,6771,NULL,3097,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:55:57','2026-04-06 09:55:57',NULL,NULL,NULL,'bc42a1c1-fe83-48f3-9ce6-e37df0e73ba0'),
(7258,6647,NULL,3098,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:08','2026-04-06 09:56:08',NULL,NULL,NULL,'5136f097-862c-4c9a-91e3-6d6c173168a3'),
(7259,6660,NULL,3099,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:08','2026-04-06 09:56:08',NULL,NULL,NULL,'33342c8f-d6de-4414-a266-8b52e89378e6'),
(7262,6550,NULL,3100,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:18','2026-04-06 09:56:18',NULL,NULL,NULL,'3042e1d2-874a-4416-9d26-afcbb9dd8371'),
(7263,6564,NULL,3101,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:18','2026-04-06 09:56:18',NULL,NULL,NULL,'5ce7c9ec-3361-49c6-85e5-a3b20552eabb'),
(7266,7074,NULL,3102,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:29','2026-04-06 09:56:29',NULL,NULL,NULL,'e4ebd58c-eb3e-4348-b6bf-432e93855e6e'),
(7267,7089,NULL,3103,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:29','2026-04-06 09:56:29',NULL,NULL,NULL,'be14a5ef-5b2b-422b-b2e6-c6aac1a20768'),
(7270,6997,NULL,3104,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:41','2026-04-06 09:56:41',NULL,NULL,NULL,'400ef760-4b2d-42d9-89e5-576d090d569e'),
(7271,7012,NULL,3105,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:41','2026-04-06 09:56:41',NULL,NULL,NULL,'94dd1d12-f3f6-4c03-a204-a94c42bc3d17'),
(7274,6818,NULL,3106,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:53','2026-04-06 09:56:53',NULL,NULL,NULL,'fa43a30b-7e4e-4487-8f6f-3f876de377a4'),
(7275,6830,NULL,3107,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:56:53','2026-04-06 09:56:53',NULL,NULL,NULL,'4cc48db5-295f-4ccd-9bcd-a6d51fba55c5'),
(7278,6934,NULL,3108,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:57:04','2026-04-06 09:57:04',NULL,NULL,NULL,'957d089f-f91f-45e8-a2c3-06a42032dcdb'),
(7279,6946,NULL,3109,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:57:04','2026-04-06 09:57:04',NULL,NULL,NULL,'458b82ff-3a38-4b5b-97b8-46a6c6d32b0f'),
(7282,3086,NULL,3110,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:57:14','2026-04-06 09:57:14',NULL,NULL,NULL,'52a7cba7-fc1b-41ff-a43b-62ebe9b59794'),
(7283,3102,NULL,3111,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:57:14','2026-04-06 09:57:14',NULL,NULL,NULL,'2f93a2dd-4ffe-4bf2-84ec-81abe80e5a77'),
(7286,5108,NULL,3112,47,'craft\\elements\\Entry',1,0,'2026-04-06 09:57:25','2026-04-06 09:57:25',NULL,NULL,NULL,'18e5f5a2-2c31-4f4a-a298-22f4fc623213'),
(7287,5122,NULL,3113,49,'craft\\elements\\Entry',1,0,'2026-04-06 09:57:25','2026-04-06 09:57:25',NULL,NULL,NULL,'78c94713-c3c5-45cb-8fc8-ef529dbc5040'),
(7297,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'5037ecda-c26b-4efd-8ff1-b4abfa741040'),
(7298,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'3f227f9d-7dfc-4351-b1bb-a6bc948de8b6'),
(7299,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'61016a9b-08d1-447c-abfe-c5c036a8b480'),
(7300,4026,NULL,3114,6,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'cbd9c2a7-79d1-42cf-9034-5b10628aa0d5'),
(7301,4033,NULL,3115,41,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'ff596c45-215d-41c1-adc5-7c9855dfde9e'),
(7302,4173,NULL,3116,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'2dde7c6a-cc77-4fa2-a3c9-f65e04bcf29a'),
(7303,7297,NULL,3117,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'ccf2b7df-5d5c-4874-9fde-c781e4b7e482'),
(7304,7298,NULL,3118,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'4c3e667f-b541-4ada-a939-5720aff9e396'),
(7305,7299,NULL,3119,40,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'d8baa16a-4ca1-4ee2-8d52-cb2aa83e410c'),
(7306,4039,NULL,3120,43,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'92ca9794-8ef5-40a6-a6f3-a02213e56cb7'),
(7307,4053,NULL,3121,49,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:39','2026-04-06 13:44:39',NULL,NULL,NULL,'d03f73a0-745b-445f-b109-199ec4537edf'),
(7308,4026,NULL,3122,6,'craft\\elements\\Entry',1,0,'2026-04-06 13:44:43','2026-04-06 13:44:43',NULL,NULL,NULL,'ff6cf428-7629-4acc-8848-f98944ff2bdc'),
(7316,4805,NULL,3123,6,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:30','2026-04-06 14:05:30',NULL,NULL,NULL,'15f70010-1ba0-4886-95af-1deccc6075a3'),
(7317,4812,NULL,3124,41,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:30','2026-04-06 14:05:30',NULL,NULL,NULL,'e7324747-ceee-4d25-be67-cba906f58d85'),
(7318,4869,NULL,3125,40,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:30','2026-04-06 14:05:30',NULL,NULL,NULL,'adf0e34e-340b-4d0d-bbe4-345dd23be5be'),
(7319,4813,NULL,3126,42,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:30','2026-04-06 14:05:30',NULL,NULL,NULL,'2aa06f9e-49ea-4d23-a03d-0e647c6aaa7d'),
(7320,4814,NULL,3127,43,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:30','2026-04-06 14:05:30',NULL,NULL,NULL,'b2209c42-eba5-4e39-bf14-bf30bd4ef926'),
(7321,4827,NULL,3128,49,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:30','2026-04-06 14:05:30',NULL,NULL,NULL,'e3f9020c-36ab-4c53-8e4d-181913072a26'),
(7322,4805,NULL,3129,6,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:35','2026-04-06 14:05:35',NULL,NULL,NULL,'a89b8c54-ef21-4068-8b36-7499336fc131'),
(7325,4702,NULL,3130,6,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:50','2026-04-06 14:05:50',NULL,NULL,NULL,'5296a8cc-bacd-4f5e-bd19-24fab1f978f9'),
(7326,4725,NULL,3131,49,'craft\\elements\\Entry',1,0,'2026-04-06 14:05:50','2026-04-06 14:05:50',NULL,NULL,NULL,'eadaccad-4827-4643-a48a-5e84256c15b8'),
(7329,4418,NULL,3132,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:41:30','2026-04-06 15:41:30',NULL,NULL,NULL,'52a3927e-e5f2-474e-81de-a3e5756a6c7d'),
(7330,4445,NULL,3133,49,'craft\\elements\\Entry',1,0,'2026-04-06 15:41:30','2026-04-06 15:41:30',NULL,NULL,NULL,'49cd9b5e-8b29-4489-9146-8765e44ae0f2'),
(7331,4418,NULL,3134,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:41:33','2026-04-06 15:41:33',NULL,NULL,NULL,'c84e6d5f-94ab-4a5e-8ac4-6866b587932d'),
(7340,4418,NULL,3135,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:44:54','2026-04-06 15:44:54',NULL,NULL,NULL,'f908c27d-1b74-4a84-8dc2-1a6b55e49cb7'),
(7341,4425,NULL,3136,41,'craft\\elements\\Entry',1,0,'2026-04-06 15:44:54','2026-04-06 15:44:54',NULL,NULL,NULL,'53adb036-968b-48c6-a70b-fd0372fcf339'),
(7342,4418,NULL,3137,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:44:57','2026-04-06 15:44:57',NULL,NULL,NULL,'06f391d4-8145-41e1-8d4e-3d88bdd2bd72'),
(7345,4418,NULL,3138,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:45:24','2026-04-06 15:45:24',NULL,NULL,NULL,'30f4aa3d-1e4d-4b96-a151-e6f69da6d4bc'),
(7346,4419,NULL,3139,39,'craft\\elements\\Entry',1,0,'2026-04-06 15:45:24','2026-04-06 15:45:24',NULL,NULL,NULL,'1650db1a-9996-4914-b5d4-7c0e47d9f888'),
(7347,4418,NULL,3140,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:45:28','2026-04-06 15:45:28',NULL,NULL,NULL,'47c0afdf-65b1-4acc-bb1b-1cc4e5c71277'),
(7349,NULL,2667,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:46:17','2026-04-06 15:46:17',NULL,NULL,NULL,'dd3ed9a5-8b9a-40c3-881b-1b8f4c0ca55b'),
(7356,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:49:45',NULL,NULL,NULL,'45110eae-c8ee-4b9c-92ea-77f9142b1069'),
(7357,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:49:45',NULL,NULL,NULL,'4e320ecb-606b-45ce-80b4-c87aa30434b3'),
(7358,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:49:45',NULL,NULL,NULL,'142b4f4c-fb5f-47f2-b7e0-ff9ef1b926cc'),
(7359,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:49:45',NULL,NULL,NULL,'f313571b-c589-4650-b255-d7bd6cd62c69'),
(7360,4418,NULL,3141,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:48:42',NULL,NULL,NULL,'be3652cb-8c65-47f0-a830-063c77fdf1c6'),
(7361,4425,NULL,3142,41,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:48:42',NULL,NULL,NULL,'db657ac7-dfaf-4513-9e56-782f55e78455'),
(7362,7356,NULL,3143,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:48:42',NULL,NULL,NULL,'2553eefc-f295-4e58-a19d-c2e5571e09de'),
(7363,7357,NULL,3144,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:48:42',NULL,NULL,NULL,'496ca31b-cdda-4691-bd55-7b9a2a535917'),
(7364,7358,NULL,3145,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:48:42',NULL,NULL,NULL,'2357388d-f5ff-40a3-9e35-1fed88de5c8a'),
(7365,7359,NULL,3146,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:48:42','2026-04-06 15:48:42',NULL,NULL,NULL,'f8e673f9-8f6d-4cd5-bb10-d8c6d871883f'),
(7372,4418,NULL,3147,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:49:45','2026-04-06 15:49:45',NULL,NULL,NULL,'d4ac8e91-06d6-4ec2-b864-aead4de19c2c'),
(7373,4425,NULL,3148,41,'craft\\elements\\Entry',1,0,'2026-04-06 15:49:45','2026-04-06 15:49:45',NULL,NULL,NULL,'2659edc5-0abd-46e2-8bd0-5abff5dd52c5'),
(7374,7357,NULL,3149,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:49:45','2026-04-06 15:49:45',NULL,NULL,NULL,'237ea103-17ae-48ef-9171-7ad702300d84'),
(7375,7358,NULL,3150,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:49:45','2026-04-06 15:49:45',NULL,NULL,NULL,'8620a1fd-5f75-4e3f-a4d0-9b22acdfe00c'),
(7376,7359,NULL,3151,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:49:45','2026-04-06 15:49:46',NULL,NULL,NULL,'b11cb3ac-179c-4edd-9173-bbc3487ed32d'),
(7377,7356,NULL,3152,40,'craft\\elements\\Entry',1,0,'2026-04-06 15:49:45','2026-04-06 15:49:46',NULL,NULL,NULL,'a08b3370-8539-4ae6-a245-d5f0992a33d1'),
(7380,4418,NULL,3153,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:53:50','2026-04-06 15:53:50',NULL,NULL,NULL,'0ff23001-1368-4605-be61-05d594c5ebe4'),
(7381,4425,NULL,3154,41,'craft\\elements\\Entry',1,0,'2026-04-06 15:53:50','2026-04-06 15:53:50',NULL,NULL,NULL,'33c73655-e6bc-443f-b500-028a84095b61'),
(7384,4418,NULL,3155,6,'craft\\elements\\Entry',1,0,'2026-04-06 15:54:53','2026-04-06 15:54:53',NULL,NULL,NULL,'15304554-5779-414e-a71a-f09cffbaf0cf'),
(7385,4425,NULL,3156,41,'craft\\elements\\Entry',1,0,'2026-04-06 15:54:53','2026-04-06 15:54:53',NULL,NULL,NULL,'4149069f-154c-47fb-adbe-7c25028f8bbc'),
(7390,4593,NULL,3157,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:27:46','2026-04-06 20:27:46',NULL,NULL,NULL,'93824f11-74b8-42f9-9aa9-585dbe0429af'),
(7391,4605,NULL,3158,42,'craft\\elements\\Entry',1,0,'2026-04-06 20:27:46','2026-04-06 20:27:46',NULL,NULL,NULL,'3115603c-bf48-40f9-9f74-24c117638e42'),
(7392,4606,NULL,3159,43,'craft\\elements\\Entry',1,0,'2026-04-06 20:27:46','2026-04-06 20:27:46',NULL,NULL,NULL,'6cac2267-ead8-4865-8d41-7b6ca7602a25'),
(7393,4608,NULL,3160,44,'craft\\elements\\Entry',1,0,'2026-04-06 20:27:46','2026-04-06 20:27:46',NULL,NULL,NULL,'e0252dd0-31d7-430e-a077-152d661e7dd0'),
(7394,4620,NULL,3161,49,'craft\\elements\\Entry',1,0,'2026-04-06 20:27:46','2026-04-06 20:27:46',NULL,NULL,NULL,'b7ab8650-400c-4ffe-89cc-39b314c38738'),
(7395,4593,NULL,3162,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:27:50','2026-04-06 20:27:50',NULL,NULL,NULL,'0abaf554-ab24-4ef3-b4e6-a8bb4c84675f'),
(7401,4896,NULL,3163,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:30:42','2026-04-06 20:30:42',NULL,NULL,NULL,'28c1ecb7-4179-49ea-b0e4-33cc7510ca8c'),
(7402,4898,NULL,3164,36,'craft\\elements\\Entry',1,0,'2026-04-06 20:30:42','2026-04-06 20:30:42',NULL,NULL,NULL,'f062915a-67a1-4bc8-a61f-a9850be2895d'),
(7403,4899,NULL,3165,37,'craft\\elements\\Entry',1,0,'2026-04-06 20:30:42','2026-04-06 20:30:42',NULL,NULL,NULL,'8c076fcb-5f41-4afb-9960-7e5db3ef4631'),
(7404,4900,NULL,3166,37,'craft\\elements\\Entry',1,0,'2026-04-06 20:30:42','2026-04-06 20:30:42',NULL,NULL,NULL,'580a28d8-f918-4435-b03b-4fa78e7b2ec8'),
(7405,4923,NULL,3167,49,'craft\\elements\\Entry',1,0,'2026-04-06 20:30:42','2026-04-06 20:30:42',NULL,NULL,NULL,'22a54a7e-ce9e-4b62-b12d-0376efc346fb'),
(7412,4896,NULL,3168,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:15','2026-04-06 20:50:15',NULL,NULL,NULL,'7b82f7ca-ccd3-4aee-a790-e3ffec1e1346'),
(7413,4903,NULL,3169,41,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:15','2026-04-06 20:50:15',NULL,NULL,NULL,'a0ac98ce-4eb5-4385-880c-e16f892d25f1'),
(7414,4904,NULL,3170,40,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:15','2026-04-06 20:50:15',NULL,NULL,NULL,'abe1f3ea-07df-44e5-9e34-ce338bc65eec'),
(7415,4905,NULL,3171,40,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:15','2026-04-06 20:50:15',NULL,NULL,NULL,'6ca9d15a-58c2-46ed-b639-083dd33a2743'),
(7416,4906,NULL,3172,40,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:15','2026-04-06 20:50:15',NULL,NULL,NULL,'4173085d-656a-41fc-8fe8-ae90a61da5f8'),
(7417,4907,NULL,3173,40,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:15','2026-04-06 20:50:15',NULL,NULL,NULL,'5a787cac-348f-4774-a020-67f5a1ed2792'),
(7418,4896,NULL,3174,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:50:18','2026-04-06 20:50:18',NULL,NULL,NULL,'f5fb894a-f5dc-4a34-be6d-dd3acc018053'),
(7422,4896,NULL,3175,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:53:52','2026-04-06 20:53:52',NULL,NULL,NULL,'3e9c344b-4c79-47dd-94ae-a2ca723d146d'),
(7423,4908,NULL,3176,42,'craft\\elements\\Entry',1,0,'2026-04-06 20:53:52','2026-04-06 20:53:52',NULL,NULL,NULL,'14bab5ca-2dc3-4477-a6b6-c96fb874c4bd'),
(7424,4896,NULL,3177,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:53:55','2026-04-06 20:53:55',NULL,NULL,NULL,'f64e8337-6acd-4b3a-bb13-b4bcd905230b'),
(7429,4502,NULL,3178,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:58:45','2026-04-06 20:58:45',NULL,NULL,NULL,'19806ee8-6afc-4e7a-8a6b-0628b145c0df'),
(7430,4509,NULL,3179,41,'craft\\elements\\Entry',1,0,'2026-04-06 20:58:45','2026-04-06 20:58:45',NULL,NULL,NULL,'c1cae61c-d8b4-455c-86ff-f66b5b6a4d40'),
(7431,4511,NULL,3180,40,'craft\\elements\\Entry',1,0,'2026-04-06 20:58:45','2026-04-06 20:58:45',NULL,NULL,NULL,'f4147c25-64d3-4bcd-b7eb-cacb29a9f8a4'),
(7432,4514,NULL,3181,42,'craft\\elements\\Entry',1,0,'2026-04-06 20:58:45','2026-04-06 20:58:45',NULL,NULL,NULL,'0f812af4-9e39-42b9-aab9-95784cd07ace'),
(7433,4515,NULL,3182,43,'craft\\elements\\Entry',1,0,'2026-04-06 20:58:45','2026-04-06 20:58:45',NULL,NULL,NULL,'0f87f05b-11dc-4fec-9d96-f43b34c08648'),
(7434,4502,NULL,3183,6,'craft\\elements\\Entry',1,0,'2026-04-06 20:58:49','2026-04-06 20:58:49',NULL,NULL,NULL,'284b59f6-3bce-4c74-8235-c91d9a43d939'),
(7444,1951,NULL,3184,6,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'556e10a8-5622-4dae-9edd-bbbeed10b03c'),
(7445,1952,NULL,3185,39,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'84e077be-8098-4c48-96e2-684ba1b5feee'),
(7446,1958,NULL,3186,41,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'bb36f9f0-12dd-4304-a5d0-01367bbd1981'),
(7447,3929,NULL,3187,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'5ea29b9c-8e06-4383-b445-cb7283f1dc6f'),
(7448,3937,NULL,3188,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'5d019b82-79a9-485c-aa06-75557d88412a'),
(7449,3918,NULL,3189,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'bd14d3d0-415d-4868-a697-8fcd06581867'),
(7450,3906,NULL,3190,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'e602338c-f90d-47de-9de7-d14095552bab'),
(7451,2020,NULL,3191,42,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'4b87a05b-c6e4-425d-98ad-ae49ac0da07a'),
(7452,1964,NULL,3192,43,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:06','2026-04-06 21:12:07',NULL,NULL,NULL,'0ce6584d-37f8-4f8a-99b0-6336de6c37b1'),
(7453,1951,NULL,3193,6,'craft\\elements\\Entry',1,0,'2026-04-06 21:12:10','2026-04-06 21:12:10',NULL,NULL,NULL,'6b33eb7b-497f-4e93-a521-23e813dd3908'),
(7465,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'aec3f694-6c72-4824-b751-ce8d9fde58f8'),
(7466,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'9862f4d9-a99e-4b38-9ab8-e36a3f006ad4'),
(7467,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'17a0f3da-deed-4b88-bf24-6852e0fe4b42'),
(7468,4303,NULL,3194,6,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'3feff934-faf5-4365-8670-162aee6c71e9'),
(7469,4305,NULL,3195,36,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'aabfae9d-aa4d-4e5f-94ef-ece6d1a94646'),
(7470,4306,NULL,3196,37,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'ea4f2518-2ef5-4d30-8100-242a3953d6d1'),
(7471,4310,NULL,3197,41,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'3b174442-db82-405a-865d-cd614fd8eb57'),
(7472,4311,NULL,3198,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'ca3ce145-3c17-4440-bb4a-79f10c465160'),
(7473,7465,NULL,3199,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:55',NULL,NULL,NULL,'127790f3-f2b1-4ec1-95b1-a00b749baf68'),
(7474,7466,NULL,3200,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:56',NULL,NULL,NULL,'01ef7553-b2dd-4fd6-8941-7154fa66272d'),
(7475,7467,NULL,3201,40,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:56',NULL,NULL,NULL,'d2351602-4f5f-4fd0-a58b-b9e5ca6e649b'),
(7476,4315,NULL,3202,42,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:56',NULL,NULL,NULL,'9252e01a-8394-4444-a2a7-52602c677af9'),
(7477,4316,NULL,3203,43,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:56',NULL,NULL,NULL,'516b2d7f-5195-4dd7-8af4-25df694e7391'),
(7478,4328,NULL,3204,49,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:55','2026-04-06 21:26:56',NULL,NULL,NULL,'a1131c66-d8bc-4ccf-8ce0-987bad1fb40c'),
(7479,4303,NULL,3205,6,'craft\\elements\\Entry',1,0,'2026-04-06 21:26:59','2026-04-06 21:26:59',NULL,NULL,NULL,'f2b08491-ff20-455b-b533-fc7d7a8b0e2a'),
(7482,6934,NULL,3206,47,'craft\\elements\\Entry',1,0,'2026-04-07 08:18:03','2026-04-07 08:18:03',NULL,NULL,NULL,'9ada3cc9-7831-49a8-8f5e-033d60adf58c'),
(7483,6937,NULL,3207,42,'craft\\elements\\Entry',1,0,'2026-04-07 08:18:03','2026-04-07 08:18:03',NULL,NULL,NULL,'cddead03-2b3b-4f61-bc00-95e68d0bc92f'),
(7486,6934,NULL,3208,47,'craft\\elements\\Entry',1,0,'2026-04-07 09:16:09','2026-04-07 09:16:09',NULL,NULL,NULL,'f6beb6b9-6e86-4c1f-8ac7-6f8291500463'),
(7487,6937,NULL,3209,42,'craft\\elements\\Entry',1,0,'2026-04-07 09:16:09','2026-04-07 09:16:09',NULL,NULL,NULL,'ccbc4270-6058-4960-9bcc-23542c775c04'),
(7488,6934,NULL,3210,47,'craft\\elements\\Entry',1,0,'2026-04-07 09:16:12','2026-04-07 09:16:12',NULL,NULL,NULL,'d8009b18-a2d6-4448-8464-aacc255a47b2'),
(7491,6934,NULL,3211,47,'craft\\elements\\Entry',1,0,'2026-04-07 09:17:31','2026-04-07 09:17:32',NULL,NULL,NULL,'3507f634-c5e3-4b6e-8855-31ef90bc2a88'),
(7492,6937,NULL,3212,42,'craft\\elements\\Entry',1,0,'2026-04-07 09:17:31','2026-04-07 09:17:32',NULL,NULL,NULL,'daa6a35d-89a3-4eb3-acd9-7ef9c5cc6dcb'),
(7495,6934,NULL,3213,47,'craft\\elements\\Entry',1,0,'2026-04-07 09:17:53','2026-04-07 09:17:53',NULL,NULL,NULL,'b85b64f2-e81b-4b08-8b1d-0e796f6c7863'),
(7496,6937,NULL,3214,42,'craft\\elements\\Entry',1,0,'2026-04-07 09:17:53','2026-04-07 09:17:53',NULL,NULL,NULL,'aa485f3b-19eb-48e4-aded-d1cd88005856'),
(7499,6934,NULL,3215,47,'craft\\elements\\Entry',1,0,'2026-04-07 09:18:17','2026-04-07 09:18:17',NULL,NULL,NULL,'fc789b93-9ef9-44c0-a6fc-3662c363e829'),
(7500,6937,NULL,3216,42,'craft\\elements\\Entry',1,0,'2026-04-07 09:18:17','2026-04-07 09:18:17',NULL,NULL,NULL,'8863fbfc-0912-4699-bd20-e611c7a61611'),
(7507,6997,NULL,3217,47,'craft\\elements\\Entry',1,0,'2026-04-07 19:20:04','2026-04-07 19:20:04',NULL,NULL,NULL,'ddc92e9d-8590-4f91-8810-81122ac3c699'),
(7508,6998,NULL,3218,42,'craft\\elements\\Entry',1,0,'2026-04-07 19:20:04','2026-04-07 19:20:04',NULL,NULL,NULL,'4e3b185b-1d22-4d70-a88e-a45a4be8a3aa'),
(7509,6999,NULL,3219,42,'craft\\elements\\Entry',1,0,'2026-04-07 19:20:04','2026-04-07 19:20:04',NULL,NULL,NULL,'a6bb36bd-9e60-4f7a-96c4-f76058a1decf'),
(7510,7000,NULL,3220,42,'craft\\elements\\Entry',1,0,'2026-04-07 19:20:04','2026-04-07 19:20:04',NULL,NULL,NULL,'7ff016c5-66b4-40ae-83e8-e8465c4db5b5'),
(7511,6997,NULL,3221,47,'craft\\elements\\Entry',1,0,'2026-04-07 19:20:08','2026-04-07 19:20:08',NULL,NULL,NULL,'44cbfd0b-c6b8-43ad-9bf9-b8c1aceb14b4'),
(7512,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:46:57','2026-04-13 08:55:16',NULL,NULL,NULL,'95c487f2-1ee1-4580-86df-7079c98c57e8'),
(7524,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'b5b03c17-d283-47cc-a579-20614ab46986'),
(7525,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'133de398-fdf5-47ae-a2a0-966fd5a0774b'),
(7526,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'cbfd914a-f500-4dc7-a9ea-b782467a44cb'),
(7527,6934,NULL,3222,47,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'44dafce0-9d0e-4c83-854e-d6fbe31a58f2'),
(7528,6939,NULL,3223,44,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'73a268b6-ed86-4a9a-b40d-f78ec2ff26f5'),
(7529,7524,NULL,3224,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'919896f1-1e69-44cb-8466-2465d9d309af'),
(7530,7525,NULL,3225,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'db857980-294e-406f-b1a1-4aa067cf540a'),
(7531,7512,NULL,3226,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'f95de9d2-d8c2-43f2-a24f-cacb8b21b42a'),
(7532,7526,NULL,3227,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'df4f254d-602f-4f25-8122-6f29e1279d23'),
(7533,6944,NULL,3228,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'a61cc1a8-7d3c-44ef-81d0-640c9a5fe369'),
(7534,6945,NULL,3229,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'0beca5e5-8dab-4b1a-808b-fc10bcf21f9f'),
(7535,6979,NULL,3230,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:16',NULL,NULL,NULL,'cf7207ec-0af2-40e2-abbd-668b5509693a'),
(7536,6980,NULL,3231,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:17',NULL,NULL,NULL,'f384021a-d792-4219-aff6-06d0732c4fc7'),
(7537,6981,NULL,3232,35,'craft\\elements\\Entry',1,0,'2026-04-13 08:55:16','2026-04-13 08:55:17',NULL,NULL,NULL,'ee0e9c91-1284-4fab-a5bc-296b05c2fb5d'),
(7541,4593,NULL,3233,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:13:54','2026-04-13 09:13:54',NULL,NULL,NULL,'56b9a4a9-ed78-496b-a7ec-766baaa69a35'),
(7542,4608,NULL,3234,44,'craft\\elements\\Entry',1,0,'2026-04-13 09:13:54','2026-04-13 09:13:54',NULL,NULL,NULL,'ae9130bb-51db-47f0-8279-3297f6985dbe'),
(7543,4611,NULL,3235,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:13:54','2026-04-13 09:13:54',NULL,NULL,NULL,'58f94d36-9a46-474b-8e67-79ceb7bb4893'),
(7547,4702,NULL,3236,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:16:00','2026-04-13 09:16:00',NULL,NULL,NULL,'4b261e18-bb47-4c51-b1d5-32f61f2839c9'),
(7548,4717,NULL,3237,44,'craft\\elements\\Entry',1,0,'2026-04-13 09:16:00','2026-04-13 09:16:00',NULL,NULL,NULL,'5c240bd0-6d3f-497f-97d9-e5ee10ed5d52'),
(7549,4722,NULL,3238,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:16:00','2026-04-13 09:16:00',NULL,NULL,NULL,'881ef873-cf61-4321-a7cd-3c75941ca327'),
(7553,4702,NULL,3239,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:17:19','2026-04-13 09:17:20',NULL,NULL,NULL,'1ea9549a-e1c9-4bae-b62f-7701d2269102'),
(7554,4717,NULL,3240,44,'craft\\elements\\Entry',1,0,'2026-04-13 09:17:19','2026-04-13 09:17:20',NULL,NULL,NULL,'ed959613-18d2-47a8-b739-1429b2bd36b2'),
(7555,4723,NULL,3241,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:17:19','2026-04-13 09:17:20',NULL,NULL,NULL,'4bb0c3cf-51ad-4b42-87ea-57a5ecdf9387'),
(7556,4702,NULL,3242,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:18:56','2026-04-13 09:18:56',NULL,NULL,NULL,'0d5b51f9-e1f8-43b0-bd1f-73da17757df0'),
(7560,4702,NULL,3243,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:21:43','2026-04-13 09:21:43',NULL,NULL,NULL,'e17c5499-6173-49b8-8822-27a3eaeab693'),
(7561,4714,NULL,3244,42,'craft\\elements\\Entry',1,0,'2026-04-13 09:21:43','2026-04-13 09:21:43',NULL,NULL,NULL,'6b7ccdd9-53e0-4791-b6f2-f3c0a013c664'),
(7564,4702,NULL,3245,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:22:47','2026-04-13 09:22:47',NULL,NULL,NULL,'2da9e1f0-5e4a-4e72-8bd8-c28845686579'),
(7565,4714,NULL,3246,42,'craft\\elements\\Entry',1,0,'2026-04-13 09:22:47','2026-04-13 09:22:47',NULL,NULL,NULL,'892d2e29-f0e2-4c40-aa3b-73a1da3e2fb9'),
(7566,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:23:49','2026-04-13 09:29:39',NULL,NULL,NULL,'ce943208-8873-45f8-af7a-e16b417157e5'),
(7582,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'6b23cab4-babd-4e4a-8028-1b2ddc18bdcf'),
(7583,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'19d7c39d-155c-430c-9c62-cbe25f169915'),
(7584,4702,NULL,3247,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'8b4494f2-8560-406d-b23d-3973092c3465'),
(7585,4704,NULL,3248,36,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'60972a09-3624-4523-80ba-b7b201411dc9'),
(7586,4705,NULL,3249,37,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'79749ebc-16f6-4d86-9a66-8bd6b23c7bae'),
(7587,4714,NULL,3250,42,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'6e5edb0e-d641-4c24-8da4-858a7bf728dd'),
(7588,4717,NULL,3251,44,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'b05a4a44-6bc1-4ef6-86df-7e3bde8d31f8'),
(7589,7582,NULL,3252,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'e98080e5-6614-4a80-85f5-96edb8ec7f0e'),
(7590,4719,NULL,3253,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'1db5219a-8df0-41e1-843a-2fdb0a97f977'),
(7591,4720,NULL,3254,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'ec7fa146-ab2c-4f38-85ff-f1b1c11c9863'),
(7592,7583,NULL,3255,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'b328c796-570b-493d-bcdf-c6b7f82d3678'),
(7593,4722,NULL,3256,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'e52e33be-f857-4fbd-b8e7-a0ec5f02ed2b'),
(7594,4723,NULL,3257,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'d3d67939-e151-4a47-b6a5-d1deb3ef0a48'),
(7595,7566,NULL,3258,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'d24fb87a-6fbb-47bc-81c1-5634d51eda38'),
(7596,4780,NULL,3259,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'06e531d7-d8da-46d7-a217-b1d02ef47f78'),
(7597,4781,NULL,3260,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'e9314794-2513-4860-98ca-6bab9cd9aaed'),
(7598,4782,NULL,3261,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:39','2026-04-13 09:29:39',NULL,NULL,NULL,'3bceba39-208f-4ea6-8708-ad4d74c70b5e'),
(7599,4702,NULL,3262,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:29:49','2026-04-13 09:29:49',NULL,NULL,NULL,'278c9917-059b-4c21-a693-3eb358dd4b47'),
(7605,4502,NULL,3263,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:34:35','2026-04-13 09:34:35',NULL,NULL,NULL,'fdccc67a-9007-40c3-9807-5d2bd85f66b6'),
(7606,4517,NULL,3264,44,'craft\\elements\\Entry',1,0,'2026-04-13 09:34:35','2026-04-13 09:34:35',NULL,NULL,NULL,'2ad3f27e-cddb-4e2d-b8ab-d37287bb22cd'),
(7607,4522,NULL,3265,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:34:35','2026-04-13 09:34:35',NULL,NULL,NULL,'34da519f-7381-4f2e-b6bf-67ea4d7f2ec8'),
(7608,4524,NULL,3266,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:34:35','2026-04-13 09:34:35',NULL,NULL,NULL,'c193d7c2-fbdf-4092-bac8-10b3f8e00c3a'),
(7612,4805,NULL,3267,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:36:40','2026-04-13 09:36:40',NULL,NULL,NULL,'b64e5220-39af-4375-bc77-5686a93ff030'),
(7613,4816,NULL,3268,44,'craft\\elements\\Entry',1,0,'2026-04-13 09:36:40','2026-04-13 09:36:40',NULL,NULL,NULL,'4a1242cc-afa4-41a0-8e8d-30476c1e5c58'),
(7614,4817,NULL,3269,35,'craft\\elements\\Entry',1,0,'2026-04-13 09:36:40','2026-04-13 09:36:40',NULL,NULL,NULL,'d8ba5ad4-2bc0-46f2-bb76-f4f8934288a2'),
(7615,4805,NULL,3270,6,'craft\\elements\\Entry',1,0,'2026-04-13 09:36:42','2026-04-13 09:36:42',NULL,NULL,NULL,'19738973-5742-4d83-be2f-a8d599b50b04'),
(7618,6550,NULL,3271,47,'craft\\elements\\Entry',1,0,'2026-04-13 09:39:48','2026-04-13 09:39:48',NULL,NULL,NULL,'ba2bfcca-c17d-4b4c-b1b4-328723e25a2d'),
(7619,6551,NULL,3272,42,'craft\\elements\\Entry',1,0,'2026-04-13 09:39:48','2026-04-13 09:39:48',NULL,NULL,NULL,'aa20fe30-a58d-41dc-9a1e-9c34b73f0905'),
(7634,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'a0d47cb2-b89e-4432-bc89-736e0fb1bbe4'),
(7635,6550,NULL,3273,47,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'2d24c4eb-d173-421d-b810-a7e92a00a456'),
(7636,6552,NULL,3274,42,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'0dfb052c-4ce7-4aba-9c51-ac59f705d065'),
(7637,6553,NULL,3275,42,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'b4fae5ab-a736-4d0d-9ad8-dde0c33904fc'),
(7638,6555,NULL,3276,44,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'71872145-307f-41dd-beb4-20a8b0211f96'),
(7639,6556,NULL,3277,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'66e902a8-2d09-40d5-a414-df89f5304b5c'),
(7640,6557,NULL,3278,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'12cfbf70-df3c-4130-ba84-9ecd34f2af0d'),
(7641,6558,NULL,3279,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'38b87cf1-c0b2-4506-8bf4-ee7b36a95f8b'),
(7642,6559,NULL,3280,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'57285891-2a83-456a-8017-a8deb68934b6'),
(7643,6560,NULL,3281,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'0cd3e6c7-240f-4cfa-b48a-e1244c7b42a5'),
(7644,6561,NULL,3282,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'c1409c27-4239-444e-9212-6b96601d0b18'),
(7645,7634,NULL,3283,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:04','2026-04-13 10:30:04',NULL,NULL,NULL,'95682b0d-e8c3-4a9f-8e23-3f8fc176bcb7'),
(7646,6550,NULL,3284,47,'craft\\elements\\Entry',1,0,'2026-04-13 10:30:07','2026-04-13 10:30:07',NULL,NULL,NULL,'bcadc10e-3efc-437a-ba47-49ef2759d903'),
(7653,4896,NULL,3285,6,'craft\\elements\\Entry',1,0,'2026-04-13 10:36:07','2026-04-13 10:36:07',NULL,NULL,NULL,'28ca69a8-fc26-4132-87cd-679745951b0f'),
(7654,4911,NULL,3286,44,'craft\\elements\\Entry',1,0,'2026-04-13 10:36:07','2026-04-13 10:36:07',NULL,NULL,NULL,'07680107-df22-482c-b964-e9b11e198bde'),
(7655,4915,NULL,3287,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:36:07','2026-04-13 10:36:07',NULL,NULL,NULL,'f9365f86-41e1-474f-ab5b-4399e883da94'),
(7656,4917,NULL,3288,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:36:07','2026-04-13 10:36:07',NULL,NULL,NULL,'da7ec21e-a8f3-4cc4-948d-5158e058df3f'),
(7657,4918,NULL,3289,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:36:07','2026-04-13 10:36:07',NULL,NULL,NULL,'4f2ce235-3509-4512-894e-4b2f43d46f57'),
(7658,4896,NULL,3290,6,'craft\\elements\\Entry',1,0,'2026-04-13 10:36:09','2026-04-13 10:36:09',NULL,NULL,NULL,'246c93ef-0c7a-479a-adf1-31d973e71fd6'),
(7659,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:38:36','2026-04-13 10:46:44',NULL,NULL,NULL,'a76ce45d-d2ce-4015-b297-b5276875e5df'),
(7661,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:39:04','2026-04-13 10:46:44',NULL,NULL,NULL,'21db66b9-1ef3-4ee8-b984-7c33c6fd8e65'),
(7662,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:40:32','2026-04-13 10:46:44',NULL,NULL,NULL,'c292e908-36ed-4b9a-aaf5-62ab2f1a12ff'),
(7663,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:40:55','2026-04-13 10:46:44',NULL,NULL,NULL,'22b39d4e-2016-4f9c-ac6a-ad47325bc13e'),
(7664,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:41:14','2026-04-13 10:46:44',NULL,NULL,NULL,'44b4a8da-a14a-49be-9cf7-f9e9f3d59af5'),
(7665,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:41:42','2026-04-13 10:46:44',NULL,NULL,NULL,'509df67b-cf67-40d9-98af-7bce1f7ae7e1'),
(7673,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'086c1c01-3480-441f-9d62-b05002cb0e14'),
(7674,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'4d1360f0-23ba-497d-8f98-59284441cb3f'),
(7675,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'55818599-7641-48c2-a64a-6c21536b9ca8'),
(7676,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'52e6fb1b-bf42-4d5d-9137-adee4e8d0775'),
(7677,1951,NULL,3291,6,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'3d890caf-a8f8-49da-990d-8296d5757ac7'),
(7678,2020,NULL,3292,42,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'1cc83c1a-0bcc-40c7-89ae-2d67fac5b36e'),
(7679,1966,NULL,3293,44,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'bc5b1f77-1f24-4e0c-8d53-7deddcf5ffad'),
(7680,7659,NULL,3294,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'1f41b524-76ef-45d7-94cc-cfaa60b56647'),
(7681,7673,NULL,3295,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'bc11b2f4-6646-4ecd-b0f6-b3e005c2d932'),
(7682,7674,NULL,3296,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'e17d72e7-c568-424f-80d4-2aebb92d1dfb'),
(7683,7663,NULL,3297,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'39ab2cc7-e9b3-4ffe-ad1f-2d80407048d7'),
(7684,7664,NULL,3298,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'4acafd14-2874-443d-ad39-63e11ea98c85'),
(7685,7661,NULL,3299,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'c21ef5de-35b8-472f-abed-2b09512fde04'),
(7686,7662,NULL,3300,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'bc224a19-4c73-435c-b1b5-1e1b74bad15b'),
(7687,7675,NULL,3301,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'a1480768-2890-4a1f-b507-5ab2287c5724'),
(7688,7665,NULL,3302,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'0776711d-c6d0-48c1-b40b-89871b9e3c72'),
(7689,7676,NULL,3303,35,'craft\\elements\\Entry',1,0,'2026-04-13 10:46:44','2026-04-13 10:46:44',NULL,NULL,NULL,'6e0f5d39-4e48-48a5-b00d-c95afdb77fe2'),
(7690,1951,NULL,3304,6,'craft\\elements\\Entry',1,0,'2026-04-13 10:47:11','2026-04-13 10:47:11',NULL,NULL,NULL,'bff7b95a-471e-458b-a25b-1eb7a0c5eb94'),
(7691,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:11:38','2026-04-13 11:22:17',NULL,NULL,NULL,'ffdaffe0-abc4-4655-bdf2-3949aaaf3df2'),
(7693,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:11:56','2026-04-13 11:22:17',NULL,NULL,NULL,'896ca513-9e8b-40dc-8508-197ff7b1e19f'),
(7694,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:12:16','2026-04-13 11:22:17',NULL,NULL,NULL,'5ae7848e-c58d-451a-a0d1-92bbaac5d9e8'),
(7695,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:12:49','2026-04-13 11:22:17',NULL,NULL,NULL,'96e8ab94-ee51-4906-9f1f-950d67e76089'),
(7696,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:13:20','2026-04-13 11:22:17',NULL,NULL,NULL,'88cef546-0647-47e4-be88-648a34b932cb'),
(7704,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'5db1c098-e8e0-47b2-a1bf-14af321b8b69'),
(7705,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'8249a13c-d470-45de-8796-e8578db8a9fa'),
(7706,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 12:24:04',NULL,NULL,NULL,'3368cd0a-d021-42f1-96a2-25035f57d6ca'),
(7707,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'1f11d547-d223-49a5-a045-3edbdb62f3df'),
(7708,6997,NULL,3305,47,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'ca238097-949d-454e-846b-a2309f36d01c'),
(7709,7002,NULL,3306,44,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'ef4e98db-a472-4e81-8697-f84ba3e9eb85'),
(7710,7693,NULL,3307,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'77ddf9f4-01cf-45bd-8ee0-be56da45c9ae'),
(7711,7695,NULL,3308,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'05491edf-fac4-4642-9ebe-7f6be2a5d2c4'),
(7712,7694,NULL,3309,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'a3236461-6174-4447-b6a4-4cbb7eec1d5d'),
(7713,7691,NULL,3310,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'6ee53670-6e6e-48d9-aa2b-2d292063fc64'),
(7714,7704,NULL,3311,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'739dbbc1-2723-4a7a-af8d-948fd6f18e18'),
(7715,7053,NULL,3312,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'562b59fc-9d20-492f-9999-e4880a063963'),
(7716,7705,NULL,3313,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'275eb449-7152-427b-aca8-552c692e2ec6'),
(7717,7706,NULL,3314,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'d2af750c-7421-4d6e-b1e4-80aefa3a8602'),
(7718,7696,NULL,3315,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'e7b86da6-1523-435d-998d-20001780998b'),
(7719,7707,NULL,3316,35,'craft\\elements\\Entry',1,0,'2026-04-13 11:22:17','2026-04-13 11:22:17',NULL,NULL,NULL,'a41220bb-df7c-440f-b522-483e3759d98e'),
(7726,6997,NULL,3317,47,'craft\\elements\\Entry',1,0,'2026-04-13 12:24:03','2026-04-13 12:24:04',NULL,NULL,NULL,'c388a713-c12c-4913-b6c0-08e64fee0202'),
(7727,7002,NULL,3318,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:24:03','2026-04-13 12:24:04',NULL,NULL,NULL,'a61f5271-e166-42b2-8970-196ea1000b6b'),
(7728,7706,NULL,3319,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:24:04','2026-04-13 12:24:04',NULL,NULL,NULL,'e6b6ead1-aee9-4856-97f0-4f6c9f02efe4'),
(7732,6997,NULL,3320,47,'craft\\elements\\Entry',1,0,'2026-04-13 12:26:24','2026-04-13 12:26:24',NULL,NULL,NULL,'ecbf4b96-ff09-46de-a950-59b69b089355'),
(7733,7002,NULL,3321,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:26:24','2026-04-13 12:26:24',NULL,NULL,NULL,'bf7ff487-f106-4912-9d9f-c92198cd56bf'),
(7734,7053,NULL,3322,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:26:24','2026-04-13 12:26:24',NULL,NULL,NULL,'5c4f3459-0439-46b5-93f6-8b682ffbff84'),
(7737,4303,NULL,3323,6,'craft\\elements\\Entry',1,0,'2026-04-13 12:27:24','2026-04-13 12:27:25',NULL,NULL,NULL,'c1024c8d-6e12-42be-a6f5-feb08a76ff78'),
(7738,4318,NULL,3324,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:27:25','2026-04-13 12:27:25',NULL,NULL,NULL,'362af42b-2dd2-43c3-8a73-121b41bf711a'),
(7747,4026,NULL,3325,6,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'640ea5bc-5c3f-4fa8-98c6-e47517377a11'),
(7748,4041,NULL,3326,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'de6911a7-0a41-4944-a503-8de65a3da3ef'),
(7749,4042,NULL,3327,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'9d1fcd9a-811c-4885-9f43-3e26dfc93a04'),
(7750,4044,NULL,3328,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'0d1effb9-4624-4995-98c2-04e40e6d9d8b'),
(7751,4050,NULL,3329,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'a313e4cf-29a5-4787-9458-704db13f522f'),
(7752,4051,NULL,3330,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'bbc5bab6-4930-45ce-9374-1e6f2916654e'),
(7753,4052,NULL,3331,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:44:41','2026-04-13 12:44:41',NULL,NULL,NULL,'683b6380-8735-4226-b655-c49b77580d83'),
(7758,38,NULL,3332,7,'craft\\elements\\Entry',1,0,'2026-04-13 12:45:34','2026-04-13 12:45:34',NULL,NULL,NULL,'a8dba9a9-b40b-4c5f-9995-7ebf652b458f'),
(7759,785,NULL,3333,20,'craft\\elements\\Entry',1,0,'2026-04-13 12:45:34','2026-04-13 12:45:34',NULL,NULL,NULL,'a7c1ed8b-e500-4cac-91af-d1f41a97d03c'),
(7760,786,NULL,3334,30,'craft\\elements\\Entry',1,0,'2026-04-13 12:45:34','2026-04-13 12:45:34',NULL,NULL,NULL,'b6f785a8-1d42-4b86-beaa-bee84caf677a'),
(7761,788,NULL,3335,22,'craft\\elements\\Entry',1,0,'2026-04-13 12:45:34','2026-04-13 12:45:34',NULL,NULL,NULL,'828b9f2c-3ff1-42ac-8120-e514a765bbc8'),
(7765,4203,NULL,3336,6,'craft\\elements\\Entry',1,0,'2026-04-13 12:47:41','2026-04-13 12:47:41',NULL,NULL,NULL,'bb0b76a4-3f5b-4bfa-81a6-3c625f8e353f'),
(7766,4210,NULL,3337,41,'craft\\elements\\Entry',1,0,'2026-04-13 12:47:41','2026-04-13 12:47:41',NULL,NULL,NULL,'bb5dfb8c-6fa9-459e-addb-20adb7b26310'),
(7767,4214,NULL,3338,40,'craft\\elements\\Entry',1,0,'2026-04-13 12:47:41','2026-04-13 12:47:41',NULL,NULL,NULL,'bbd3c029-e4a6-40a6-b2c0-f9c1ca837623'),
(7768,4230,NULL,3339,49,'craft\\elements\\Entry',1,0,'2026-04-13 12:47:41','2026-04-13 12:47:41',NULL,NULL,NULL,'0701073f-5b8e-42f6-8583-378be4d0cda5'),
(7781,4203,NULL,3340,6,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'8b9f3056-826f-4bd7-9400-7b09187d3778'),
(7782,4218,NULL,3341,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'6091b0b5-4147-4819-97e0-c975b8878272'),
(7784,4220,NULL,3343,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'b1e6c59c-0688-4997-b044-84e1670ff83a'),
(7785,4221,NULL,3344,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'fa838431-69a3-4a3a-8ce9-604056b2f574'),
(7787,4223,NULL,3346,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'59c902df-81f3-4fa8-8e00-b7e88123e62d'),
(7788,4224,NULL,3347,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'84616888-a04e-4e98-a045-3f6b0e4e5151'),
(7789,4225,NULL,3348,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'7b8c0055-ec77-4340-a9fd-3309ba5cc41c'),
(7790,4227,NULL,3349,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:48:59','2026-04-13 12:48:59',NULL,NULL,NULL,'0add700c-6fdb-4de5-8e87-cb2ba1ae8eb0'),
(7794,4203,NULL,3350,6,'craft\\elements\\Entry',1,0,'2026-04-13 12:50:11','2026-04-13 12:50:11',NULL,NULL,NULL,'77daaf45-1b05-4236-b185-24880170a5eb'),
(7795,4218,NULL,3351,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:50:11','2026-04-13 12:50:11',NULL,NULL,NULL,'63130138-1948-489e-860f-17f923dfe072'),
(7796,4227,NULL,3352,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:50:11','2026-04-13 12:50:11',NULL,NULL,NULL,'766f5a65-820e-4ba2-abce-937550d9c94b'),
(7797,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:52:12','2026-04-13 12:54:27',NULL,NULL,NULL,'8d7afbe6-8225-40f1-8fb5-0694ffefea5c'),
(7809,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'e638fd60-db35-415c-8594-a7b2423cdce4'),
(7810,4203,NULL,3353,6,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'057c3e1c-8464-49b5-8793-fac367db4dd4'),
(7811,4216,NULL,3354,43,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'49ed02e7-4965-4139-8741-9fa9fd75776d'),
(7812,4218,NULL,3355,44,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'a80c82bb-cf03-44f8-adc0-143f4ffd9200'),
(7813,7797,NULL,3356,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'047ba438-e0e0-45ff-a84a-922e703ca5fa'),
(7814,4220,NULL,3357,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'7712c850-425b-45c3-80ab-113431582595'),
(7815,4221,NULL,3358,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'badf40db-083e-498c-975c-626fa10eccdd'),
(7816,7809,NULL,3359,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'dc14ef6d-3ef3-45fd-a002-a08186cd15d4'),
(7817,4223,NULL,3360,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'a6f4178b-f16d-439e-a404-7eff7b893b11'),
(7818,4224,NULL,3361,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'7ebe6b88-6e32-4224-b633-0b79c8d068f0'),
(7819,4225,NULL,3362,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'70d8c77f-004d-4144-8bb3-258be91714be'),
(7820,4227,NULL,3363,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:54:27','2026-04-13 12:54:27',NULL,NULL,NULL,'4364cd18-1d33-4780-bfc7-9affdea1808c'),
(7821,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:55:23','2026-04-13 13:01:09',NULL,NULL,NULL,'550ace19-f767-4721-bf51-4dd1a4537ac3'),
(7823,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:55:58','2026-04-13 13:01:09',NULL,NULL,NULL,'df62edd9-9f35-4ddb-8a08-b152efc224d3'),
(7824,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:56:33','2026-04-13 13:01:09',NULL,NULL,NULL,'0b9ab3a8-b1f6-45ee-9552-e2228015919d'),
(7826,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 12:57:36','2026-04-13 13:01:09',NULL,NULL,NULL,'aeb5eaca-ee2d-46aa-a36f-113f95c7b1ee'),
(7837,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'5e592503-2cc7-48a4-8fc1-864f259a9884'),
(7838,4418,NULL,3364,6,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:08','2026-04-13 13:01:09',NULL,NULL,NULL,'bbd685c2-ac2c-49b4-8f0d-059e4b1d987e'),
(7839,4430,NULL,3365,42,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:08','2026-04-13 13:01:09',NULL,NULL,NULL,'32067744-b2cb-4420-bc07-d473c6adddfa'),
(7840,4431,NULL,3366,43,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:08','2026-04-13 13:01:09',NULL,NULL,NULL,'f801c880-5649-4c95-a3d6-06e5bca411f5'),
(7841,4433,NULL,3367,44,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:08','2026-04-13 13:01:09',NULL,NULL,NULL,'4316620c-f0b5-4cd1-aba3-f7d316a2e567'),
(7842,7821,NULL,3368,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'a0270a12-0f75-4246-8da0-fc880927f85b'),
(7843,4435,NULL,3369,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'b1051f1d-23a4-4174-8cbc-9247b132ddce'),
(7844,4436,NULL,3370,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'5474b6e2-9bfa-489f-8541-e630e3954c0a'),
(7845,5580,NULL,3371,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'a4cc904a-761a-44f7-b903-6a3eceb4a0af'),
(7846,5594,NULL,3372,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'fd67f48d-26ad-425e-9b1d-b922aad1c2f0'),
(7847,7823,NULL,3373,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'8e1a02e7-a1cc-4ac7-95dd-f41db20737cb'),
(7848,7826,NULL,3374,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'66d96cea-aa63-438c-9b2f-b6d228a539b7'),
(7849,7837,NULL,3375,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'e1f23f35-d296-47ae-ab65-8ffdd10d63b8'),
(7850,5598,NULL,3376,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'c06cca00-9c6d-45ec-b266-bfc2e9cb84b2'),
(7851,7824,NULL,3377,35,'craft\\elements\\Entry',1,0,'2026-04-13 13:01:09','2026-04-13 13:01:09',NULL,NULL,NULL,'4efe0cad-271e-4c06-8750-5ded07024207'),
(7853,250,NULL,3378,14,'craft\\elements\\Entry',1,0,'2026-04-15 14:53:22','2026-04-15 14:53:22',NULL,NULL,NULL,'55bacc70-7902-4f4f-b258-482863acbd1d'),
(7855,250,NULL,3379,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:00:52','2026-04-15 15:00:52',NULL,NULL,NULL,'f43a39d3-5247-4d9b-bf5c-454125d011f7'),
(7857,250,NULL,3380,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:01:22','2026-04-15 15:01:22',NULL,NULL,NULL,'c3d42e0e-9724-4429-b2ec-04d5d43c1c6f'),
(7858,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-15 15:02:13','2026-04-15 15:02:13',NULL,NULL,NULL,'f304d431-d343-45db-8081-631e65a62429'),
(7860,250,NULL,3381,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:02:17','2026-04-15 15:02:17',NULL,NULL,NULL,'8e3c171d-b41d-4784-9cee-93753c380dc0'),
(7862,250,NULL,3382,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:03:09','2026-04-15 15:03:09',NULL,NULL,NULL,'e015cba4-ec17-4610-9e1b-6560435cc3a8'),
(7864,252,NULL,3383,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:18:25','2026-04-15 15:18:25',NULL,NULL,NULL,'a67c3234-53d6-456f-8efa-5c7a8f485d8c'),
(7865,252,NULL,3384,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:18:28','2026-04-15 15:18:28',NULL,NULL,NULL,'c0a1acc2-b345-4a66-b028-3d72121e42aa'),
(7867,252,NULL,3385,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:19:04','2026-04-15 15:19:04',NULL,NULL,NULL,'bc7ce3dc-2d16-45d8-aeae-9267022492b3'),
(7868,252,NULL,3386,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:19:14','2026-04-15 15:19:14',NULL,NULL,NULL,'18a6fe7e-992a-46ec-8657-fa491377450b'),
(7870,252,NULL,3387,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:19:53','2026-04-15 15:19:53',NULL,NULL,NULL,'ed12dd94-b915-4ee5-a749-55d1f6efe287'),
(7871,NULL,NULL,NULL,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:20:34','2026-04-15 15:26:00',NULL,NULL,NULL,'5a1b5232-ab9c-4368-b276-c1acfb5bcd5f'),
(7872,7871,NULL,3388,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:23:08','2026-04-15 15:23:08',NULL,NULL,NULL,'53d81655-682d-4e54-9184-efcd9df79ec5'),
(7874,7871,NULL,3389,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:24:51','2026-04-15 15:24:51',NULL,NULL,NULL,'ae51a52f-77af-4724-8598-d3a8a884edb1'),
(7875,7871,NULL,3390,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:24:53','2026-04-15 15:24:53',NULL,NULL,NULL,'1375d94b-b3f7-4a1e-b4da-6a763609b211'),
(7876,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-15 15:25:56','2026-04-15 15:25:56',NULL,NULL,NULL,'db008795-546f-4d8c-a42b-23c461ce49b0'),
(7878,7871,NULL,3391,14,'craft\\elements\\Entry',1,0,'2026-04-15 15:26:00','2026-04-15 15:26:00',NULL,NULL,NULL,'7b7bb228-38e2-4261-a6ba-b77b784ca0bc'),
(7880,6550,NULL,3392,47,'craft\\elements\\Entry',1,0,'2026-04-15 17:06:15','2026-04-15 17:06:15',NULL,NULL,NULL,'63975715-b5b5-4e3c-93b3-1a1dfddba336'),
(7881,6551,NULL,3393,42,'craft\\elements\\Entry',1,0,'2026-04-15 17:06:15','2026-04-15 17:06:15',NULL,NULL,NULL,'cdd13c83-79ec-4506-b6a9-41a77c9e3382'),
(7882,6555,NULL,3394,44,'craft\\elements\\Entry',1,0,'2026-04-15 17:06:15','2026-04-15 17:06:15',NULL,NULL,NULL,'f9a8eff4-3fa0-484b-9b60-90f9a2d0c742'),
(7883,6560,NULL,3395,35,'craft\\elements\\Entry',1,0,'2026-04-15 17:06:15','2026-04-15 17:06:15',NULL,NULL,NULL,'79b19d2d-c185-4b0c-8d24-7639354d95e1'),
(7891,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-04-15 17:20:20','2026-04-15 17:20:20',NULL,NULL,NULL,'875b2465-1483-4f2b-96d3-3553e159ad2b'),
(7892,4702,NULL,3396,6,'craft\\elements\\Entry',1,0,'2026-04-15 17:20:20','2026-04-15 17:20:20',NULL,NULL,NULL,'62e3250a-5bc2-4ac8-814c-b94f3918098b'),
(7893,7891,NULL,3397,41,'craft\\elements\\Entry',1,0,'2026-04-15 17:20:20','2026-04-15 17:20:20',NULL,NULL,NULL,'fd6cf41a-370b-478a-bdc8-6385a2c138d4'),
(7894,4715,NULL,3398,43,'craft\\elements\\Entry',1,0,'2026-04-15 17:20:20','2026-04-15 17:20:20',NULL,NULL,NULL,'b9ff50f5-c25d-4106-97be-2bd35cf256ba'),
(7895,4709,NULL,3399,41,'craft\\elements\\Entry',1,0,'2026-04-15 17:20:20','2026-04-15 17:20:20',NULL,NULL,NULL,'b28eb5ef-4190-43b0-b3dc-fa48e373544a'),
(7896,4702,NULL,3400,6,'craft\\elements\\Entry',1,0,'2026-04-15 17:20:22','2026-04-15 17:20:22',NULL,NULL,NULL,'d6910af0-2663-4031-8158-286784e33307'),
(7910,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-15 17:26:19','2026-04-15 17:26:19',NULL,NULL,NULL,'4276126f-98bc-4057-bfd1-b5032674ac69'),
(7911,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-04-15 17:26:19','2026-04-15 17:26:19',NULL,NULL,NULL,'6c99a01f-d33e-4447-b1e3-65f34b589d0e'),
(7912,4702,NULL,3401,6,'craft\\elements\\Entry',1,0,'2026-04-15 17:26:19','2026-04-15 17:26:19',NULL,NULL,NULL,'91c5a54e-09c2-480a-9857-ec5d866bef98'),
(7913,4709,NULL,3402,41,'craft\\elements\\Entry',1,0,'2026-04-15 17:26:19','2026-04-15 17:26:19',NULL,NULL,NULL,'08728a4c-f165-4bc8-bbcd-2c2a3503be30'),
(7914,7910,NULL,3403,40,'craft\\elements\\Entry',1,0,'2026-04-15 17:26:19','2026-04-15 17:26:19',NULL,NULL,NULL,'fd7f3cdc-38f1-47a2-b268-64a5af0723db'),
(7915,7911,NULL,3404,40,'craft\\elements\\Entry',1,0,'2026-04-15 17:26:19','2026-04-15 17:26:19',NULL,NULL,NULL,'4c01d6cf-0cb0-4ef3-b8d0-251189ab7888'),
(7916,4702,NULL,3405,6,'craft\\elements\\Entry',1,0,'2026-04-15 17:27:05','2026-04-15 17:27:05',NULL,NULL,NULL,'772e7d6e-0b5c-4256-a492-c849b127ca88'),
(7919,38,NULL,3406,7,'craft\\elements\\Entry',1,0,'2026-04-16 12:10:17','2026-04-16 12:10:18',NULL,NULL,NULL,'c410b937-fe61-4307-8ff2-1111b9c4d423'),
(7920,867,NULL,3407,34,'craft\\elements\\Entry',1,0,'2026-04-16 12:10:17','2026-04-16 12:10:18',NULL,NULL,NULL,'63731616-0482-4b57-befd-f56209f7c1c2'),
(7924,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2026-04-16 12:11:06','2026-04-17 12:13:21',NULL,NULL,NULL,'e7e1d866-8324-4579-bda3-8ea39e4908b4'),
(7925,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-04-16 12:11:07','2026-04-17 12:13:21',NULL,NULL,NULL,'d8c90b85-2a53-4024-9d69-fe68cf5df544'),
(7926,887,NULL,3408,7,'craft\\elements\\Entry',1,0,'2026-04-16 12:11:06','2026-04-16 12:11:07',NULL,NULL,NULL,'e473e0ce-f153-4f94-9c02-b52428d6c899'),
(7927,7924,NULL,3409,34,'craft\\elements\\Entry',1,0,'2026-04-16 12:11:06','2026-04-16 12:11:07',NULL,NULL,NULL,'a2bd02f6-e7b0-4bcb-97ec-a06d1acff4b2'),
(7928,7925,NULL,3410,3,'craft\\elements\\Entry',1,0,'2026-04-16 12:11:07','2026-04-16 12:11:07',NULL,NULL,NULL,'5d4cea7b-c7e0-49ce-b1d4-721c648f6727'),
(7929,887,NULL,3411,7,'craft\\elements\\Entry',1,0,'2026-04-16 12:11:09','2026-04-16 12:11:09',NULL,NULL,NULL,'94b58c33-5f41-4f89-866d-c363edc546a8'),
(7932,912,NULL,3412,7,'craft\\elements\\Entry',1,0,'2026-04-16 12:20:07','2026-04-16 12:20:07',NULL,NULL,NULL,'9463822c-6b79-4120-9921-f14733a938e6'),
(7933,5178,NULL,3413,42,'craft\\elements\\Entry',1,0,'2026-04-16 12:20:07','2026-04-16 12:20:07',NULL,NULL,NULL,'38c8a9de-07ea-4b8b-9daf-c8053939fcfb'),
(7938,6712,NULL,3414,47,'craft\\elements\\Entry',1,0,'2026-04-16 12:36:18','2026-04-16 12:36:18',NULL,NULL,NULL,'35e56e2f-cd95-443e-bc76-76221ae6af4d'),
(7939,6713,NULL,3415,42,'craft\\elements\\Entry',1,0,'2026-04-16 12:36:18','2026-04-16 12:36:18',NULL,NULL,NULL,'8ddb56bd-27b8-4792-8f7b-c34a325a4095'),
(7940,6717,NULL,3416,44,'craft\\elements\\Entry',1,0,'2026-04-16 12:36:18','2026-04-16 12:36:18',NULL,NULL,NULL,'d94cdc85-c9ac-44bb-8244-5afb8e68ba6a'),
(7941,6718,NULL,3417,35,'craft\\elements\\Entry',1,0,'2026-04-16 12:36:18','2026-04-16 12:36:18',NULL,NULL,NULL,'145e8719-a1ca-49d7-aac7-7e8089432a96'),
(7945,6712,NULL,3418,47,'craft\\elements\\Entry',1,0,'2026-04-16 12:41:20','2026-04-16 12:41:20',NULL,NULL,NULL,'0c83eca6-7ce3-464a-8f5b-5edcfc3c1fb1'),
(7946,6714,NULL,3419,42,'craft\\elements\\Entry',1,0,'2026-04-16 12:41:20','2026-04-16 12:41:20',NULL,NULL,NULL,'14ca86f0-b59b-4ff1-b028-471b207f31ba'),
(7949,6712,NULL,3420,47,'craft\\elements\\Entry',1,0,'2026-04-16 12:44:03','2026-04-16 12:44:03',NULL,NULL,NULL,'9091511e-972c-45f6-bb38-ac1dd3fc1a25'),
(7950,6715,NULL,3421,42,'craft\\elements\\Entry',1,0,'2026-04-16 12:44:03','2026-04-16 12:44:04',NULL,NULL,NULL,'e77dd737-9264-4255-817a-f9227d1a3f83'),
(7959,6712,NULL,3422,47,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'802d87ce-e3ce-4513-90a3-63b50e9ed6b0'),
(7960,6715,NULL,3423,42,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'44c4298e-4d5d-4b2f-8296-7c19b75378cf'),
(7961,6717,NULL,3424,44,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'639b9cbe-df3e-45e5-b387-db44dedcb558'),
(7962,6719,NULL,3425,35,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'00686d05-0db6-47bc-add8-fb58aca3b4c9'),
(7963,6720,NULL,3426,35,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'14f17015-5569-4054-8620-78323f0c2f4b'),
(7964,6721,NULL,3427,35,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'196e4bb8-2a3d-433f-bc99-24ba2ac8a421'),
(7965,6743,NULL,3428,35,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'0533805c-9e7f-43e1-a0b5-5cf815952221'),
(7966,6744,NULL,3429,35,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:02','2026-04-16 12:49:02',NULL,NULL,NULL,'fc4400af-f41a-4423-b716-ded4352249dd'),
(7967,6712,NULL,3430,47,'craft\\elements\\Entry',1,0,'2026-04-16 12:49:06','2026-04-16 12:49:06',NULL,NULL,NULL,'04adc682-27c5-43e8-aa91-315a685f5dd5'),
(7996,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:33',NULL,NULL,NULL,'205fa77e-552f-4273-9b7a-976698b04015'),
(7997,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:33',NULL,NULL,NULL,'2416c9de-ef7c-435a-b0e7-d94d0d1743f1'),
(7998,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:33',NULL,NULL,NULL,'35c2ea94-bd6f-4543-b341-7599780873d4'),
(7999,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:33',NULL,NULL,NULL,'90ce82da-01f4-48ed-9218-f0e5e7b0c63f'),
(8000,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:33',NULL,NULL,NULL,'e76285fc-249a-479f-bfb5-ff79e71f49cd'),
(8001,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:34','2026-04-16 13:20:34',NULL,NULL,NULL,'c27718b5-f9b9-40ff-adbf-2e8a930b34ef'),
(8002,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:34','2026-04-16 13:20:34',NULL,NULL,NULL,'f26b9462-2d3f-41c4-9990-e9e9ed0f8674'),
(8003,6647,NULL,3431,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'e05e4e34-c051-4859-82ec-f15118ac4f66'),
(8004,6648,NULL,3432,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'6a2c3364-af16-4384-b49f-549c892a2eb6'),
(8005,6649,NULL,3433,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'e6bd9ecc-5898-4261-9468-214d9799ab7f'),
(8006,6650,NULL,3434,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'1ea8ac2a-4147-4978-92d5-9ddb5f20ddfd'),
(8007,6652,NULL,3435,44,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'884a34e5-aeeb-4ba3-b03d-a2a4d057dab9'),
(8008,7996,NULL,3436,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'d889566b-8954-4b76-84b5-384a8d52db04'),
(8009,7997,NULL,3437,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'9d87a8fa-c793-4933-bb35-8df1f46534c1'),
(8010,7998,NULL,3438,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'690f4b4b-01d6-4245-8ea9-8a21358c4cb4'),
(8011,7999,NULL,3439,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'38f6d628-0aa9-4fef-8812-935028957b87'),
(8012,8000,NULL,3440,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:33','2026-04-16 13:20:34',NULL,NULL,NULL,'8f584952-7529-4d15-916b-195d263ff651'),
(8013,8001,NULL,3441,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:34','2026-04-16 13:20:34',NULL,NULL,NULL,'78ea3923-aed3-49a9-bff0-1e9aa73cc9f2'),
(8014,8002,NULL,3442,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:20:34','2026-04-16 13:20:34',NULL,NULL,NULL,'67715581-fba5-4446-8bf0-fa572e8ee758'),
(8015,6647,NULL,3443,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:21:16','2026-04-16 13:21:16',NULL,NULL,NULL,'f24127cd-e8d6-4dd3-b804-dba92d1a0576'),
(8016,6647,NULL,3444,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:21:19','2026-04-16 13:21:19',NULL,NULL,NULL,'5002b773-6e21-470c-b89c-c497b45e9500'),
(8020,6550,NULL,3445,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:27:28','2026-04-16 13:27:28',NULL,NULL,NULL,'f5d99faf-19b6-4c21-8334-f1ce77a7be1c'),
(8021,6555,NULL,3446,44,'craft\\elements\\Entry',1,0,'2026-04-16 13:27:28','2026-04-16 13:27:28',NULL,NULL,NULL,'1c7c2809-2b22-44dd-b3c5-0d3361ae2e8f'),
(8022,6561,NULL,3447,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:27:28','2026-04-16 13:27:28',NULL,NULL,NULL,'6fd52d79-0146-4b73-aaf0-8703878e10ae'),
(8023,6550,NULL,3448,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:27:32','2026-04-16 13:27:32',NULL,NULL,NULL,'edfab56e-2403-4a92-8549-4839c64b795f'),
(8027,6759,NULL,3449,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:28:51','2026-04-16 13:28:51',NULL,NULL,NULL,'02a52094-fd32-462c-8efe-36e8aa8b49fd'),
(8028,6760,NULL,3450,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:28:51','2026-04-16 13:28:51',NULL,NULL,NULL,'2f76b5d6-50a2-40ad-a8d0-353ad12c475e'),
(8029,6759,NULL,3451,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:40:55','2026-04-16 13:40:55',NULL,NULL,NULL,'5a5dd47d-344d-4c4c-a7f2-022871b8ce33'),
(8043,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'91fb0d56-3720-488a-bcf6-dcaeb2944212'),
(8044,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'362919db-2567-482a-afbe-d3c0618779a0'),
(8045,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'33d596e5-bf3c-4c15-aa1a-ae5767c71d24'),
(8046,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'96c509a3-75ce-4aa9-8548-c0de9391931d'),
(8047,6818,NULL,3452,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'354536a6-87ad-472b-8b25-ac868ca1bfa5'),
(8048,6819,NULL,3453,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'9540571a-e1c1-47fe-b609-737cea7b8702'),
(8049,6820,NULL,3454,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'a7039187-5791-48e1-a87f-78cac012eaf4'),
(8050,6821,NULL,3455,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'d7fc2046-d9f8-40e0-bc6e-aeb29f47ee27'),
(8051,6823,NULL,3456,44,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'0b672841-d04e-4f20-a4b4-85d23920e1d6'),
(8052,6824,NULL,3457,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'7f60518c-fc2b-4158-92c8-2fca3aa24654'),
(8053,6825,NULL,3458,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'9f6a2e2e-9f1e-4b4a-adf2-da8c851a3702'),
(8054,8043,NULL,3459,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'70f032bb-786a-4c22-8437-1c3acbfeaca5'),
(8055,8044,NULL,3460,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'93607e75-5338-4cf8-9fda-4a4ca77b2421'),
(8056,8045,NULL,3461,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'0c7af9f1-3c95-4838-8d9d-aa2008e2e437'),
(8057,8046,NULL,3462,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:51:08','2026-04-16 13:51:08',NULL,NULL,NULL,'f290f661-50dc-440d-ac72-5f76c558b5f2'),
(8060,6997,NULL,3463,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:55:16','2026-04-16 13:55:16',NULL,NULL,NULL,'3542dd97-9122-4e3f-aa6b-27d288e448d0'),
(8061,7000,NULL,3464,42,'craft\\elements\\Entry',1,0,'2026-04-16 13:55:16','2026-04-16 13:55:16',NULL,NULL,NULL,'f1dfe88a-2f35-4722-96da-36abb9bd8449'),
(8064,6997,NULL,3465,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:55:58','2026-04-16 13:55:58',NULL,NULL,NULL,'a430d39a-acbc-47df-a5d5-cb871a88cf3a'),
(8065,7002,NULL,3466,44,'craft\\elements\\Entry',1,0,'2026-04-16 13:55:58','2026-04-16 13:55:58',NULL,NULL,NULL,'28e8371d-7ec5-4685-b1f5-c281a9d86400'),
(8066,6997,NULL,3467,47,'craft\\elements\\Entry',1,0,'2026-04-16 13:56:02','2026-04-16 13:56:02',NULL,NULL,NULL,'eb9ae998-7c19-43be-9deb-6029ee9e8b00'),
(8071,4303,NULL,3468,6,'craft\\elements\\Entry',1,0,'2026-04-16 13:57:12','2026-04-16 13:57:12',NULL,NULL,NULL,'fda5b6eb-885f-4ff2-8848-35b4d39e31e6'),
(8072,4318,NULL,3469,44,'craft\\elements\\Entry',1,0,'2026-04-16 13:57:12','2026-04-16 13:57:12',NULL,NULL,NULL,'2a3e1474-5204-4d1c-90a2-a49d3de49eb0'),
(8073,4319,NULL,3470,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:57:12','2026-04-16 13:57:12',NULL,NULL,NULL,'649e05bf-2163-4358-84fd-1bfb64b88749'),
(8074,4323,NULL,3471,35,'craft\\elements\\Entry',1,0,'2026-04-16 13:57:12','2026-04-16 13:57:12',NULL,NULL,NULL,'1b174331-888f-4b18-83d1-bc0f808cf935'),
(8079,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:01:29','2026-04-16 14:17:03',NULL,NULL,NULL,'2eee6ef9-594f-4f83-8814-4d739acbff39'),
(8089,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:03',NULL,NULL,NULL,'1f12c557-0826-4ac6-bcaa-a5a1da628b11'),
(8090,5108,NULL,3472,47,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:03',NULL,NULL,NULL,'539d60f5-0d72-48cf-ac65-3e0df6ecb17d'),
(8091,5109,NULL,3473,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'a4c7445c-4ab6-4aa4-baa2-9d265021a0d3'),
(8092,5110,NULL,3474,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'00fec695-d9ff-4109-8065-6e0c7e6db3a6'),
(8093,5111,NULL,3475,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'8106451a-abcc-4f76-a18d-dd89f9e403ca'),
(8094,5113,NULL,3476,44,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'a5eb39ef-65df-4019-9457-224ecff3e24d'),
(8095,5114,NULL,3477,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'fb6def06-25b4-4d46-bd25-55ee3b775e5a'),
(8096,8089,NULL,3478,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'7afacef9-7881-4d23-a80d-6aa314eef20d'),
(8097,8079,NULL,3479,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'25129eb1-1099-48c2-85ac-620449d6ae04'),
(8098,5117,NULL,3480,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'f1fe8a1d-66e7-4549-a5f1-16fec44e5886'),
(8099,5118,NULL,3481,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'797443aa-c4a5-4c1e-92ca-b2e1f493e9fe'),
(8100,5119,NULL,3482,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'ee20eb11-fa20-4f39-bb23-9945135fe272'),
(8101,5120,NULL,3483,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:03','2026-04-16 14:17:04',NULL,NULL,NULL,'f0556a30-1795-4848-b309-e32b65046f78'),
(8102,5108,NULL,3484,47,'craft\\elements\\Entry',1,0,'2026-04-16 14:17:06','2026-04-16 14:17:06',NULL,NULL,NULL,'a6e4b550-e2c5-4da7-9657-8a38d3f8bc65'),
(8117,3086,NULL,3485,47,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'9c63f4ef-3cd2-48a1-80f1-9e20b8329bf7'),
(8118,3089,NULL,3486,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'9d5aa49d-0368-46e6-8b9a-1d93235cf730'),
(8119,3090,NULL,3487,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'ef0f9d94-cd0f-41a8-859c-eab1f9e60ebd'),
(8120,3093,NULL,3488,44,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'b8ac473d-98b5-4c0a-9b89-05b8d519f7cc'),
(8121,3116,NULL,3489,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'41065e3c-0bc2-45c6-983d-12151f24c96b'),
(8122,3117,NULL,3490,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'b3fd7a90-e32f-41b9-ab8e-5f52550c5ce7'),
(8123,3118,NULL,3491,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'92337dc6-b1d6-47ec-b630-00077e3508e1'),
(8124,3119,NULL,3492,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'c5fe2fd7-787d-4861-8088-35ef9c3f1607'),
(8125,3120,NULL,3493,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'484d8f62-a168-4d82-9343-d5f3652a9629'),
(8126,3121,NULL,3494,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:57',NULL,NULL,NULL,'fca02db7-b880-4eaa-a3aa-ae30ffbf35c4'),
(8127,3122,NULL,3495,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:58',NULL,NULL,NULL,'6c01477f-fe2e-4e89-adc6-b2e5f621ac47'),
(8128,5087,NULL,3496,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:33:57','2026-04-16 14:33:58',NULL,NULL,NULL,'28240126-0b4b-44f2-8105-f4acc4204f36'),
(8132,38,NULL,3497,7,'craft\\elements\\Entry',1,0,'2026-04-16 14:35:29','2026-04-16 14:35:29',NULL,NULL,NULL,'205be34d-cc4d-45bd-8f72-92e945dac5dc'),
(8133,274,NULL,3498,16,'craft\\elements\\Entry',1,0,'2026-04-16 14:35:29','2026-04-16 14:35:29',NULL,NULL,NULL,'485b5aeb-8626-4312-86e6-5fe5a00b0d2d'),
(8134,6462,NULL,3499,17,'craft\\elements\\Entry',1,0,'2026-04-16 14:35:29','2026-04-16 14:35:29',NULL,NULL,NULL,'475ab361-76e3-42c2-bce6-9a1b05d8841b'),
(8138,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:36:50','2026-04-16 14:47:37',NULL,NULL,NULL,'6058bddb-6204-4301-b8d9-14e74aad17a2'),
(8139,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:37:12','2026-04-16 14:47:37',NULL,NULL,NULL,'3111dea9-b629-4050-a2a3-849680ab4dd2'),
(8151,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'57c1d567-9c5c-4e94-b93b-a6442836ad52'),
(8152,7074,NULL,3500,47,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:36','2026-04-16 14:47:37',NULL,NULL,NULL,'67895e22-0025-43c9-bb29-1f9fc79aa969'),
(8153,7075,NULL,3501,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:36','2026-04-16 14:47:37',NULL,NULL,NULL,'958eaaf6-0d9e-4bfe-b077-b01ac992937c'),
(8154,7076,NULL,3502,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:36','2026-04-16 14:47:37',NULL,NULL,NULL,'f9f0aa7b-87e5-4742-8b9a-d7cbdaecf3b9'),
(8155,7077,NULL,3503,42,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:36','2026-04-16 14:47:37',NULL,NULL,NULL,'96908149-5335-40e7-bd36-47920a4ea7d1'),
(8156,7079,NULL,3504,44,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:36','2026-04-16 14:47:37',NULL,NULL,NULL,'d846c42e-14e9-46a8-ae0a-74638eddb71c'),
(8157,7131,NULL,3505,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:36','2026-04-16 14:47:37',NULL,NULL,NULL,'4e0f852a-921a-4b66-abeb-e506ff652d72'),
(8158,8151,NULL,3506,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'044c3684-b565-4a36-b740-d25a0a254989'),
(8159,8138,NULL,3507,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'28537ecb-733d-4669-a558-23c18563cf3c'),
(8160,7134,NULL,3508,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'7c3dd0f4-0a11-42b9-baf1-17c2eec143a0'),
(8161,7135,NULL,3509,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'b7009c0b-7a91-497e-944d-6199d5f653c0'),
(8162,7136,NULL,3510,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'57c197e7-471a-4eb9-8dab-555295c31901'),
(8163,7137,NULL,3511,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'39dd9d6a-4567-4860-9cc9-1c1c45e39b44'),
(8164,8139,NULL,3512,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:37','2026-04-16 14:47:37',NULL,NULL,NULL,'e21b66ac-c5d0-4fe0-89dd-0f5d74a3ea53'),
(8165,7074,NULL,3513,47,'craft\\elements\\Entry',1,0,'2026-04-16 14:47:40','2026-04-16 14:47:40',NULL,NULL,NULL,'3bd2056d-7257-4f71-8be0-bc803d07f8cb'),
(8169,38,NULL,3514,7,'craft\\elements\\Entry',1,0,'2026-04-16 14:51:26','2026-04-16 14:51:26',NULL,NULL,NULL,'c14d8ee9-5b3c-4876-b822-127e17af2eba'),
(8170,143,NULL,3515,4,'craft\\elements\\Entry',1,0,'2026-04-16 14:51:26','2026-04-16 14:51:26',NULL,NULL,NULL,'44325d82-59f3-46a1-84e8-d42b4d5b0fea'),
(8171,144,NULL,3516,3,'craft\\elements\\Entry',1,0,'2026-04-16 14:51:26','2026-04-16 14:51:26',NULL,NULL,NULL,'15a969fa-82bd-4942-ac48-bcf6beaa8ada'),
(8176,38,NULL,3517,7,'craft\\elements\\Entry',1,0,'2026-04-16 14:52:31','2026-04-16 14:52:31',NULL,NULL,NULL,'e0d07bc6-2a66-406c-947c-025032f4fa45'),
(8177,143,NULL,3518,4,'craft\\elements\\Entry',1,0,'2026-04-16 14:52:31','2026-04-16 14:52:31',NULL,NULL,NULL,'ba0bba41-a600-48da-913e-167ef5e0fd4b'),
(8178,144,NULL,3519,3,'craft\\elements\\Entry',1,0,'2026-04-16 14:52:31','2026-04-16 14:52:31',NULL,NULL,NULL,'5d339621-fb74-4186-a6d3-37ddf01816e2'),
(8179,145,NULL,3520,3,'craft\\elements\\Entry',1,0,'2026-04-16 14:52:31','2026-04-16 14:52:31',NULL,NULL,NULL,'403cc450-4ca8-4491-bc9e-070fcacda386'),
(8183,38,NULL,3521,7,'craft\\elements\\Entry',1,0,'2026-04-16 14:54:00','2026-04-16 14:54:00',NULL,NULL,NULL,'baa827e9-c360-4323-9187-278d0c1494ea'),
(8184,274,NULL,3522,16,'craft\\elements\\Entry',1,0,'2026-04-16 14:54:00','2026-04-16 14:54:00',NULL,NULL,NULL,'d579020b-5f20-4970-8331-82e1724c9a9b'),
(8185,302,NULL,3523,3,'craft\\elements\\Entry',1,0,'2026-04-16 14:54:00','2026-04-16 14:54:00',NULL,NULL,NULL,'e0e42466-e171-443d-a944-b4ee986fac1e'),
(8190,3086,NULL,3524,47,'craft\\elements\\Entry',1,0,'2026-04-16 14:56:08','2026-04-16 14:56:08',NULL,NULL,NULL,'a2099f0e-0b82-43f0-87a8-48168f42f55a'),
(8191,3093,NULL,3525,44,'craft\\elements\\Entry',1,0,'2026-04-16 14:56:08','2026-04-16 14:56:08',NULL,NULL,NULL,'6d135d9f-26d0-4625-a3d1-ec38015e3ff3'),
(8192,3118,NULL,3526,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:56:08','2026-04-16 14:56:08',NULL,NULL,NULL,'4aab847a-e269-4b87-b708-b9c6e8ed7113'),
(8193,3120,NULL,3527,35,'craft\\elements\\Entry',1,0,'2026-04-16 14:56:08','2026-04-16 14:56:08',NULL,NULL,NULL,'7dc0580b-8d12-4818-8402-f9be1ca4897b'),
(8195,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-17 11:47:07','2026-04-17 11:47:07',NULL,NULL,NULL,'69efea81-15e1-4fc4-b04a-3da03a529361'),
(8196,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-17 11:47:17','2026-04-17 11:47:17',NULL,NULL,NULL,'6c730cbf-b610-45d3-ab88-731bbc3d89e9'),
(8197,112,NULL,3528,5,'craft\\elements\\Entry',1,0,'2026-04-17 11:47:28','2026-04-17 11:47:28',NULL,NULL,NULL,'de92ca2f-71a9-4034-858b-8bb8ed16e6b3'),
(8199,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-17 11:53:41','2026-04-17 11:53:41',NULL,NULL,NULL,'31d836f3-93e2-45f4-91fb-b18f3b7e4d48'),
(8200,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-17 11:54:28','2026-04-17 11:54:28',NULL,NULL,NULL,'7b4cfe9d-5aae-4924-9943-ebaa049f40ca'),
(8201,99,NULL,3529,5,'craft\\elements\\Entry',1,0,'2026-04-17 11:54:44','2026-04-17 11:54:44',NULL,NULL,NULL,'6f9607c7-adad-48f8-a331-453bc8873cf5'),
(8203,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-17 12:06:19','2026-04-17 12:06:19',NULL,NULL,NULL,'79c3b26e-dbf9-4a36-95e4-15dfb91d41e4'),
(8204,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2026-04-17 12:06:29','2026-04-17 12:06:29',NULL,NULL,NULL,'74c3c1c2-c863-4f79-b679-625818c6045d'),
(8205,89,NULL,3530,5,'craft\\elements\\Entry',1,0,'2026-04-17 12:06:35','2026-04-17 12:06:35',NULL,NULL,NULL,'90ff6160-cbc8-45a0-b104-199b224c3d39'),
(8211,887,NULL,3531,7,'craft\\elements\\Entry',1,0,'2026-04-17 12:13:21','2026-04-17 12:13:21',NULL,NULL,NULL,'29401549-c105-4407-99e0-29b6f7bf9aad'),
(8212,7924,NULL,3532,34,'craft\\elements\\Entry',1,0,'2026-04-17 12:13:21','2026-04-17 12:13:21',NULL,NULL,NULL,'493461c6-c723-4491-a159-e78919b09a90'),
(8213,7925,NULL,3533,3,'craft\\elements\\Entry',1,0,'2026-04-17 12:13:21','2026-04-17 12:13:21',NULL,NULL,NULL,'4b0dd0bf-aca1-4eb7-9725-5c01e31cc035'),
(8218,38,NULL,3534,7,'craft\\elements\\Entry',1,0,'2026-04-17 12:19:21','2026-04-17 12:19:21',NULL,NULL,NULL,'9123097c-f06a-4cba-b4a2-b7f1e5f716cb'),
(8219,867,NULL,3535,34,'craft\\elements\\Entry',1,0,'2026-04-17 12:19:21','2026-04-17 12:19:21',NULL,NULL,NULL,'618e76a3-51fa-40aa-8282-edcbe11226fb'),
(8220,5192,NULL,3536,3,'craft\\elements\\Entry',1,0,'2026-04-17 12:19:21','2026-04-17 12:19:22',NULL,NULL,NULL,'e6fe1fec-1572-4c6a-ad5f-6bb41aa691ba'),
(8223,4026,NULL,3537,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:23:55','2026-04-17 12:23:55',NULL,NULL,NULL,'ed05f0ac-cdf1-4127-ae64-2d8f2dd533bd'),
(8224,4027,NULL,3538,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:23:55','2026-04-17 12:23:55',NULL,NULL,NULL,'2ec0f521-482d-4d86-b486-2c0b54f04dfb'),
(8227,4203,NULL,3539,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:07','2026-04-17 12:24:07',NULL,NULL,NULL,'55c4efab-f9d0-4d3b-93db-dea279b99563'),
(8228,4204,NULL,3540,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:07','2026-04-17 12:24:07',NULL,NULL,NULL,'6624996e-baaa-4aaa-854f-e2db1d960474'),
(8231,4303,NULL,3541,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:16','2026-04-17 12:24:16',NULL,NULL,NULL,'a13c055f-2fd9-4121-914d-69df5dba1c07'),
(8232,4304,NULL,3542,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:16','2026-04-17 12:24:16',NULL,NULL,NULL,'42352ae8-0b94-4a0b-a857-afce93e4cd94'),
(8235,4805,NULL,3543,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:25','2026-04-17 12:24:25',NULL,NULL,NULL,'38f3f500-4f03-4c5c-8464-e04bfe9ba829'),
(8236,4806,NULL,3544,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:25','2026-04-17 12:24:25',NULL,NULL,NULL,'bfd56fa1-a563-4ff9-880b-065d5c2cf14f'),
(8239,4702,NULL,3545,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:36','2026-04-17 12:24:36',NULL,NULL,NULL,'5b9c367b-6db9-4aa6-8878-699c9a550aa3'),
(8240,4703,NULL,3546,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:36','2026-04-17 12:24:36',NULL,NULL,NULL,'50b7e1f5-0e43-49d0-aefd-88247db42e6c'),
(8243,4418,NULL,3547,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:44','2026-04-17 12:24:44',NULL,NULL,NULL,'a2a49286-42ce-4cdf-9bd4-e9d1975ba0ce'),
(8244,4419,NULL,3548,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:44','2026-04-17 12:24:44',NULL,NULL,NULL,'4b852ed0-2758-4e09-8a58-43f6afbdfc58'),
(8247,4593,NULL,3549,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:54','2026-04-17 12:24:54',NULL,NULL,NULL,'45a89279-2aad-49d1-b2f6-a6e29488e490'),
(8248,4594,NULL,3550,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:24:54','2026-04-17 12:24:54',NULL,NULL,NULL,'2224d792-d0a1-40f1-a43d-22f9468db81b'),
(8251,4502,NULL,3551,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:25:05','2026-04-17 12:25:05',NULL,NULL,NULL,'048d1f49-0426-4db7-99fb-7c5f1a32ea29'),
(8252,4503,NULL,3552,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:25:05','2026-04-17 12:25:05',NULL,NULL,NULL,'5810c4c0-9746-413f-b321-f5f18ac0ba42'),
(8255,4896,NULL,3553,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:25:15','2026-04-17 12:25:15',NULL,NULL,NULL,'565eb47a-c7d0-4862-a608-d9a11b8ecd6a'),
(8256,4897,NULL,3554,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:25:15','2026-04-17 12:25:15',NULL,NULL,NULL,'b88a285c-def4-4a54-9667-23b9711c8e56'),
(8259,1951,NULL,3555,6,'craft\\elements\\Entry',1,0,'2026-04-17 12:25:24','2026-04-17 12:25:24',NULL,NULL,NULL,'0dc85616-b838-49bc-a3e0-e7a76536ec92'),
(8260,1952,NULL,3556,39,'craft\\elements\\Entry',1,0,'2026-04-17 12:25:24','2026-04-17 12:25:24',NULL,NULL,NULL,'05563cd7-dc1e-424e-a221-87e8eaf4b7e8'),
(8263,4026,NULL,3557,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:14:57','2026-04-17 16:14:57',NULL,NULL,NULL,'9dd3332d-b09a-41a6-98be-919c1d3fc6ca'),
(8264,4027,NULL,3558,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:14:57','2026-04-17 16:14:57',NULL,NULL,NULL,'3836f79e-a489-403b-9143-bbe1e30b941f'),
(8267,4026,NULL,3559,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:19:30','2026-04-17 16:19:31',NULL,NULL,NULL,'7b13ab67-a7f7-44ce-bc91-f2c70668470b'),
(8268,4027,NULL,3560,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:19:30','2026-04-17 16:19:31',NULL,NULL,NULL,'53189fa0-2312-46a7-9bbd-eb93727a483f'),
(8271,4805,NULL,3561,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:23:19','2026-04-17 16:23:19',NULL,NULL,NULL,'d3da16e5-2764-44f1-a331-ede977f684db'),
(8272,4806,NULL,3562,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:23:19','2026-04-17 16:23:19',NULL,NULL,NULL,'251a4962-5760-4efb-9ccf-5e890cce79c0'),
(8275,4805,NULL,3563,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:27:55','2026-04-17 16:27:55',NULL,NULL,NULL,'9928762d-9f34-4cba-9f49-d93450f968a8'),
(8276,4806,NULL,3564,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:27:55','2026-04-17 16:27:55',NULL,NULL,NULL,'ece9fa90-25cd-4a45-8a3b-496b4abcf4a7'),
(8279,4026,NULL,3565,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:25','2026-04-17 16:28:25',NULL,NULL,NULL,'1529def7-230f-49aa-b045-2da7885bc228'),
(8280,4027,NULL,3566,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:25','2026-04-17 16:28:25',NULL,NULL,NULL,'71af78e7-ccd1-4575-b4ef-f59e795c1e39'),
(8283,4203,NULL,3567,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:38','2026-04-17 16:28:38',NULL,NULL,NULL,'948ba19c-9eff-49a0-8204-178ebed2a2ee'),
(8284,4204,NULL,3568,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:38','2026-04-17 16:28:38',NULL,NULL,NULL,'c6ae2198-fb97-4373-ac88-6b29dbb7be2d'),
(8287,4303,NULL,3569,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:49','2026-04-17 16:28:49',NULL,NULL,NULL,'9c6596d7-2405-4d8a-aeb0-2f11cfc844e9'),
(8288,4304,NULL,3570,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:49','2026-04-17 16:28:49',NULL,NULL,NULL,'6e304e87-26a6-44ad-9c6a-eb5912852ce1'),
(8291,4805,NULL,3571,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:58','2026-04-17 16:28:58',NULL,NULL,NULL,'13f455b1-adad-4da3-a434-7fbcc394639d'),
(8292,4806,NULL,3572,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:28:58','2026-04-17 16:28:58',NULL,NULL,NULL,'fd67118b-89d0-43dc-9922-7d528092ddee'),
(8295,4702,NULL,3573,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:09','2026-04-17 16:29:09',NULL,NULL,NULL,'06461335-217e-4a2a-8955-8e6988627273'),
(8296,4703,NULL,3574,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:09','2026-04-17 16:29:09',NULL,NULL,NULL,'95214c44-ee83-4450-8cc8-b8d426e2e851'),
(8299,4418,NULL,3575,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:19','2026-04-17 16:29:19',NULL,NULL,NULL,'d23413db-2778-4251-a33d-ffd2d6a099a5'),
(8300,4419,NULL,3576,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:19','2026-04-17 16:29:19',NULL,NULL,NULL,'95b53a0b-be9e-4a41-8656-b4398dad0d3a'),
(8303,4593,NULL,3577,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:29','2026-04-17 16:29:29',NULL,NULL,NULL,'9ae495d9-d005-44f3-8195-efd0252ae0e3'),
(8304,4594,NULL,3578,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:29','2026-04-17 16:29:29',NULL,NULL,NULL,'1974215b-1659-48bf-91b7-e8818988419c'),
(8307,4502,NULL,3579,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:38','2026-04-17 16:29:38',NULL,NULL,NULL,'5ffa49a0-c068-42f3-9b54-0bcd1c08795e'),
(8308,4503,NULL,3580,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:38','2026-04-17 16:29:38',NULL,NULL,NULL,'1699680d-0625-46a9-8e72-248e4e1570c8'),
(8311,4896,NULL,3581,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:46','2026-04-17 16:29:46',NULL,NULL,NULL,'47aa9722-7821-4928-8018-3d3713c18271'),
(8312,4897,NULL,3582,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:46','2026-04-17 16:29:46',NULL,NULL,NULL,'25b1648d-dec4-41da-bd87-e9e46d43d2ce'),
(8315,1951,NULL,3583,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:55','2026-04-17 16:29:55',NULL,NULL,NULL,'bb013453-4505-4a96-9e72-8780857380b7'),
(8316,1952,NULL,3584,39,'craft\\elements\\Entry',1,0,'2026-04-17 16:29:55','2026-04-17 16:29:55',NULL,NULL,NULL,'487482f3-00e1-49b1-b47d-b3c52e9efe3f'),
(8319,4502,NULL,3585,6,'craft\\elements\\Entry',1,0,'2026-04-17 16:33:14','2026-04-17 16:33:14',NULL,NULL,NULL,'72e9feaa-733d-4ff0-afed-d1fad77aa9de'),
(8320,4529,NULL,3586,49,'craft\\elements\\Entry',1,0,'2026-04-17 16:33:14','2026-04-17 16:33:14',NULL,NULL,NULL,'799730f9-6b81-4c03-8df2-6b751caa4650'),
(8323,6934,NULL,3587,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:03:56','2026-04-20 19:03:57',NULL,NULL,NULL,'b428d65f-2a36-4338-b912-e202ccf855a1'),
(8324,6946,NULL,3588,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:03:56','2026-04-20 19:03:57',NULL,NULL,NULL,'f25b3ab2-0cba-494c-bc2d-6c3c5029da18'),
(8327,6997,NULL,3589,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:04:59','2026-04-20 19:04:59',NULL,NULL,NULL,'38331827-c449-4797-8455-fef1bbdea860'),
(8328,7012,NULL,3590,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:04:59','2026-04-20 19:04:59',NULL,NULL,NULL,'b5f1a66d-88ca-45a9-a39e-51ac30fb2747'),
(8331,7074,NULL,3591,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:12','2026-04-20 19:05:12',NULL,NULL,NULL,'7a74d989-4497-442e-897c-1ad25350b8da'),
(8332,7089,NULL,3592,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:12','2026-04-20 19:05:12',NULL,NULL,NULL,'ca089e95-a8fe-4cad-a4e8-0b72548dbbca'),
(8335,3086,NULL,3593,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:23','2026-04-20 19:05:23',NULL,NULL,NULL,'4db902c2-f53c-4142-9902-2e60878bb281'),
(8336,3102,NULL,3594,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:23','2026-04-20 19:05:23',NULL,NULL,NULL,'f436ca27-64a6-407b-aeae-3b39592ecf29'),
(8339,6647,NULL,3595,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:34','2026-04-20 19:05:34',NULL,NULL,NULL,'6e2342b0-3174-4fca-9c94-b6d42d4eb078'),
(8340,6660,NULL,3596,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:34','2026-04-20 19:05:34',NULL,NULL,NULL,'b9ae5707-9393-4896-b030-d4cc4cf63c7a'),
(8343,6712,NULL,3597,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:48','2026-04-20 19:05:48',NULL,NULL,NULL,'bbd87570-a6f8-4320-8c7f-edc9897d3f71'),
(8344,6725,NULL,3598,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:05:48','2026-04-20 19:05:48',NULL,NULL,NULL,'a76b8049-594a-4c6a-8a17-9da86be943f7'),
(8347,6759,NULL,3599,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:08:02','2026-04-20 19:08:02',NULL,NULL,NULL,'bdc9d56e-935a-4b89-9b89-8713c03a6f3f'),
(8348,6771,NULL,3600,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:08:02','2026-04-20 19:08:02',NULL,NULL,NULL,'ff032144-33cb-4aa4-8abf-94c7888fe795'),
(8351,6550,NULL,3601,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:08:22','2026-04-20 19:08:22',NULL,NULL,NULL,'7710b4a1-fb7e-44a5-8c3f-2c1150efe779'),
(8352,6564,NULL,3602,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:08:22','2026-04-20 19:08:22',NULL,NULL,NULL,'5c7f2825-4b24-4f73-9808-3a5514657500'),
(8355,5108,NULL,3603,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:09:20','2026-04-20 19:09:20',NULL,NULL,NULL,'418acf74-4e7f-4b6d-ba34-5da55bc7d4e0'),
(8356,5122,NULL,3604,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:09:20','2026-04-20 19:09:20',NULL,NULL,NULL,'47142588-2c96-4491-b358-b9f17bc779a6'),
(8359,6818,NULL,3605,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:13:53','2026-04-20 19:13:53',NULL,NULL,NULL,'730ab157-f77c-456c-905e-cf4b69845ce6'),
(8360,6830,NULL,3606,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:13:53','2026-04-20 19:13:53',NULL,NULL,NULL,'f342051e-7d5f-42d5-9053-b711016c2249'),
(8363,6550,NULL,3607,47,'craft\\elements\\Entry',1,0,'2026-04-20 19:14:16','2026-04-20 19:14:16',NULL,NULL,NULL,'82a26206-ff9c-4d1f-9156-ca0950278d20'),
(8364,6564,NULL,3608,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:14:16','2026-04-20 19:14:16',NULL,NULL,NULL,'8cd03456-9824-4aa6-8325-83db58c80b13'),
(8368,4026,NULL,3609,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:15:07','2026-04-20 19:15:07',NULL,NULL,NULL,'a297b189-e79c-4704-abf2-bc237ab9bc40'),
(8369,4038,NULL,3610,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:15:07','2026-04-20 19:15:07',NULL,NULL,NULL,'c47f0500-8d3e-4030-a754-85530932b769'),
(8370,4053,NULL,3611,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:15:07','2026-04-20 19:15:07',NULL,NULL,NULL,'8c94f814-4718-4728-91b4-019e9219cc8b'),
(8374,4203,NULL,3612,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:15:28','2026-04-20 19:15:28',NULL,NULL,NULL,'f8392fb9-7cf9-4dc4-9991-2858b0811d49'),
(8375,4215,NULL,3613,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:15:28','2026-04-20 19:15:28',NULL,NULL,NULL,'0e486424-e39f-461f-85b2-77b9835ca81a'),
(8376,4230,NULL,3614,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:15:28','2026-04-20 19:15:28',NULL,NULL,NULL,'46bd06c4-1532-4f43-8b76-0a5ab411bfe4'),
(8380,4303,NULL,3615,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:16:21','2026-04-20 19:16:22',NULL,NULL,NULL,'3901b1a3-4418-4200-a3d8-177cb793ea7c'),
(8381,4315,NULL,3616,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:16:21','2026-04-20 19:16:22',NULL,NULL,NULL,'4d6b9803-1c27-432c-be3d-00fc68ba49df'),
(8382,4328,NULL,3617,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:16:22','2026-04-20 19:16:22',NULL,NULL,NULL,'fa1351ac-bc90-4317-b106-3f88720b0294'),
(8386,4805,NULL,3618,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:16:43','2026-04-20 19:16:43',NULL,NULL,NULL,'eed1d3e6-d97c-44eb-9b79-c9a76a0fffd2'),
(8387,4813,NULL,3619,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:16:43','2026-04-20 19:16:43',NULL,NULL,NULL,'28b9642c-0d1c-4941-a9a7-d7d363042d6f'),
(8388,4827,NULL,3620,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:16:43','2026-04-20 19:16:43',NULL,NULL,NULL,'f0a0f246-5dca-4ae8-9b4b-41688c1652e2'),
(8392,4702,NULL,3621,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:00','2026-04-20 19:17:00',NULL,NULL,NULL,'cec0c0d7-d617-4559-a8b7-cf671bfc7435'),
(8393,4714,NULL,3622,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:00','2026-04-20 19:17:00',NULL,NULL,NULL,'ed4e1459-6919-4483-ad3b-55fb8372baa6'),
(8394,4725,NULL,3623,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:00','2026-04-20 19:17:00',NULL,NULL,NULL,'31d4b409-62c4-49bd-930d-0f0f27a5f4ab'),
(8398,4418,NULL,3624,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:18','2026-04-20 19:17:18',NULL,NULL,NULL,'d4eae148-189b-49ee-b94c-508c5853dbd3'),
(8399,4430,NULL,3625,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:18','2026-04-20 19:17:18',NULL,NULL,NULL,'672c335e-0b68-47c2-9a0b-c3a1a2a3a0bc'),
(8400,4445,NULL,3626,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:18','2026-04-20 19:17:18',NULL,NULL,NULL,'c449cf62-90c5-49bc-a672-095af5be784c'),
(8404,4593,NULL,3627,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:34','2026-04-20 19:17:35',NULL,NULL,NULL,'2170732c-dfac-47c7-8f15-624fc09cd252'),
(8405,4605,NULL,3628,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:34','2026-04-20 19:17:35',NULL,NULL,NULL,'b1a1d75a-7289-41ce-8860-500629ee6119'),
(8406,4620,NULL,3629,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:34','2026-04-20 19:17:35',NULL,NULL,NULL,'d300209e-33d1-4e01-8fc6-ff3f8bbf1e42'),
(8410,4502,NULL,3630,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:50','2026-04-20 19:17:50',NULL,NULL,NULL,'b2247bd9-0d14-4a66-959c-f636529301cb'),
(8411,4514,NULL,3631,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:50','2026-04-20 19:17:50',NULL,NULL,NULL,'a35a7f30-3135-47da-bdd7-1e285ead4dec'),
(8412,4529,NULL,3632,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:17:50','2026-04-20 19:17:50',NULL,NULL,NULL,'1fc46948-0472-470b-9bb8-49e63e449dee'),
(8416,4896,NULL,3633,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:18:06','2026-04-20 19:18:06',NULL,NULL,NULL,'3a69fd63-ccf5-4a48-a931-599f95865e45'),
(8417,4908,NULL,3634,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:18:06','2026-04-20 19:18:06',NULL,NULL,NULL,'f4f60153-605e-4a7f-bb58-95ff43cdb709'),
(8418,4923,NULL,3635,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:18:06','2026-04-20 19:18:06',NULL,NULL,NULL,'88df0127-ae28-406e-8c5a-ed450dd8debe'),
(8422,1951,NULL,3636,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:18:24','2026-04-20 19:18:24',NULL,NULL,NULL,'775e0a4f-0055-4f1b-ae3d-376072f86132'),
(8423,2020,NULL,3637,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:18:24','2026-04-20 19:18:24',NULL,NULL,NULL,'d858ac29-2ff9-4e0c-b29a-c7de0b3a5663'),
(8424,1977,NULL,3638,49,'craft\\elements\\Entry',1,0,'2026-04-20 19:18:24','2026-04-20 19:18:24',NULL,NULL,NULL,'d49fb888-f533-47ee-8a34-1a871f97dbd8'),
(8428,4502,NULL,3639,6,'craft\\elements\\Entry',1,0,'2026-04-20 19:28:02','2026-04-20 19:28:02',NULL,NULL,NULL,'92bede52-36b4-4399-be07-cf08f5e24292'),
(8429,4514,NULL,3640,42,'craft\\elements\\Entry',1,0,'2026-04-20 19:28:02','2026-04-20 19:28:02',NULL,NULL,NULL,'681dd8c7-74cc-48f8-9578-cf4139d2bd47'),
(8432,NULL,NULL,NULL,53,'craft\\elements\\Entry',1,0,'2026-04-20 19:49:23','2026-04-20 19:49:23',NULL,NULL,NULL,'4faa7548-ce45-48c1-8dca-faf501c6f2c6'),
(8433,912,NULL,3641,7,'craft\\elements\\Entry',1,0,'2026-04-20 19:49:23','2026-04-20 19:49:23',NULL,NULL,NULL,'eb445d15-1dda-4fca-a4dd-540d89bd84e9'),
(8434,8432,NULL,3642,53,'craft\\elements\\Entry',1,0,'2026-04-20 19:49:23','2026-04-20 19:49:23',NULL,NULL,NULL,'87f709a5-e612-41a6-852f-d692b31b1cfa'),
(8436,912,NULL,3643,7,'craft\\elements\\Entry',1,0,'2026-04-20 19:49:42','2026-04-20 19:49:42',NULL,NULL,NULL,'7a749f6e-f626-4113-b7c3-6a41b5d160e9'),
(8437,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:02:54','2026-04-20 20:11:42',NULL,NULL,NULL,'af3bf3e6-676a-4bef-837b-f8660029ceea'),
(8438,NULL,NULL,NULL,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:03:46','2026-04-20 20:11:42',NULL,NULL,NULL,'73a6a970-90df-4444-b8df-fb4ae070576c'),
(8439,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:03:53','2026-04-20 20:11:42',NULL,NULL,NULL,'71e68cc8-1024-41c0-94d7-6b3a33acde5b'),
(8440,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:03:57','2026-04-20 20:11:42',NULL,NULL,NULL,'202d4ad2-dbfb-4b8a-8e98-a05f0960e9ea'),
(8441,8437,NULL,3644,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:15','2026-04-20 20:04:15',NULL,NULL,NULL,'45e1c666-332b-4c2b-a164-249fbb394da2'),
(8442,8438,NULL,3645,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:12','2026-04-20 20:04:15',NULL,NULL,NULL,'7a1551f5-5688-4d44-8dcc-a7203d78dc46'),
(8443,8439,NULL,3646,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:09','2026-04-20 20:04:15',NULL,NULL,NULL,'7c23d016-12c6-4896-8f0e-22de7c159758'),
(8444,8440,NULL,3647,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:06','2026-04-20 20:04:15',NULL,NULL,NULL,'4a4aa054-ede3-4601-8faa-047cbdca7d0b'),
(8449,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:56','2026-04-20 20:11:42',NULL,'2026-04-20 20:11:42',NULL,'b9d93748-e644-452e-8e3d-4d69077320bf'),
(8450,NULL,NULL,NULL,22,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:56','2026-04-20 20:08:38',NULL,'2026-04-20 20:08:38',NULL,'7386995b-00a0-49a6-9a40-5a37ce67a240'),
(8451,8437,NULL,3648,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:56','2026-04-20 20:04:56',NULL,NULL,NULL,'efb193b7-27dd-485b-8a19-d3b8a2111dac'),
(8452,8438,NULL,3649,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:56','2026-04-20 20:04:56',NULL,NULL,NULL,'406918f7-0a33-4599-a77c-73ba3271b175'),
(8453,8449,NULL,3650,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:56','2026-04-20 20:04:56',NULL,'2026-04-20 20:11:42',NULL,'135a7e8e-c87a-424c-b898-8a8b3728b363'),
(8454,8450,NULL,3651,22,'craft\\elements\\Entry',1,0,'2026-04-20 20:04:56','2026-04-20 20:04:56',NULL,'2026-04-20 20:08:38',NULL,'d91733ad-a60c-4a4e-ad39-cff0369656d0'),
(8459,8437,NULL,3652,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:07:44','2026-04-20 20:07:44',NULL,NULL,NULL,'b0f1b2b2-b679-4282-b28f-d78cb1d228c0'),
(8460,8438,NULL,3653,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:07:44','2026-04-20 20:07:44',NULL,NULL,NULL,'536597e1-b61b-4a74-8ad3-9730bac222bf'),
(8461,8439,NULL,3654,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:07:44','2026-04-20 20:07:44',NULL,NULL,NULL,'fb43ac6e-d946-44e7-ac68-32385ae68c29'),
(8462,8440,NULL,3655,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:07:44','2026-04-20 20:07:44',NULL,NULL,NULL,'29cc3bc1-d2b2-48b4-a9b0-4f4c8005d8a3'),
(8467,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:08:38','2026-04-20 20:11:42',NULL,'2026-04-20 20:11:42',1,'e1a8b8b4-2ce2-4e91-933c-7f4d3fa7e292'),
(8468,8437,NULL,3656,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:08:38','2026-04-20 20:08:38',NULL,NULL,NULL,'d0f0dc37-55dc-47d8-bbb3-a8163f4810a4'),
(8469,8438,NULL,3657,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:08:38','2026-04-20 20:08:38',NULL,NULL,NULL,'59fb84d8-04a7-472a-80a4-2ae9ea6210a8'),
(8470,8449,NULL,3658,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:08:38','2026-04-20 20:08:38',NULL,'2026-04-20 20:11:42',NULL,'de5118f3-b92e-4e36-97c9-a896b8c38863'),
(8471,8467,NULL,3659,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:08:38','2026-04-20 20:08:38',NULL,'2026-04-20 20:11:42',NULL,'9e6f90d2-67e5-4fab-b5d7-417e92353cb7'),
(8476,8437,NULL,3660,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:07','2026-04-20 20:09:07',NULL,NULL,NULL,'b44de8ce-e5e5-4a6d-9b38-af067d27edab'),
(8477,8438,NULL,3661,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:07','2026-04-20 20:09:07',NULL,NULL,NULL,'566613b3-aefe-43cf-9d25-cef6fab9b30b'),
(8478,8449,NULL,3662,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:07','2026-04-20 20:09:07',NULL,'2026-04-20 20:11:42',NULL,'4c7202a8-6d19-4b4d-b184-c9dbc4a87a2a'),
(8479,8467,NULL,3663,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:07','2026-04-20 20:09:07',NULL,'2026-04-20 20:11:42',NULL,'fad27f18-7ff8-49ad-8aa7-cea23a5f20c4'),
(8484,8437,NULL,3664,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:35','2026-04-20 20:09:35',NULL,NULL,NULL,'72c1e233-a317-4bc6-a80a-175a06445b4a'),
(8485,8438,NULL,3665,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:35','2026-04-20 20:09:35',NULL,NULL,NULL,'9dd151c4-9ca3-4f82-83d7-8f2629b63ba2'),
(8486,8449,NULL,3666,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:35','2026-04-20 20:09:35',NULL,'2026-04-20 20:11:42',NULL,'e0a1223c-3a6f-4070-bbd2-b65da952516b'),
(8487,8467,NULL,3667,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:09:35','2026-04-20 20:09:35',NULL,'2026-04-20 20:11:42',NULL,'cedd6a10-c164-4870-9413-604ffe490841'),
(8492,8437,NULL,3668,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:10:12','2026-04-20 20:10:12',NULL,NULL,NULL,'b287c766-0064-4fec-b79e-e4acce7d31df'),
(8493,8438,NULL,3669,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:10:12','2026-04-20 20:10:12',NULL,NULL,NULL,'e8a511eb-a844-453c-85e9-ffbb4ed96149'),
(8494,8449,NULL,3670,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:10:12','2026-04-20 20:10:12',NULL,'2026-04-20 20:11:42',NULL,'a334f37e-8b1d-4771-9581-0c762d84e260'),
(8495,8467,NULL,3671,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:10:12','2026-04-20 20:10:12',NULL,'2026-04-20 20:11:42',NULL,'81a186e0-8e20-423a-a571-97629cb44452'),
(8500,8437,NULL,3672,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:05','2026-04-20 20:11:05',NULL,NULL,NULL,'90315546-d9f6-4554-adee-1d2ee272c3a4'),
(8501,8438,NULL,3673,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:05','2026-04-20 20:11:05',NULL,NULL,NULL,'c9e57ce0-2114-4b74-ae13-0eb338e21f0b'),
(8502,8439,NULL,3674,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:05','2026-04-20 20:11:05',NULL,NULL,NULL,'5d4b04e3-e3d8-49b6-902a-3988a48a575f'),
(8503,8440,NULL,3675,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:05','2026-04-20 20:11:05',NULL,NULL,NULL,'ac3250b4-da81-435f-8231-0ca8a807a030'),
(8508,8437,NULL,3676,6,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:42','2026-04-20 20:11:42',NULL,NULL,NULL,'9ecd1e3b-a789-4d4f-a577-94aacc1220fe'),
(8509,8438,NULL,3677,20,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:42','2026-04-20 20:11:42',NULL,NULL,NULL,'3fc6ff02-81bb-4f9c-ad0b-8e1750c5280c'),
(8510,8439,NULL,3678,30,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:42','2026-04-20 20:11:42',NULL,NULL,NULL,'76775e28-3da8-47b1-af50-6356234abd5f'),
(8511,8440,NULL,3679,21,'craft\\elements\\Entry',1,0,'2026-04-20 20:11:42','2026-04-20 20:11:42',NULL,NULL,NULL,'2b9369b9-6fb0-41ac-8c94-49f3d5fd7c0e');
/*!40000 ALTER TABLE `elements` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `elements_bulkops`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `elements_bulkops` WRITE;
/*!40000 ALTER TABLE `elements_bulkops` DISABLE KEYS */;
/*!40000 ALTER TABLE `elements_bulkops` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `elements_owners`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `elements_owners` WRITE;
/*!40000 ALTER TABLE `elements_owners` DISABLE KEYS */;
INSERT INTO `elements_owners` VALUES
(43,38,1),
(143,38,1),
(144,143,1),
(244,243,1),
(246,243,1),
(262,261,1),
(267,266,1),
(268,267,1),
(269,268,1),
(275,274,1),
(302,274,1),
(358,38,1),
(359,358,1),
(360,359,1),
(378,377,1),
(412,411,1),
(529,359,1),
(556,555,1),
(567,359,1),
(578,358,1),
(579,578,1),
(592,593,1),
(593,358,1),
(605,604,1),
(606,605,1),
(632,604,1),
(654,604,1),
(655,654,1),
(698,5365,1),
(698,6122,1),
(698,6130,1),
(698,6446,1),
(698,6498,1),
(756,755,1),
(762,761,1),
(786,785,1),
(787,786,1),
(794,793,1),
(795,794,1),
(795,6501,1),
(795,7760,1),
(806,761,1),
(850,849,1),
(901,887,1),
(904,903,1),
(906,905,1),
(906,911,1),
(909,908,1),
(1099,1098,1),
(1099,5788,1),
(1104,1103,1),
(1104,5760,1),
(1104,5762,1),
(1104,5784,1),
(1109,1108,1),
(1114,1113,1),
(1119,1118,1),
(1124,1123,1),
(1124,5792,1),
(1129,1128,1),
(1131,1130,1),
(1133,1132,1),
(1135,1134,1),
(1135,5781,1),
(1367,912,1),
(1369,1368,1),
(1369,1373,1),
(1369,1394,1),
(1386,1385,1),
(1396,1395,1),
(1396,5182,1),
(1409,1408,1),
(1409,1416,1),
(1425,1424,1),
(1952,1951,1),
(1967,1966,1),
(3087,3086,1),
(3089,3086,1),
(3094,3093,1),
(3116,3093,1),
(3124,3123,1),
(3124,3317,1),
(3124,3333,1),
(3131,3130,1),
(3131,3318,1),
(3131,3334,1),
(3553,3555,1),
(3559,3558,1),
(3563,3562,1),
(3567,3566,1),
(3572,3571,1),
(3576,3575,1),
(3580,3579,1),
(3580,3583,1),
(3580,3587,1),
(3580,3591,1),
(3580,3595,1),
(3580,3598,1),
(3580,3601,1),
(3580,3605,1),
(3580,3609,1),
(3614,3613,1),
(3618,3617,1),
(3622,3621,1),
(3622,3625,1),
(3622,3629,1),
(3622,3633,1),
(3622,3637,1),
(3622,3649,1),
(3622,3660,1),
(3622,3664,1),
(3651,3650,1),
(3679,3707,1),
(3679,3711,1),
(3679,3715,1),
(3679,3719,1),
(3679,3723,1),
(3679,3727,1),
(3679,3731,1),
(3679,3737,1),
(3679,3741,1),
(3679,3756,1),
(3679,3771,1),
(3776,3775,1),
(3776,3787,1),
(3783,1953,1),
(3789,3788,1),
(3794,3793,1),
(3796,3795,1),
(3800,3795,1),
(3805,3804,1),
(3813,3812,1),
(3813,3826,1),
(3858,3857,1),
(3858,3878,1),
(3858,3899,1),
(3858,3919,1),
(3858,3926,1),
(3858,3928,1),
(3858,3938,1),
(3858,3947,1),
(3858,3951,1),
(3858,3960,1),
(3858,3963,1),
(3858,3971,1),
(3858,3979,1),
(3858,3982,1),
(3858,3983,1),
(3929,1958,1),
(3940,3939,1),
(3940,3980,1),
(3968,1953,1),
(3973,3972,1),
(3993,3992,1),
(3993,3996,1),
(3993,3998,1),
(4002,4001,1),
(4002,4007,1),
(4012,4011,1),
(4017,4016,1),
(4017,4021,1),
(4017,4024,1),
(4017,4171,1),
(4017,4188,1),
(4017,4192,1),
(4017,4982,1),
(4017,5449,1),
(4017,5462,1),
(4017,5915,1),
(4017,5957,1),
(4017,6021,1),
(4017,6078,1),
(4017,6342,1),
(4017,7242,1),
(4027,4026,1),
(4029,4028,1),
(4034,4033,1),
(4042,4041,1),
(4055,4054,1),
(4057,4056,1),
(4062,4061,1),
(4070,4069,1),
(4070,4202,1),
(4109,4108,1),
(4109,4153,1),
(4109,4174,1),
(4109,4184,1),
(4109,4199,1),
(4109,5501,1),
(4109,5923,1),
(4109,5969,1),
(4109,5977,1),
(4109,5981,1),
(4109,5985,1),
(4109,6034,1),
(4109,6073,1),
(4109,6115,1),
(4109,7205,1),
(4109,7209,1),
(4109,7246,1),
(4109,7300,1),
(4109,7308,1),
(4109,7747,1),
(4111,4110,1),
(4124,5200,1),
(4124,6275,1),
(4124,6296,1),
(4124,6312,1),
(4124,6316,1),
(4124,6321,1),
(4124,6488,1),
(4173,4033,1),
(4176,4175,1),
(4204,4203,1),
(4206,4205,1),
(4211,4210,1),
(4245,4244,1),
(4245,4284,1),
(4245,4296,1),
(4245,4298,1),
(4245,4301,1),
(4245,5237,1),
(4245,5525,1),
(4245,5747,1),
(4245,5765,1),
(4245,5919,1),
(4245,5961,1),
(4245,6001,1),
(4245,6080,1),
(4245,6343,1),
(4245,6929,1),
(4245,7765,1),
(4245,7781,1),
(4245,7794,1),
(4245,7810,1),
(4247,4246,1),
(4252,4251,1),
(4252,5238,1),
(4252,7766,1),
(4304,4303,1),
(4306,4305,1),
(4311,4310,1),
(4319,4318,1),
(4330,4329,1),
(4332,4331,1),
(4337,4336,1),
(4345,4344,1),
(4377,4376,1),
(4377,4402,1),
(4377,5550,1),
(4377,5862,1),
(4377,5866,1),
(4377,5965,1),
(4377,5989,1),
(4377,6063,1),
(4377,6065,1),
(4377,6067,1),
(4377,6346,1),
(4377,7468,1),
(4377,7479,1),
(4377,7737,1),
(4377,8071,1),
(4379,4378,1),
(4384,4383,1),
(4404,4403,1),
(4419,4418,1),
(4421,4420,1),
(4426,4425,1),
(4474,4473,1),
(4474,4501,1),
(4474,4533,1),
(4474,4535,1),
(4474,5567,1),
(4474,5576,1),
(4474,5600,1),
(4474,5870,1),
(4474,5949,1),
(4474,6005,1),
(4474,6071,1),
(4474,7226,1),
(4474,7329,1),
(4474,7331,1),
(4474,7340,1),
(4474,7342,1),
(4476,4475,1),
(4481,4480,1),
(4503,4502,1),
(4505,4504,1),
(4510,4509,1),
(4518,4517,1),
(4565,4564,1),
(4565,4592,1),
(4565,4895,1),
(4565,5617,1),
(4565,5633,1),
(4565,5874,1),
(4565,5973,1),
(4565,6013,1),
(4565,6075,1),
(4565,7234,1),
(4565,7429,1),
(4565,7434,1),
(4565,7605,1),
(4567,4566,1),
(4572,4571,1),
(4572,7430,1),
(4580,4579,1),
(4594,4593,1),
(4596,4595,1),
(4601,4600,1),
(4609,4608,1),
(4637,4636,1),
(4637,4664,1),
(4637,4681,1),
(4637,4697,1),
(4639,4638,1),
(4644,4643,1),
(4652,4651,1),
(4683,4682,1),
(4690,4689,1),
(4701,4700,1),
(4701,5657,1),
(4701,5778,1),
(4701,5850,1),
(4701,5953,1),
(4701,6009,1),
(4701,6077,1),
(4701,6340,1),
(4701,7230,1),
(4701,7390,1),
(4701,7395,1),
(4701,7541,1),
(4703,4702,1),
(4705,4704,1),
(4710,4709,1),
(4727,4726,1),
(4729,4728,1),
(4734,4733,1),
(4784,4783,1),
(4784,4804,1),
(4784,5680,1),
(4784,5776,1),
(4784,5854,1),
(4784,5935,1),
(4784,5946,1),
(4784,5997,1),
(4784,6069,1),
(4784,7222,1),
(4784,7325,1),
(4784,7547,1),
(4784,7553,1),
(4784,7556,1),
(4784,7560,1),
(4784,7564,1),
(4784,7584,1),
(4784,7599,1),
(4784,7892,1),
(4784,7896,1),
(4784,7912,1),
(4784,7916,1),
(4786,4785,1),
(4806,4805,1),
(4808,4807,1),
(4817,4816,1),
(4829,4828,1),
(4831,4830,1),
(4840,4839,1),
(4869,4812,1),
(4874,4873,1),
(4874,4890,1),
(4874,4892,1),
(4874,5709,1),
(4874,5858,1),
(4874,5939,1),
(4874,5993,1),
(4874,7218,1),
(4874,7316,1),
(4874,7322,1),
(4874,7612,1),
(4874,7615,1),
(4876,4875,1),
(4881,4880,1),
(4897,4896,1),
(4899,4898,1),
(4904,4903,1),
(4912,4911,1),
(4953,4952,1),
(4953,4979,1),
(4953,5476,1),
(4953,5878,1),
(4953,5944,1),
(4953,6017,1),
(4953,7238,1),
(4953,7401,1),
(4953,7412,1),
(4953,7418,1),
(4953,7422,1),
(4953,7424,1),
(4953,7653,1),
(4953,7658,1),
(4955,4954,1),
(4960,4959,1),
(4968,4967,1),
(5089,5088,1),
(5089,5101,1),
(5093,5092,1),
(5106,5105,1),
(5109,5108,1),
(5114,5113,1),
(5124,5123,1),
(5129,5128,1),
(5144,5143,1),
(5144,5927,1),
(5150,5149,1),
(5150,5151,1),
(5150,5931,1),
(5150,7091,1),
(5150,7282,1),
(5161,887,1),
(5163,5162,1),
(5180,5179,1),
(5180,5183,1),
(5180,5732,1),
(5180,5734,1),
(5180,6056,1),
(5200,6060,1),
(5200,6089,1),
(5200,6095,1),
(5200,6120,1),
(5200,6128,1),
(5200,6134,1),
(5200,6138,1),
(5200,6143,1),
(5256,1286,1),
(5258,5257,1),
(5258,5266,1),
(5265,5264,1),
(5269,5268,1),
(5365,5364,1),
(5478,5477,1),
(5478,7654,1),
(5503,5502,1),
(5503,6035,1),
(5552,5551,1),
(5552,7738,1),
(5619,5618,1),
(5619,5634,1),
(5619,7606,1),
(5659,5658,1),
(5659,7393,1),
(5659,7542,1),
(5711,5710,1),
(5819,6048,1),
(5819,6090,1),
(5819,6096,1),
(5819,6144,1),
(5819,6465,1),
(5819,8133,1),
(5882,5881,1),
(5882,6025,1),
(5882,7153,1),
(5884,5883,1),
(5888,5883,1),
(5893,5892,1),
(5901,5900,1),
(6122,6121,1),
(6130,6129,1),
(6150,6149,1),
(6150,6153,1),
(6158,6157,1),
(6163,6162,1),
(6167,6166,1),
(6171,6170,1),
(6175,6174,1),
(6177,6176,1),
(6180,6179,1),
(6185,6184,1),
(6185,6192,1),
(6185,6352,1),
(6197,6196,1),
(6201,6200,1),
(6201,6208,1),
(6201,6378,1),
(6201,6387,1),
(6213,6212,1),
(6215,6214,1),
(6217,6216,1),
(6221,6220,1),
(6225,6224,1),
(6229,6228,1),
(6229,6422,1),
(6233,6232,1),
(6235,6234,1),
(6235,6246,1),
(6235,6355,1),
(6235,6359,1),
(6235,6389,1),
(6254,6253,1),
(6260,6259,1),
(6266,6265,1),
(6269,6268,1),
(6275,6274,1),
(6275,6279,1),
(6275,6283,1),
(6275,6287,1),
(6275,6291,1),
(6296,6295,1),
(6296,6299,1),
(6296,6303,1),
(6296,6307,1),
(6312,6311,1),
(6316,6315,1),
(6321,6320,1),
(6321,6327,1),
(6321,6328,1),
(6321,6332,1),
(6321,6336,1),
(6321,6350,1),
(6321,6444,1),
(6321,6464,1),
(6321,6472,1),
(6321,6475,1),
(6321,6480,1),
(6321,6484,1),
(6364,6363,1),
(6371,6370,1),
(6371,6374,1),
(6371,6392,1),
(6401,6400,1),
(6409,6408,1),
(6409,6418,1),
(6409,6919,1),
(6415,6414,1),
(6427,6426,1),
(6427,6430,1),
(6427,6434,1),
(6439,6438,1),
(6446,6445,1),
(6459,274,1),
(6466,6465,1),
(6466,8133,1),
(6466,8184,1),
(6488,6487,1),
(6488,6496,1),
(6488,6507,1),
(6488,6511,1),
(6488,6515,1),
(6488,6519,1),
(6488,6523,1),
(6488,6528,1),
(6488,6590,1),
(6488,6599,1),
(6488,6617,1),
(6488,7168,1),
(6488,7758,1),
(6488,7919,1),
(6488,8132,1),
(6498,6497,1),
(6501,6500,1),
(6540,6539,1),
(6540,6542,1),
(6540,6546,1),
(6540,6549,1),
(6540,6606,1),
(6540,7093,1),
(6540,7286,1),
(6551,6550,1),
(6556,6555,1),
(6569,6568,1),
(6574,6573,1),
(6608,6607,1),
(6635,6634,1),
(6635,6646,1),
(6635,7262,1),
(6639,6638,1),
(6648,6647,1),
(6653,6652,1),
(6662,6661,1),
(6667,6666,1),
(6680,6679,1),
(6699,6698,1),
(6699,6711,1),
(6699,7258,1),
(6703,6702,1),
(6713,6712,1),
(6718,6717,1),
(6746,6745,1),
(6746,6758,1),
(6746,7250,1),
(6751,6750,1),
(6760,6759,1),
(6765,6764,1),
(6773,6772,1),
(6778,6777,1),
(6806,6805,1),
(6806,6817,1),
(6806,7254,1),
(6810,6809,1),
(6819,6818,1),
(6824,6823,1),
(6832,6831,1),
(6832,6845,1),
(6837,6836,1),
(6865,6864,1),
(6865,6875,1),
(6865,7274,1),
(6869,6868,1),
(6879,6878,1),
(6883,6882,1),
(6894,6893,1),
(6894,6897,1),
(6894,6900,1),
(6894,6904,1),
(6894,6908,1),
(6894,6912,1),
(6917,6916,1),
(6932,6931,1),
(6933,6932,1),
(6935,6934,1),
(6948,6947,1),
(6983,6982,1),
(6983,6996,1),
(6983,7278,1),
(6983,7482,1),
(6983,7486,1),
(6983,7488,1),
(6983,7491,1),
(6983,7495,1),
(6983,7499,1),
(6983,7527,1),
(6983,8323,1),
(6998,6997,1),
(7018,7017,1),
(7059,7058,1),
(7059,7073,1),
(7059,7270,1),
(7075,7074,1),
(7080,7079,1),
(7095,7094,1),
(7095,7115,1),
(7100,7099,1),
(7131,7079,1),
(7140,7139,1),
(7140,7152,1),
(7140,7266,1),
(7144,7143,1),
(7165,7164,1),
(7173,7172,1),
(7177,7176,1),
(7177,7181,1),
(7187,7186,1),
(7187,7191,1),
(7187,7195,1),
(7187,7199,1),
(7187,7202,1),
(7187,7932,1),
(7187,8433,1),
(7187,8436,1),
(7302,7301,1),
(7318,7317,1),
(7346,7345,1),
(7346,7347,1),
(7346,7360,1),
(7346,7372,1),
(7346,7380,1),
(7346,7384,1),
(7346,7838,1),
(7356,4425,1),
(7377,7381,1),
(7377,7385,1),
(7403,7402,1),
(7414,7413,1),
(7445,7444,1),
(7445,7453,1),
(7445,7677,1),
(7445,7690,1),
(7447,7446,1),
(7470,7469,1),
(7472,7471,1),
(7508,7507,1),
(7508,7511,1),
(7508,7708,1),
(7508,7726,1),
(7508,7732,1),
(7508,8060,1),
(7508,8064,1),
(7508,8066,1),
(7508,8327,1),
(7524,6939,1),
(7529,7528,1),
(7582,4717,1),
(7586,7585,1),
(7589,7588,1),
(7614,7613,1),
(7619,7618,1),
(7619,7635,1),
(7619,7646,1),
(7639,7638,1),
(7639,7882,1),
(7639,8021,1),
(7659,1966,1),
(7680,7679,1),
(7693,7002,1),
(7710,7709,1),
(7710,7727,1),
(7710,7733,1),
(7710,8065,1),
(7749,7748,1),
(7760,7759,1),
(7797,4218,1),
(7813,7812,1),
(7821,4433,1),
(7842,7841,1),
(7881,7880,1),
(7881,8020,1),
(7881,8023,1),
(7881,8351,1),
(7881,8363,1),
(7910,4709,1),
(7914,7913,1),
(7939,7938,1),
(7939,7945,1),
(7939,7949,1),
(7939,7959,1),
(7939,7967,1),
(7939,8343,1),
(7941,7940,1),
(7941,7961,1),
(7996,6652,1),
(8004,8003,1),
(8004,8015,1),
(8004,8016,1),
(8004,8339,1),
(8008,8007,1),
(8028,8027,1),
(8028,8029,1),
(8028,8347,1),
(8048,8047,1),
(8048,8359,1),
(8052,8051,1),
(8073,8072,1),
(8091,8090,1),
(8091,8102,1),
(8091,8355,1),
(8095,8094,1),
(8118,8117,1),
(8118,8190,1),
(8118,8335,1),
(8121,8120,1),
(8121,8191,1),
(8153,8152,1),
(8153,8165,1),
(8153,8331,1),
(8157,8156,1),
(8170,8169,1),
(8171,8170,1),
(8177,8176,1),
(8177,8183,1),
(8177,8218,1),
(8178,8177,1),
(8185,8184,1),
(8224,8223,1),
(8228,8227,1),
(8232,8231,1),
(8236,8235,1),
(8240,8239,1),
(8244,8243,1),
(8248,8247,1),
(8252,8251,1),
(8256,8255,1),
(8260,8259,1),
(8264,8263,1),
(8268,8267,1),
(8272,8271,1),
(8276,8275,1),
(8280,8279,1),
(8280,8368,1),
(8284,8283,1),
(8284,8374,1),
(8288,8287,1),
(8288,8380,1),
(8292,8291,1),
(8292,8386,1),
(8296,8295,1),
(8296,8392,1),
(8300,8299,1),
(8300,8398,1),
(8304,8303,1),
(8304,8404,1),
(8308,8307,1),
(8308,8319,1),
(8308,8410,1),
(8308,8428,1),
(8312,8311,1),
(8312,8416,1),
(8316,8315,1),
(8316,8422,1),
(8438,8437,1),
(8440,8439,1),
(8442,8441,1),
(8443,8442,1),
(8443,8452,1),
(8444,8443,1),
(8449,8438,1),
(8450,8449,1),
(8452,8451,1),
(8453,8460,1),
(8454,8453,1),
(8460,8459,1),
(8462,8461,1),
(8467,8449,1),
(8469,8468,1),
(8470,8469,1),
(8471,8470,1),
(8477,8476,1),
(8478,8477,1),
(8479,8478,1),
(8485,8484,1),
(8486,8485,1),
(8487,8486,1),
(8493,8492,1),
(8494,8493,1),
(8494,8501,1),
(8495,8494,1),
(8501,8500,1),
(8503,8502,1),
(8509,8508,1),
(8511,8510,1),
(44,38,2),
(61,38,2),
(145,143,2),
(245,243,2),
(247,243,2),
(263,261,2),
(377,358,2),
(379,377,2),
(395,359,2),
(408,359,2),
(411,358,2),
(568,359,2),
(580,578,2),
(580,593,2),
(604,38,2),
(607,605,2),
(626,605,2),
(634,632,2),
(648,632,2),
(656,654,2),
(699,5365,2),
(763,761,2),
(788,786,2),
(796,794,2),
(796,6501,2),
(868,867,2),
(903,887,2),
(907,905,2),
(908,911,2),
(1100,1098,2),
(1101,5788,2),
(1105,1103,2),
(1105,5760,2),
(1105,5762,2),
(1105,5784,2),
(1110,1108,2),
(1115,1113,2),
(1120,1118,2),
(1125,1123,2),
(1125,5792,2),
(1372,912,2),
(1374,1373,2),
(1374,1394,2),
(1374,1408,2),
(1374,1416,2),
(1387,1385,2),
(1397,1395,2),
(1397,5182,2),
(1953,1951,2),
(1968,1966,2),
(3088,3086,2),
(3095,3093,2),
(3117,3093,2),
(3125,3123,2),
(3125,3317,2),
(3125,3333,2),
(3125,3552,2),
(3125,3555,2),
(3125,3558,2),
(3125,3562,2),
(3125,3566,2),
(3125,3571,2),
(3125,3575,2),
(3125,3579,2),
(3132,3130,2),
(3132,3318,2),
(3132,3334,2),
(3584,3583,2),
(3588,3587,2),
(3592,3591,2),
(3592,3595,2),
(3592,3598,2),
(3592,3601,2),
(3592,3605,2),
(3592,3609,2),
(3592,3613,2),
(3592,3617,2),
(3592,3621,2),
(3592,3625,2),
(3592,3629,2),
(3592,3633,2),
(3592,3637,2),
(3592,3649,2),
(3592,3660,2),
(3592,3664,2),
(3652,3650,2),
(3688,3707,2),
(3688,3711,2),
(3688,3715,2),
(3688,3719,2),
(3688,3723,2),
(3688,3727,2),
(3688,3731,2),
(3688,3737,2),
(3688,3741,2),
(3688,3756,2),
(3688,3771,2),
(3688,3775,2),
(3784,1953,2),
(3788,3787,2),
(3790,3788,2),
(3795,3793,2),
(3797,3795,2),
(3801,3795,2),
(3806,3804,2),
(3814,3812,2),
(3814,3826,2),
(3859,3857,2),
(3859,3878,2),
(3900,3899,2),
(3900,3919,2),
(3900,3926,2),
(3900,3928,2),
(3900,3938,2),
(3900,3947,2),
(3900,3951,2),
(3900,3960,2),
(3900,3963,2),
(3937,1958,2),
(3941,3939,2),
(3941,3980,2),
(3969,1953,2),
(3972,3971,2),
(3972,3979,2),
(3972,3982,2),
(3972,3983,2),
(3972,4016,2),
(3972,4021,2),
(3972,4024,2),
(3972,4171,2),
(3972,4188,2),
(3972,4192,2),
(3972,4982,2),
(3972,5449,2),
(3972,5462,2),
(3972,5915,2),
(3972,5957,2),
(3972,6021,2),
(3972,6078,2),
(3972,6342,2),
(3972,7242,2),
(3972,7444,2),
(3972,7453,2),
(3972,7677,2),
(3972,7690,2),
(3972,8259,2),
(3972,8315,2),
(3972,8422,2),
(3974,3972,2),
(3994,3992,2),
(3994,3996,2),
(3994,3998,2),
(3994,4001,2),
(3994,4007,2),
(3994,4011,2),
(4028,4026,2),
(4030,4028,2),
(4035,4033,2),
(4043,4041,2),
(4056,4054,2),
(4058,4056,2),
(4063,4061,2),
(4071,4069,2),
(4071,4202,2),
(4110,4108,2),
(4110,4153,2),
(4110,4174,2),
(4110,4184,2),
(4110,4199,2),
(4110,5501,2),
(4110,5923,2),
(4110,5969,2),
(4110,5977,2),
(4110,5981,2),
(4110,5985,2),
(4110,6034,2),
(4110,6073,2),
(4110,6115,2),
(4110,7205,2),
(4110,7209,2),
(4110,7246,2),
(4110,7300,2),
(4110,7308,2),
(4110,7747,2),
(4110,8223,2),
(4110,8263,2),
(4110,8267,2),
(4110,8279,2),
(4110,8368,2),
(4112,4110,2),
(4125,5200,2),
(4125,6275,2),
(4125,6296,2),
(4125,6312,2),
(4125,6316,2),
(4125,6321,2),
(4125,6488,2),
(4125,8170,2),
(4205,4203,2),
(4207,4205,2),
(4212,4210,2),
(4220,4218,2),
(4246,4244,2),
(4246,4284,2),
(4246,4296,2),
(4246,4298,2),
(4246,4301,2),
(4246,5237,2),
(4246,5525,2),
(4246,5747,2),
(4246,5765,2),
(4246,5919,2),
(4246,5961,2),
(4246,6001,2),
(4246,6080,2),
(4246,6343,2),
(4246,6929,2),
(4246,7765,2),
(4246,7781,2),
(4246,7794,2),
(4246,7810,2),
(4246,8227,2),
(4246,8283,2),
(4246,8374,2),
(4248,4246,2),
(4253,4251,2),
(4253,5238,2),
(4253,7766,2),
(4261,4259,2),
(4288,4286,2),
(4305,4303,2),
(4307,4305,2),
(4320,4318,2),
(4331,4329,2),
(4333,4331,2),
(4346,4344,2),
(4378,4376,2),
(4378,4402,2),
(4378,5550,2),
(4378,5862,2),
(4378,5866,2),
(4378,5965,2),
(4378,5989,2),
(4378,6063,2),
(4378,6065,2),
(4378,6067,2),
(4378,6346,2),
(4380,4378,2),
(4380,7469,2),
(4405,4403,2),
(4420,4418,2),
(4422,4420,2),
(4427,4425,2),
(4435,4433,2),
(4475,4473,2),
(4475,4501,2),
(4475,4533,2),
(4475,4535,2),
(4475,5567,2),
(4475,5576,2),
(4475,5600,2),
(4475,5870,2),
(4475,5949,2),
(4475,6005,2),
(4475,6071,2),
(4475,7226,2),
(4475,7329,2),
(4475,7331,2),
(4475,7340,2),
(4475,7342,2),
(4475,7345,2),
(4475,7347,2),
(4475,7360,2),
(4475,7372,2),
(4475,7380,2),
(4475,7384,2),
(4475,7838,2),
(4475,8243,2),
(4475,8299,2),
(4475,8398,2),
(4477,4475,2),
(4482,4480,2),
(4490,4488,2),
(4504,4502,2),
(4506,4504,2),
(4511,4509,2),
(4519,4517,2),
(4566,4564,2),
(4566,4592,2),
(4566,4895,2),
(4566,5617,2),
(4566,5633,2),
(4566,5874,2),
(4566,5973,2),
(4566,6013,2),
(4566,6075,2),
(4566,7234,2),
(4566,7429,2),
(4566,7434,2),
(4566,7605,2),
(4566,8251,2),
(4566,8307,2),
(4566,8319,2),
(4566,8410,2),
(4566,8428,2),
(4568,4566,2),
(4573,4571,2),
(4581,4579,2),
(4595,4593,2),
(4597,4595,2),
(4602,4600,2),
(4610,4608,2),
(4638,4636,2),
(4638,4664,2),
(4638,4681,2),
(4638,4697,2),
(4638,4700,2),
(4638,5657,2),
(4638,5778,2),
(4638,5850,2),
(4638,5953,2),
(4638,6009,2),
(4638,6077,2),
(4638,6340,2),
(4638,7230,2),
(4638,7390,2),
(4638,7395,2),
(4638,7541,2),
(4638,8247,2),
(4638,8303,2),
(4638,8404,2),
(4640,4638,2),
(4645,4643,2),
(4653,4651,2),
(4684,4682,2),
(4691,4689,2),
(4704,4702,2),
(4706,4704,2),
(4711,4709,2),
(4719,4717,2),
(4728,4726,2),
(4730,4728,2),
(4735,4733,2),
(4743,4741,2),
(4785,4783,2),
(4785,4804,2),
(4785,5680,2),
(4785,5776,2),
(4785,5854,2),
(4785,5935,2),
(4785,5946,2),
(4785,5997,2),
(4785,6069,2),
(4785,7222,2),
(4785,7325,2),
(4785,7547,2),
(4785,7553,2),
(4785,7556,2),
(4785,7560,2),
(4785,7564,2),
(4787,4785,2),
(4787,7585,2),
(4795,4793,2),
(4807,4805,2),
(4809,4807,2),
(4818,4816,2),
(4830,4828,2),
(4832,4830,2),
(4841,4839,2),
(4870,4812,2),
(4875,4873,2),
(4875,4890,2),
(4875,4892,2),
(4875,5709,2),
(4875,5858,2),
(4875,5939,2),
(4875,5993,2),
(4875,7218,2),
(4875,7316,2),
(4875,7322,2),
(4875,7612,2),
(4875,7615,2),
(4875,8235,2),
(4875,8271,2),
(4875,8275,2),
(4875,8291,2),
(4875,8386,2),
(4877,4875,2),
(4882,4880,2),
(4882,7317,2),
(4898,4896,2),
(4900,4898,2),
(4905,4903,2),
(4913,4911,2),
(4954,4952,2),
(4954,4979,2),
(4954,5476,2),
(4954,5878,2),
(4954,5944,2),
(4954,6017,2),
(4954,7238,2),
(4956,4954,2),
(4961,4959,2),
(4969,4967,2),
(5090,5088,2),
(5090,5101,2),
(5090,5105,2),
(5090,5149,2),
(5090,5151,2),
(5090,5931,2),
(5090,7091,2),
(5090,7282,2),
(5090,8117,2),
(5090,8190,2),
(5090,8335,2),
(5094,5092,2),
(5110,5108,2),
(5125,5123,2),
(5145,5143,2),
(5145,5927,2),
(5164,5162,2),
(5164,5166,2),
(5164,5167,2),
(5181,5179,2),
(5181,5183,2),
(5181,5732,2),
(5181,5734,2),
(5181,6056,2),
(5181,6878,2),
(5181,6882,2),
(5263,1286,2),
(5267,5266,2),
(5364,6060,2),
(5364,6089,2),
(5364,6095,2),
(5370,5369,2),
(5397,5391,2),
(5399,5398,2),
(5403,5402,2),
(5403,5404,2),
(5406,5405,2),
(5408,5407,2),
(5413,5412,2),
(5413,5414,2),
(5419,5418,2),
(5419,5420,2),
(5424,5423,2),
(5428,5427,2),
(5428,5429,2),
(5428,5750,2),
(5428,5756,2),
(5433,5432,2),
(5433,5752,2),
(5433,5754,2),
(5479,5477,2),
(5479,7654,2),
(5504,5502,2),
(5504,6035,2),
(5504,7748,2),
(5528,5526,2),
(5553,5551,2),
(5553,7738,2),
(5553,8072,2),
(5570,5568,2),
(5570,5577,2),
(5603,5601,2),
(5620,5618,2),
(5620,5634,2),
(5620,7606,2),
(5660,5658,2),
(5660,7393,2),
(5660,7542,2),
(5683,5681,2),
(5683,7548,2),
(5683,7554,2),
(5712,5710,2),
(5712,7613,2),
(5728,1286,2),
(5847,5846,2),
(5883,5881,2),
(5883,6025,2),
(5883,7153,2),
(5885,5883,2),
(5889,5883,2),
(5894,5892,2),
(5902,5900,2),
(6121,6120,2),
(6123,6122,2),
(6129,6128,2),
(6129,6134,2),
(6129,6138,2),
(6129,6143,2),
(6129,6274,2),
(6129,6279,2),
(6129,6283,2),
(6129,6287,2),
(6129,6291,2),
(6129,6295,2),
(6129,6299,2),
(6129,6303,2),
(6129,6307,2),
(6129,6311,2),
(6129,6315,2),
(6129,6320,2),
(6129,6327,2),
(6129,6328,2),
(6129,6332,2),
(6129,6336,2),
(6129,6350,2),
(6131,6130,2),
(6159,6157,2),
(6164,6162,2),
(6168,6166,2),
(6172,6170,2),
(6181,6179,2),
(6186,6184,2),
(6186,6192,2),
(6186,6352,2),
(6186,6367,2),
(6198,6196,2),
(6202,6200,2),
(6202,6208,2),
(6202,6378,2),
(6207,6196,2),
(6218,6216,2),
(6222,6220,2),
(6222,6370,2),
(6222,6374,2),
(6222,6392,2),
(6222,6426,2),
(6222,6430,2),
(6226,6224,2),
(6230,6228,2),
(6230,6422,2),
(6242,6232,2),
(6247,6246,2),
(6247,6355,2),
(6255,6253,2),
(6261,6259,2),
(6261,6363,2),
(6267,6265,2),
(6270,6268,2),
(6360,6359,2),
(6360,6389,2),
(6379,6414,2),
(6402,6400,2),
(6402,6408,2),
(6402,6418,2),
(6402,6919,2),
(6435,6434,2),
(6435,6438,2),
(6445,6444,2),
(6445,6464,2),
(6445,6472,2),
(6445,6475,2),
(6445,6480,2),
(6445,6484,2),
(6445,6487,2),
(6447,6446,2),
(6447,6498,2),
(6448,274,2),
(6467,6465,2),
(6467,8133,2),
(6467,8184,2),
(6497,6496,2),
(6497,6507,2),
(6497,6511,2),
(6497,6515,2),
(6497,6519,2),
(6497,6523,2),
(6497,6528,2),
(6497,6590,2),
(6497,6599,2),
(6497,6617,2),
(6497,7168,2),
(6497,7758,2),
(6497,7919,2),
(6497,8132,2),
(6497,8169,2),
(6497,8176,2),
(6497,8183,2),
(6497,8218,2),
(6541,6539,2),
(6541,6542,2),
(6547,6546,2),
(6547,6549,2),
(6547,6606,2),
(6547,7093,2),
(6547,7286,2),
(6552,6550,2),
(6557,6555,2),
(6570,6568,2),
(6575,6573,2),
(6636,6634,2),
(6636,6646,2),
(6636,7262,2),
(6636,7618,2),
(6640,6638,2),
(6649,6647,2),
(6654,6652,2),
(6663,6661,2),
(6668,6666,2),
(6681,6679,2),
(6700,6698,2),
(6700,6711,2),
(6700,7258,2),
(6704,6702,2),
(6714,6712,2),
(6719,6717,2),
(6747,6745,2),
(6747,6758,2),
(6747,7250,2),
(6747,7938,2),
(6752,6750,2),
(6752,7940,2),
(6761,6759,2),
(6766,6764,2),
(6774,6772,2),
(6779,6777,2),
(6807,6805,2),
(6807,6817,2),
(6807,7254,2),
(6807,8027,2),
(6807,8029,2),
(6807,8347,2),
(6811,6809,2),
(6820,6818,2),
(6825,6823,2),
(6833,6831,2),
(6833,6845,2),
(6838,6836,2),
(6866,6864,2),
(6866,6875,2),
(6866,7274,2),
(6870,6868,2),
(6895,6893,2),
(6895,6897,2),
(6901,6900,2),
(6905,6904,2),
(6909,6908,2),
(6909,6912,2),
(6909,6916,2),
(6909,7164,2),
(6909,7172,2),
(6909,7176,2),
(6923,6922,2),
(6927,6926,2),
(6936,6934,2),
(6949,6947,2),
(6984,6982,2),
(6984,6996,2),
(6984,7278,2),
(6984,7482,2),
(6984,7486,2),
(6984,7488,2),
(6984,7491,2),
(6984,7495,2),
(6984,7499,2),
(6984,7527,2),
(6984,8323,2),
(6999,6997,2),
(7004,7002,2),
(7019,7017,2),
(7024,7022,2),
(7060,7058,2),
(7060,7073,2),
(7060,7270,2),
(7076,7074,2),
(7081,7079,2),
(7096,7094,2),
(7096,7115,2),
(7101,7099,2),
(7141,7139,2),
(7141,7152,2),
(7141,7266,2),
(7182,7181,2),
(7182,7186,2),
(7182,7191,2),
(7182,7195,2),
(7182,7199,2),
(7182,7202,2),
(7297,4033,2),
(7303,7301,2),
(7357,4425,2),
(7374,7373,2),
(7374,7385,2),
(7376,7381,2),
(7402,7401,2),
(7402,7412,2),
(7402,7418,2),
(7402,7422,2),
(7402,7424,2),
(7402,7653,2),
(7402,7658,2),
(7402,8255,2),
(7402,8311,2),
(7402,8416,2),
(7404,7402,2),
(7415,7413,2),
(7431,7430,2),
(7448,7446,2),
(7465,4310,2),
(7469,7468,2),
(7469,7479,2),
(7469,7737,2),
(7469,8071,2),
(7469,8231,2),
(7469,8287,2),
(7469,8380,2),
(7473,7471,2),
(7509,7507,2),
(7509,7511,2),
(7509,7708,2),
(7509,7726,2),
(7509,7732,2),
(7509,8060,2),
(7509,8064,2),
(7509,8066,2),
(7509,8327,2),
(7525,6939,2),
(7530,7528,2),
(7585,7584,2),
(7585,7599,2),
(7585,7892,2),
(7585,7896,2),
(7585,7912,2),
(7585,7916,2),
(7585,8239,2),
(7585,8295,2),
(7585,8392,2),
(7590,7588,2),
(7636,7635,2),
(7636,7646,2),
(7636,7880,2),
(7636,8020,2),
(7636,8023,2),
(7636,8351,2),
(7636,8363,2),
(7640,7638,2),
(7640,7882,2),
(7640,8021,2),
(7673,1966,2),
(7681,7679,2),
(7695,7002,2),
(7711,7709,2),
(7711,7727,2),
(7711,7733,2),
(7711,8065,2),
(7761,7760,2),
(7784,7782,2),
(7784,7795,2),
(7814,7812,2),
(7843,7841,2),
(7911,4709,2),
(7915,7913,2),
(7924,887,2),
(7927,7926,2),
(7927,7929,2),
(7933,7932,2),
(7933,8433,2),
(7946,7945,2),
(7946,7949,2),
(7946,7959,2),
(7946,7967,2),
(7946,8343,2),
(7962,7961,2),
(7997,6652,2),
(8005,8003,2),
(8005,8015,2),
(8005,8016,2),
(8005,8339,2),
(8009,8007,2),
(8049,8047,2),
(8049,8359,2),
(8053,8051,2),
(8089,5113,2),
(8092,8090,2),
(8092,8102,2),
(8092,8355,2),
(8096,8094,2),
(8122,8120,2),
(8122,8191,2),
(8151,7079,2),
(8154,8152,2),
(8154,8165,2),
(8154,8331,2),
(8158,8156,2),
(8179,8177,2),
(8212,8211,2),
(8432,912,2),
(8434,8436,2),
(8439,8438,2),
(8453,8452,2),
(8461,8460,2),
(8461,8469,2),
(8461,8477,2),
(8461,8485,2),
(8461,8493,2),
(8502,8501,2),
(8510,8509,2),
(62,38,3),
(542,359,3),
(569,359,3),
(581,578,3),
(581,593,3),
(608,605,3),
(635,632,3),
(657,654,3),
(761,38,3),
(764,761,3),
(789,786,3),
(797,794,3),
(902,887,3),
(907,911,3),
(908,905,3),
(1100,5788,3),
(1101,1098,3),
(1106,1103,3),
(1106,5760,3),
(1106,5762,3),
(1106,5784,3),
(1111,1108,3),
(1116,1113,3),
(1121,1118,3),
(1126,1123,3),
(1126,5792,3),
(1385,912,3),
(1388,1385,3),
(1395,1394,3),
(1395,1408,3),
(1395,1416,3),
(1398,1395,3),
(1398,5182,3),
(1958,1951,3),
(1969,1966,3),
(3090,3086,3),
(3096,3093,3),
(3118,3093,3),
(3126,3123,3),
(3126,3317,3),
(3126,3333,3),
(3127,3555,3),
(3127,3558,3),
(3127,3562,3),
(3127,3566,3),
(3127,3571,3),
(3127,3575,3),
(3127,3579,3),
(3127,3583,3),
(3127,3587,3),
(3127,3591,3),
(3133,3130,3),
(3133,3318,3),
(3133,3334,3),
(3553,3552,3),
(3596,3595,3),
(3596,3598,3),
(3602,3601,3),
(3606,3605,3),
(3610,3609,3),
(3610,3613,3),
(3610,3617,3),
(3610,3621,3),
(3626,3625,3),
(3630,3629,3),
(3634,3633,3),
(3638,3637,3),
(3638,3649,3),
(3638,3660,3),
(3638,3664,3),
(3653,3650,3),
(3708,3707,3),
(3712,3711,3),
(3712,3715,3),
(3712,3719,3),
(3712,3723,3),
(3712,3727,3),
(3712,3731,3),
(3712,3737,3),
(3712,3741,3),
(3712,3756,3),
(3712,3771,3),
(3712,3775,3),
(3712,3787,3),
(3712,3857,3),
(3785,1953,3),
(3791,3788,3),
(3798,3795,3),
(3802,3795,3),
(3804,3793,3),
(3807,3804,3),
(3815,3812,3),
(3815,3826,3),
(3879,3878,3),
(3879,3899,3),
(3918,1958,3),
(3920,3919,3),
(3920,3926,3),
(3920,3928,3),
(3923,3920,3),
(3939,3938,3),
(3939,3947,3),
(3939,3951,3),
(3939,3960,3),
(3939,3963,3),
(3939,3971,3),
(3942,3939,3),
(3942,3980,3),
(3970,1953,3),
(3975,3972,3),
(3980,3979,3),
(3980,3982,3),
(3980,3983,3),
(3980,4016,3),
(3980,4021,3),
(3980,4024,3),
(3980,4171,3),
(3980,4188,3),
(3980,4192,3),
(3980,4982,3),
(3980,5449,3),
(3980,5462,3),
(3980,5915,3),
(3980,5957,3),
(3980,6021,3),
(3980,6078,3),
(3980,6342,3),
(3980,7242,3),
(3995,3992,3),
(3995,3996,3),
(3995,3998,3),
(4003,4001,3),
(4008,4007,3),
(4008,4011,3),
(4031,4028,3),
(4033,4026,3),
(4036,4033,3),
(4044,4041,3),
(4059,4056,3),
(4061,4054,3),
(4064,4061,3),
(4072,4069,3),
(4072,4202,3),
(4113,4110,3),
(4115,4108,3),
(4154,4153,3),
(4175,4174,3),
(4175,4184,3),
(4175,4199,3),
(4175,5501,3),
(4175,5923,3),
(4175,5969,3),
(4175,5977,3),
(4175,5981,3),
(4175,5985,3),
(4175,6034,3),
(4175,6073,3),
(4175,6115,3),
(4175,7205,3),
(4175,7209,3),
(4175,7246,3),
(4208,4205,3),
(4210,4203,3),
(4213,4210,3),
(4221,4218,3),
(4249,4246,3),
(4251,4244,3),
(4251,4284,3),
(4251,4296,3),
(4251,4298,3),
(4251,4301,3),
(4254,4251,3),
(4254,5238,3),
(4254,7766,3),
(4262,4259,3),
(4289,4286,3),
(4308,4305,3),
(4310,4303,3),
(4321,4318,3),
(4334,4331,3),
(4336,4329,3),
(4347,4344,3),
(4381,4378,3),
(4381,7469,3),
(4383,4376,3),
(4383,4402,3),
(4383,5550,3),
(4383,5862,3),
(4383,5866,3),
(4383,5965,3),
(4383,5989,3),
(4383,6063,3),
(4383,6065,3),
(4383,6067,3),
(4383,6346,3),
(4406,4403,3),
(4423,4420,3),
(4425,4418,3),
(4428,4425,3),
(4436,4433,3),
(4478,4475,3),
(4480,4473,3),
(4480,4501,3),
(4480,4533,3),
(4480,4535,3),
(4480,5567,3),
(4480,5576,3),
(4480,5600,3),
(4480,5870,3),
(4480,5949,3),
(4480,6005,3),
(4480,6071,3),
(4480,7226,3),
(4480,7329,3),
(4480,7331,3),
(4483,4480,3),
(4491,4488,3),
(4507,4504,3),
(4509,4502,3),
(4512,4509,3),
(4520,4517,3),
(4569,4566,3),
(4571,4564,3),
(4571,4592,3),
(4571,4895,3),
(4571,5617,3),
(4571,5633,3),
(4571,5874,3),
(4571,5973,3),
(4571,6013,3),
(4571,6075,3),
(4571,7234,3),
(4574,4571,3),
(4574,7430,3),
(4582,4579,3),
(4598,4595,3),
(4600,4593,3),
(4603,4600,3),
(4611,4608,3),
(4641,4638,3),
(4643,4636,3),
(4643,4664,3),
(4646,4643,3),
(4654,4651,3),
(4682,4681,3),
(4682,4697,3),
(4682,4700,3),
(4682,5657,3),
(4682,5778,3),
(4682,5850,3),
(4682,5953,3),
(4682,6009,3),
(4682,6077,3),
(4682,6340,3),
(4682,7230,3),
(4682,7390,3),
(4682,7395,3),
(4682,7541,3),
(4682,8247,3),
(4682,8303,3),
(4682,8404,3),
(4685,4682,3),
(4692,4689,3),
(4707,4704,3),
(4712,4709,3),
(4720,4717,3),
(4731,4728,3),
(4733,4726,3),
(4736,4733,3),
(4744,4741,3),
(4788,4785,3),
(4788,7585,3),
(4790,4783,3),
(4790,4804,3),
(4790,5680,3),
(4790,5776,3),
(4790,5854,3),
(4790,5935,3),
(4790,5946,3),
(4790,5997,3),
(4790,6069,3),
(4790,7222,3),
(4790,7325,3),
(4790,7547,3),
(4790,7553,3),
(4790,7556,3),
(4790,7560,3),
(4790,7564,3),
(4790,7584,3),
(4790,7599,3),
(4796,4793,3),
(4810,4807,3),
(4812,4805,3),
(4819,4816,3),
(4833,4830,3),
(4835,4828,3),
(4842,4839,3),
(4871,4812,3),
(4878,4875,3),
(4880,4873,3),
(4880,4890,3),
(4880,4892,3),
(4880,5709,3),
(4880,5858,3),
(4880,5939,3),
(4880,5993,3),
(4880,7218,3),
(4883,4880,3),
(4883,7317,3),
(4901,4898,3),
(4903,4896,3),
(4906,4903,3),
(4914,4911,3),
(4957,4954,3),
(4957,7402,3),
(4959,4952,3),
(4959,4979,3),
(4959,5476,3),
(4959,5878,3),
(4959,5944,3),
(4959,6017,3),
(4959,7238,3),
(4959,7401,3),
(4962,4959,3),
(4970,4967,3),
(5091,5088,3),
(5091,5101,3),
(5095,5092,3),
(5107,5105,3),
(5107,5149,3),
(5107,5151,3),
(5107,5931,3),
(5107,7091,3),
(5107,7282,3),
(5111,5108,3),
(5126,5123,3),
(5146,5143,3),
(5146,5927,3),
(5146,6539,3),
(5146,6542,3),
(5178,912,3),
(5182,5179,3),
(5182,5183,3),
(5192,867,3),
(5195,5843,3),
(5195,6485,3),
(5195,7920,3),
(5238,5237,3),
(5238,5525,3),
(5238,5747,3),
(5238,5765,3),
(5238,5919,3),
(5238,5961,3),
(5238,6001,3),
(5238,6080,3),
(5238,6343,3),
(5238,6929,3),
(5264,1286,3),
(5268,5266,3),
(5366,5365,3),
(5366,6122,3),
(5366,6130,3),
(5366,6446,3),
(5480,5477,3),
(5480,7654,3),
(5505,5502,3),
(5505,6035,3),
(5529,5526,3),
(5554,5551,3),
(5554,7738,3),
(5554,8072,3),
(5571,5568,3),
(5578,5577,3),
(5604,5601,3),
(5621,5618,3),
(5635,5634,3),
(5635,7606,3),
(5661,5658,3),
(5661,7393,3),
(5684,5681,3),
(5684,7548,3),
(5684,7554,3),
(5713,5710,3),
(5713,7613,3),
(5823,6060,3),
(5823,6089,3),
(5823,6095,3),
(5823,6120,3),
(5823,6128,3),
(5886,5883,3),
(5890,5883,3),
(5892,5881,3),
(5892,6025,3),
(5892,7153,3),
(5895,5892,3),
(5903,5900,3),
(6057,6878,3),
(6057,6882,3),
(6135,6134,3),
(6139,6138,3),
(6139,6143,3),
(6139,6274,3),
(6139,6279,3),
(6139,6283,3),
(6139,6287,3),
(6139,6291,3),
(6139,6295,3),
(6139,6299,3),
(6139,6303,3),
(6139,6307,3),
(6139,6311,3),
(6139,6315,3),
(6139,6320,3),
(6139,6327,3),
(6139,6328,3),
(6139,6332,3),
(6139,6336,3),
(6160,6157,3),
(6165,6162,3),
(6169,6166,3),
(6182,6179,3),
(6187,6184,3),
(6193,6192,3),
(6193,6352,3),
(6193,6367,3),
(6199,6196,3),
(6203,6200,3),
(6203,6208,3),
(6203,6378,3),
(6219,6216,3),
(6223,6220,3),
(6223,6370,3),
(6227,6224,3),
(6231,6228,3),
(6243,6232,3),
(6248,6246,3),
(6256,6253,3),
(6262,6259,3),
(6262,6363,3),
(6351,6350,3),
(6351,6444,3),
(6351,6464,3),
(6351,6472,3),
(6351,6475,3),
(6356,6355,3),
(6356,6359,3),
(6356,6389,3),
(6375,6374,3),
(6393,6392,3),
(6393,6426,3),
(6403,6400,3),
(6403,6408,3),
(6403,6418,3),
(6403,6919,3),
(6423,6422,3),
(6431,6430,3),
(6431,6434,3),
(6431,6438,3),
(6460,274,3),
(6468,6465,3),
(6468,8133,3),
(6468,8184,3),
(6481,6480,3),
(6481,6484,3),
(6481,6487,3),
(6481,6496,3),
(6499,6498,3),
(6502,6501,3),
(6502,7760,3),
(6508,6507,3),
(6512,6511,3),
(6516,6515,3),
(6520,6519,3),
(6520,6523,3),
(6520,6528,3),
(6520,6590,3),
(6520,6599,3),
(6520,6617,3),
(6548,6546,3),
(6548,6549,3),
(6548,6606,3),
(6548,7093,3),
(6548,7286,3),
(6553,6550,3),
(6558,6555,3),
(6571,6568,3),
(6576,6573,3),
(6637,6634,3),
(6637,6646,3),
(6637,7262,3),
(6637,7618,3),
(6641,6638,3),
(6650,6647,3),
(6664,6661,3),
(6664,6679,3),
(6701,6698,3),
(6701,6711,3),
(6701,7258,3),
(6715,6712,3),
(6720,6717,3),
(6748,6745,3),
(6748,6758,3),
(6748,7250,3),
(6748,7938,3),
(6748,7945,3),
(6753,6750,3),
(6753,7940,3),
(6762,6759,3),
(6767,6764,3),
(6775,6772,3),
(6780,6777,3),
(6808,6805,3),
(6808,6817,3),
(6808,7254,3),
(6808,8027,3),
(6808,8029,3),
(6808,8347,3),
(6812,6809,3),
(6821,6818,3),
(6834,6831,3),
(6834,6845,3),
(6867,6864,3),
(6867,6875,3),
(6867,7274,3),
(6896,6893,3),
(6896,6897,3),
(6896,6900,3),
(6896,6904,3),
(6896,6908,3),
(6913,6912,3),
(6913,6916,3),
(6913,7164,3),
(6913,7172,3),
(6913,7176,3),
(6937,6934,3),
(6950,6947,3),
(6985,6982,3),
(6985,6996,3),
(6985,7278,3),
(7000,6997,3),
(7005,7002,3),
(7020,7017,3),
(7025,7022,3),
(7061,7058,3),
(7061,7073,3),
(7061,7270,3),
(7077,7074,3),
(7082,7079,3),
(7097,7094,3),
(7097,7115,3),
(7102,7099,3),
(7142,7139,3),
(7142,7152,3),
(7142,7266,3),
(7169,7168,3),
(7169,7758,3),
(7169,7919,3),
(7169,8132,3),
(7169,8169,3),
(7169,8176,3),
(7169,8183,3),
(7169,8218,3),
(7183,7181,3),
(7183,7186,3),
(7183,7191,3),
(7183,7195,3),
(7183,7199,3),
(7183,7202,3),
(7183,7932,3),
(7183,8433,3),
(7298,4033,3),
(7301,7300,3),
(7301,7308,3),
(7301,7747,3),
(7301,8223,3),
(7301,8263,3),
(7301,8267,3),
(7301,8279,3),
(7301,8368,3),
(7304,7301,3),
(7317,7316,3),
(7317,7322,3),
(7317,7612,3),
(7317,7615,3),
(7317,8235,3),
(7317,8271,3),
(7317,8275,3),
(7317,8291,3),
(7317,8386,3),
(7341,7340,3),
(7341,7342,3),
(7341,7345,3),
(7341,7347,3),
(7358,4425,3),
(7361,7360,3),
(7373,7372,3),
(7375,7373,3),
(7375,7381,3),
(7375,7385,3),
(7381,7380,3),
(7385,7384,3),
(7385,7838,3),
(7385,8243,3),
(7385,8299,3),
(7385,8398,3),
(7413,7412,3),
(7413,7418,3),
(7413,7422,3),
(7413,7424,3),
(7413,7653,3),
(7413,7658,3),
(7413,8255,3),
(7413,8311,3),
(7413,8416,3),
(7416,7413,3),
(7430,7429,3),
(7430,7434,3),
(7430,7605,3),
(7430,8251,3),
(7430,8307,3),
(7430,8319,3),
(7430,8410,3),
(7430,8428,3),
(7446,7444,3),
(7446,7453,3),
(7446,7677,3),
(7446,7690,3),
(7446,8259,3),
(7446,8315,3),
(7446,8422,3),
(7449,7446,3),
(7466,4310,3),
(7471,7468,3),
(7471,7479,3),
(7471,7737,3),
(7471,8071,3),
(7471,8231,3),
(7471,8287,3),
(7471,8380,3),
(7474,7471,3),
(7483,7482,3),
(7487,7486,3),
(7487,7488,3),
(7492,7491,3),
(7496,7495,3),
(7500,7499,3),
(7500,7527,3),
(7500,8323,3),
(7510,7507,3),
(7510,7511,3),
(7510,7708,3),
(7510,7726,3),
(7510,7732,3),
(7512,6939,3),
(7531,7528,3),
(7543,7542,3),
(7591,7588,3),
(7637,7635,3),
(7637,7646,3),
(7637,7880,3),
(7637,8020,3),
(7637,8023,3),
(7637,8351,3),
(7637,8363,3),
(7641,7638,3),
(7641,7882,3),
(7641,8021,3),
(7674,1966,3),
(7682,7679,3),
(7694,7002,3),
(7712,7709,3),
(7712,7727,3),
(7712,7733,3),
(7712,8065,3),
(7750,7748,3),
(7766,7765,3),
(7766,7781,3),
(7766,7794,3),
(7766,7810,3),
(7766,8227,3),
(7766,8283,3),
(7766,8374,3),
(7785,7782,3),
(7785,7795,3),
(7815,7812,3),
(7844,7841,3),
(7891,4702,3),
(7893,7892,3),
(7893,7896,3),
(7893,7912,3),
(7893,7916,3),
(7893,8239,3),
(7893,8295,3),
(7893,8392,3),
(7925,7924,3),
(7928,7927,3),
(7933,8436,3),
(7950,7949,3),
(7960,7959,3),
(7960,7967,3),
(7960,8343,3),
(7963,7961,3),
(7998,6652,3),
(8006,8003,3),
(8006,8015,3),
(8006,8016,3),
(8006,8339,3),
(8010,8007,3),
(8043,6823,3),
(8050,8047,3),
(8050,8359,3),
(8054,8051,3),
(8061,8060,3),
(8061,8064,3),
(8061,8066,3),
(8061,8327,3),
(8079,5113,3),
(8093,8090,3),
(8093,8102,3),
(8093,8355,3),
(8097,8094,3),
(8119,8117,3),
(8119,8190,3),
(8119,8335,3),
(8123,8120,3),
(8138,7079,3),
(8155,8152,3),
(8155,8165,3),
(8155,8331,3),
(8159,8156,3),
(8192,8191,3),
(8213,8212,3),
(8220,8219,3),
(409,359,4),
(410,359,4),
(530,359,4),
(582,578,4),
(594,593,4),
(609,605,4),
(636,632,4),
(658,654,4),
(665,5365,4),
(665,6122,4),
(665,6130,4),
(665,6446,4),
(665,6498,4),
(774,38,4),
(790,786,4),
(798,794,4),
(798,6501,4),
(798,7760,4),
(1102,1098,4),
(1102,5788,4),
(1107,1103,4),
(1107,5760,4),
(1107,5762,4),
(1107,5784,4),
(1112,1108,4),
(1117,1113,4),
(1122,1118,4),
(1127,1123,4),
(1127,5792,4),
(1389,1385,4),
(1399,1395,4),
(1399,5182,4),
(1410,1408,4),
(1410,1416,4),
(1410,5179,4),
(1410,5183,4),
(1957,1953,4),
(1963,1951,4),
(1970,1966,4),
(2020,1951,4),
(2080,3707,4),
(2080,3711,4),
(3091,3086,4),
(3092,3086,4),
(3097,3093,4),
(3119,3093,4),
(3127,3123,4),
(3127,3317,4),
(3127,3333,4),
(3127,3552,4),
(3128,3555,4),
(3128,3558,4),
(3128,3562,4),
(3128,3566,4),
(3128,3571,4),
(3128,3575,4),
(3128,3579,4),
(3128,3583,4),
(3128,3587,4),
(3128,3591,4),
(3128,3595,4),
(3129,3601,4),
(3129,3605,4),
(3129,3609,4),
(3129,3613,4),
(3129,3617,4),
(3129,3621,4),
(3129,3625,4),
(3129,3629,4),
(3129,3633,4),
(3129,3637,4),
(3129,3649,4),
(3129,3660,4),
(3129,3664,4),
(3129,3992,4),
(3129,3996,4),
(3129,3998,4),
(3129,4001,4),
(3129,4007,4),
(3129,4011,4),
(3129,5088,4),
(3129,5101,4),
(3129,5105,4),
(3129,5149,4),
(3129,5151,4),
(3129,5931,4),
(3129,7091,4),
(3129,7282,4),
(3129,8117,4),
(3129,8190,4),
(3129,8335,4),
(3134,3130,4),
(3134,3318,4),
(3134,3334,4),
(3654,3650,4),
(3692,3688,4),
(3692,3788,4),
(3716,3715,4),
(3720,3719,4),
(3724,3723,4),
(3728,3727,4),
(3732,3731,4),
(3732,3737,4),
(3732,3741,4),
(3732,3756,4),
(3732,3771,4),
(3732,3775,4),
(3732,3787,4),
(3732,3857,4),
(3786,1953,4),
(3792,3788,4),
(3799,3795,4),
(3803,3795,4),
(3808,3804,4),
(3809,3793,4),
(3816,3812,4),
(3816,3826,4),
(3825,3793,4),
(3860,3859,4),
(3860,3900,4),
(3884,3878,4),
(3884,3899,4),
(3884,3919,4),
(3884,3926,4),
(3884,3928,4),
(3906,1958,4),
(3924,3920,4),
(3943,3939,4),
(3943,3980,4),
(3944,3938,4),
(3944,3947,4),
(3944,3951,4),
(3961,3960,4),
(3961,3963,4),
(3961,3971,4),
(3961,3979,4),
(3961,3982,4),
(3961,3983,4),
(3961,4016,4),
(3961,4021,4),
(3961,4024,4),
(3961,4171,4),
(3961,4188,4),
(3961,4192,4),
(3961,4982,4),
(3961,5449,4),
(3961,5462,4),
(3961,5915,4),
(3961,5957,4),
(3961,6021,4),
(3961,6078,4),
(3961,6342,4),
(3961,7242,4),
(3976,3972,4),
(4032,4028,4),
(4037,4033,4),
(4038,4026,4),
(4045,4041,4),
(4060,4056,4),
(4065,4061,4),
(4066,4054,4),
(4073,4069,4),
(4073,4202,4),
(4114,4110,4),
(4116,4108,4),
(4116,4153,4),
(4180,4174,4),
(4180,4184,4),
(4200,4199,4),
(4200,5501,4),
(4200,5923,4),
(4200,5969,4),
(4200,5977,4),
(4200,5981,4),
(4200,5985,4),
(4200,6034,4),
(4200,6073,4),
(4200,6115,4),
(4200,7205,4),
(4200,7209,4),
(4200,7246,4),
(4200,7300,4),
(4200,7308,4),
(4200,7747,4),
(4200,8223,4),
(4200,8263,4),
(4200,8267,4),
(4200,8279,4),
(4209,4205,4),
(4214,4210,4),
(4215,4203,4),
(4250,4246,4),
(4255,4251,4),
(4255,5238,4),
(4256,4244,4),
(4256,4284,4),
(4256,4296,4),
(4256,4298,4),
(4256,4301,4),
(4256,5237,4),
(4256,5525,4),
(4256,5747,4),
(4256,5765,4),
(4256,5919,4),
(4256,5961,4),
(4256,6001,4),
(4256,6080,4),
(4256,6343,4),
(4256,6929,4),
(4256,7765,4),
(4256,7781,4),
(4256,7794,4),
(4256,7810,4),
(4256,8227,4),
(4256,8283,4),
(4309,4305,4),
(4315,4303,4),
(4335,4331,4),
(4341,4329,4),
(4348,4344,4),
(4382,4378,4),
(4382,7469,4),
(4388,4376,4),
(4388,4402,4),
(4388,5550,4),
(4388,5862,4),
(4388,5866,4),
(4388,5965,4),
(4388,5989,4),
(4388,6063,4),
(4388,6065,4),
(4388,6067,4),
(4388,6346,4),
(4407,4403,4),
(4424,4420,4),
(4429,4425,4),
(4430,4418,4),
(4479,4475,4),
(4484,4480,4),
(4485,4473,4),
(4485,4501,4),
(4508,4504,4),
(4513,4509,4),
(4514,4502,4),
(4521,4517,4),
(4534,4533,4),
(4534,4535,4),
(4534,5567,4),
(4534,5576,4),
(4534,5600,4),
(4534,5870,4),
(4534,5949,4),
(4534,6005,4),
(4534,6071,4),
(4534,7226,4),
(4534,7329,4),
(4534,7331,4),
(4534,7340,4),
(4534,7342,4),
(4534,7345,4),
(4534,7347,4),
(4534,7360,4),
(4534,7372,4),
(4534,7380,4),
(4534,7384,4),
(4570,4566,4),
(4575,4571,4),
(4575,7430,4),
(4576,4564,4),
(4576,4592,4),
(4576,4895,4),
(4576,5617,4),
(4576,5633,4),
(4576,5874,4),
(4576,5973,4),
(4576,6013,4),
(4576,6075,4),
(4576,7234,4),
(4583,4579,4),
(4583,5618,4),
(4599,4595,4),
(4604,4600,4),
(4605,4593,4),
(4612,4608,4),
(4642,4638,4),
(4647,4643,4),
(4648,4636,4),
(4648,4664,4),
(4655,4651,4),
(4686,4682,4),
(4687,4681,4),
(4687,4697,4),
(4687,4700,4),
(4687,5657,4),
(4687,5778,4),
(4687,5850,4),
(4687,5953,4),
(4687,6009,4),
(4687,6077,4),
(4687,6340,4),
(4687,7230,4),
(4693,4689,4),
(4708,4704,4),
(4713,4709,4),
(4714,4702,4),
(4732,4728,4),
(4737,4733,4),
(4738,4726,4),
(4789,4785,4),
(4789,7585,4),
(4791,4783,4),
(4791,4804,4),
(4791,5680,4),
(4791,5776,4),
(4791,5854,4),
(4791,5935,4),
(4791,5946,4),
(4791,5997,4),
(4791,6069,4),
(4791,7222,4),
(4791,7325,4),
(4791,7547,4),
(4791,7553,4),
(4791,7556,4),
(4811,4807,4),
(4813,4805,4),
(4820,4816,4),
(4834,4830,4),
(4836,4828,4),
(4836,4873,4),
(4843,4839,4),
(4872,4812,4),
(4879,4875,4),
(4884,4880,4),
(4884,7317,4),
(4891,4890,4),
(4891,4892,4),
(4891,5709,4),
(4891,5858,4),
(4891,5939,4),
(4891,5993,4),
(4891,7218,4),
(4902,4898,4),
(4907,4903,4),
(4908,4896,4),
(4915,4911,4),
(4958,4954,4),
(4958,7402,4),
(4963,4959,4),
(4964,4952,4),
(4964,4979,4),
(4964,5476,4),
(4964,5878,4),
(4964,5944,4),
(4964,6017,4),
(4964,7238,4),
(4964,7401,4),
(4964,7412,4),
(4964,7418,4),
(4971,4967,4),
(5096,5092,4),
(5112,5108,4),
(5117,5113,4),
(5127,5123,4),
(5127,5143,4),
(5127,5927,4),
(5127,6539,4),
(5127,6542,4),
(5127,6546,4),
(5127,6549,4),
(5127,6606,4),
(5127,7093,4),
(5127,7286,4),
(5127,8090,4),
(5127,8102,4),
(5127,8355,4),
(5132,5128,4),
(5481,5477,4),
(5506,5502,4),
(5506,6035,4),
(5506,7748,4),
(5549,4318,4),
(5555,5551,4),
(5555,7738,4),
(5555,8072,4),
(5580,4433,4),
(5605,5601,4),
(5636,5634,4),
(5636,7606,4),
(5662,5658,4),
(5662,7393,4),
(5662,7542,4),
(5714,5710,4),
(5714,7613,4),
(5733,5732,4),
(5733,5734,4),
(5887,5883,4),
(5891,5883,4),
(5896,5892,4),
(5897,5881,4),
(5897,6025,4),
(5897,7153,4),
(5904,5900,4),
(6043,6060,4),
(6043,6089,4),
(6043,6095,4),
(6043,6120,4),
(6043,6128,4),
(6043,6134,4),
(6043,6138,4),
(6043,6143,4),
(6043,6274,4),
(6043,6279,4),
(6043,6283,4),
(6043,6287,4),
(6043,6291,4),
(6043,6295,4),
(6043,6299,4),
(6043,6303,4),
(6043,6307,4),
(6043,6311,4),
(6043,6315,4),
(6043,6320,4),
(6043,6327,4),
(6043,6328,4),
(6043,6332,4),
(6043,6336,4),
(6043,6350,4),
(6043,6444,4),
(6043,6464,4),
(6043,6472,4),
(6043,6475,4),
(6043,6480,4),
(6043,6484,4),
(6043,6487,4),
(6043,6496,4),
(6043,6507,4),
(6043,6511,4),
(6043,6515,4),
(6043,6519,4),
(6043,6523,4),
(6043,6528,4),
(6043,6590,4),
(6043,6599,4),
(6043,6617,4),
(6043,7168,4),
(6043,7758,4),
(6043,7919,4),
(6043,8132,4),
(6043,8169,4),
(6043,8176,4),
(6043,8183,4),
(6043,8218,4),
(6057,6056,4),
(6057,6893,4),
(6057,6897,4),
(6057,6900,4),
(6057,6904,4),
(6057,6908,4),
(6057,6912,4),
(6057,6916,4),
(6057,7164,4),
(6057,7172,4),
(6057,7176,4),
(6057,7181,4),
(6057,7186,4),
(6057,7191,4),
(6057,7195,4),
(6057,7199,4),
(6057,7202,4),
(6057,7932,4),
(6057,8433,4),
(6161,6157,4),
(6183,6179,4),
(6188,6184,4),
(6188,6192,4),
(6188,6352,4),
(6188,6367,4),
(6209,6208,4),
(6244,6232,4),
(6249,6246,4),
(6249,6355,4),
(6249,6359,4),
(6249,6389,4),
(6257,6253,4),
(6263,6259,4),
(6263,6363,4),
(6379,6378,4),
(6379,6387,4),
(6404,6400,4),
(6404,6408,4),
(6419,6418,4),
(6419,6919,4),
(6461,274,4),
(6469,6465,4),
(6469,8133,4),
(6469,8184,4),
(6554,6550,4),
(6559,6555,4),
(6572,6568,4),
(6572,6634,4),
(6572,6646,4),
(6572,7262,4),
(6572,7618,4),
(6572,7635,4),
(6572,7646,4),
(6572,7880,4),
(6572,8020,4),
(6572,8023,4),
(6572,8351,4),
(6572,8363,4),
(6577,6573,4),
(6611,6607,4),
(6642,6638,4),
(6651,6647,4),
(6665,6661,4),
(6665,6679,4),
(6665,6698,4),
(6665,6711,4),
(6665,7258,4),
(6665,8003,4),
(6665,8015,4),
(6665,8016,4),
(6665,8339,4),
(6716,6712,4),
(6721,6717,4),
(6749,6745,4),
(6749,6758,4),
(6749,7250,4),
(6749,7938,4),
(6749,7945,4),
(6749,7949,4),
(6749,7959,4),
(6749,7967,4),
(6749,8343,4),
(6754,6750,4),
(6754,7940,4),
(6763,6759,4),
(6768,6764,4),
(6776,6772,4),
(6776,6805,4),
(6776,6817,4),
(6776,7254,4),
(6776,8027,4),
(6776,8029,4),
(6776,8347,4),
(6781,6777,4),
(6813,6809,4),
(6822,6818,4),
(6835,6831,4),
(6835,6845,4),
(6835,6864,4),
(6835,6875,4),
(6835,7274,4),
(6835,8047,4),
(6835,8359,4),
(6892,912,4),
(6938,6934,4),
(6951,6947,4),
(6951,6982,4),
(6951,6996,4),
(6951,7278,4),
(6951,7482,4),
(6951,7486,4),
(6951,7488,4),
(6951,7491,4),
(6951,7495,4),
(6951,7499,4),
(6951,7527,4),
(6951,8323,4),
(7001,6997,4),
(7006,7002,4),
(7021,7017,4),
(7021,7058,4),
(7021,7073,4),
(7021,7270,4),
(7021,7507,4),
(7021,7511,4),
(7021,7708,4),
(7021,7726,4),
(7021,7732,4),
(7021,8060,4),
(7021,8064,4),
(7021,8066,4),
(7021,8327,4),
(7026,7022,4),
(7078,7074,4),
(7083,7079,4),
(7098,7094,4),
(7098,7115,4),
(7098,7139,4),
(7098,7152,4),
(7098,7266,4),
(7098,8152,4),
(7098,8165,4),
(7098,8331,4),
(7103,7099,4),
(7134,7079,4),
(7147,7143,4),
(7183,8436,4),
(7299,4033,4),
(7305,7301,4),
(7319,7316,4),
(7319,7322,4),
(7319,7612,4),
(7319,7615,4),
(7319,8235,4),
(7319,8271,4),
(7319,8275,4),
(7319,8291,4),
(7359,4425,4),
(7374,7381,4),
(7376,7373,4),
(7376,7385,4),
(7391,7390,4),
(7391,7395,4),
(7391,7541,4),
(7391,8247,4),
(7391,8303,4),
(7417,7413,4),
(7423,7422,4),
(7423,7424,4),
(7423,7653,4),
(7423,7658,4),
(7423,8255,4),
(7423,8311,4),
(7432,7429,4),
(7432,7434,4),
(7432,7605,4),
(7432,8251,4),
(7432,8307,4),
(7432,8319,4),
(7450,7446,4),
(7451,7444,4),
(7451,7453,4),
(7467,4310,4),
(7475,7471,4),
(7476,7468,4),
(7476,7479,4),
(7476,7737,4),
(7476,8071,4),
(7476,8231,4),
(7476,8287,4),
(7526,6939,4),
(7532,7528,4),
(7561,7560,4),
(7565,7564,4),
(7583,4717,4),
(7587,7584,4),
(7587,7599,4),
(7587,7892,4),
(7587,7896,4),
(7587,7912,4),
(7587,7916,4),
(7587,8239,4),
(7587,8295,4),
(7592,7588,4),
(7642,7638,4),
(7642,7882,4),
(7642,8021,4),
(7655,7654,4),
(7663,1966,4),
(7678,7677,4),
(7678,7690,4),
(7678,8259,4),
(7678,8315,4),
(7683,7679,4),
(7691,7002,4),
(7713,7709,4),
(7713,7727,4),
(7713,7733,4),
(7713,8065,4),
(7767,7766,4),
(7809,4218,4),
(7816,7812,4),
(7839,7838,4),
(7839,8243,4),
(7839,8299,4),
(7845,7841,4),
(7964,7961,4),
(8044,6823,4),
(8055,8051,4),
(8098,8094,4),
(8124,8120,4),
(8124,8191,4),
(8160,8156,4),
(8369,8368,4),
(8375,8374,4),
(8381,8380,4),
(8387,8386,4),
(8393,8392,4),
(8399,8398,4),
(8405,8404,4),
(8411,8410,4),
(8417,8416,4),
(8423,8422,4),
(8429,8428,4),
(570,359,5),
(750,38,5),
(1390,1385,5),
(1400,1395,5),
(1400,5182,5),
(1407,912,5),
(1964,1951,5),
(1971,1966,5),
(2064,3707,5),
(2064,3711,5),
(2064,3715,5),
(2064,3719,5),
(2064,3723,5),
(2064,3727,5),
(2064,3731,5),
(3093,3086,5),
(3098,3093,5),
(3120,3093,5),
(3128,3123,5),
(3128,3317,5),
(3128,3333,5),
(3128,3552,5),
(3129,3555,5),
(3129,3558,5),
(3129,3562,5),
(3129,3566,5),
(3129,3571,5),
(3129,3575,5),
(3129,3579,5),
(3129,3583,5),
(3129,3587,5),
(3129,3591,5),
(3129,3595,5),
(3129,3598,5),
(3135,3130,5),
(3135,3318,5),
(3135,3334,5),
(3334,3601,5),
(3334,3605,5),
(3334,3609,5),
(3334,3613,5),
(3334,3617,5),
(3334,3621,5),
(3334,3625,5),
(3334,3629,5),
(3334,3633,5),
(3334,3637,5),
(3650,3649,5),
(3650,3660,5),
(3650,3664,5),
(3650,3992,5),
(3650,3996,5),
(3650,3998,5),
(3650,4001,5),
(3650,4007,5),
(3650,4011,5),
(3655,3650,5),
(3738,3737,5),
(3742,3741,5),
(3742,3756,5),
(3742,3771,5),
(3742,3775,5),
(3742,3787,5),
(3742,3857,5),
(3810,3793,5),
(3817,3812,5),
(3817,3826,5),
(3885,3878,5),
(3885,3899,5),
(3885,3919,5),
(3885,3926,5),
(3885,3928,5),
(3885,3938,5),
(3948,3947,5),
(3952,3951,5),
(3962,3960,5),
(3962,3963,5),
(3962,3971,5),
(3962,3979,5),
(3962,3982,5),
(3962,3983,5),
(3962,4016,5),
(3962,4021,5),
(3962,4024,5),
(4039,4026,5),
(4046,4041,5),
(4067,4054,5),
(4067,4108,5),
(4067,4153,5),
(4074,4069,5),
(4074,4202,5),
(4172,4171,5),
(4181,4174,5),
(4185,4184,5),
(4189,4188,5),
(4193,4192,5),
(4193,4982,5),
(4201,4199,5),
(4201,5501,5),
(4201,5923,5),
(4201,5969,5),
(4201,5977,5),
(4201,5981,5),
(4201,5985,5),
(4201,6034,5),
(4201,6073,5),
(4201,6115,5),
(4201,7205,5),
(4201,7209,5),
(4201,7246,5),
(4216,4203,5),
(4223,4218,5),
(4257,4244,5),
(4264,4259,5),
(4285,4284,5),
(4285,4296,5),
(4285,4298,5),
(4291,4286,5),
(4302,4301,5),
(4302,5237,5),
(4302,5525,5),
(4302,5747,5),
(4302,5765,5),
(4302,5919,5),
(4302,5961,5),
(4302,6001,5),
(4302,6080,5),
(4302,6343,5),
(4302,6929,5),
(4302,7765,5),
(4302,7781,5),
(4302,7794,5),
(4316,4303,5),
(4322,4318,5),
(4342,4329,5),
(4349,4344,5),
(4389,4376,5),
(4389,4402,5),
(4389,5550,5),
(4389,5862,5),
(4389,5866,5),
(4389,5965,5),
(4389,5989,5),
(4389,6063,5),
(4389,6065,5),
(4389,6067,5),
(4389,6346,5),
(4408,4403,5),
(4431,4418,5),
(4486,4473,5),
(4486,4501,5),
(4486,4533,5),
(4486,4535,5),
(4486,5567,5),
(4486,5576,5),
(4486,5600,5),
(4486,5870,5),
(4486,5949,5),
(4486,6005,5),
(4486,6071,5),
(4486,7226,5),
(4486,7329,5),
(4486,7331,5),
(4486,7340,5),
(4486,7342,5),
(4486,7345,5),
(4486,7347,5),
(4486,7360,5),
(4486,7372,5),
(4486,7380,5),
(4486,7384,5),
(4515,4502,5),
(4522,4517,5),
(4577,4564,5),
(4577,4592,5),
(4577,4895,5),
(4577,5617,5),
(4577,5633,5),
(4577,5874,5),
(4577,5973,5),
(4577,6013,5),
(4577,6075,5),
(4577,7234,5),
(4584,4579,5),
(4584,5618,5),
(4606,4593,5),
(4649,4636,5),
(4649,4664,5),
(4656,4651,5),
(4688,4681,5),
(4688,4697,5),
(4688,4700,5),
(4688,5657,5),
(4688,5778,5),
(4688,5850,5),
(4688,5953,5),
(4688,6009,5),
(4688,6077,5),
(4688,6340,5),
(4688,7230,5),
(4694,4689,5),
(4715,4702,5),
(4722,4717,5),
(4739,4726,5),
(4746,4741,5),
(4792,4783,5),
(4792,4804,5),
(4792,5680,5),
(4798,4793,5),
(4814,4805,5),
(4821,4816,5),
(4837,4828,5),
(4837,4873,5),
(4837,4890,5),
(4837,4892,5),
(4837,5709,5),
(4837,5858,5),
(4837,5939,5),
(4837,5993,5),
(4837,7218,5),
(4844,4839,5),
(4909,4896,5),
(4916,4911,5),
(4965,4952,5),
(4965,4979,5),
(4965,5476,5),
(4965,5878,5),
(4965,5944,5),
(4965,6017,5),
(4965,7238,5),
(4965,7401,5),
(4965,7412,5),
(4965,7418,5),
(4965,7422,5),
(4965,7424,5),
(4965,7653,5),
(4965,7658,5),
(4965,8255,5),
(4965,8311,5),
(4965,8416,5),
(4972,4967,5),
(4995,654,5),
(5092,5088,5),
(5092,5101,5),
(5092,5105,5),
(5092,5149,5),
(5092,5151,5),
(5092,5931,5),
(5092,7091,5),
(5092,7282,5),
(5097,5092,5),
(5113,5108,5),
(5118,5113,5),
(5128,5123,5),
(5128,5143,5),
(5128,5927,5),
(5128,6539,5),
(5128,6542,5),
(5128,6546,5),
(5128,6549,5),
(5133,5128,5),
(5450,5449,5),
(5450,5462,5),
(5450,5915,5),
(5450,5957,5),
(5450,6021,5),
(5450,6078,5),
(5450,6342,5),
(5450,7242,5),
(5482,5477,5),
(5482,7654,5),
(5507,5502,5),
(5507,6035,5),
(5507,7748,5),
(5531,5526,5),
(5556,5551,5),
(5556,7738,5),
(5556,8072,5),
(5594,4433,5),
(5606,5601,5),
(5637,5634,5),
(5655,4608,5),
(5663,5658,5),
(5663,7393,5),
(5663,7542,5),
(5686,5681,5),
(5715,5710,5),
(5715,7613,5),
(5777,5776,5),
(5777,5854,5),
(5777,5935,5),
(5777,5946,5),
(5777,5997,5),
(5777,6069,5),
(5777,7222,5),
(5777,7325,5),
(5777,7547,5),
(5777,7553,5),
(5777,7556,5),
(5777,7560,5),
(5777,7564,5),
(5777,7584,5),
(5777,7599,5),
(5898,5881,5),
(5898,6025,5),
(5898,7153,5),
(5905,5900,5),
(6030,6060,5),
(6030,6089,5),
(6030,6095,5),
(6030,6120,5),
(6030,6128,5),
(6030,6134,5),
(6030,6138,5),
(6030,6143,5),
(6030,6274,5),
(6030,6279,5),
(6030,6283,5),
(6030,6287,5),
(6030,6291,5),
(6030,6295,5),
(6030,6299,5),
(6030,6303,5),
(6030,6307,5),
(6030,6311,5),
(6030,6315,5),
(6030,6320,5),
(6030,6327,5),
(6030,6328,5),
(6030,6332,5),
(6030,6336,5),
(6030,6350,5),
(6030,6444,5),
(6030,6464,5),
(6030,6472,5),
(6030,6475,5),
(6030,6480,5),
(6030,6484,5),
(6030,6487,5),
(6030,6496,5),
(6030,6507,5),
(6030,6511,5),
(6030,6515,5),
(6030,6519,5),
(6030,6523,5),
(6030,6528,5),
(6030,6590,5),
(6030,6599,5),
(6030,6617,5),
(6030,7168,5),
(6030,7758,5),
(6030,7919,5),
(6030,8132,5),
(6030,8169,5),
(6030,8176,5),
(6030,8183,5),
(6030,8218,5),
(6057,8436,5),
(6245,6232,5),
(6250,6246,5),
(6250,6355,5),
(6250,6359,5),
(6250,6389,5),
(6258,6253,5),
(6264,6259,5),
(6264,6363,5),
(6405,6400,5),
(6405,6408,5),
(6405,6418,5),
(6405,6919,5),
(6462,274,5),
(6470,6465,5),
(6555,6550,5),
(6560,6555,5),
(6573,6568,5),
(6578,6573,5),
(6607,6606,5),
(6607,7093,5),
(6607,7286,5),
(6612,6607,5),
(6638,6634,5),
(6638,6646,5),
(6638,7262,5),
(6638,7618,5),
(6643,6638,5),
(6652,6647,5),
(6657,6652,5),
(6666,6661,5),
(6666,6679,5),
(6671,6666,5),
(6702,6698,5),
(6702,6711,5),
(6702,7258,5),
(6707,6702,5),
(6717,6712,5),
(6722,6717,5),
(6743,6717,5),
(6750,6745,5),
(6750,6758,5),
(6750,7250,5),
(6755,6750,5),
(6755,7940,5),
(6764,6759,5),
(6769,6764,5),
(6777,6772,5),
(6782,6777,5),
(6809,6805,5),
(6809,6817,5),
(6809,7254,5),
(6809,8027,5),
(6809,8029,5),
(6809,8347,5),
(6814,6809,5),
(6823,6818,5),
(6836,6831,5),
(6836,6845,5),
(6868,6864,5),
(6868,6875,5),
(6868,7274,5),
(6939,6934,5),
(6944,6939,5),
(6952,6947,5),
(6957,6952,5),
(6986,6982,5),
(6986,6996,5),
(6986,7278,5),
(6986,7482,5),
(6986,7486,5),
(6986,7488,5),
(6986,7491,5),
(6986,7495,5),
(6986,7499,5),
(6991,6986,5),
(7002,6997,5),
(7007,7002,5),
(7022,7017,5),
(7027,7022,5),
(7062,7058,5),
(7062,7073,5),
(7062,7270,5),
(7062,7507,5),
(7062,7511,5),
(7079,7074,5),
(7084,7079,5),
(7099,7094,5),
(7099,7115,5),
(7104,7099,5),
(7135,7079,5),
(7143,7139,5),
(7143,7152,5),
(7143,7266,5),
(7148,7143,5),
(7190,912,5),
(7192,7191,5),
(7196,7195,5),
(7200,7199,5),
(7306,7300,5),
(7306,7308,5),
(7306,7747,5),
(7306,8223,5),
(7306,8263,5),
(7306,8267,5),
(7306,8279,5),
(7306,8368,5),
(7320,7316,5),
(7320,7322,5),
(7320,7612,5),
(7320,7615,5),
(7320,8235,5),
(7320,8271,5),
(7320,8275,5),
(7320,8291,5),
(7320,8386,5),
(7362,7361,5),
(7377,7373,5),
(7392,7390,5),
(7392,7395,5),
(7392,7541,5),
(7392,8247,5),
(7392,8303,5),
(7392,8404,5),
(7433,7429,5),
(7433,7434,5),
(7433,7605,5),
(7433,8251,5),
(7433,8307,5),
(7433,8319,5),
(7433,8410,5),
(7433,8428,5),
(7452,7444,5),
(7452,7453,5),
(7452,7677,5),
(7452,7690,5),
(7452,8259,5),
(7452,8315,5),
(7452,8422,5),
(7477,7468,5),
(7477,7479,5),
(7477,7737,5),
(7477,8071,5),
(7477,8231,5),
(7477,8287,5),
(7477,8380,5),
(7528,7527,5),
(7528,8323,5),
(7533,7528,5),
(7549,7548,5),
(7549,7554,5),
(7593,7588,5),
(7607,7606,5),
(7638,7635,5),
(7638,7646,5),
(7643,7638,5),
(7664,1966,5),
(7684,7679,5),
(7704,7002,5),
(7709,7708,5),
(7714,7709,5),
(7714,7727,5),
(7714,7733,5),
(7714,8065,5),
(7727,7726,5),
(7733,7732,5),
(7733,8060,5),
(7787,7782,5),
(7787,7795,5),
(7811,7810,5),
(7811,8227,5),
(7811,8283,5),
(7811,8374,5),
(7817,7812,5),
(7840,7838,5),
(7840,8243,5),
(7840,8299,5),
(7840,8398,5),
(7846,7841,5),
(7882,7880,5),
(7883,7882,5),
(7883,8021,5),
(7894,7892,5),
(7894,7896,5),
(7894,7912,5),
(7894,7916,5),
(7894,8239,5),
(7894,8295,5),
(7894,8392,5),
(7940,7938,5),
(7940,7945,5),
(7940,7949,5),
(7961,7959,5),
(7961,7967,5),
(7961,8343,5),
(7965,7961,5),
(8007,8003,5),
(8007,8015,5),
(8007,8016,5),
(8007,8339,5),
(8021,8020,5),
(8021,8023,5),
(8021,8351,5),
(8021,8363,5),
(8045,6823,5),
(8051,8047,5),
(8051,8359,5),
(8056,8051,5),
(8065,8064,5),
(8065,8066,5),
(8065,8327,5),
(8094,8090,5),
(8094,8102,5),
(8094,8355,5),
(8099,8094,5),
(8120,8117,5),
(8125,8120,5),
(8134,8133,5),
(8134,8184,5),
(8156,8152,5),
(8156,8165,5),
(8156,8331,5),
(8161,8156,5),
(8191,8190,5),
(8191,8335,5),
(8193,8191,5),
(274,38,6),
(1391,1385,6),
(1401,1395,6),
(1401,5182,6),
(1965,1951,6),
(1972,1966,6),
(1992,3707,6),
(1992,3711,6),
(1992,3715,6),
(1992,3719,6),
(1992,3723,6),
(1992,3727,6),
(1992,3731,6),
(1992,3737,6),
(1992,3741,6),
(1992,3756,6),
(1992,3771,6),
(1992,3775,6),
(1992,3787,6),
(1992,3857,6),
(1992,3878,6),
(1992,3899,6),
(1992,3919,6),
(1992,3926,6),
(1992,3928,6),
(1992,3938,6),
(1992,3947,6),
(1992,3951,6),
(1992,3960,6),
(1992,3963,6),
(1992,3971,6),
(1992,3979,6),
(1992,3982,6),
(1992,3983,6),
(1992,4016,6),
(1992,4021,6),
(1992,4024,6),
(1992,4171,6),
(1992,4188,6),
(1992,4192,6),
(1992,4982,6),
(1992,5449,6),
(1992,5462,6),
(1992,5915,6),
(3099,3093,6),
(3102,3086,6),
(3121,3093,6),
(3129,3123,6),
(3129,3317,6),
(3129,3333,6),
(3129,3552,6),
(3136,3130,6),
(3136,3318,6),
(3136,3334,6),
(3138,3601,6),
(3138,3605,6),
(3138,3609,6),
(3138,3613,6),
(3138,3617,6),
(3138,3621,6),
(3138,3625,6),
(3138,3629,6),
(3138,3633,6),
(3138,3637,6),
(3138,3649,6),
(3334,3555,6),
(3334,3558,6),
(3334,3562,6),
(3334,3566,6),
(3334,3571,6),
(3334,3575,6),
(3334,3579,6),
(3334,3583,6),
(3334,3587,6),
(3334,3591,6),
(3334,3595,6),
(3334,3598,6),
(3656,3650,6),
(3661,3660,6),
(3665,3664,6),
(3665,3992,6),
(3665,3996,6),
(3665,3998,6),
(3665,4001,6),
(3665,4007,6),
(3665,4011,6),
(3665,5088,6),
(3665,5101,6),
(3665,5105,6),
(3665,5149,6),
(3665,5151,6),
(3811,3793,6),
(3818,3812,6),
(3818,3826,6),
(4040,4026,6),
(4047,4041,6),
(4068,4054,6),
(4068,4108,6),
(4068,4153,6),
(4068,4174,6),
(4068,4184,6),
(4068,4199,6),
(4068,5501,6),
(4068,5923,6),
(4075,4069,6),
(4075,4202,6),
(4217,4203,6),
(4224,4218,6),
(4258,4244,6),
(4258,4284,6),
(4258,4296,6),
(4258,4298,6),
(4258,4301,6),
(4258,5237,6),
(4258,5525,6),
(4258,5747,6),
(4258,5765,6),
(4258,5919,6),
(4265,4259,6),
(4292,4286,6),
(4317,4303,6),
(4323,4318,6),
(4343,4329,6),
(4343,4376,6),
(4343,4402,6),
(4343,5550,6),
(4343,5862,6),
(4343,5866,6),
(4350,4344,6),
(4409,4403,6),
(4432,4418,6),
(4487,4473,6),
(4487,4501,6),
(4487,4533,6),
(4487,4535,6),
(4487,5567,6),
(4487,5576,6),
(4487,5600,6),
(4487,5870,6),
(4516,4502,6),
(4523,4517,6),
(4578,4564,6),
(4578,4592,6),
(4578,4895,6),
(4578,5617,6),
(4578,5633,6),
(4578,5874,6),
(4585,4579,6),
(4585,5618,6),
(4607,4593,6),
(4613,4608,6),
(4650,4636,6),
(4650,4664,6),
(4650,4681,6),
(4650,4697,6),
(4650,4700,6),
(4650,5657,6),
(4650,5778,6),
(4650,5850,6),
(4657,4651,6),
(4695,4689,6),
(4709,4702,6),
(4723,4717,6),
(4740,4726,6),
(4740,4783,6),
(4740,4804,6),
(4740,5680,6),
(4740,5776,6),
(4740,5854,6),
(4747,4741,6),
(4799,4793,6),
(4815,4805,6),
(4822,4816,6),
(4838,4828,6),
(4838,4873,6),
(4838,4890,6),
(4838,4892,6),
(4838,5709,6),
(4838,5858,6),
(4845,4839,6),
(4910,4896,6),
(4917,4911,6),
(4966,4952,6),
(4966,4979,6),
(4966,5476,6),
(4966,5878,6),
(4973,4967,6),
(5098,5092,6),
(5119,5113,6),
(5122,5108,6),
(5134,5128,6),
(5137,5123,6),
(5137,5143,6),
(5483,5477,6),
(5508,5502,6),
(5508,6035,6),
(5508,7748,6),
(5532,5526,6),
(5557,5551,6),
(5557,7738,6),
(5638,5634,6),
(5638,7606,6),
(5664,5658,6),
(5664,7393,6),
(5664,7542,6),
(5687,5681,6),
(5687,7548,6),
(5716,5710,6),
(5716,7613,6),
(5899,5881,6),
(5906,5900,6),
(5928,5927,6),
(5928,6539,6),
(5928,6542,6),
(5928,6546,6),
(5928,6549,6),
(5928,6606,6),
(5928,7093,6),
(5932,5931,6),
(5932,7091,6),
(5936,5935,6),
(5936,5946,6),
(5940,5939,6),
(5943,4896,6),
(5945,5944,6),
(5950,5949,6),
(5954,5953,6),
(5958,5957,6),
(5962,5961,6),
(5966,5965,6),
(5970,5969,6),
(5974,5973,6),
(5978,5977,6),
(5982,5981,6),
(5986,5985,6),
(5986,6034,6),
(5986,6073,6),
(5986,6115,6),
(5986,7205,6),
(5986,7209,6),
(5986,7246,6),
(5986,7300,6),
(5986,7308,6),
(5986,7747,6),
(5986,8223,6),
(5986,8263,6),
(5986,8267,6),
(5986,8279,6),
(5986,8368,6),
(5990,5989,6),
(5990,6063,6),
(5990,6065,6),
(5990,6067,6),
(5990,6346,6),
(5990,7468,6),
(5990,7479,6),
(5990,7737,6),
(5990,8071,6),
(5990,8231,6),
(5990,8287,6),
(5990,8380,6),
(5994,5993,6),
(5994,7218,6),
(5994,7316,6),
(5994,7322,6),
(5994,7612,6),
(5994,7615,6),
(5994,8235,6),
(5994,8271,6),
(5994,8275,6),
(5994,8291,6),
(5994,8386,6),
(5998,5997,6),
(5998,6069,6),
(5998,7222,6),
(5998,7325,6),
(5998,7547,6),
(5998,7553,6),
(5998,7556,6),
(5998,7560,6),
(5998,7564,6),
(5998,7584,6),
(5998,7599,6),
(6002,6001,6),
(6002,6080,6),
(6002,6343,6),
(6002,6929,6),
(6002,7765,6),
(6002,7781,6),
(6002,7794,6),
(6002,7810,6),
(6002,8227,6),
(6002,8283,6),
(6002,8374,6),
(6006,6005,6),
(6006,6071,6),
(6006,7226,6),
(6006,7329,6),
(6006,7331,6),
(6006,7340,6),
(6006,7342,6),
(6006,7345,6),
(6006,7347,6),
(6006,7360,6),
(6006,7372,6),
(6006,7380,6),
(6006,7384,6),
(6006,7838,6),
(6006,8243,6),
(6006,8299,6),
(6006,8398,6),
(6010,6009,6),
(6010,6077,6),
(6010,6340,6),
(6010,7230,6),
(6010,7390,6),
(6010,7395,6),
(6010,7541,6),
(6010,8247,6),
(6010,8303,6),
(6010,8404,6),
(6014,6013,6),
(6014,6075,6),
(6014,7234,6),
(6014,7429,6),
(6014,7434,6),
(6014,7605,6),
(6014,8251,6),
(6014,8307,6),
(6014,8319,6),
(6014,8410,6),
(6014,8428,6),
(6018,6017,6),
(6018,7238,6),
(6018,7401,6),
(6018,7412,6),
(6018,7418,6),
(6018,7422,6),
(6018,7424,6),
(6018,7653,6),
(6018,7658,6),
(6018,8255,6),
(6018,8311,6),
(6018,8416,6),
(6022,6021,6),
(6022,6078,6),
(6022,6342,6),
(6022,7242,6),
(6022,7444,6),
(6022,7453,6),
(6022,7677,6),
(6022,7690,6),
(6022,8259,6),
(6022,8315,6),
(6022,8422,6),
(6026,6025,6),
(6026,7153,6),
(6048,6060,6),
(6090,6089,6),
(6096,6095,6),
(6096,6120,6),
(6096,6128,6),
(6096,6134,6),
(6096,6138,6),
(6144,6143,6),
(6144,6274,6),
(6144,6279,6),
(6144,6283,6),
(6144,6287,6),
(6144,6291,6),
(6144,6295,6),
(6144,6299,6),
(6144,6303,6),
(6144,6307,6),
(6144,6311,6),
(6144,6315,6),
(6144,6320,6),
(6144,6327,6),
(6144,6328,6),
(6144,6332,6),
(6144,6336,6),
(6144,6350,6),
(6144,6444,6),
(6463,274,6),
(6465,6464,6),
(6465,6472,6),
(6465,6475,6),
(6465,6480,6),
(6465,6484,6),
(6465,6487,6),
(6465,6496,6),
(6465,6507,6),
(6465,6511,6),
(6465,6515,6),
(6465,6519,6),
(6465,6523,6),
(6465,6528,6),
(6465,6590,6),
(6465,6599,6),
(6465,6617,6),
(6465,7168,6),
(6465,7758,6),
(6465,7919,6),
(6471,6465,6),
(6471,8133,6),
(6471,8184,6),
(6561,6555,6),
(6564,6550,6),
(6579,6573,6),
(6582,6568,6),
(6582,6634,6),
(6582,6646,6),
(6613,6607,6),
(6644,6638,6),
(6660,6647,6),
(6674,6661,6),
(6674,6679,6),
(6674,6698,6),
(6674,6711,6),
(6723,6717,6),
(6725,6712,6),
(6744,6717,6),
(6756,6750,6),
(6756,7940,6),
(6757,6745,6),
(6757,6758,6),
(6770,6764,6),
(6771,6759,6),
(6783,6777,6),
(6784,6772,6),
(6784,6805,6),
(6784,6817,6),
(6815,6809,6),
(6830,6818,6),
(6843,6831,6),
(6843,6845,6),
(6843,6864,6),
(6843,6875,6),
(6945,6939,6),
(6946,6934,6),
(6958,6952,6),
(6959,6947,6),
(6959,6982,6),
(6959,6996,6),
(6992,6986,6),
(7008,7002,6),
(7012,6997,6),
(7028,7022,6),
(7032,7017,6),
(7032,7058,6),
(7032,7073,6),
(7053,7002,6),
(7068,7062,6),
(7085,7079,6),
(7089,7074,6),
(7105,7099,6),
(7109,7094,6),
(7109,7115,6),
(7109,7139,6),
(7109,7152,6),
(7136,7079,6),
(7149,7143,6),
(7251,7250,6),
(7251,7938,6),
(7251,7945,6),
(7251,7949,6),
(7251,7959,6),
(7251,7967,6),
(7255,7254,6),
(7255,8027,6),
(7255,8029,6),
(7259,7258,6),
(7259,8003,6),
(7259,8015,6),
(7259,8016,6),
(7263,7262,6),
(7263,7618,6),
(7263,7635,6),
(7263,7646,6),
(7263,7880,6),
(7263,8020,6),
(7263,8023,6),
(7267,7266,6),
(7267,8152,6),
(7267,8165,6),
(7271,7270,6),
(7271,7507,6),
(7271,7511,6),
(7271,7708,6),
(7271,7726,6),
(7271,7732,6),
(7271,8060,6),
(7271,8064,6),
(7271,8066,6),
(7275,7274,6),
(7275,8047,6),
(7279,7278,6),
(7279,7482,6),
(7279,7486,6),
(7279,7488,6),
(7279,7491,6),
(7279,7495,6),
(7279,7499,6),
(7279,7527,6),
(7283,7282,6),
(7283,8117,6),
(7283,8190,6),
(7287,7286,6),
(7287,8090,6),
(7287,8102,6),
(7363,7361,6),
(7534,7528,6),
(7555,7554,6),
(7594,7588,6),
(7644,7638,6),
(7644,7882,6),
(7656,7654,6),
(7661,1966,6),
(7685,7679,6),
(7715,7709,6),
(7715,7727,6),
(7734,7733,6),
(7734,8065,6),
(7788,7782,6),
(7788,7795,6),
(7818,7812,6),
(7823,4433,6),
(7847,7841,6),
(7895,7892,6),
(7895,7896,6),
(7913,7912,6),
(7913,7916,6),
(7913,8239,6),
(7913,8295,6),
(7913,8392,6),
(7966,7961,6),
(7999,6652,6),
(8011,8007,6),
(8022,8021,6),
(8046,6823,6),
(8057,8051,6),
(8074,8072,6),
(8100,8094,6),
(8126,8120,6),
(8126,8191,6),
(8133,8132,6),
(8133,8169,6),
(8133,8176,6),
(8162,8156,6),
(8184,8183,6),
(8184,8218,6),
(8324,8323,6),
(8328,8327,6),
(8332,8331,6),
(8336,8335,6),
(8340,8339,6),
(8344,8343,6),
(8348,8347,6),
(8352,8351,6),
(8356,8355,6),
(8360,8359,6),
(8364,8363,6),
(8434,8433,6),
(255,38,7),
(1392,1385,7),
(1402,1395,7),
(1402,5182,7),
(1966,1951,7),
(1973,1966,7),
(2065,3707,7),
(2065,3711,7),
(2065,3715,7),
(2065,3719,7),
(2065,3723,7),
(2065,3727,7),
(2065,3731,7),
(2065,3737,7),
(2065,3741,7),
(3100,3093,7),
(3122,3093,7),
(3130,3123,7),
(3137,3130,7),
(3137,3318,7),
(3137,3334,7),
(3138,3555,7),
(3138,3558,7),
(3138,3562,7),
(3138,3566,7),
(3138,3571,7),
(3138,3575,7),
(3138,3579,7),
(3138,3583,7),
(3138,3587,7),
(3138,3591,7),
(3138,3595,7),
(3138,3598,7),
(3318,3317,7),
(3334,3333,7),
(3334,3552,7),
(3657,3650,7),
(3757,3756,7),
(3757,3771,7),
(3757,3775,7),
(3757,3787,7),
(3757,3857,7),
(3757,3878,7),
(3812,3793,7),
(3819,3812,7),
(3819,3826,7),
(3826,3793,7),
(3901,3899,7),
(3901,3919,7),
(3901,3926,7),
(3901,3928,7),
(3901,3938,7),
(3901,3947,7),
(3901,3951,7),
(3901,3960,7),
(3901,3963,7),
(3901,3971,7),
(3901,3979,7),
(3901,3982,7),
(3901,3983,7),
(3901,4016,7),
(3901,4021,7),
(3901,4024,7),
(3901,4171,7),
(3901,4188,7),
(3901,4192,7),
(3901,4982,7),
(4041,4026,7),
(4048,4041,7),
(4069,4054,7),
(4069,4108,7),
(4069,4153,7),
(4069,4174,7),
(4069,4184,7),
(4076,4069,7),
(4076,4202,7),
(4202,4199,7),
(4218,4203,7),
(4225,4218,7),
(4259,4244,7),
(4266,4259,7),
(4286,4284,7),
(4286,4296,7),
(4286,4298,7),
(4286,4301,7),
(4286,5237,7),
(4293,4286,7),
(4318,4303,7),
(4324,4318,7),
(4344,4329,7),
(4344,4376,7),
(4351,4344,7),
(4403,4402,7),
(4410,4403,7),
(4433,4418,7),
(4488,4473,7),
(4488,4501,7),
(4488,4533,7),
(4488,4535,7),
(4517,4502,7),
(4524,4517,7),
(4579,4564,7),
(4579,4592,7),
(4579,4895,7),
(4586,4579,7),
(4586,5618,7),
(4608,4593,7),
(4614,4608,7),
(4651,4636,7),
(4651,4664,7),
(4658,4651,7),
(4689,4681,7),
(4689,4697,7),
(4689,4700,7),
(4696,4689,7),
(4716,4702,7),
(4741,4726,7),
(4793,4783,7),
(4793,4804,7),
(4816,4805,7),
(4823,4816,7),
(4839,4828,7),
(4839,4873,7),
(4839,4890,7),
(4839,4892,7),
(4846,4839,7),
(4911,4896,7),
(4918,4911,7),
(4967,4952,7),
(4967,4979,7),
(4974,4967,7),
(5099,5092,7),
(5120,5113,7),
(5135,5128,7),
(5451,5449,7),
(5451,5462,7),
(5451,5915,7),
(5451,5957,7),
(5451,6021,7),
(5451,6078,7),
(5451,6342,7),
(5451,7242,7),
(5451,7444,7),
(5451,7453,7),
(5477,5476,7),
(5477,5878,7),
(5477,6017,7),
(5477,7238,7),
(5477,7401,7),
(5477,7412,7),
(5477,7418,7),
(5477,7422,7),
(5477,7424,7),
(5484,5477,7),
(5502,5501,7),
(5502,5923,7),
(5502,5969,7),
(5502,5977,7),
(5502,5981,7),
(5502,5985,7),
(5509,5502,7),
(5509,6035,7),
(5509,7748,7),
(5526,5525,7),
(5526,5747,7),
(5526,5765,7),
(5526,5919,7),
(5526,5961,7),
(5526,6001,7),
(5526,6080,7),
(5526,6343,7),
(5526,6929,7),
(5526,7765,7),
(5533,5526,7),
(5551,5550,7),
(5551,5862,7),
(5551,5866,7),
(5551,5965,7),
(5551,5989,7),
(5551,6063,7),
(5551,6065,7),
(5551,6067,7),
(5551,6346,7),
(5551,7468,7),
(5551,7479,7),
(5558,5551,7),
(5558,7738,7),
(5558,8072,7),
(5568,5567,7),
(5577,5576,7),
(5601,5600,7),
(5601,5870,7),
(5601,5949,7),
(5601,6005,7),
(5601,6071,7),
(5601,7226,7),
(5601,7329,7),
(5601,7331,7),
(5601,7340,7),
(5601,7342,7),
(5601,7345,7),
(5601,7347,7),
(5601,7360,7),
(5601,7372,7),
(5601,7380,7),
(5601,7384,7),
(5618,5617,7),
(5634,5633,7),
(5634,5874,7),
(5634,5973,7),
(5634,6013,7),
(5634,6075,7),
(5634,7234,7),
(5634,7429,7),
(5634,7434,7),
(5639,5634,7),
(5658,5657,7),
(5658,5778,7),
(5658,5850,7),
(5658,5953,7),
(5658,6009,7),
(5658,6077,7),
(5658,6340,7),
(5658,7230,7),
(5665,5658,7),
(5665,7393,7),
(5665,7542,7),
(5681,5680,7),
(5681,5776,7),
(5681,5854,7),
(5681,5935,7),
(5681,5946,7),
(5681,5997,7),
(5681,6069,7),
(5681,7222,7),
(5681,7325,7),
(5710,5709,7),
(5710,5858,7),
(5710,5939,7),
(5710,5993,7),
(5710,7218,7),
(5710,7316,7),
(5710,7322,7),
(5717,5710,7),
(5717,7613,7),
(5900,5881,7),
(5900,6025,7),
(5900,7153,7),
(5907,5900,7),
(5998,7892,7),
(5998,7896,7),
(5998,7912,7),
(5998,7916,7),
(5998,8239,7),
(5998,8295,7),
(5998,8392,7),
(6035,6034,7),
(6035,6073,7),
(6035,6115,7),
(6035,7205,7),
(6035,7209,7),
(6035,7246,7),
(6035,7300,7),
(6035,7308,7),
(6061,6060,7),
(6061,6089,7),
(6061,6095,7),
(6061,6120,7),
(6061,6128,7),
(6061,6134,7),
(6061,6138,7),
(6061,6143,7),
(6061,6274,7),
(6061,6279,7),
(6061,6283,7),
(6061,6287,7),
(6061,6291,7),
(6061,6295,7),
(6061,6299,7),
(6061,6303,7),
(6061,6307,7),
(6061,6311,7),
(6061,6315,7),
(6061,6320,7),
(6061,6327,7),
(6061,6328,7),
(6061,6332,7),
(6061,6336,7),
(6061,6350,7),
(6061,6444,7),
(6061,6464,7),
(6061,6472,7),
(6061,6475,7),
(6061,6480,7),
(6061,6484,7),
(6061,6487,7),
(6061,6496,7),
(6061,6507,7),
(6061,6511,7),
(6061,6515,7),
(6061,6519,7),
(6061,6523,7),
(6061,6528,7),
(6061,6590,7),
(6061,6599,7),
(6061,6617,7),
(6061,7168,7),
(6061,7758,7),
(6061,7919,7),
(6061,8132,7),
(6061,8169,7),
(6061,8176,7),
(6061,8183,7),
(6061,8218,7),
(6614,6607,7),
(6724,6717,7),
(6804,6764,7),
(6816,6809,7),
(6979,6939,7),
(6993,6986,7),
(7009,7002,7),
(7029,7022,7),
(7086,7079,7),
(7106,7099,7),
(7137,7079,7),
(7150,7143,7),
(7364,7361,7),
(7393,7390,7),
(7393,7395,7),
(7535,7528,7),
(7542,7541,7),
(7542,8247,7),
(7542,8303,7),
(7542,8404,7),
(7548,7547,7),
(7554,7553,7),
(7554,7556,7),
(7554,7560,7),
(7554,7564,7),
(7566,4717,7),
(7588,7584,7),
(7588,7599,7),
(7595,7588,7),
(7606,7605,7),
(7606,8251,7),
(7606,8307,7),
(7606,8319,7),
(7606,8410,7),
(7606,8428,7),
(7608,7606,7),
(7613,7612,7),
(7613,7615,7),
(7613,8235,7),
(7613,8271,7),
(7613,8275,7),
(7613,8291,7),
(7613,8386,7),
(7634,6555,7),
(7645,7638,7),
(7645,7882,7),
(7645,8021,7),
(7654,7653,7),
(7654,7658,7),
(7654,8255,7),
(7654,8311,7),
(7654,8416,7),
(7657,7654,7),
(7662,1966,7),
(7679,7677,7),
(7679,7690,7),
(7679,8259,7),
(7679,8315,7),
(7679,8422,7),
(7686,7679,7),
(7705,7002,7),
(7716,7709,7),
(7716,7727,7),
(7716,7733,7),
(7716,8065,7),
(7738,7737,7),
(7748,7747,7),
(7748,8223,7),
(7748,8263,7),
(7748,8267,7),
(7748,8279,7),
(7748,8368,7),
(7782,7781,7),
(7789,7782,7),
(7789,7795,7),
(7795,7794,7),
(7812,7810,7),
(7812,8227,7),
(7812,8283,7),
(7812,8374,7),
(7819,7812,7),
(7826,4433,7),
(7841,7838,7),
(7841,8243,7),
(7841,8299,7),
(7841,8398,7),
(7848,7841,7),
(8000,6652,7),
(8012,8007,7),
(8072,8071,7),
(8072,8231,7),
(8072,8287,7),
(8072,8380,7),
(8101,8094,7),
(8127,8120,7),
(8127,8191,7),
(8163,8156,7),
(785,38,8),
(793,6060,8),
(793,6089,8),
(793,6095,8),
(793,6120,8),
(793,6128,8),
(793,6134,8),
(793,6138,8),
(793,6143,8),
(793,6274,8),
(793,6279,8),
(793,6283,8),
(793,6287,8),
(793,6291,8),
(793,6295,8),
(793,6299,8),
(793,6303,8),
(793,6307,8),
(793,6311,8),
(793,6315,8),
(793,6320,8),
(793,6327,8),
(793,6328,8),
(793,6332,8),
(793,6336,8),
(793,6350,8),
(793,6444,8),
(793,6464,8),
(793,6472,8),
(793,6475,8),
(793,6480,8),
(793,6484,8),
(793,6487,8),
(1393,1385,8),
(1403,1395,8),
(1403,5182,8),
(1974,1966,8),
(1977,1951,8),
(2004,3707,8),
(2004,3711,8),
(2004,3715,8),
(2004,3719,8),
(2004,3723,8),
(2004,3727,8),
(2004,3731,8),
(2004,3737,8),
(2004,3741,8),
(2004,3756,8),
(3101,3093,8),
(3138,3123,8),
(3138,3317,8),
(3138,3333,8),
(3138,3552,8),
(3772,3771,8),
(3772,3775,8),
(3772,3787,8),
(3772,3857,8),
(3772,3878,8),
(3772,3899,8),
(3772,3919,8),
(3772,3926,8),
(3772,3928,8),
(3772,3938,8),
(3772,3947,8),
(3772,3951,8),
(3772,3960,8),
(3772,3963,8),
(3772,3971,8),
(3772,3979,8),
(3772,3982,8),
(3772,3983,8),
(3772,4016,8),
(3772,4021,8),
(3820,3812,8),
(3820,3826,8),
(3824,3793,8),
(4025,4024,8),
(4025,4171,8),
(4025,4188,8),
(4025,4192,8),
(4025,4982,8),
(4025,5449,8),
(4025,5462,8),
(4049,4041,8),
(4053,4026,8),
(4077,4069,8),
(4077,4202,8),
(4081,4054,8),
(4081,4108,8),
(4081,4153,8),
(4081,4174,8),
(4081,4184,8),
(4081,4199,8),
(4081,5501,8),
(4226,4218,8),
(4227,4218,8),
(4230,4203,8),
(4267,4259,8),
(4271,4244,8),
(4271,4284,8),
(4271,4296,8),
(4271,4298,8),
(4271,4301,8),
(4271,5237,8),
(4271,5525,8),
(4271,5747,8),
(4271,5765,8),
(4294,4286,8),
(4325,4318,8),
(4328,4303,8),
(4352,4344,8),
(4354,4329,8),
(4354,4376,8),
(4354,4402,8),
(4354,5550,8),
(4411,4403,8),
(4445,4418,8),
(4499,4473,8),
(4499,4501,8),
(4499,4533,8),
(4499,4535,8),
(4499,5567,8),
(4499,5576,8),
(4499,5600,8),
(4525,4517,8),
(4529,4502,8),
(4587,4579,8),
(4587,5618,8),
(4590,4564,8),
(4590,4592,8),
(4590,4895,8),
(4590,5617,8),
(4590,5633,8),
(4615,4608,8),
(4616,4608,8),
(4620,4593,8),
(4659,4651,8),
(4663,4636,8),
(4663,4664,8),
(4663,4681,8),
(4663,4697,8),
(4663,4700,8),
(4663,5657,8),
(4663,5778,8),
(4717,4702,8),
(4749,4726,8),
(4749,4783,8),
(4749,4804,8),
(4749,5680,8),
(4749,5776,8),
(4780,4717,8),
(4801,4793,8),
(4824,4816,8),
(4827,4805,8),
(4847,4839,8),
(4850,4828,8),
(4850,4873,8),
(4850,4890,8),
(4850,4892,8),
(4850,5709,8),
(4919,4911,8),
(4923,4896,8),
(4975,4967,8),
(4978,4952,8),
(4978,4979,8),
(4978,5476,8),
(5087,3093,8),
(5477,5944,8),
(5485,5477,8),
(5485,7654,8),
(5510,5502,8),
(5510,6035,8),
(5510,7748,8),
(5534,5526,8),
(5559,5551,8),
(5559,7738,8),
(5559,8072,8),
(5640,5634,8),
(5640,7606,8),
(5666,5658,8),
(5666,7393,8),
(5666,7542,8),
(5689,5681,8),
(5689,7548,8),
(5689,7554,8),
(5718,5710,8),
(5718,7613,8),
(5851,5850,8),
(5851,5953,8),
(5851,6009,8),
(5851,6077,8),
(5851,6340,8),
(5855,5854,8),
(5855,5935,8),
(5855,5946,8),
(5855,5997,8),
(5855,6069,8),
(5859,5858,8),
(5859,5939,8),
(5859,5993,8),
(5863,5862,8),
(5867,5866,8),
(5867,5965,8),
(5867,5989,8),
(5867,6063,8),
(5867,6065,8),
(5867,6067,8),
(5867,6346,8),
(5871,5870,8),
(5871,5949,8),
(5871,6005,8),
(5871,6071,8),
(5875,5874,8),
(5875,5973,8),
(5875,6013,8),
(5875,6075,8),
(5879,5878,8),
(5879,6017,8),
(5908,5900,8),
(5912,5881,8),
(5912,6025,8),
(5912,7153,8),
(5916,5915,8),
(5916,5957,8),
(5916,6021,8),
(5916,6078,8),
(5916,6342,8),
(5920,5919,8),
(5920,5961,8),
(5920,6001,8),
(5920,6080,8),
(5920,6343,8),
(5920,6929,8),
(5924,5923,8),
(5924,5969,8),
(5924,5977,8),
(5924,5981,8),
(5924,5985,8),
(5924,6034,8),
(5924,6073,8),
(5924,6115,8),
(6500,6496,8),
(6500,6507,8),
(6500,6511,8),
(6500,6515,8),
(6500,6519,8),
(6500,6523,8),
(6500,6528,8),
(6500,6590,8),
(6500,6599,8),
(6500,6617,8),
(6500,7168,8),
(6980,6939,8),
(6994,6986,8),
(7010,7002,8),
(7030,7022,8),
(7087,7079,8),
(7107,7099,8),
(7206,7205,8),
(7210,7209,8),
(7219,7218,8),
(7223,7222,8),
(7227,7226,8),
(7231,7230,8),
(7235,7234,8),
(7235,7429,8),
(7235,7434,8),
(7235,7605,8),
(7235,8251,8),
(7235,8307,8),
(7239,7238,8),
(7243,7242,8),
(7243,7444,8),
(7243,7453,8),
(7243,7677,8),
(7243,7690,8),
(7243,8259,8),
(7243,8315,8),
(7247,7246,8),
(7307,7300,8),
(7307,7308,8),
(7307,7747,8),
(7307,8223,8),
(7307,8263,8),
(7307,8267,8),
(7307,8279,8),
(7321,7316,8),
(7321,7322,8),
(7321,7612,8),
(7321,7615,8),
(7321,8235,8),
(7321,8271,8),
(7321,8275,8),
(7321,8291,8),
(7326,7325,8),
(7326,7547,8),
(7326,7553,8),
(7326,7556,8),
(7326,7560,8),
(7326,7564,8),
(7326,7584,8),
(7326,7599,8),
(7330,7329,8),
(7330,7331,8),
(7330,7340,8),
(7330,7342,8),
(7330,7345,8),
(7330,7347,8),
(7330,7360,8),
(7330,7372,8),
(7330,7380,8),
(7330,7384,8),
(7330,7838,8),
(7330,8243,8),
(7330,8299,8),
(7365,7361,8),
(7394,7390,8),
(7394,7395,8),
(7394,7541,8),
(7394,8247,8),
(7394,8303,8),
(7405,7401,8),
(7405,7412,8),
(7405,7418,8),
(7405,7422,8),
(7405,7424,8),
(7405,7653,8),
(7405,7658,8),
(7405,8255,8),
(7405,8311,8),
(7478,7468,8),
(7478,7479,8),
(7478,7737,8),
(7478,8071,8),
(7478,8231,8),
(7478,8287,8),
(7536,7528,8),
(7588,7892,8),
(7588,7896,8),
(7588,7912,8),
(7588,7916,8),
(7588,8239,8),
(7588,8295,8),
(7588,8392,8),
(7596,7588,8),
(7675,1966,8),
(7687,7679,8),
(7706,7002,8),
(7717,7709,8),
(7728,7727,8),
(7728,7733,8),
(7728,8065,8),
(7759,7758,8),
(7759,7919,8),
(7759,8132,8),
(7759,8169,8),
(7759,8176,8),
(7759,8183,8),
(7759,8218,8),
(7768,7765,8),
(7768,7781,8),
(7768,7794,8),
(7768,7810,8),
(7768,8227,8),
(7768,8283,8),
(7820,7812,8),
(7837,4433,8),
(7849,7841,8),
(8001,6652,8),
(8013,8007,8),
(8128,8120,8),
(8128,8191,8),
(8139,7079,8),
(8164,8156,8),
(8320,8319,8),
(8370,8368,8),
(8376,8374,8),
(8382,8380,8),
(8388,8386,8),
(8400,8398,8),
(8406,8404,8),
(8412,8410,8),
(8412,8428,8),
(8418,8416,8),
(8424,8422,8),
(330,38,9),
(1975,1966,9),
(3821,3812,9),
(3821,3826,9),
(4050,4041,9),
(4078,4069,9),
(4078,4202,9),
(4268,4259,9),
(4295,4286,9),
(4326,4318,9),
(4353,4344,9),
(4412,4403,9),
(4526,4517,9),
(4588,4579,9),
(4588,5618,9),
(4617,4608,9),
(4660,4651,9),
(4725,4702,9),
(4781,4717,9),
(4802,4793,9),
(4825,4816,9),
(4848,4839,9),
(4920,4911,9),
(4976,4967,9),
(5100,5092,9),
(5121,5113,9),
(5136,5128,9),
(5486,5477,9),
(5486,7654,9),
(5511,5502,9),
(5511,6035,9),
(5535,5526,9),
(5560,5551,9),
(5560,7738,9),
(5560,8072,9),
(5598,4433,9),
(5610,5601,9),
(5641,5634,9),
(5641,7606,9),
(5656,4608,9),
(5667,7542,9),
(5690,5681,9),
(5690,7548,9),
(5690,7554,9),
(5719,5710,9),
(5719,7613,9),
(5746,4203,9),
(5748,5747,9),
(5879,5944,9),
(5909,5900,9),
(6278,38,9),
(6334,6336,9),
(6334,6350,9),
(6334,6444,9),
(6334,6464,9),
(6334,6472,9),
(6334,6475,9),
(6334,6480,9),
(6334,6484,9),
(6334,6487,9),
(6334,6496,9),
(6334,6507,9),
(6334,6511,9),
(6334,6515,9),
(6334,6519,9),
(6334,6523,9),
(6529,6528,9),
(6529,6590,9),
(6529,6599,9),
(6563,6555,9),
(6581,6573,9),
(6618,6617,9),
(6618,7168,9),
(6618,7758,9),
(6618,7919,9),
(6618,8132,9),
(6618,8169,9),
(6618,8176,9),
(6618,8183,9),
(6618,8218,9),
(6981,6939,9),
(6995,6986,9),
(7011,7002,9),
(7031,7022,9),
(7088,7079,9),
(7108,7099,9),
(7326,7892,9),
(7326,7896,9),
(7326,7912,9),
(7326,7916,9),
(7326,8239,9),
(7326,8295,9),
(7537,7528,9),
(7597,7588,9),
(7665,1966,9),
(7688,7679,9),
(7696,7002,9),
(7718,7709,9),
(7718,7727,9),
(7718,7733,9),
(7718,8065,9),
(7751,7748,9),
(7790,7782,9),
(7796,7795,9),
(7850,7841,9),
(8002,6652,9),
(8014,8007,9),
(8394,8392,9),
(843,38,10),
(1976,1966,10),
(3822,3812,10),
(3822,3826,10),
(4051,4041,10),
(4079,4069,10),
(4079,4202,10),
(4228,4218,10),
(4269,4259,10),
(4327,4318,10),
(4527,4517,10),
(4589,4579,10),
(4589,5618,10),
(4618,4608,10),
(4661,4651,10),
(4782,4717,10),
(4803,4793,10),
(4826,4816,10),
(4849,4839,10),
(4921,4911,10),
(4977,4967,10),
(5487,5477,10),
(5487,7654,10),
(5512,5502,10),
(5512,6035,10),
(5561,5551,10),
(5561,7738,10),
(5561,8072,10),
(5642,5634,10),
(5642,7606,10),
(5691,5681,10),
(5691,7548,10),
(5691,7554,10),
(5720,5710,10),
(5720,7613,10),
(5910,5900,10),
(6053,6060,10),
(6053,6089,10),
(6053,6095,10),
(6053,6120,10),
(6053,6128,10),
(6053,6134,10),
(6053,6138,10),
(6053,6143,10),
(6053,6274,10),
(6053,6279,10),
(6053,6283,10),
(6053,6287,10),
(6053,6291,10),
(6053,6295,10),
(6300,6299,10),
(6304,6303,10),
(6308,6307,10),
(6308,6311,10),
(6308,6315,10),
(6308,6320,10),
(6308,6327,10),
(6308,6328,10),
(6333,6332,10),
(6333,6350,10),
(6333,6444,10),
(6333,6464,10),
(6333,6472,10),
(6476,6475,10),
(6476,6480,10),
(6476,6484,10),
(6476,6487,10),
(6476,6496,10),
(6476,6507,10),
(6476,6511,10),
(6476,6515,10),
(6476,6519,10),
(6524,6523,10),
(6530,6528,10),
(6591,6590,10),
(6600,6599,10),
(6600,6617,10),
(6600,7168,10),
(6600,7758,10),
(6600,7919,10),
(6600,8132,10),
(6600,8169,10),
(6600,8176,10),
(6600,8183,10),
(6600,8218,10),
(7598,7588,10),
(7676,1966,10),
(7689,7679,10),
(7707,7002,10),
(7719,7709,10),
(7719,7727,10),
(7719,7733,10),
(7719,8065,10),
(7752,7748,10),
(7824,4433,10),
(7851,7841,10),
(849,38,11),
(867,38,11),
(2061,1966,11),
(2076,2065,11),
(3768,3757,11),
(3768,3901,11),
(3823,3812,11),
(3823,3826,11),
(4052,4041,11),
(4080,4069,11),
(4080,4202,11),
(4229,4218,11),
(4270,4259,11),
(4444,4433,11),
(4528,4517,11),
(4619,4608,11),
(4662,4651,11),
(4922,4911,11),
(5513,5502,11),
(5513,6035,11),
(5708,4816,11),
(5721,5710,11),
(5721,7613,11),
(5843,6060,11),
(5843,6089,11),
(5843,6095,11),
(5843,6120,11),
(5843,6128,11),
(5843,6134,11),
(5843,6138,11),
(5843,6143,11),
(5843,6274,11),
(5843,6279,11),
(5843,6283,11),
(5843,6287,11),
(5843,6291,11),
(5843,6295,11),
(5843,6299,11),
(5843,6303,11),
(5843,6307,11),
(5843,6311,11),
(5843,6315,11),
(5843,6320,11),
(5843,6327,11),
(5843,6328,11),
(5843,6332,11),
(5843,6350,11),
(5843,6444,11),
(5843,6464,11),
(5843,6472,11),
(5843,6475,11),
(5843,6480,11),
(5911,5900,11),
(6333,6336,11),
(6485,6484,11),
(6485,6487,11),
(6485,6496,11),
(6485,6507,11),
(6485,6511,11),
(6485,6515,11),
(6485,6519,11),
(6485,6523,11),
(6485,6528,11),
(6485,6590,11),
(6485,6599,11),
(6485,6617,11),
(6485,7168,11),
(6485,7758,11),
(7753,7748,11),
(7920,7919,11),
(7920,8132,11),
(7920,8169,11),
(7920,8176,11),
(7920,8183,11),
(8219,8218,11),
(3827,3826,12),
(5667,5658,12),
(5667,7393,12),
(5843,6336,12),
(6280,6279,12),
(6284,6283,12),
(6288,6287,12),
(6292,6291,12),
(6292,6295,12),
(6292,6299,12),
(6292,6303,12),
(6292,6307,12),
(6292,6311,12),
(6292,6315,12),
(6292,6320,12),
(6292,6327,12),
(6292,6328,12),
(6334,6332,12);
/*!40000 ALTER TABLE `elements_owners` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `elements_sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `elements_sites` WRITE;
/*!40000 ALTER TABLE `elements_sites` DISABLE KEYS */;
INSERT INTO `elements_sites` VALUES
(1,1,1,NULL,NULL,NULL,NULL,1,'2025-11-29 11:54:53','2025-11-29 11:54:53','3c9b1b6c-12d7-4e5e-bc8d-6fbe79642795'),
(2,2,1,'Home',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-29 12:58:28','2025-11-30 12:26:41','e4f0da76-4425-4bfb-adca-096fcabeef60'),
(3,3,1,'About',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-29 12:58:35','2026-03-20 20:17:50','a24873b3-82e5-4c80-bd1c-2286f59cd0d9'),
(4,4,1,'Contact',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-29 12:58:41','2026-02-08 09:04:00','2a7bb385-6547-45e1-9d62-23f1e8394213'),
(5,5,1,'Conditions',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-29 12:58:47','2026-03-16 21:48:11','2b6570de-ffcb-43b0-8a97-ba325aaabdda'),
(6,6,1,'Prices',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-29 12:58:53','2026-02-21 23:03:38','e35efb96-b01e-46e9-8364-f964b0e9b4c7'),
(7,7,1,'Logo',NULL,NULL,NULL,1,'2025-11-30 11:19:43','2025-11-30 11:19:43','5811443a-a447-413c-88ee-65687d07505f'),
(8,8,1,'Book Consultation',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"cta\"}',1,'2025-11-30 11:23:32','2026-02-24 14:13:17','0991f285-e6d7-4bd1-b83b-bffec03b44bd'),
(11,11,1,'Treatments',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:04:32','2026-02-21 23:07:43','932e53c3-7285-4d90-aac6-5babc6eb052f'),
(12,12,1,'Acne',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:14','2025-11-30 12:10:12','fa59970b-3218-42a4-ad71-bd8a60315baf'),
(13,13,1,'Acne scarring',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:18','2025-11-30 12:10:10','4cc3a973-9a8c-477d-9dea-28cd19018c27'),
(14,14,1,'Age spots',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:27','2025-11-30 12:10:07','6da0219c-af61-47c0-aeea-41f67ac59df3'),
(15,15,1,'Crepey skin',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:33','2025-11-30 12:10:04','a8c1a741-fcaa-48b8-8e52-1b47f6e96f55'),
(16,16,1,'Dark circles',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:41','2025-11-30 12:10:01','d9ac973f-bb41-4fc8-82c7-5673796ef5b4'),
(17,17,1,'Lines and wrinkles',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:51','2025-11-30 12:09:59','3b36a70f-dd82-4448-94b8-28d7b447ff49'),
(18,18,1,'Upper lip lines',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:54','2025-11-30 12:09:56','6652340d-63c1-4267-9e45-4fb5022a53eb'),
(19,19,1,'Ageing',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:08:58','2025-11-30 12:09:54','7f8c5998-caea-414c-8a73-1ff6c9de4d30'),
(20,20,1,'Neck lines',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:09:04','2025-11-30 12:09:23','372d50af-d438-40dd-9667-0a9b7e094187'),
(21,21,1,'Neck lines',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:09:09','2025-11-30 12:09:19','d5085d77-88a3-48dc-aebf-8f616e0be325'),
(22,22,1,'Anti-wrinkle injections',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:10:25','2025-11-30 12:12:11','26a224f1-734e-40ff-a715-7d001d4470d8'),
(23,23,1,'Cryotherapy',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:10:30','2025-11-30 12:12:16','25ca3059-340f-4c1e-8167-7c7d9990fed6'),
(24,24,1,'Dermal filler',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:10:35','2025-11-30 12:12:19','264aed5b-8d91-46c0-a83e-cb4cebff618c'),
(25,25,1,'Skin Consultations',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:10:43','2025-11-30 12:12:21','56a9f448-5d98-4cdc-8e15-badeedf620c5'),
(26,26,1,'Polynucleotides',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:10:48','2025-11-30 12:12:24','da1ee09e-e7dc-4f7b-9c79-881dfcdb4d96'),
(28,28,1,'Skin boosters',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:11:16','2025-11-30 12:12:26','7938352f-46c7-4e61-88c1-4a08e8ff7917'),
(29,29,1,'Bio-stimulators',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:11:25','2025-11-30 12:12:28','8520441f-146f-4407-ac14-15ab0425b7d7'),
(30,30,1,'Microneedling',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:11:30','2025-11-30 12:12:31','b1555f2a-97b2-4bed-907b-9c58bea7427d'),
(31,31,1,'Chemical peels',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:11:35','2025-11-30 12:12:35','dde85e46-2e3f-4f8b-bec6-b58f635c3376'),
(35,35,1,'Blog',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2025-11-30 12:27:29','2025-11-30 12:27:34','365c1df5-1d01-466f-a838-4ec076860b96'),
(36,36,1,'Logo',NULL,NULL,NULL,1,'2025-11-30 14:11:48','2026-03-20 00:34:58','625b31e5-f560-4a89-a8df-3c218fa807d2'),
(37,37,1,'Homepage','__temp_rrcjtpbnoatrthppnvqrdlnvcjxjphzkaalu','__temp_rrcjtpbnoatrthppnvqrdlnvcjxjphzkaalu','{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-11-30 19:26:54','2025-11-30 19:26:58','c803f96e-ec5c-4cf4-ae48-a6f5c7d6759b'),
(38,38,1,'Homepage','homepage','__home__',NULL,1,'2025-11-30 19:27:45','2025-12-02 17:25:51','55484de4-115f-4ed8-b36b-52dae5039b00'),
(43,43,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-11-30 19:34:01','2025-11-30 20:10:08','839fcd05-434a-4f69-87e6-cd140f56ed0d'),
(44,44,1,'Learn More','learn-more',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Learn More\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2025-11-30 19:34:01','2025-11-30 19:34:01','f8fcb670-6791-404a-902d-6f2f684b8391'),
(48,48,1,'Shutterstock 1956162976 1 2048x1366',NULL,NULL,NULL,1,'2025-11-30 19:44:26','2025-11-30 19:44:26','c643ea22-b547-4c79-8f02-358ecbabd848'),
(61,61,1,'Learn More','learn-more',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Learn More\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#haha\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2025-11-30 20:06:55','2025-11-30 20:09:31','54113b3f-dbd5-4747-95b6-16e5ab781bca'),
(62,62,1,'test','test',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"test\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#haha\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-11-30 20:06:55','2025-11-30 20:06:55','3a96f2df-12d7-4af1-9ee7-9db0f2a2e8c0'),
(81,81,1,'Baton Rouge Office JPG',NULL,NULL,NULL,1,'2025-11-30 20:19:00','2025-11-30 20:19:00','25b3cda5-d5f0-4895-9f62-9962622bdc9a'),
(85,85,1,NULL,'__temp_yanlghiksayuupxycyhbdxrennvbwmbnoeos',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 14:55:01','2025-12-02 14:55:01','e0413373-f232-4f64-9d05-215920d773e6'),
(86,86,1,NULL,'__temp_elkdoolrlnxpcggzqmknaaovipfxawztgttd',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 14:55:13','2025-12-02 14:55:13','406198ae-d55d-4c7d-9f64-69715c2936d5'),
(87,87,1,NULL,'__temp_xrdvngqzyacjfoaravastrgfszzrvjfwupoz',NULL,'{\"049cf0d9-d7c3-4388-9e2f-2a63b940021b\":\"normal\",\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 15:31:53','2025-12-02 15:31:53','9971b99f-ab55-4748-b056-57c028f95208'),
(88,88,1,NULL,'__temp_hsjpxmnwvpuuxslczhyyjwbxzdgxchmotbvh',NULL,'{\"049cf0d9-d7c3-4388-9e2f-2a63b940021b\":\"normal\",\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 15:33:56','2025-12-02 15:33:56','58934b79-1d01-4831-94d4-033e0cd8eab1'),
(89,89,1,'Polynucleotides Treatment','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[8203],\"d5803862-14af-411a-83a8-0734f3d68687\":[8204],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2025-12-02 15:34:26','2026-04-17 12:06:35','171a1574-2b4d-4f06-acc8-76fd36ce96c1'),
(90,90,1,'Before4',NULL,NULL,NULL,1,'2025-12-02 15:40:05','2025-12-02 15:40:05','7f2c4aa4-9e8c-40f4-a33e-33f0cd5e65e8'),
(91,91,1,'After4',NULL,NULL,NULL,1,'2025-12-02 15:40:14','2025-12-02 15:40:14','5a3035d2-2697-4dcf-858d-c2bc435dc999'),
(92,92,1,'Prophilo','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 15:40:41','2025-12-02 15:40:41','b000bf5a-1b3a-450d-8af1-89930cde4a09'),
(96,96,1,'Prophilo','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[93]}',1,'2025-12-02 15:41:19','2025-12-02 15:41:19','ce0661a2-0bb8-4f10-8f3a-a31fc150b098'),
(99,99,1,'pHformula resurfacing','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[8200],\"d5803862-14af-411a-83a8-0734f3d68687\":[8199],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2025-12-02 15:42:19','2026-04-17 11:54:44','7b9a8d03-77f0-4bc1-ade2-506c59d32a47'),
(100,100,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[97]}',1,'2025-12-02 15:42:45','2025-12-02 15:42:45','49a6d380-14ed-4a99-8216-3c175862e798'),
(102,102,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[97,93]}',1,'2025-12-02 15:43:24','2025-12-02 15:43:24','55a583a9-77c1-4071-af03-46328a5d5464'),
(103,103,1,NULL,'__temp_eczucndpelmcbofcgkaqlkysjduvmhzsrxbz','treatments/__temp_eczucndpelmcbofcgkaqlkysjduvmhzsrxbz','{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 16:12:22','2025-12-02 16:12:22','27d68e0a-d9dc-437f-9b31-fbb86ec65852'),
(104,104,1,NULL,'__temp_whrcowofhfpshwbvvypmifonhqhbyqujjlxp','treatments/__temp_whrcowofhfpshwbvvypmifonhqhbyqujjlxp','{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 16:12:31','2025-12-02 16:12:31','5943efe3-ab01-4087-83b2-42a4a2d88f85'),
(108,108,1,'Prophilo','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[93,105]}',1,'2025-12-02 16:15:56','2025-12-02 16:15:56','a84fc8d6-3700-4e85-be09-16992c89adae'),
(110,110,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[97,93,105]}',1,'2025-12-02 16:16:03','2025-12-02 16:16:03','2a494987-fab6-4f19-be83-d6dd7b50d4a7'),
(111,111,1,NULL,'__temp_sxwwgvyssycqewavwtgzcosmxdczanztinac',NULL,'{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 16:16:32','2025-12-02 16:16:32','33c2a795-c908-42f9-8073-00c12ea85486'),
(112,112,1,'Crow\'s Feet Treatment','test1',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[8195],\"d5803862-14af-411a-83a8-0734f3d68687\":[8196],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2025-12-02 16:26:08','2026-04-17 11:47:28','0ee28033-7d68-4a70-a355-84c7bf2db7b1'),
(113,113,1,'test1','test1',NULL,'{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 16:26:11','2025-12-02 16:26:11','89a03564-1303-4f50-8c52-79eead9d9a30'),
(115,115,1,'test1','test1',NULL,'{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 16:26:28','2025-12-02 16:26:28','9300ad94-0ddb-4a33-85f1-88b3711efe93'),
(116,116,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 16:28:15','2025-12-02 16:28:15','b1ebc82b-5b58-4832-ba9a-0c4f9c6bd555'),
(120,120,1,'Prophilo','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[117]}',1,'2025-12-02 16:47:19','2025-12-02 16:47:19','fcc8db7a-8956-400c-8d97-c7f173fc7bc3'),
(124,124,1,'test1','test1',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 16:48:40','2025-12-02 16:48:40','3e21bf7c-56f9-4a25-a90e-4ecde7cf6169'),
(125,125,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 16:48:44','2025-12-02 16:48:44','32d68fd1-e1af-480b-b5b6-25fe84999b6b'),
(127,127,1,'Prophilo','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[117]}',1,'2025-12-02 16:48:50','2025-12-02 16:48:50','5c457146-ca82-4fbd-89ab-e9bcf272ec51'),
(129,129,1,'Prophilo','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[117]}',1,'2025-12-02 17:03:57','2025-12-02 17:03:57','90bc1d62-abbc-44ea-804f-cc008c20d1cc'),
(134,134,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 17:18:36','2025-12-02 17:18:36','a392bada-031c-4350-acbd-168400ef7592'),
(136,136,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 17:18:46','2025-12-02 17:18:46','99fc4849-a024-4807-9c87-12dc615b395b'),
(142,142,1,NULL,'__temp_hdwjyrjzbnxddwavchizopzypbxursrlvbcs',NULL,'{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 17:25:48','2025-12-02 17:25:48','8460b438-a32c-4410-875e-964ab58021e2'),
(143,143,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Refreshed. Natural.\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Confidence. Restored.\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">My name is Dr Rachel. With over 10 years of clinical experience as a doctor, I strongly believe aesthetic medicine should enhance how you look, never change who you are. The best results are always subtle, balanced and completely natural.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-02 17:25:51','2026-03-31 09:58:47','3a200008-3875-4a76-9ead-9e614cc2434f'),
(144,144,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-02 17:25:51','2026-04-16 14:51:26','5eca9a82-2cae-4a29-97f8-8651e569af97'),
(145,145,1,'Learn More','learn-more',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Learn More\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"{entry:912@1:url}\",\"type\":\"entry\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2025-12-02 17:25:51','2026-04-16 14:52:31','8e717004-9e65-4753-b671-a58f03df515d'),
(161,161,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 17:45:53','2025-12-02 17:45:53','6d1396df-fa33-4cd8-9d71-1d28450b1997'),
(163,163,1,'Micro needling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true,\"521ddd96-4b77-4908-ae99-90bb9fa46eda\":[105]}',1,'2025-12-02 17:46:07','2025-12-02 17:46:07','edb73a2d-5a63-4227-8d42-b823954d4afb'),
(177,177,1,NULL,'__temp_hkaqolstjxgnhufvswrrydueovxzylzlajls',NULL,'{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2025-12-02 19:05:16','2025-12-02 19:05:16','d878c1ad-f3cf-41d4-8192-a60ca0fd415c'),
(235,235,1,'About Me',NULL,NULL,NULL,1,'2025-12-02 21:42:11','2026-03-31 10:01:17','7827cb92-f5d5-4396-ab1d-6f0d68723c1e'),
(236,236,1,'Treatments',NULL,NULL,NULL,1,'2025-12-02 21:42:21','2025-12-02 21:42:38','eb5af7f6-0cb5-4d05-8bfb-a5b22d48164b'),
(237,237,1,'Prices',NULL,NULL,NULL,1,'2025-12-02 21:42:36','2025-12-02 21:42:38','339d390c-0610-4e4a-a124-a219ffaec5fb'),
(238,238,1,'Contact',NULL,NULL,NULL,1,'2025-12-02 21:42:46','2025-12-02 21:42:51','8b019242-97bf-44e6-b05f-fbe549cc4e80'),
(239,239,1,'Botox & Dysport 2',NULL,NULL,NULL,1,'2025-12-02 21:43:52','2025-12-02 22:25:52','27013424-789d-48a3-9285-d77b46e84a22'),
(240,240,1,'Dermal Fillers',NULL,NULL,NULL,1,'2025-12-02 21:44:07','2025-12-02 21:57:40','7985b941-1225-47ac-b7f2-921722d5dfe4'),
(241,241,1,'Lip Enhancement',NULL,NULL,NULL,1,'2025-12-02 21:44:15','2025-12-02 21:57:40','96dbd43f-26b8-4932-88a4-8870c19a2f0f'),
(242,242,1,'Facial Contouring',NULL,NULL,NULL,1,'2025-12-02 21:44:23','2025-12-02 21:57:40','ca2f3551-9dd7-42d2-9f06-68b560406625'),
(243,243,1,NULL,NULL,NULL,'{\"2d269704-a7ab-430b-8fb7-4f5ecf43619e\":[36],\"ad69a4ab-be0f-40af-9893-7061bb208954\":\"07834258596\",\"612708a4-b3a5-4d5e-8788-4ef7dbe19d09\":true,\"2ee1436c-9bfd-4b8b-85d5-08ac782d324c\":\"rachel@drrachelaesthetics.com\",\"15ee367f-1e67-4016-853e-efc16011c1ec\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Bebington, Wirral, CH63 8LG 2</span></p>\",\"12fa2947-f2ff-44bd-b309-abed952bde15\":{\"value\":\"https://www.google.com/maps?cid=14874554868034125734&g_mp=CiVnb29nbGUubWFwcy5wbGFjZXMudjEuUGxhY2VzLkdldFBsYWNlEAIYASAA&hl=en&gl=BG&source=embed\",\"type\":\"url\",\"target\":\"_blank\"},\"c49634d8-fde6-459c-bd26-9cb8d58aad59\":\"© 2026 Dr Rachel. All rights reserved.\"}',1,'2025-12-02 22:04:25','2026-04-17 16:39:49','9de4ed3a-2d75-4453-9ea0-4250a74f481f'),
(244,244,1,'Privacy Policy','privacy-policy',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Privacy Policy\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 22:09:04','2026-03-20 00:20:46','e20abc50-ee17-4fae-8405-545df3a57b9b'),
(245,245,1,'Terms of Service','terms-of-service',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Terms of Service\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 22:09:19','2026-03-20 00:20:51','749e2299-d120-4b02-8b03-517587b138d1'),
(246,246,1,'Facebook','facebook',NULL,'{\"2c8d3384-fdaf-45a9-8e0e-73f881e9509a\":\"facebook\",\"4c5c639e-d111-4970-819b-5bcf7873db6f\":{\"value\":\"https://www.facebook.com/people/Aesthetics-By-Dr-Rachel/61552335359556/\",\"type\":\"url\",\"target\":\"_blank\"}}',1,'2025-12-02 22:10:27','2026-03-20 00:30:57','1d04a19d-0f90-4bc6-9932-9c96d66aa827'),
(247,247,1,'Instagram','instagram',NULL,'{\"2c8d3384-fdaf-45a9-8e0e-73f881e9509a\":\"instagram\",\"4c5c639e-d111-4970-819b-5bcf7873db6f\":{\"value\":\"https://www.instagram.com/dr.rachel.aesthetics/\",\"type\":\"url\",\"target\":\"_blank\"}}',1,'2025-12-02 22:10:44','2026-03-20 00:31:15','431fdf61-377f-4463-a5e6-1f1f9b90cbbd'),
(250,250,1,'Introducing JULAINE™','introducing-julaine','blog/introducing-julaine','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>I am so excited to officially launch JULAINE™ – the next generation of collagen stimulation – into my clinic on the Wirral. The response from my patients has been incredible, and I am proud to be the exclusive provider of this advanced treatment on the Wirral, and one of very few clinics offering it across the Northwest. This is a treatment for patients who want to truly invest in their long-term skin health. It is not a quick fix or a short-term boost, but a meaningful improvement in skin quality that continues to build and get better over time.<br /><br /> </p><h2>Why is JULAINE™ different, and why am I introducing this new treatment to my clinic?</h2><p> </p><p>JULAINE™ represents a significant step forward in collagen-stimulating technology. It is far more advanced, refined and safety-led than older generation treatments and it also fulfils a need for my patients for improved collagen stimulation, naturally – which is just what my patients have been asking for. Another key reason I have chosen JULAINE™ is the ethos of the company behind it. They are deeply focused on science, evidence and clinical research, and on backing up their claims properly. I do not choose treatments lightly: anything I offer in clinic must be evidence-led, safety-focused, and fully aligned with my principles as a doctor, and JULAINE™ meets those standards. Honestly, this is the most excited I have been about a skin treatment in a very long time. It fills a gap I have been searching for, and it aligns perfectly with my philosophy of subtle, progressive, doctor-led aesthetic care. The regenerative potential of this treatment is phenomenal, and the results other clinics have been getting are really wonderful. </p><p> </p><h2>What are the results like and how long does it last? </h2><h2> </h2><p>Results develop gradually, in line with neocollagenesis, the natural process of forming new collagen within the skin. JULAINE™ works by gently triggering the body’s own healing response, stimulating fibroblasts in the dermis to produce new collagen and elastin. Most patients notice improvements in skin quality after the second treatment, which usually takes place four to six weeks after the first. From this point onwards, improvements continue to build steadily over many months as new collagen forms. Around twelve weeks after the first treatment is an important milestone, as the newly formed collagen has matured sufficiently to create visible improvements in skin firmness, elasticity and softening of fine lines. The full results, following a complete course of three treatments, can last for up to two years. For most patients, only a single maintenance treatment is required every eighteen months to two years to maintain results. This is a luxury investment in your long-term skin health. </p><p> </p><p>JULAINE™ is also particularly well suited to patients who have experienced significant weight loss, including those who have used medical weight loss injections. Weight loss can sometimes lead to a reduction in facial volume, which may leave the skin appearing looser or less supported. By stimulating your own collagen production, JULAINE™ helps to gently and naturally restore structure and support over time. The aim is not to change how you look, but to ensure the face continues to look healthy, balanced and well supported as your weight stabilises, rather than appearing hollow or drawn, a change often highlighted in the media as “Ozempic face”.</p><p> </p><h2>What does the treatment experience feel like? </h2><h2> </h2><p>I am pleased to report that the procedure itself is very quick, with minimal discomfort. Most patients are able to return to normal activities almost immediately, making it easy to fit around busy lives. Karen, who kindly acted as a model for me during recent training, described the treatment as “perfectly comfortable. I did not feel the product going in, just a little bit of poking and prodding, but it definitely did not hurt.” This was particularly reassuring to hear, as Karen is new to aesthetic treatments and chose to be a model because she felt it was time to invest in herself, while still wanting results that looked natural and never obvious.</p><p> </p><p>Immediately after treatment, Karen had no redness or bruising. In all honesty, no one would have known she had just had a procedure. She noticed a small amount of swelling later that evening, which is entirely normal and expected as we are stimulating the body’s own healing and collagen response. When I saw her again four days later, her skin already looked glowing and beautifully radiant.</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[7858]}',1,'2025-12-03 07:52:32','2026-04-15 15:03:09','18a59d52-d53d-4e7d-82a7-ccbb1d99da7d'),
(251,251,1,'First Blog Post','first-blog-post','blog/first-blog-post','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>asdasdsddsadasdsads saadsdas dasdasads dasdsasda saddsaasd sdaasdsa saddsasad sdasdaasd assdadsa</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[48]}',1,'2025-12-03 07:52:56','2025-12-03 07:52:56','91c3f520-f84d-4ed2-930e-b4681f6cbf4f'),
(252,252,1,'Microneedling and Polynucleotides – hello!','microneedling-and-polynucleotides','blog/microneedling-and-polynucleotides','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<h2> </h2><h2>The dream combination that your skin needs. </h2><h2> </h2><p>Perfect skin does not exist. Well, except perhaps on social media, with a sneaky filter or two… However, HEALTHY skin with a gorgeous glow that makes people say “Wow your skin looks great” absolutely does exist. And that’s what we aim for in clinic! To maintain our skin health, we NEED to use products and treatments that are stimulating our skin cells to make the vital proteins that we lose as we get older – collagen and elastin. We need to protect our skin, and arm it with ingredients that reduce damage from harmful sun rays and environmental stressors, and enable the skin to regenerate itself from within. This is why I am so excited to introduce this new and pioneering skin treatment to clinic.</p><p> </p><p> </p><h2>Polynucleotides WITH microneedling! A polynucleotide facial, if you will...</h2><p> </p><p>MESO OX have created a unique and pioneering skin cocktail serum that contains not one but THREE skin nourishing heroes. Not only that, this wonderful serum is introduced into your skin using microneedling, the unsung skincare treatment that creates microtrauma in the skin. </p><p> </p><p>This serves two main functions: </p><p>-Promotes skin repair and regeneration </p><p>-Dramatically increases absorption of key skincare molecules</p><p> </p><p> </p><p> </p><p> </p><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4448:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Treatment.jpg}\\\" alt=\\\"\\\" width=\\\"1365\\\" height=\\\"2048\\\" /></figure><h2> </h2><h2>What are these hero ingredients?</h2><h3> </h3><h3>POLYNUCLEOTIDES</h3><p> </p><p>Polynucleotides have taken clinic by storm (you might have heard of them as a “salmon DNA facial”). They are little building blocks of crucial DNA that we can inject superficially into the skin, to massively boost collagen production and tackle a massive range of skin complaints. This is the first time that polynucleotides are able to be combined with microneedling – hence my giddy excitement!</p><h3> </h3><h3>HYALURONIC ACID</h3><p> </p><p>Our skin’s natural moisturiser, flooding the skin with hydration and smoothing out wrinkles. The serum contains three different forms of hyaluronic acid which carry out a whole heap of anti-ageing functions, and work in beautiful synergy with the polynucleotides.</p><h3> </h3><h3>NIACINAMIDE</h3><p> </p><p>Another skin powerhouse, niacinamide, is crucial in fighting inflammation, acne and pigmentation.</p><p> </p><h2>Who should have this treatment?</h2><p> </p><p>Basically, anyone who wants strong, beautiful, healthy and glowing skin. If you have looked in the mirror and felt a bit “meh” about your skin, noticing that your skin now just looks dull with wrinkles deepening and you’ve lost your glowy mojo – this treatment is for you. </p><p> </p><p>This treatment is also for you if you have: </p><p>- Scarring </p><p>- Acne </p><p>- Pigmentation problems </p><p>- Skin laxity </p><p>- Inflammation </p><p>- Photo-ageing </p><p>- Sun damage</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[4446]}',1,'2025-12-03 07:54:02','2026-04-15 15:19:53','d71bb3e9-b840-44f8-9ed8-ee5ae802cdf1'),
(253,253,1,'Second Blog Post','second-blog-post','blog/second-blog-post','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>Lorem ipsum dolor sit amet </p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[81]}',1,'2025-12-03 07:54:20','2025-12-03 07:54:20','0525b212-0fa1-4e26-9b2a-ce93fd8b5c64'),
(255,255,1,'Blog Posts','blog-posts',NULL,'{\"33ee3a3d-d49b-4235-989e-7b6f0c31f998\":\"Latest from My Blog\",\"6fcbabcf-457e-47c2-873c-dc1bab02fd18\":\"Blog Posts\",\"7a8d453a-db94-47f8-8c2b-ebf52865b100\":\"<p>The latest news, updates and patient stories</p>\",\"01b1237d-1cd3-4827-875c-d66daeca276e\":\"all\",\"8158a403-41e9-4258-bf1a-91c53020cc0b\":[]}',1,'2025-12-03 08:56:07','2026-03-26 10:01:24','8390d3fc-2b2c-484e-a6d0-ddbb6a6ae6c2'),
(261,261,1,'How It Works','how-it-works',NULL,'{\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"From consultation to results, we make every step seamless and stress-free\",\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"How It Works\"}',1,'2025-12-03 17:04:20','2025-12-03 17:06:43','160a4206-c1ef-4742-a9e5-f1cc779ed01f'),
(262,262,1,'Initial Consultation','initial-consultation',NULL,NULL,1,'2025-12-03 17:06:52','2025-12-03 17:07:02','89eaf0c0-94ca-42f4-bac1-4d7456f4a189'),
(263,263,1,NULL,'__temp_nlxkifxxvdscxbvhkfivzgovzenkympksrvj',NULL,NULL,1,'2025-12-03 17:09:02','2025-12-03 17:09:02','e70f47f1-49bf-44d9-a2cd-09c1caf320c6'),
(266,266,1,NULL,'__temp_ebcppsbiyglengkcqvmwvqrpbknpuinmoefq',NULL,NULL,1,'2025-12-03 17:10:11','2025-12-03 17:10:36','d98e6e5b-0ffb-47f1-b911-6e8c7a028ff5'),
(267,267,1,NULL,'__temp_sgqlrzasvrximzgmuktrhatbqlnuhdtshbjo',NULL,NULL,1,'2025-12-03 17:10:13','2025-12-03 17:10:31','482d14b0-2779-4abf-8789-5fcbc6149d63'),
(268,268,1,NULL,'__temp_jnrqdrasmyjjjzxwupapczmjcnkmbyhtggzl',NULL,NULL,1,'2025-12-03 17:10:21','2025-12-03 17:10:25','43955071-4d69-4d24-9d3e-90bd2599e501'),
(269,269,1,NULL,'__temp_dmcoepfpkxjgfvksiedvpnyakfdbftooscuf',NULL,NULL,1,'2025-12-03 17:10:23','2025-12-03 17:10:23','3aa4d8c0-0d6f-45c3-9743-5e3ad17ad57f'),
(274,274,1,'What To Expect','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"What To Expect\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"Clear advice, careful planning, and personalised care.\"}',1,'2025-12-03 17:13:37','2026-03-31 09:53:06','bb1ee66e-916e-4774-ba5c-10e981c38274'),
(275,275,1,'Initial Consultation','initial-consultation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Initial Consultation\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":true,\"b57c8db9-03d0-4026-889f-6d3160affed8\":\"test\",\"209bfbdc-be9c-4933-96f5-5c10d80de891\":{\"value\":\"#\",\"type\":\"url\"}}',1,'2025-12-03 17:13:37','2025-12-03 19:05:19','643e884a-31f7-45bd-8c24-faa7256bec91'),
(302,302,1,'Book Consultation','book-consultation-works',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-03 19:14:29','2026-04-16 14:54:00','c1f95ce0-235f-4b76-b46b-96025e1010ee'),
(312,312,1,'Drrach home banner',NULL,NULL,NULL,1,'2025-12-04 08:44:27','2025-12-04 08:44:27','5752a6ce-1b17-4e8c-96ba-a4e8ffacf782'),
(319,319,1,'Faye Klavas','emily-johnson',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Faye Klavas\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you Dr Rachel ❤️</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:55:44','2026-03-26 10:46:59','d30137eb-a364-40c7-8b89-b7a8f817a7e7'),
(320,320,1,'Ellipse 9',NULL,NULL,NULL,1,'2025-12-04 17:56:44','2025-12-04 17:56:44','20aae905-a04e-40cc-8086-364713af1246'),
(321,321,1,'Emily Johnson','emily-johnson',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Emily Johnson\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Lip Enhancement\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"Professional, caring, and incredibly skilled. My lips look amazing - exactly what I hoped for.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:56:51','2025-12-04 17:56:51','0290ca5a-0ed4-47ac-aaf6-0c360ed8b240'),
(322,322,1,'Hannah Ainsworth','jessica-williams',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Hannah Ainsworth\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>I\'m absolutely delighted with the results of my ongoing treatment with Rachel. I wanted to achieve a very natural look to help me feel more confident as I approach 40 and Rachel absolutely achieved this. I get so many comments on how fresh my skin looks. Thanks Rachel for giving me really great advice, a wonderful service and outstanding aftercare.</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:56:55','2026-03-26 10:42:34','e56b0547-1a5d-4cd7-a5ff-91db5e05c8a0'),
(323,323,1,'Jessica Williams','jessica-williams',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Jessica Williams\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Facial Rejuvenation\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"I was nervous at first, but the team made me feel so at ease. The results are subtle but transformative.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:57:32','2025-12-04 17:57:32','598f25f6-e444-4501-b39a-2af3c2403640'),
(324,324,1,'Eleanor Crane','amanda-brown',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Eleanor Crane\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>The best aesthetic experience I\'ve had! Dr Rachel is professional, friendly and an absolute expert at what she does. My results are subtle and perfect. Would highly recommend!</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:57:32','2026-03-26 10:44:18','6888915a-85bb-4ee9-8e0e-a3e38e8b6fe6'),
(325,325,1,'Amanda Brown','amanda-brown',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Amanda Brown\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Anti-Aging Package\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"Five years younger without looking \'done\' - exactly what I wanted. The personalized approach makes all the difference.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:57:55','2025-12-04 17:57:55','8a29e226-88ae-45f5-82f0-244378f00886'),
(326,326,1,'Kirsty Partington','sarah-mitchell',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Kirsty Partington\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[]}',1,'2025-12-04 17:58:07','2026-03-26 10:40:38','88108a56-4c67-46a3-8f0d-48dfdd89d7e8'),
(327,327,1,'Sarah Mitchell','sarah-mitchell',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Sarah Mitchell\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Botox & Dermal Fillers\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again, just refreshed.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 17:58:29','2025-12-04 17:58:29','215be0b0-8303-47b7-b788-a8fdb49d33dd'),
(330,330,1,'What My Patients Say','what-our-patients-say',NULL,'{\"28fc0304-69b6-43ac-8c99-e2c875a4a532\":\"Patient Stories\",\"06865648-84b5-46f3-8fd0-48993e09ff0b\":\"What My Patients Say\",\"214c0ead-2e2c-4485-9e17-5ad3c84ae9d5\":\"all\",\"0bc96d1c-7d25-4448-9f0a-aa33ea239a34\":[326,322,324,319],\"a25ceaa8-9edc-4eb2-a59d-a1340895067d\":true,\"5dbdee7d-8d17-44c9-8581-679879c315ca\":{\"value\":\"https://www.google.com/search?q=Aesthetics+By+Dr+Rachel%2C+224+Town+Ln%2C+Higher+Bebington%2C+Bebington%2C+Wirral+CH63+8LG&oq=Aesthetics+By+Dr+Rachel%2C+224+Town+Ln%2C+Higher+Bebington%2C+Bebington%2C+Wirral+CH63+8LG&gs_lcrp=EgZjaHJvbWUqBggAEEUYOzIGCAAQRRg7MgYIARBFGDwyBggCEEUYPDIGCAMQRRg80gEHNDU3ajBqNKgCAbACAfEF6K9W8c7fx_4&sourceid=chrome&ie=UTF-8\",\"type\":\"url\",\"target\":\"_blank\"},\"4977ef85-8f70-4b78-8499-ac4fe3031f69\":38}',1,'2025-12-04 17:59:30','2026-03-26 09:55:54','ba595eff-9888-4d4c-910f-d8d2a61aba28'),
(337,337,1,'Sarah Mitchell','sarah-mitchell',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Sarah Mitchell\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Botox & Dermal Fillers\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again, just refreshed.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 18:18:04','2025-12-04 18:18:04','e3e6a3b9-5b48-4fb5-b6bb-a5951dc971aa'),
(339,339,1,'Jessica Williams','jessica-williams',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Jessica Williams\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Facial Rejuvenation\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"I was nervous at first, but the team made me feel so at ease. The results are subtle but transformative.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 18:18:27','2025-12-04 18:18:27','9a2eede5-97ea-49dd-a2b0-f5f9ba51bc7a'),
(341,341,1,'Jessica Williams','jessica-williams',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Jessica Williams\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Facial Rejuvenation\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"I was nervous at first, but the team made me feel so at ease. The results are subtle but transformative.\\\"\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2025-12-04 18:18:56','2025-12-04 18:18:56','2554d182-4278-4a24-98cf-651bd3eab74d'),
(343,343,1,NULL,'__temp_zjrvvlgkzqvcossdcrczxsyxoxtrxbmbxqkt',NULL,'{\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":true,\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"beigeWarm\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"bottom\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"maintain\",\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns3367\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\"}',1,'2025-12-04 19:30:33','2025-12-04 19:31:05','3090befe-9400-4523-ad8c-43568f1a1880'),
(348,348,1,NULL,'__temp_lzvyeytrqhjeckolrlslhccdbkerfdtqufbg',NULL,NULL,1,'2025-12-06 10:39:20','2025-12-06 10:39:20','56e5eb40-a03c-4e24-ba4c-92a009ca7047'),
(349,349,1,NULL,'__temp_opkwzijqrhcwynqkhppceiqsswyrdbsuxrod',NULL,NULL,1,'2025-12-06 10:39:47','2025-12-06 10:39:47','bb91b0b6-950b-4a1e-a450-b5f0891e1d71'),
(352,352,1,NULL,'__temp_wexyjcfjleplrbnfambvsgitgzibotuqyufg',NULL,'{\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"left\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"gold\"}',1,'2025-12-06 10:40:49','2025-12-06 10:40:49','4479993c-2dac-424a-90e6-f3837bdbe806'),
(353,353,1,NULL,'__temp_uqhjrqukbjafnvugauvjrloacaphqhnynxqr',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-06 10:40:52','2025-12-06 10:40:52','bf5c5701-b2c2-4814-9dc0-833d1fe6fa11'),
(354,354,1,NULL,'__temp_pwtdzxiqvvbvlodtczhbopvzsnkbkcoxpdhr',NULL,'{\"8630c735-6b35-4179-a62f-cb5a5eeafa83\":\"medium\",\"31831217-1d9a-4a1e-bb5e-cab96c9fc65d\":\"left\",\"b01a8273-3669-4c90-b79a-e4721c29434e\":\"none\",\"a93a1121-2f17-4072-8021-3405bb9b4467\":false}',1,'2025-12-06 10:40:54','2025-12-06 10:40:54','e2afa3fb-e155-4c0f-891d-7cbe51692ebb'),
(355,355,1,NULL,'__temp_bqenovxuushfugbsgmrgnrrivgsuocfyftgl',NULL,NULL,1,'2025-12-06 10:40:56','2025-12-06 10:40:56','0b0bb7e1-ac52-4303-aea5-bc53b602c87e'),
(356,356,1,NULL,'__temp_ueulohmlvftnpttugavoigplkmkpateaatdi',NULL,'{\"52f962b8-3d4a-4f5e-8e56-eb9108a237b7\":\"default\"}',1,'2025-12-06 10:41:00','2025-12-06 10:41:00','af219455-6d9f-4193-b7a1-4f2df6e2291e'),
(357,357,1,NULL,'__temp_tnragugzrodaaqdxbdwmzxrxwcbaudfrukyi',NULL,NULL,1,'2025-12-06 10:41:09','2025-12-06 10:41:09','0884fcdf-6aa9-4487-8d3f-8d47b4638974'),
(358,358,1,NULL,'one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\":[],\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2025-12-06 18:45:14','2025-12-07 08:25:18','687671c6-5efe-462d-91c6-f5cf665e7b96'),
(359,359,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-06 18:45:14','2025-12-07 08:32:56','3fbfad22-4d77-442c-b660-2049119d9a1c'),
(360,360,1,'test','test',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>adsdsaasd adsasdasd adsdasasd adsadsasd</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"right\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"prose\"}',1,'2025-12-06 18:45:14','2025-12-06 18:45:14','b7fd5ba4-f98d-423d-b29a-8715c5b3eb49'),
(377,377,1,'sdsddasddasads','sdsddasddasads',NULL,NULL,1,'2025-12-06 18:56:45','2025-12-06 18:56:45','7cebe5aa-e872-4bb3-bb4f-75b62cbd9b53'),
(378,378,1,'sadasddsa','sadasddsa',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"sadsdaasddsa\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-06 18:56:45','2025-12-06 18:56:45','8e2cecc6-96af-46d1-93fe-d0a08c483a80'),
(379,379,1,'saffsasfa','saffsasfa',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"safsfasfafsasfa\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"left\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"gold\"}',1,'2025-12-06 18:56:45','2025-12-06 18:56:45','909ca61f-ca96-45de-9523-e0837b2edc03'),
(395,395,1,'Specialized in the subtle magic of clinically advanced treatments','test',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<h2>Specialized in the subtle magic of clinically advanced treatments</h2><p> </p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2025-12-06 19:18:57','2025-12-06 20:31:20','f1b2123a-b439-4243-ab65-156d68734485'),
(408,408,1,'heading','heading',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Heading text\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"left\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-06 19:23:58','2025-12-06 19:23:58','f9e4a1c5-bdbe-49b1-8758-620a7cfdeb93'),
(409,409,1,'testasdsdadas','testasdsdadas',NULL,'{\"6f6aeaf6-c34d-47b7-a6c1-7da174fe58ed\":[91],\"8630c735-6b35-4179-a62f-cb5a5eeafa83\":\"medium\",\"31831217-1d9a-4a1e-bb5e-cab96c9fc65d\":\"right\",\"b01a8273-3669-4c90-b79a-e4721c29434e\":\"none\",\"a93a1121-2f17-4072-8021-3405bb9b4467\":false}',1,'2025-12-06 19:23:58','2025-12-06 19:23:58','4869bcc9-438c-4c90-a03d-18808eb07e2d'),
(410,410,1,'saffsafsa','saffsafsa',NULL,'{\"14c2af89-da53-4d01-ae06-433c386d36c3\":\"fafasafsfasfasafsafsafs\",\"4c134696-2755-4438-9b8a-5b95d32d3cb6\":\"afsafsasfafsasfasfasasf\",\"7185c98c-c9bb-46f3-b785-e1e137bf4fce\":\"fsafasasffasasfasf\",\"59d47b20-e597-4c63-8a0a-700e4fd4e0b1\":{\"value\":\"#\",\"type\":\"url\"},\"52f962b8-3d4a-4f5e-8e56-eb9108a237b7\":\"bordered\"}',1,'2025-12-06 19:23:58','2025-12-06 19:23:58','84a6ebf4-86b7-4e2a-a5a3-02f34d9c1407'),
(411,411,1,'sadadsasdasdads','sadadsasdasdads',NULL,NULL,1,'2025-12-06 19:23:58','2025-12-06 19:23:58','c258afc3-1e92-4303-8651-a099ace1466c'),
(412,412,1,'dsadasdsasaddsa','dsadasdsasaddsa',NULL,'{\"6f6aeaf6-c34d-47b7-a6c1-7da174fe58ed\":[90],\"8630c735-6b35-4179-a62f-cb5a5eeafa83\":\"medium\",\"31831217-1d9a-4a1e-bb5e-cab96c9fc65d\":\"center\",\"b01a8273-3669-4c90-b79a-e4721c29434e\":\"medium\",\"a93a1121-2f17-4072-8021-3405bb9b4467\":false,\"e022b58a-9fe5-47af-a775-76e84e0b011f\":\"dsadsadsdsadsa\"}',1,'2025-12-06 19:23:58','2025-12-06 20:23:07','5fb6314b-15a1-4dcd-b77b-5dd80c07f02d'),
(529,529,1,'Top Spacer','top-spacer',NULL,'{\"65cd5ed5-c924-4fa9-aea7-ca7349a71e47\":\"medium\"}',1,'2025-12-06 20:31:20','2025-12-06 20:31:20','28086773-aa35-4ac5-821a-ad596fa12633'),
(530,530,1,'Bottom Spacer','top-spacer',NULL,'{\"65cd5ed5-c924-4fa9-aea7-ca7349a71e47\":\"medium\"}',1,'2025-12-06 20:31:20','2025-12-06 20:31:20','4e03c285-f342-4433-a77e-d36e584d75aa'),
(542,542,1,'For exquisitely natural results','test',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>For exquisitely natural results</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2025-12-06 20:33:04','2025-12-06 20:33:04','ef17e0f1-f17f-4a90-9f93-1d3bd8b59b49'),
(549,549,1,NULL,'__temp_pytlmxrtkpyswcdtdmzevgmlglsstaolgdvy',NULL,NULL,1,'2025-12-07 00:21:24','2025-12-07 00:21:24','d5364a1e-3eb8-41d4-bcb3-80c5330df829'),
(551,551,1,NULL,'__temp_qtofvrnlcrqaiupdlbspinmfpfgmysdwrjjd',NULL,NULL,1,'2025-12-07 00:21:47','2025-12-07 00:21:47','ec6b4de9-c6e6-40e0-91ba-0f3361067c3b'),
(553,553,1,NULL,'__temp_rzhbqctponksmvrodmgssquukihhbhrymgza',NULL,NULL,1,'2025-12-07 00:22:07','2025-12-07 00:22:07','ef720655-bef1-40d1-9249-04d57c34eb70'),
(555,555,1,NULL,'__temp_ukhlfrkrwxvqphsxkdlvvvxiptnbnkyeulvy',NULL,NULL,1,'2025-12-07 00:22:39','2025-12-07 00:22:39','4d322ff2-0000-4c0c-a979-5e57125f5106'),
(556,556,1,NULL,'__temp_wmeimyvjylpqcjlosjessunwyhwkrrnjklnf',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-07 00:22:42','2025-12-07 00:22:42','04548395-e182-4195-8bd4-c93acabacb14'),
(567,567,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"white\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"medium\"}',1,'2025-12-07 08:32:56','2025-12-07 08:32:56','d8cf51c0-d1a5-457a-a0dd-cdc30a7e554a'),
(568,568,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"display\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:32:56','2025-12-07 08:32:56','2fdfa99b-5064-46b9-93bc-f674100ceb82'),
(569,569,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"white\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:32:56','2025-12-07 08:32:56','80f9f18c-246a-4b77-8c52-3cd52c07e2c4'),
(570,570,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><i>    For exquisitely natural results</i></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 08:32:56','2025-12-07 08:32:56','a047743a-9592-4ae5-b6dd-eb260d18683e'),
(578,578,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:38:43','2025-12-07 08:38:43','b556fd98-9845-4227-8303-374b26854f53'),
(579,579,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"white\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"medium\"}',1,'2025-12-07 08:38:43','2025-12-07 08:38:43','3c290788-c4ba-4a39-a518-65ed9a0d4b90'),
(580,580,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"display\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:38:43','2025-12-07 08:38:43','1295b550-60f4-435f-87ff-80f6308343cd'),
(581,581,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><i>    For exquisitely natural results</i></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 08:38:43','2025-12-07 08:38:43','b8467ac1-59c1-4c53-9e05-2a564c2103ad'),
(582,582,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"white\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:38:43','2025-12-07 08:38:43','8008bd2a-fdee-4f09-8461-d8f15c63608e'),
(592,592,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"medium\"}',1,'2025-12-07 08:41:47','2025-12-07 08:41:47','b117c42b-6331-4ab0-9f03-4cae44ec9b13'),
(593,593,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:41:49','2025-12-07 08:41:49','e3423862-1acc-4f07-b4a4-8035c2c3b264'),
(594,594,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:41:56','2025-12-07 08:41:56','e28bfc4c-d2a3-4066-8a04-da0d949a15a4'),
(604,604,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\":[],\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2025-12-07 08:45:19','2026-03-20 09:54:33','b5203024-44e9-4551-9ea1-00d2951045f5'),
(605,605,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:45:19','2025-12-07 08:45:19','2fcece8c-1622-47bd-a6f8-bd5850edfdfc'),
(606,606,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"medium\"}',1,'2025-12-07 08:45:19','2025-12-07 08:45:19','561af56a-87b1-4981-b643-ddbe7c60fd57'),
(607,607,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"display\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:45:19','2025-12-07 08:45:19','87238f1e-9f29-4fab-810e-6fadeb14cc3a'),
(608,608,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><i>    For exquisitely natural results</i></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 08:45:19','2025-12-07 08:45:19','9d6a3b00-4411-4e06-b951-5e0771e3a604'),
(609,609,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:45:19','2025-12-07 08:45:19','549c4abd-e459-4b13-aaac-4f80b0ea42be'),
(626,626,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"display\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:48:34','2025-12-07 08:48:34','71fcbe1c-17d8-489a-a763-d9c5020bbdb1'),
(632,632,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:49:11','2025-12-07 08:49:11','87387daa-0cfc-4374-a0bb-2c7a1c5cd5b1'),
(634,634,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"display\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:49:11','2025-12-07 08:49:11','64902ccb-ec6f-41f4-8e8a-bef55a02045c'),
(635,635,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><i>    For exquisitely natural results</i></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 08:49:11','2025-12-07 08:49:11','98b9dd6e-7088-4c29-b138-317fcfe159b4'),
(636,636,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:49:11','2025-12-07 08:49:11','ff40ff45-4768-412b-a413-78ead1922f6f'),
(648,648,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"display\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:51:18','2025-12-07 08:51:36','39c4c6bc-78e1-485b-b560-4458c51ea299'),
(654,654,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:52:28','2025-12-07 08:52:28','c42fb892-ce93-4d44-a1b5-bc6a282e2a19'),
(655,655,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"small\"}',1,'2025-12-07 08:52:28','2025-12-07 09:17:46','68e0d95c-6227-4f97-8360-a4011d933635'),
(656,656,1,'Helping you look and feel your best at every stage of life','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Helping you look and feel your best at every stage of life\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 08:52:28','2026-03-31 09:41:19','6ae32adc-3aa6-4c35-a833-15f6cf98ee8d'),
(657,657,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>Achieving natural, graceful results</i></span></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 08:52:28','2026-03-31 10:00:26','592ebd04-581c-42ad-8f55-8f3b52287146'),
(658,658,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:52:28','2025-12-07 08:52:28','7b914845-edf3-47bd-ab37-7bb659645313'),
(665,665,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 08:52:28','2025-12-07 08:52:28','3cdeded5-6697-42ae-a075-25a9fa117dc5'),
(698,698,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"small\"}',1,'2025-12-07 09:17:46','2025-12-07 09:17:46','b9b5b27e-5a06-4012-a227-79485f28ddf0'),
(699,699,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 09:17:46','2025-12-07 09:17:46','080b33a0-1d67-4cbb-b399-f7da6f4e4980'),
(750,750,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2025-12-07 09:27:22','2026-03-26 08:54:11','b284f963-563c-4232-bcf7-107297d86eb7'),
(755,755,1,NULL,'__temp_hrsrtnjvjaeyevhqrflzvfvipyecbfknlxad',NULL,NULL,1,'2025-12-07 13:55:44','2025-12-07 13:55:44','9225f4d8-42d1-46c3-a072-de8641e4b374'),
(756,756,1,NULL,'__temp_ccleoexuyarlctsubwnoskazkbgvshwxhvgj',NULL,NULL,1,'2025-12-07 13:55:46','2025-12-07 13:55:46','07d2d67c-bbd9-40b4-a884-b19634e189c3'),
(757,757,1,'Dr Rach Web 95',NULL,NULL,NULL,1,'2025-12-07 14:21:17','2025-12-07 14:21:17','ce8d11a7-4704-4a5b-8928-e8f3f968eac4'),
(761,761,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span>\\n</h3>\\n<p>\\n    I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">GMC-registered doctor</span> </a>with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself. \\n</p>\\n<p>\\n    My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options. \\n</p>\\n<p>\\n    Every face and every skin journey is different. Taking the time to assess you properly allows treatments to be carefully tailored, achieving results that are subtle, balanced and completely natural. I am a member of the Complications in Medical Aesthetics Collaborative (CMAC) and regularly undertake further training to ensure my practice remains safe, evidence-based and always centred around patient care. \\n</p>\\n<p>\\n    Because aesthetic medicine should enhance how you look, never change who you are.\\n</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2025-12-07 14:22:11','2026-04-03 14:06:15','437aacff-f48e-40e7-959a-ce1bbcb06a07'),
(762,762,1,'About Me','about-me',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"About Me\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-07 14:22:11','2025-12-07 14:22:11','5eb9501f-bf70-4185-af20-6cdaea006ad4'),
(763,763,1,'What To Expect','what-to-expect',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"What To Expect\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-07 14:22:11','2025-12-07 14:22:11','03685b5f-261e-4db9-9359-5d6310b41c54'),
(764,764,1,'Consultation','consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-07 14:22:11','2025-12-07 14:22:11','1a3192e3-5807-4f4e-ace5-4bcc2745a8d3'),
(774,774,1,'Explore My Services','explore-our-services',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore My Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What are you looking for today?\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"selected\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":8,\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\":[4593,4702,4502,4203,4303,4418,4026,1951]}',1,'2025-12-07 14:35:29','2026-03-26 09:58:08','a1835ad3-5345-4d50-82d6-da812e3e6be0'),
(785,785,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\":[],\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2025-12-07 14:39:53','2026-03-31 10:00:26','26f83efb-6af9-4665-a10e-ca5c048e15db'),
(786,786,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 14:39:53','2025-12-07 14:39:53','204b5df7-060f-4c97-96fc-e76c420fead2'),
(787,787,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"small\"}',1,'2025-12-07 14:39:53','2025-12-07 14:39:53','1cfc3028-fbd0-448e-936b-6c7884eea7f8'),
(788,788,1,'Helping you look and feel your best at every stage of life','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Helping you look and feel your best at every stage of life\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 14:39:53','2026-04-13 12:45:34','b1e523cc-18c8-4385-b49f-1bf52a815cac'),
(789,789,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>Achieving natural, graceful results</i></span></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 14:39:53','2026-03-31 10:00:26','317d7415-88ad-4d4f-91f2-6370fef67cd4'),
(790,790,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 14:39:53','2025-12-07 14:39:53','75cf506b-c091-4030-853b-c0da71468d95'),
(793,793,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2025-12-07 14:39:53','2025-12-07 14:39:53','b2938fb9-2dcb-4e9c-8b3c-33db268d2b28'),
(794,794,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 14:39:53','2025-12-07 14:39:53','eee9ad6a-fbf0-4737-bf30-2a2089c676ae'),
(795,795,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"small\"}',1,'2025-12-07 14:39:54','2025-12-07 14:39:54','0f6dd6ec-f4f4-49c2-9893-0909b01a9c9f'),
(796,796,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 14:39:54','2025-12-07 14:39:54','17f499f1-b9ab-4284-a28e-17a9bb30a44f'),
(797,797,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>for exquisitely natural results</i></span></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 14:39:54','2025-12-07 14:39:54','5606b75e-129c-4e11-8eae-ae4152a091d7'),
(798,798,1,NULL,'__temp_gsjqarcyaoxbnckyesidrekuzhkajradrvdb',NULL,'{\"e376cfa3-16b2-41b2-b6c8-bf077d006110\":\"line\",\"bba64c5f-ac72-420f-a677-ed6defbb3b82\":\"short\",\"1a19c91a-121e-4f3c-b097-a360b3243240\":\"gold\",\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\":\"thin\",\"a15df883-dc8f-4e20-af61-cedce78c133b\":\"xs\",\"8b2111a4-335b-497f-94da-aaed1b3e0328\":\"xs\"}',1,'2025-12-07 14:39:54','2025-12-07 14:39:54','481e3e6e-b74f-4457-a97b-cca474e79b93'),
(806,806,1,'About','about-me',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"About\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-07 14:46:22','2025-12-07 14:46:22','0f9d10c5-4e68-407a-865c-3f86b4f489e2'),
(821,821,1,'Dr Rach Web 17 12',NULL,NULL,NULL,1,'2025-12-08 10:05:35','2025-12-08 10:05:35','e201228f-d583-4a00-ac74-07a076a585cf'),
(840,840,1,'test1','test1',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[757],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2025-12-15 09:01:44','2025-12-15 09:01:44','95f9dc97-46a8-4bec-9586-12b7cf138d7f'),
(843,843,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for education and inspiration</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\":[],\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<script src=\\\"https://cdn.commoninja.com/sdk/latest/commonninja.js\\\" defer></script>\\n<div class=\\\"commonninja_component pid-73e65143-2a86-40b1-97ff-81d69cdfb2e5\\\"></div>\"}',1,'2026-02-02 19:00:14','2026-04-01 10:45:35','eec7fe93-76e6-46e9-bdf3-c5fb5b29e503'),
(849,849,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Us 2\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find Our Clinic 2\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"224 Town Lane, Bebington,\\nWirral, Merseyside, CH63 8LG 2\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"Mon - Fri: 9:00 AM - 7:00 PM\\nSaturday: 10:00 AM - 5:00 PM\\nSunday: By Appointment\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2482.8!2d-0.148!3d51.52!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zNTHCsDMxJzEyLjAiTiAwwrAwOCc1Mi44Ilc!5e0!3m2!1sen!2suk!4v1234567890!5m2!1sen!2suk\"}',1,'2026-02-03 08:44:56','2026-02-03 08:48:06','67f09bda-400f-491a-9aba-d357942d53c0'),
(850,850,1,'Book Your Consultation 2','book-your-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"#\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-02-03 08:44:56','2026-02-03 08:48:06','cd869631-a634-4536-89fc-863d44d548fd'),
(867,867,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: 11:00 AM - 5:00 PM</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-02-03 08:58:31','2026-04-16 12:10:17','4a00f85e-d9fb-419f-af7e-8b286f1f34dd'),
(868,868,1,'Test','test',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book A Consultation 2\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#2\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-02-03 08:58:31','2026-02-03 08:58:31','50afe7f2-c4c3-437f-aa9e-6a81bea70c1b'),
(887,887,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:03:29','2026-02-08 09:21:58','3392d991-6f3b-4e21-a8c7-a270dc471bcd'),
(888,888,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:03:29','2026-02-08 09:03:29','914cb0b5-55f9-4b6e-aa02-c3c22ad6230f'),
(890,890,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:06:20','2026-02-08 09:06:20','0ea946ca-fba1-4942-ba70-4216d2d7ab60'),
(892,892,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:13:59','2026-02-08 09:13:59','2923b863-fef1-4699-9b79-849dd148d866'),
(894,894,1,'Contacts','contacts','contacts','{\"14c2af89-da53-4d01-ae06-433c386d36c3\":\"dsaasddsa\",\"4c134696-2755-4438-9b8a-5b95d32d3cb6\":\"sdasdasad\",\"7185c98c-c9bb-46f3-b785-e1e137bf4fce\":\"asdasddas\",\"59d47b20-e597-4c63-8a0a-700e4fd4e0b1\":{\"value\":\"#\",\"type\":\"url\"},\"52f962b8-3d4a-4f5e-8e56-eb9108a237b7\":\"default\"}',1,'2026-02-08 09:14:32','2026-02-08 09:14:32','506729c8-c225-48dc-a458-b97ad5877ee1'),
(895,895,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:21:04','2026-02-08 09:21:04','c6d99ab9-e630-4bd2-8d45-984eba488f3e'),
(901,901,1,'Hero contact','hero-contact',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Hero contact\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Hero contact\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Hero contact\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Hero contact\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','2ea14d70-2d94-4c22-8d75-3f95f852a94c'),
(902,902,1,'Hero contact','hero-contact',NULL,'{\"ff6ca0f0-1b79-4605-9d9c-11a46fa5deca\":\"Hero contact\",\"f47824a7-2fa1-4c08-9a8d-2150675d7074\":\"#assdaasd\",\"bf926b64-bfec-4317-b58e-d7a143dd5ff0\":{\"value\":\"#sdadsa\",\"type\":\"url\"}}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','e8246209-d936-4b57-bbc7-f78231bc200b'),
(903,903,1,'Contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Aesthetics By Dr Rachel\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Contact Me\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);\\\">Aesthetics by Dr. Rachel (within Danielle Louise), 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:rgb(0,0,0);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:rgb(0,0,0);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-02-08 09:21:58','2026-04-02 09:00:44','8d852987-698d-4365-ad81-6d827f8ef0ed'),
(904,904,1,'sfsaasfafs','sfsaasfafs',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"fasfsafas\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://sfafasfasfas\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','ec2d040f-7d6a-4db8-97ef-3bf2cb16ee53'),
(905,905,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:21:58','2026-02-08 09:21:58','65138d27-982b-47ef-be37-6f3dad07cc62'),
(906,906,1,'Hero contact','hero-contact',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Hero contact\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Hero contact\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Hero contact\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Hero contact\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','363c34bd-7771-4011-a02a-b673e7f658e1'),
(907,907,1,'Hero contact','hero-contact',NULL,'{\"ff6ca0f0-1b79-4605-9d9c-11a46fa5deca\":\"Hero contact\",\"f47824a7-2fa1-4c08-9a8d-2150675d7074\":\"#assdaasd\",\"bf926b64-bfec-4317-b58e-d7a143dd5ff0\":{\"value\":\"#sdadsa\",\"type\":\"url\"}}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','5baeaae3-b650-491c-9f72-0cdd1b8190e8'),
(908,908,1,'Hero contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Hero contact\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Hero contact\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"Hero contact\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"Hero contact\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"21332321\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"sddsa@abv.bg\"}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','21fd7d24-c9fc-4094-8954-ffed44b1aa5f'),
(909,909,1,'sfsaasfafs','sfsaasfafs',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"fasfsafas\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://sfafasfasfas\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2026-02-08 09:21:58','2026-02-08 09:21:58','a76fce2a-bc5d-4ac3-b188-3d4543edfc52'),
(911,911,1,'Contacts','contacts','contacts',NULL,1,'2026-02-08 09:29:50','2026-02-08 09:29:50','fb5d5425-2a66-41eb-af33-2ae6f712fb05'),
(912,912,1,'About','about','about',NULL,1,'2026-02-08 10:03:48','2026-02-08 10:03:48','92402b1a-c699-4bf7-bda0-bb53927b0425'),
(913,913,1,'About','about','about',NULL,1,'2026-02-08 10:03:48','2026-02-08 10:03:48','4137739f-b3aa-42d2-b579-51cdf5903258'),
(917,917,1,NULL,'__temp_agmdlrucefczbdjzxavbaurnifgiphpravuq',NULL,'{\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-02-21 14:56:11','2026-02-21 14:56:11','9200f6a1-53bb-49eb-bd7e-3898fe3ee51c'),
(918,918,1,'Treatment','__temp_kyljtjnozfrayuydvoyatmufqraajrrneepm',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"In Harley Strees\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-02-21 15:04:43','2026-02-21 15:05:57','36fac900-c5ef-4817-a6bf-7b34b899c14d'),
(947,947,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:32:54','2026-02-21 15:32:54','078ac5af-3776-4159-a7ae-8e0850ae0614'),
(951,951,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:32:54','2026-02-21 15:32:54','a0dceeaf-4837-407d-9ca3-a9968aa8ff8a'),
(961,961,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','fc24abab-59ef-4b70-9d98-b2ae9059f8e2'),
(963,963,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','bae6ea0f-4568-4c4d-b34c-007fded0f937'),
(965,965,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','a408adc0-c559-43a1-94f0-774745dd2c2b'),
(969,969,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','c5be2813-168d-4f46-a8af-3dd9473c74d5'),
(971,971,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','9434ec1d-3a17-446e-b492-5447fe5a8273'),
(973,973,1,'disclaimer1','disclaimer1',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"disclaimer1\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','e762bb90-fd7d-4e11-a1b4-07cf300cde6a'),
(1037,1037,1,'Baton Rouge Office JPG',NULL,NULL,NULL,1,'2026-02-21 15:54:37','2026-02-21 15:54:37','a6434bcd-4a61-4ce5-aeab-05a1733ad4c5'),
(1061,1061,1,'Frequently Asked Questions','__temp_enwgtpbooxxjtjdihfqprwuabavcjajahhsi',NULL,NULL,1,'2026-02-21 16:11:56','2026-02-21 16:12:02','2bdc2bd0-fdd0-4774-aa2b-0604fa86fe03'),
(1098,1098,1,'Aptos Thread Lifts 2','aptos-thread-lifts',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation. 2\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:42:22','2026-03-25 17:43:34','b989b081-f021-42b9-ab1c-f3f24d6f02b4'),
(1099,1099,1,'Consultation Dr Ian Strawford payable in advance non refundable:','consultation-dr-ian-strawford-payable-in-advance-non-refundable',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£100\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation Dr Ian Strawford payable in advance non refundable:\"}',1,'2026-02-21 22:48:17','2026-02-21 22:48:40','4986b9d0-f4f1-4bae-935b-5d44be9412fb'),
(1100,1100,1,'Mid face and jawline','mid-face-and-jawline',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£2600\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Mid face and jawline: Excellence Visage HA (10 threads)\"}',1,'2026-02-21 22:48:49','2026-02-21 22:49:25','921e67e8-11a7-4d62-af13-a08f37f8af5a'),
(1101,1101,1,'Brow lift','brow-lift',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£1000 (from)\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Brow lift\"}',1,'2026-02-21 22:49:27','2026-02-21 22:49:36','780d0702-108d-4f00-844b-08fd56970bcc'),
(1102,1102,1,'Additional Threads','additional-threads',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£350 (from)\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Additional Threads\"}',1,'2026-02-21 22:49:38','2026-02-21 22:49:48','7f0d0e8e-68a3-4497-8d8e-6ddbea27ea90'),
(1103,1103,1,'Aptos Thread Lifts','aptos-thread-lifts','prices','{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:49:52','2026-03-25 12:53:10','63cb51ff-d053-453a-8a42-f4fd3cb12f43'),
(1104,1104,1,'Consultation Dr Ian Strawford payable in advance non refundable:','consultation-dr-ian-strawford-payable-in-advance-non-refundable',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation Dr Ian Strawford payable in advance non refundable:\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£100\"}',1,'2026-02-21 22:49:52','2026-02-21 22:49:52','9b24a30c-57ff-4700-89eb-ba2474f4932f'),
(1105,1105,1,'Mid face and jawline','mid-face-and-jawline',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Mid face and jawline: Excellence Visage HA (10 threads)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£2600\"}',1,'2026-02-21 22:49:52','2026-02-21 22:49:52','d738d511-6f9f-4d9a-9c19-5a848eb32eec'),
(1106,1106,1,'Brow lift','brow-lift',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Brow lift\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£1000 (from)\"}',1,'2026-02-21 22:49:52','2026-02-21 22:49:52','a2152b1f-da49-479b-b4ad-0b31c9e6dc14'),
(1107,1107,1,'Additional Threads','additional-threads',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Additional Threads\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£350 (from)\"}',1,'2026-02-21 22:49:52','2026-02-21 22:49:52','5002ea5d-6fb9-4e20-8722-1854c839e40a'),
(1108,1108,1,'Bio-identical Hormones for Women and Men','bio-identical-hormones-for-women-and-men',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Bio Identical Hormones is a treatment used to supplement the body’s natural hormone levels.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:49:56','2026-03-25 12:53:10','d9033f4e-ccca-423a-81dc-b19720e323f3'),
(1109,1109,1,'Initial Consultation (45 minutes)','initial-consultation-45-minutes',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£275\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Initial Consultation (45 minutes)\"}',1,'2026-02-21 22:50:56','2026-02-21 22:51:15','cbf728fc-23ff-4d03-8585-b70bca9ffa5e'),
(1110,1110,1,'Initial Hormonal Blood Analysis','initial-hormonal-blood-analysis',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£500\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Initial Hormonal Blood Analysis\"}',1,'2026-02-21 22:51:18','2026-02-21 22:51:27','5f882a8b-028c-4acb-ad40-c15687556d44'),
(1111,1111,1,'Follow up Consultation','follow-up-consultation',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£250\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Follow up Consultation to discuss the results and prescribing bespoke treatment programme (30 minutes)\"}',1,'2026-02-21 22:51:28','2026-02-21 22:51:44','ba930233-9c73-4149-8326-d36f8c835c0d'),
(1112,1112,1,'6-8 weeks follow up bloods once on HRT','6-8-weeks-follow-up-bloods-once-on-hrt',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£400\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"6-8 weeks follow up bloods once on HRT\"}',1,'2026-02-21 22:51:49','2026-02-21 22:51:56','8ca15746-8ebc-473d-a264-6782c81fcf09'),
(1113,1113,1,'Bio-identical Hormones for Women and Men','bio-identical-hormones-for-women-and-men',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Bio Identical Hormones is a treatment used to supplement the body’s natural hormone levels.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:56:39','2026-03-25 12:53:10','3c0fe045-7b0e-493f-a4e1-0a96d0433694'),
(1114,1114,1,'Initial Consultation (45 minutes)','initial-consultation-45-minutes',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Initial Consultation (45 minutes)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£275\"}',1,'2026-02-21 22:56:39','2026-02-21 22:56:39','c32c1600-91d0-49e3-9f9d-95a386833715'),
(1115,1115,1,'Initial Hormonal Blood Analysis','initial-hormonal-blood-analysis',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Initial Hormonal Blood Analysis\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£500\"}',1,'2026-02-21 22:56:39','2026-02-21 22:56:39','65b0eeb5-5f7c-4bc0-b1c6-9db141b3b044'),
(1116,1116,1,'Follow up Consultation','follow-up-consultation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Follow up Consultation to discuss the results and prescribing bespoke treatment programme (30 minutes)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£250\"}',1,'2026-02-21 22:56:39','2026-02-21 22:56:39','f56aa491-ad0d-4392-a7fc-cb5777e88566'),
(1117,1117,1,'6-8 weeks follow up bloods once on HRT','6-8-weeks-follow-up-bloods-once-on-hrt',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"6-8 weeks follow up bloods once on HRT\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£400\"}',1,'2026-02-21 22:56:39','2026-02-21 22:56:39','a2334835-3693-4d8b-af1c-dee9ac753b58'),
(1118,1118,1,'Botox™ anti wrinkle injections','botox-anti-wrinkle-injections',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"This well-known and popular treatment is highly effective at softening fine lines and wrinkles in the upper part of the face, lips, jawline and neck.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4303]}',1,'2026-02-21 22:56:49','2026-03-25 17:48:36','2b03ff7d-06a4-405b-835c-d13724c3ebea'),
(1119,1119,1,'Consultation Nurse Specialist refundable against treatment','consultation-nurse-specialist-refundable-against-treatment',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£50\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation Nurse Specialist refundable against treatment\"}',1,'2026-02-21 22:57:36','2026-02-21 22:58:21','e1b49bcf-de6e-4ca7-ab24-09de26908dbf'),
(1120,1120,1,'One area','one-area',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£190\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"One area\"}',1,'2026-02-21 22:58:23','2026-02-21 22:58:30','3953e4d3-6ff8-4735-82b7-b7fa19774119'),
(1121,1121,1,'Two areas','two-areas',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£275\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Two areas\"}',1,'2026-02-21 22:58:33','2026-02-21 22:58:41','25b29cda-1b35-457d-afa8-5b85aa7784be'),
(1122,1122,1,'Three areas','three-areas',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£310\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Three areas\"}',1,'2026-02-21 22:58:43','2026-02-21 22:58:48','38a56b9e-c92d-4e28-b14f-a39f0f45cae0'),
(1123,1123,1,'Botox™ anti wrinkle injections','botox-anti-wrinkle-injections',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"This well-known and popular treatment is highly effective at softening fine lines and wrinkles in the upper part of the face, lips, jawline and neck.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:58:49','2026-03-25 12:53:10','c22aa302-3448-493c-84d3-7a28cc1ac95b'),
(1124,1124,1,'Consultation Nurse Specialist refundable against treatment','consultation-nurse-specialist-refundable-against-treatment',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation Nurse Specialist refundable against treatment\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£50\"}',1,'2026-02-21 22:58:49','2026-02-21 22:58:49','7da5c9aa-48ba-4f8d-bdf3-cd774f5dfd66'),
(1125,1125,1,'One area','one-area',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"One area\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£190\"}',1,'2026-02-21 22:58:49','2026-02-21 22:58:49','f3b80fd8-ab2c-4eb5-8bac-41c13c310a1a'),
(1126,1126,1,'Two areas','two-areas',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Two areas\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£275\"}',1,'2026-02-21 22:58:49','2026-02-21 22:58:49','4bb2df97-818c-40e8-93c1-8d9c83fc1f83'),
(1127,1127,1,'Three areas','three-areas',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Three areas\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£310\"}',1,'2026-02-21 22:58:49','2026-02-21 22:58:49','5be2d929-8be1-4d32-9e60-fe875c80dc8c'),
(1128,1128,1,'Chemical Peels','chemical-peels',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Chemical Peels\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read amore about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:58:58','2026-03-25 17:40:26','755daf0d-527b-4c10-a209-46b71f947952'),
(1129,1129,1,'Treatment','treatment',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£750\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Treatment\"}',1,'2026-02-21 22:59:17','2026-02-21 22:59:22','8edb1816-3061-4e2a-a703-1bd876b697c2'),
(1130,1130,1,'Chemical Peels','chemical-peels',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Chemical Peels\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read amore about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:59:24','2026-03-25 12:53:10','01b4a207-ceed-48c9-9bd2-5b39b241a967'),
(1131,1131,1,'Treatment','treatment',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Treatment\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£750\"}',1,'2026-02-21 22:59:24','2026-02-21 22:59:24','5ce3a47e-cc7f-4017-a084-f0f5ecd2c107'),
(1132,1132,1,'Treatment Consultation','dermalux-led-phototherapy',NULL,'{\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 22:59:46','2026-03-27 13:24:23','6b9a6c2d-fecf-4cd7-8195-f533948b1e7d'),
(1133,1133,1,'Treatment Consultation','dermalux-single-treatment',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Treatment Consultation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£50\"}',1,'2026-02-21 23:00:15','2026-03-27 13:23:57','84ba01c0-cc39-47ee-a6f0-f2008878e213'),
(1134,1134,1,'Dermalux LED phototherapy','dermalux-led-phototherapy',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Dermalux LED phototherapy\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-02-21 23:00:22','2026-03-25 12:53:10','1cd0dfa3-91ee-4e95-8971-83f24e240b55'),
(1135,1135,1,'Dermalux single treatment','dermalux-single-treatment',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Dermalux single treatment\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£60\"}',1,'2026-02-21 23:00:22','2026-02-21 23:00:22','a27c784a-31df-4418-9e00-f1f4bb65d4ab'),
(1285,1285,1,NULL,'__temp_pelegzorxtwdhhbmygugjhjkbpbbhgkbmpoi','__temp_pelegzorxtwdhhbmygugjhjkbpbbhgkbmpoi','{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2026-02-22 00:41:32','2026-02-22 00:41:32','877a412b-b431-43fc-b8c2-b871e2547020'),
(1286,1286,1,'test1','test1','test1','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[757]}',1,'2026-02-22 00:42:05','2026-02-22 00:42:17','937b652e-0dc1-4fdc-9a99-bb939bc32c95'),
(1288,1288,1,'test1','test1','test1','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[757]}',1,'2026-02-22 00:42:18','2026-02-22 00:42:18','121eb038-28f0-4b49-99f2-05edbdae2518'),
(1289,1289,1,NULL,'__temp_yqifyqnxhwjhqhaxqeyuwmmggawmbikhuggl','case-studies/__temp_yqifyqnxhwjhqhaxqeyuwmmggawmbikhuggl',NULL,1,'2026-02-22 00:43:04','2026-02-22 00:43:04','68ce5fbd-b3f6-48a8-b125-a989a6e576e0'),
(1367,1367,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Meet Your Doctor\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong></p><p>I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">GMC-registered doctor</span></a> with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.</p><p> </p><p>I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.</p><p> </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.</p><p> </p><p>Because aesthetic medicine should enhance how you look, never change who you are - the goal is always for you to look refreshed, not different.</p><p> </p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-02-22 22:16:09','2026-04-03 14:10:18','25ab504f-4b51-4b9e-834e-d36b7193c5b1'),
(1368,1368,1,'About','about','about',NULL,1,'2026-02-22 22:16:09','2026-02-22 22:16:09','297c7034-7292-4249-9d9c-2e245c1ae0b7'),
(1369,1369,1,'What is Treatment 3?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem Ipsum 7\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 7? adasd\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved. 123123123123\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle 2 777\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"Unlike invasive surgical procedures, Treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions. 777\",\"26816f50-cf23-4107-b380-4cc8fc57871b\":\"The science behind Treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available. 777\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-02-22 22:16:09','2026-02-22 22:16:09','e46d4188-9999-4d0e-9c9b-2dffc4ab68de'),
(1372,1372,1,'What is Treatment 3?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem Ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 3?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle 2\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.\",\"aa302180-85b3-4ce4-a24d-7851a05f80b3\":\"The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you.\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle 2\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"Unlike invasive surgical procedures, Treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.\",\"26816f50-cf23-4107-b380-4cc8fc57871b\":\"The science behind Treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"\\\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again, just refreshed.\\\"  2\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell 2\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Botox & Dermal Fillers 2\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S. M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":4,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Our Harley Street Clinic? 2\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"Located in the heart of London\'s prestigious Harley Street medical district, our clinic combines world-class expertise with state-of-the-art facilities. Our team of highly qualified practitioners brings together years of experience in aesthetic medicine, ensuring that every treatment is performed to the highest professional standards.  2\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Consultation 2\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"#\"}',1,'2026-02-22 22:17:14','2026-02-22 22:17:14','74fce143-6601-4453-8acc-7015efe1a516'),
(1373,1373,1,'About','about','about',NULL,1,'2026-02-22 22:17:14','2026-02-22 22:17:14','861626e0-47e0-48c2-9223-5615e6921773'),
(1374,1374,1,'What is Treatment 3?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem Ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 3?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle 2\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.\",\"aa302180-85b3-4ce4-a24d-7851a05f80b3\":\"The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you.\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle 2\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"Unlike invasive surgical procedures, Treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.\",\"26816f50-cf23-4107-b380-4cc8fc57871b\":\"The science behind Treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"\\\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again, just refreshed.\\\"  2\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell 2\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Botox & Dermal Fillers 2\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S. M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":4,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Our Harley Street Clinic? 2\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"Located in the heart of London\'s prestigious Harley Street medical district, our clinic combines world-class expertise with state-of-the-art facilities. Our team of highly qualified practitioners brings together years of experience in aesthetic medicine, ensuring that every treatment is performed to the highest professional standards.  2\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Consultation 2\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"#\"}',1,'2026-02-22 22:17:14','2026-02-22 22:17:14','4789e6e6-2e5e-4aad-a2ae-50d7dc53a92f'),
(1385,1385,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about our treatments\"}',1,'2026-02-22 22:17:43','2026-03-19 23:40:52','0be0c727-2504-4abb-bf26-2178fc543375'),
(1386,1386,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','6011ad54-f801-4a29-8256-4c9989a58e88'),
(1387,1387,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','f295be01-c0a1-49bd-9554-0272ab34a65d'),
(1388,1388,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','f6e009a7-48c7-48f3-a16c-ad927da484a5'),
(1389,1389,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','a587aa2c-120f-472c-9bda-8b51133afc4c'),
(1390,1390,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','ca433860-e1d3-434b-96c4-402bcf3e8a6c'),
(1391,1391,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','50d6e2dc-711e-46b1-99ca-54212bbf9592'),
(1392,1392,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','a902e357-a8f2-4c21-87fc-f88b111d9816'),
(1393,1393,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','0fc7ae54-a3fe-4130-894b-9b0d672d7cfd'),
(1394,1394,1,'About','about','about',NULL,1,'2026-02-22 22:17:43','2026-02-22 22:17:43','3779c42c-2463-4a54-8667-a2b6cc931adc'),
(1395,1395,1,'Frequently Asked Questions 2','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions 2\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"2 Find answers to common questions about our treatment\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','782a39d0-6df0-400e-aa21-943eb21fd20e'),
(1396,1396,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','db936065-f87f-4c2f-ae34-11c3890812d2'),
(1397,1397,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','84981fc8-1237-4fbb-ade1-041b403b555c'),
(1398,1398,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','16ed7cb4-1b00-4eba-9d28-62a16fbcca43'),
(1399,1399,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','9c2fc117-867a-43d9-a1f8-4d93d19614b1'),
(1400,1400,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','47be030d-66e3-4c56-9ee3-41b72143787c'),
(1401,1401,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','299ae992-5235-414a-8547-4871df7afaca'),
(1402,1402,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','26fdad76-cc8b-493b-9a3e-a37572cacb5f'),
(1403,1403,1,'Is Advanced Skin Rejuvenation suitable for all skin types?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Advanced Skin Rejuvenation suitable for all skin types?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"Yes, Treatment 2 is suitable for most skin types. During your consultation, our practitioners will assess your specific skin type and condition to determine the most appropriate treatment approach. Certain skin conditions may require special consideration or alternative treatments.\"}',1,'2026-02-22 22:17:43','2026-02-22 22:17:43','b5af5e79-2932-4ea8-9a87-fca441c3214e'),
(1407,1407,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\",\"target\":\"_blank\"},\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\":[5372,5373,5374]}',1,'2026-02-22 22:19:04','2026-03-26 10:00:59','e3344088-3109-449a-a8d8-7be443ae0500'),
(1408,1408,1,'About','about','about',NULL,1,'2026-02-22 22:19:04','2026-02-22 22:19:04','cbaf9529-c156-43e7-a297-b0c0d5076dc7'),
(1409,1409,1,'What is Treatment 3?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem Ipsum 7\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 7? adasd\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved. 123123123123\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle 2 777\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"Unlike invasive surgical procedures, Treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions. 777\",\"26816f50-cf23-4107-b380-4cc8fc57871b\":\"The science behind Treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available. 777\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-02-22 22:19:04','2026-02-22 22:19:04','c1539002-40cb-49fe-a28c-42fe701704d0'),
(1410,1410,1,'Follow us for inspiration & exclusive offers 2','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"ff6ca0f0-1b79-4605-9d9c-11a46fa5deca\":\"Follow us for inspiration & exclusive offers 2\",\"f47824a7-2fa1-4c08-9a8d-2150675d7074\":\"@test2\",\"bf926b64-bfec-4317-b58e-d7a143dd5ff0\":{\"value\":\"https://aidebe.com\",\"type\":\"url\"}}',1,'2026-02-22 22:19:04','2026-02-22 22:19:04','480fbc2a-964e-4859-b133-cb91bb46c41f'),
(1415,1415,1,NULL,'__temp_bfrmdbopfetezomtzohqrkaujhxmadnmfqkt','__temp_bfrmdbopfetezomtzohqrkaujhxmadnmfqkt',NULL,1,'2026-02-24 13:58:47','2026-02-24 13:58:47','73e809ae-ab46-4193-b3a9-e35e2ecb5f42'),
(1416,1416,1,'About','about','about',NULL,1,'2026-02-24 14:00:57','2026-02-24 14:00:57','a4d28cc0-c844-403c-bfc4-d3dcbb3647ec'),
(1417,1417,1,'Test section','test-section','test-section',NULL,1,'2026-02-24 14:02:21','2026-02-24 14:02:21','a21d0987-c276-4c0e-80b9-056cd48f8e98'),
(1418,1418,1,'Test section','test-section','test-section',NULL,1,'2026-02-24 14:02:21','2026-02-24 14:02:21','e1fb6240-ddcf-4aec-b084-c54940b88291'),
(1419,1419,1,NULL,'__temp_rgpcoojkpqipcuhvjsgbvlkjmpqwjqnaajtq','__temp_rgpcoojkpqipcuhvjsgbvlkjmpqwjqnaajtq',NULL,1,'2026-02-24 14:06:01','2026-02-24 14:06:01','b2d51c6b-e66d-4927-949c-df7d61ca418d'),
(1424,1424,1,'Test section','test-section','test-section',NULL,1,'2026-02-24 14:39:56','2026-02-24 14:39:56','989e97c8-b3fe-44df-886e-a8c6381d2d1c'),
(1425,1425,1,'nnbbn','__temp_yhtxrmrnfarnqrfecefmdmqdpjwjnurpokhq',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"n nnb\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"nnbnb\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"bnnbnbnb\"}',1,'2026-02-24 14:39:56','2026-02-24 14:40:04','94bc0c55-2ab0-43b1-b35f-d83fd2e4be45'),
(1426,1426,1,NULL,'__temp_jodbsjbbeldndcxxcrmehjtldidafinysdnj',NULL,'{\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":false}',1,'2026-02-24 14:40:26','2026-02-24 14:40:26','902d0e17-1fef-4d36-b843-90a72d5f6651'),
(1427,1427,1,NULL,'__temp_vdbbaquzojwwytsnxchwvrychzcycyowkikc',NULL,NULL,1,'2026-02-24 14:41:32','2026-02-24 14:41:32','c6185a2e-dcc0-4336-97bd-1a5e67e65e2d'),
(1440,1440,1,NULL,'__temp_kqjbywkwlgdmefvqxabhcqrlhjuxmrfuhaho','case-studies/__temp_kqjbywkwlgdmefvqxabhcqrlhjuxmrfuhaho',NULL,1,'2026-02-24 14:59:43','2026-02-24 14:59:43','1e1deb44-4c29-4b7d-8026-b6bd31d5b2d8'),
(1503,1503,1,'Jalupro',NULL,NULL,NULL,1,'2026-03-02 17:11:08','2026-03-02 17:11:08','c1971b62-4f9f-4b56-a338-e1396ada3807'),
(1638,1638,1,'Jalupro 2',NULL,NULL,NULL,1,'2026-03-02 18:18:10','2026-03-02 18:18:10','0b7b4a6b-54ab-4212-8eba-8aa6eb1928b6'),
(1640,1640,1,'Jalupro3',NULL,NULL,NULL,1,'2026-03-02 18:22:29','2026-03-02 18:22:29','7957b78d-3d9e-4570-9b04-312aada9d8f7'),
(1691,1691,1,'Jalupro4',NULL,NULL,NULL,1,'2026-03-02 18:43:06','2026-03-02 18:43:06','e38742ce-0f35-45a2-9f38-67dc18ef7d38'),
(1746,1746,1,NULL,'__temp_bosxufcxjvvhclueoebnyhpcphijyyrgohgu',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2026-03-02 19:30:55','2026-03-02 19:30:55','53f4faa6-9182-44d1-aef5-7f369b2c2420'),
(1749,1749,1,'Jalupro5',NULL,NULL,NULL,1,'2026-03-02 19:44:29','2026-03-02 19:44:29','7463cfde-f7dc-4a3e-8223-3adaa6803a52'),
(1937,1937,1,'Dr Rach Web 169',NULL,NULL,NULL,1,'2026-03-02 21:36:48','2026-03-02 21:36:48','374b1016-7e2b-40a6-ba0f-e105e1d0d5f8'),
(1939,1939,1,'Dr Rach Web 132',NULL,NULL,NULL,1,'2026-03-02 21:40:26','2026-03-02 21:40:26','bf911c74-95cd-4bf0-896d-c938b721d7f7'),
(1941,1941,1,'Dr Rach Web 187',NULL,NULL,NULL,1,'2026-03-02 21:42:24','2026-03-02 21:42:24','214f6ad9-12bb-40ba-8089-eb5bf1639292'),
(1946,1946,1,'Dr Rach Web 192',NULL,NULL,NULL,1,'2026-03-02 21:44:02','2026-03-02 21:44:02','907fd7ad-50dd-4d7c-8509-809109c6ec72'),
(1951,1951,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-03-02 21:45:13','2026-03-30 18:01:34','82fddac9-38bc-40aa-99ef-4fd5780be67e'),
(1952,1952,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-02 21:45:13','2026-04-17 16:29:55','c6407b1e-3c3d-442b-926a-77e05933a939'),
(1953,1953,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:45:13','2026-03-16 19:30:28','40ff44b6-e2be-431d-bd4f-22cab6ea0148'),
(1957,1957,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-12 Months\"}',1,'2026-03-02 21:45:13','2026-03-16 19:30:28','23d03066-7162-417f-80f9-62ad09d000d7'),
(1958,1958,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-02 21:45:13','2026-03-16 21:40:56','936b33fa-4abc-45da-9f14-1c45d89e2175'),
(1963,1963,1,'Your Comprehensive Skin Consultation','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT HAPPENS DURING YOUR CONSULTATION?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Your Comprehensive Skin Consultation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A relaxed, in-depth appointment where I explore your concerns, analyse your skin in detail, and create a personalised plan to support meaningful, long-term skin transformation.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"Your consultation begins with time dedicated to understanding what is bothering you, how your skin makes you feel, and what truly matters to you. Many patients come to me at a point where their confidence is at its lowest — frustrated by persistent concerns such as acne breakouts, scarring, inflamed skin, pigmentation problems, textural irregularities, visible ageing, or skin that feels dull, dry, or fatigued. Skin has a powerful impact on how we see ourselves, and goes far beyond how it looks.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry out a thorough face-to-face assessment, exploring your medical and aesthetic history in detail, because your skin is completely unique — and your plan going forward should be too. Every recommendation is made with your long-term skin health at the centre, ensuring it is safe, clinically appropriate, and genuinely tailored to you.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Using advanced skin analysis, I look beyond what we can see with the naked eye to assess the deeper layers of your skin, including hydration, pigmentation, congestion, and barrier function. This allows us to identify the root causes of your concerns, choose the right treatments in the right order, and monitor your progress over time.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">From here, I create a personalised plan designed specifically for your skin. For some patients, this develops into ongoing, structured support through the Skin Coach Club, while others may prefer a Radiance Collection programme - both offering clear direction, regular review, and long-term skin transformation. I take time to explain the science behind each option, expected results, and realistic timeframes, so you feel informed, supported, and fully in control at every stage.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">My aim is not perfection - because perfect skin does not exist. It is to help you achieve skin that is healthy, resilient, and glowing, and to rebuild confidence so that makeup becomes a choice rather than a cover. Whether that means feeling comfortable leaving the house bare-faced, or simply enjoying makeup as something fun again, the goal is skin you feel genuinely confident in.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1939],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"As a GP, I approach skin through a medical lens - diagnosing concerns accurately, recognising when symptoms require medical input, and calibrating treatments safely across all skin tones. I understand contraindications, inflammatory pathways, and how to work with skin biology rather than against it.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I commonly support patients struggling with acne and scarring, stubborn pigmentation, dull or fatigued skin, visible ageing changes, and sensitive or compromised skin barriers.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I partner with pHformula for both home skincare and in-clinic treatments because their approach is firmly science-led and evidence-based. Their patented technologies are designed to deliver active ingredients precisely to where they are needed within the skin, supporting controlled renewal and barrier health rather than aggressively stripping the skin back. This precision-led approach produces consistent, meaningful results - and is a system I trust clinically and use myself.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When it comes to your skin, diagnostic accuracy and formulation quality matter. You deserve informed medical guidance, not guesswork.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1941],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel\'s consultation completely changed my approach to skincare. She took time to understand how my acne made me feel, then created a plan that actually worked. My skin has never looked this good.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Hannah, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Skin Consultation\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"H.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose A Doctor-Led Consultation?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Accurate diagnosis and safe, effective treatment planning require medical expertise - not guesswork. With over ten years of clinical practice, Dr Rachel combines diagnostic expertise with advanced skin analysis to deliver protocols grounded in evidence, safety, and a deep understanding of how skin behaves and responds.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','c2a61b60-e300-45c9-90bb-a562d4c7229f'),
(1964,1964,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><i>Who Should Consider Sunekos Eye Treatment?</i></h2><h2> </h2><p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>This treatment may be suitable if you:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Have hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Notice crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Have mild hollowing but are concerned about puffiness, product visibility, or a bluish tint under the eyes with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">Feel they have a perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Are considering preventative treatment in their 30s–40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;\\\">Are not suitable for tear trough filler due to their anatomy, previous experiences, or a preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-02 21:45:13','2026-04-06 21:12:06','c46dcb70-f065-45dc-9690-9ea7fa6f6ed5'),
(1965,1965,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-02 21:45:13','2026-03-26 08:53:08','6f68b19c-a252-4aec-bc90-ba6f37d7d6da'),
(1966,1966,1,'Frequently Asked Questions About Sinekos','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Sunekos under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-02 21:45:13','2026-03-16 20:02:49','d6d2d718-969c-445c-bd14-f1a1ce25a298'),
(1967,1967,1,'Q: What happens during a consultation?','q-what-happens-during-a-consultation',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What happens during a consultation?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: We begin by discussing what is bothering you and how your skin makes you feel. I then use advanced skin analysis to assess each layer of your skin, followed by a pHformula SP Complex sensitivity facial to understand how your skin responds to different treatment strengths. From this, I create a personalised plan tailored to your skin, including clinically formulated skincare and in-clinic treatment recommendations - giving you complete clarity on what your skin needs and how to move forward.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','160063eb-b98f-4c12-96ac-278967837ea0'),
(1968,1968,1,'Q: How does a doctor-led skin consultation differ from retail skincare advice?','q-how-does-a-doctor-led-skin-consultation-differ-from-retail-skincare-advice',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does a doctor-led skin consultation differ from retail skincare advice?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: This consultation is guided by clinical expertise rather than product sales. As a GMC-registered GP, I apply medical knowledge, risk assessment, and an understanding of skin physiology to assess your skin concerns safely. Advanced skin analysis allows me to look beneath the surface, while the SP Complex sensitivity test helps ensure any recommendations are appropriate for your individual skin tolerance. Every plan is personalised, evidence-led, and designed to work with how your skin functions - giving you clear direction and confidence rather than guesswork.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','e72d504d-1329-4e7e-bc9e-dc88d3fca6ba'),
(1969,1969,1,'Q: What are my treatment options?','q-what-are-my-treatment-options',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What are my treatment options?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Following your consultation, I create a personalised plan tailored specifically to your skin’s needs and goals. This includes a bespoke pHformula home skincare protocol designed to support your skin daily, alongside carefully selected in-clinic treatments where appropriate. Depending on your concerns and the level of support you would benefit from, this plan may include a structured Radiance Collection programme or ongoing care through the Skin Coach Club, ensuring your skin is guided, reviewed, and supported over time.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','c00e88ae-ccca-401d-94e2-f975934f35cc'),
(1970,1970,1,'Q: How long until I see results?','q-how-long-until-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long until I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Timeframes vary widely depending on your starting skin health, the concerns we are addressing, and how reactive your skin is. Some improvements, such as calmer skin or reduced breakouts, may be noticed within a few weeks, while changes like pigmentation or texture take longer to evolve. Skin transformation is rarely a straight line - it is normal to have good days and more challenging phases along the way. Most patients see meaningful, lasting improvement over 3–6 months with consistent skincare and regular review, and I guide you through each stage as your skin responds.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','52c29f61-b7be-4b31-8522-fb9b5e5cf5ef'),
(1971,1971,1,'Q: Is it safe for darker skin?','q-is-it-safe-for-darker-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is it safe for darker skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Safety across all skin tones is central to how I practise. As a GP, I understand Fitzpatrick skin types and the risks associated with post-inflammatory hyperpigmentation, so treatments are carefully calibrated using conservative strength selection, modified protocols, and close monitoring. I work with pHformula because they are equally committed to treating all skin types safely, with formulations and protocols designed to respect melanin-rich skin and support barrier health throughout treatment.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','4dba239c-8f5e-45df-8eb2-83af77913f34'),
(1972,1972,1,'Q: What is the SP Complex sensitivity test?','q-what-is-the-sp-complex-sensitivity-test',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the SP Complex sensitivity test?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The SP Complex sensitivity test is a pHformula facial carried out during your consultation to assess how your skin responds to active ingredients. It helps me evaluate your skin’s sensitivity on a scale of 1-10, allowing treatment strengths and protocols to be carefully selected for your individual tolerance. This step ensures treatments are both safe and effective, and helps reduce the risk of unnecessary irritation.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','5d6cbc42-b1d9-48e7-8989-f85f992947af'),
(1973,1973,1,'Q: How much does consultation cost?','q-how-much-does-consultation-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much does consultation cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The comprehensive skin consultation is £60. This includes advanced skin analysis, the pHformula SP Complex sensitivity facial, and creation of a personalised treatment and skincare plan. Clear, transparent pricing is discussed during your consultation, based on the recommendations most appropriate for your skin.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','9198ab2d-2db7-4228-ac1e-2029bcb2c370'),
(1974,1974,1,'Q: Can I combine with other treatments?','q-can-i-combine-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. Many patients benefit from combining skin resurfacing with other treatments for a more comprehensive approach to skin rejuvenation. During your consultation, I create an integrated plan that may include pHformula chemical resurfacing, microneedling, polynucleotides, or collagen-stimulating treatments such as JULÄINE™, sequenced carefully for safety and optimal results. For those seeking structured, longer-term support, this approach can also be delivered through a Radiance Collection programme.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','a757cbf6-fa75-46bb-b2ed-c7ec95c353cc'),
(1975,1975,1,'Q: What is the Radiance Collection?','q-what-is-the-radiance-collection',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the Radiance Collection?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The Radiance Collection is a series of long-term skin treatment programmes designed to support meaningful, sustainable skin transformation under expert medical guidance. Designed over 9, 12, or 18 months, each programme is tailored specifically to your skin and works in harmony with your skin’s natural processes rather than chasing short-term fixes.\\nEach tier combines carefully selected in-clinic treatments with clinically formulated pHformula skincare, alongside complimentary extras and regular review appointments to support consistency and progress over time. These programmes are ideal for patients ready to invest in their skin and commit to gradual, visible improvement, with measurable changes in tone, texture, hydration, and elasticity. The Radiance Collection removes guesswork, providing structure, continuity, and a clear pathway to healthier, more resilient, luminous skin - guided throughout by doctor-led care.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','72ff16d4-4145-44eb-96d7-ce02643a67dd'),
(1976,1976,1,'Q: What is the Skin Coach Club?','q-what-is-the-skin-coach-club',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the Skin Coach Club?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The Skin Coach Club is a structured 8 or 12 month membership programme designed to support long-term skin health through expert guidance, education, and personalised care. It is ideal for anyone ready to step away from trial-and-error skincare and invest in a professional, science-led plan that evolves as their skin changes.\\nEach programme includes a bespoke strategy tailored to your skin, combining clinically formulated pHformula skincare with carefully selected in-clinic treatments and regular review appointments. Using advanced skin analysis, I monitor your skin’s progress over time, adjusting your plan to ensure we are always moving in the right direction.\\nThe Skin Coach Club supports a wide range of concerns, including acne, rosacea and inflammatory skin conditions, pigmentation disorders, textural irregularities, visible ageing changes, and skin that feels persistently dull, dry, or fatigued. Throughout your journey, you will receive ongoing professional support - whether that is a review, a question, or reassurance - so you are never left guessing.\\nThis is not a quick fix. The Skin Coach Club is about rebuilding skin confidence from the inside out, delivering meaningful, long-lasting results through consistency, expertise, and care. Patients typically see improvements in skin strength, tone, texture, and overall resilience - often reaching a point where makeup feels optional rather than essential.\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','1443ef9e-451d-44a9-a5a5-4b085bfc1f13'),
(1977,1977,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 21:45:13','2026-04-20 19:18:24','fea70c73-8295-4a38-8b36-0895c4358a9f'),
(1992,1992,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','089f6796-e51a-45a2-a43e-9ab264608639'),
(2004,2004,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','db47aada-5189-4241-a9ed-5ad60df75200'),
(2006,2006,1,'Dr Rach Web 107',NULL,NULL,NULL,1,'2026-03-02 21:48:54','2026-03-02 21:48:54','a5e09270-161d-49d2-9222-db6372da5a74'),
(2020,2020,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is an advanced injectable treatment developed in Italy, designed to improve skin quality in the delicate under-eye area. Its patented combination of hyaluronic acid and amino acids supports collagen and elastin, helping to improve brightness, texture, and firmness without adding volume. This makes it ideal for patients seeking subtle, natural-looking improvement in skin quality.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers can often be challenging in this area because they are designed to replace volume, when volume is not always the main concern. For many patients, the issue is more about skin quality than structural loss. Adding volume to delicate under-eye tissue can increase the risk of puffiness, product visibility, or an unnatural look. Sunekos Performa takes a different approach by focusing on improving the quality and strength of the skin itself.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[3957],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[3956],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-02 21:54:33','2026-04-20 19:18:24','df13dab5-602f-4fd9-b559-2276af02b2fe'),
(2034,2034,1,'Dr Rach Web 110',NULL,NULL,NULL,1,'2026-03-02 21:58:05','2026-03-02 21:58:05','3685e835-f268-4edf-8a14-ac5ab7e3e226'),
(2036,2036,1,'DSC02593',NULL,NULL,NULL,1,'2026-03-02 21:59:05','2026-03-02 21:59:05','b7900ff6-6cd7-4a36-b507-912ff300f328'),
(2061,2061,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-02 22:03:47','2026-03-13 13:18:52','0f6a08ed-282e-494a-8c0e-7bff608ab9e7'),
(2064,2064,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Anti-Wrinkle Injections?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Every face is different, and each anti-wrinkle treatment should reflect that. This section explains who may benefit most, and how treatment is tailored to each individual patient who walks through my door.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates Include Those Who:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Are experiencing visible signs of ageing</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Want prevention, not just correction</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Are seeking natural-looking results</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Value medical expertise</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Are in good general health</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are not pregnant, breastfeeding, or taking certain medications that may interfere with treatment - all of which we discuss during your consultation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Have realistic expectations</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Anti-wrinkle injections are designed to soften expression lines rather than change the overall structure of the face. Other concerns, such as skin laxity or volume loss, are often better treated with alternative or complementary options (such as dermal filler, bio-stimulators like JULAINE™ or microneedling). This can all be discussed during your consultation.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-02 22:03:47','2026-03-02 22:03:47','8c7ede82-98f3-4ddb-a009-3f080da7bbb9'),
(2065,2065,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your Questions Answered\"}',1,'2026-03-02 22:03:47','2026-03-02 22:03:47','abdf4884-00b1-45d0-b6f0-e6e1fd54e0f8'),
(2076,2076,1,'Q: Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-02 22:03:48','2026-03-02 22:03:48','c330e44e-4454-4e75-b949-6fd03b32b483'),
(2080,2080,1,'What Are Anti-Wrinkle Injections?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Anti-Wrinkle Injections?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections are a popular, non-surgical treatment used to soften fine lines and wrinkles caused by facial movement. They work by gently relaxing the muscles underneath the skin, reducing repeated movement so lines appear smoother. Treatment is quick, minimally invasive, and does not require surgery or downtime. Most patients return to normal activities immediately after treatment.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Quote/Testimonial Style Text:</strong> \\\"Every time you frown, squint, or raise your eyebrows, specific facial muscles contract and crease the skin above them. Over time, those repeated movements cause lines to linger - even when your face is at rest. This can leave you looking more tired, tense, or cross than you actually feel.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections work by gently relaxing the muscles that are responsible for these expression lines. When those muscles are less active, the skin above them has a chance to smooth and recover, leaving you looking fresher, more relaxed, and more like yourself again.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is not about freezing your face. It is about balance and precision - softening overactive muscles while keeping natural movement and expression. You will still look like you, just brighter and more refreshed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Before treatment, I take time to carefully assess how your face moves, where lines form, and how strong your different muscles are. This allows me to tailor treatment specifically to you, rather than taking a one-size-fits-all approach.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Many of my Wirral patients choose to combine anti-wrinkle injections with treatments that improve skin quality and collagen support, such as polynucleotides, Profhilo®, and the advanced biostimulator JULAINE™. This collaborative approach supports both muscle relaxation and skin strength and collagen, helping results look natural, subtle, and well-balanced.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> - Dr Rachel Sinton, Medical Aesthetics Doctor &amp; GP, Wirral</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Quote/Testimonial Style Text:</strong> \\\"I have been performing anti-wrinkle treatments for many years, and what I love most is seeing the confidence grow in my patients. It is never just about the wrinkles - it is about helping you feel like yourself again.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What sets my clinic apart is my medical-first approach.</strong> I am a GMC-registered doctor and a practising GP based here on the Wirral. I hold a BSc (Hons) in Genetics and completed my medical degree through Graduate Entry Medicine, giving me a strong scientific foundation and a deep understanding of how these treatments work.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before every treatment, I carry out a thorough medical and facial assessment to understand how your face moves and where treatment will be most effective. This allows me to create a personalised plan tailored to you - because anti-wrinkle treatment should never be one-size-fits-all.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Here is something most clinics do not do:</strong> I change the needle between treatment areas to reduce tissue trauma, minimise bruising, and ensure the sharpest, most precise delivery each time.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A complimentary 2-week follow-up assessment is included in your treatment. If any areas need fine-tuning - perhaps one brow sits slightly higher, or you would like a little more softening - adjustments can be made at no additional charge. </span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is where good results become exceptional results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">My goal is simple: to help you look as vibrant and refreshed as you feel, using medical-grade treatments delivered with precision, care, and absolute honesty.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> - Dr Rachel Sinton, Medical Aesthetics Doctor &amp; GP, Wirral</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"Quote: \\\"I was nervous about looking \'done\' but the results are so natural. My husband said I looked really well-rested, he had no idea I\'d had anything done! The consultation was thorough, the treatment was quick, and the follow-up appointment to check everything was perfect. I\'ll definitely be returning.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah M., West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 22:05:29','2026-03-02 22:05:29','514d03e6-1c76-4869-92c9-6c17435a07f2'),
(2341,2341,1,'Dr Rach Web 38',NULL,NULL,NULL,1,'2026-03-02 22:53:00','2026-03-02 22:53:00','aee23a28-6afa-40da-87fc-e15b6abc003d'),
(2342,2342,1,'Dr Rach Web 43',NULL,NULL,NULL,1,'2026-03-02 22:53:00','2026-03-02 22:53:00','e437b673-a26d-475f-8461-e4237757a7c1'),
(2343,2343,1,'Dr Rach Web 55',NULL,NULL,NULL,1,'2026-03-02 22:53:01','2026-03-02 22:53:01','fe468e8d-c564-4e46-bc57-a73c31ab7147'),
(2578,2578,1,'Dr Rach Web 38',NULL,NULL,NULL,1,'2026-03-02 23:47:22','2026-03-02 23:47:22','c6104d34-a2e3-49ca-8e77-7c6582a4ad38'),
(2579,2579,1,'Dr Rach Web 43',NULL,NULL,NULL,1,'2026-03-02 23:47:22','2026-03-02 23:47:22','5eee9993-f838-4a54-8d6a-fc5f028b926a'),
(2580,2580,1,'Dr Rach Web 55',NULL,NULL,NULL,1,'2026-03-02 23:47:22','2026-03-02 23:47:22','284952fa-d173-4c0d-8b1c-0a8f130329d3'),
(2581,2581,1,'DSC04503',NULL,NULL,NULL,1,'2026-03-02 23:48:07','2026-03-02 23:48:07','6667fc42-d09f-4681-b159-90b30da48fc9'),
(2582,2582,1,'DSC04614',NULL,NULL,NULL,1,'2026-03-02 23:48:07','2026-03-02 23:48:07','9c27ac5b-d094-4307-b32a-3ccf72b05f45'),
(2583,2583,1,'DSC04657',NULL,NULL,NULL,1,'2026-03-02 23:48:07','2026-03-02 23:48:07','125210a4-f39e-4181-8816-ae3b2ec36b6f'),
(2698,2698,1,'DSC03184',NULL,NULL,NULL,1,'2026-03-03 00:06:55','2026-03-03 00:06:55','cda40870-5548-4f3d-9a5f-94a5db947916'),
(2711,2711,1,'DSC03248',NULL,NULL,NULL,1,'2026-03-03 00:12:08','2026-03-03 00:12:08','d5716556-83b1-4c97-80bc-3f58348cdd10'),
(2712,2712,1,'DSC03641',NULL,NULL,NULL,1,'2026-03-03 00:12:18','2026-03-03 00:12:18','b240136e-4830-4624-880f-d5663ed202fa'),
(2905,2905,1,'Treatments',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:56:33','2026-03-03 07:56:48','af56f165-5fe1-440c-ba2a-e44a5a23e098'),
(2906,2906,1,'Cryotherapy','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:58:26','541a233e-a8e4-4921-8460-48ca47e38965'),
(2907,2907,1,'Jalupro Young Eye','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:24','8162066f-b4a4-4a02-b9db-de9d5b8ca845'),
(2908,2908,1,'Skin Consultation','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:58:48','ff8a3abe-8df9-4247-9bc5-39a8fe374ab6'),
(2909,2909,1,'Sunekos','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-16 21:47:56','8e7e6370-f9dd-448d-ba9e-f6e42644a2ed'),
(2910,2910,1,'JULÄINE™ Bio-Stimulator','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:26','0155b6c7-0d7e-429a-8f84-a7793a71fbc7'),
(2911,2911,1,'Chemical Peels','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:04','97fb4b51-4399-4761-b01a-ab6c8bda469d'),
(2912,2912,1,'Microneedling','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:33','707ab9e0-ec78-434b-998e-e894412fefb7'),
(2913,2913,1,'Skin Boosters','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:40','3e3cac24-233b-4553-a63a-2a34b3103232'),
(2914,2914,1,'Polynucleotides','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:20','54c2cf20-d99b-428f-a5d1-97db998bd7b2'),
(2915,2915,1,'Dermal Fillers','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:59:11','880bbde5-31e0-4233-9fc3-b67121b6bb37'),
(3047,3047,1,NULL,'__temp_iidpdaivqfpgctixiebrnbbyfiaxdmpfntbg',NULL,'{\"209bc342-909a-4162-b9dc-50fad3dd2f69\":false}',1,'2026-03-03 08:49:28','2026-03-03 08:49:28','1e7c18de-bea0-406d-8a38-94ab9a0e2788'),
(3086,3086,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[5070]}',1,'2026-03-03 08:56:36','2026-04-03 11:27:01','1a4a592b-1a4d-458a-8227-3c343fcda78a'),
(3087,3087,1,'Neck Lines on the Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Neck Lines on the Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"Skin Conditions\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in clinic. Neck lines, sometimes called <i>tech neck</i> or <i>necklace lines</i>, are one of the most common yet most overlooked signs of ageing.</span></p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The good news is that neck lines respond very well to the right, doctor-led treatments. I take a gentle, layered approach to improve skin quality, firmness and texture safely over time, often combining in-clinic treatments with personalised homecare for longer-lasting results.</span></p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"ebd5cb\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 08:56:36','2026-03-03 08:57:53','aa3648cb-353f-4e2c-8b18-65714386ac34'),
(3088,3088,1,'The Four Types of Rosacea','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"The Four Types of Rosacea\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Erythematotelangiectatic Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This most common form is characterised by persistent central facial redness and visible blood vessels. Skin often feels sensitive, dry or reactive, and flushing episodes can last longer over time.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Papulopustular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often mistaken for acne, this type causes red bumps (papules) and pus-filled spots (pustules) on a background of redness. It commonly affects the cheeks, chin and forehead. Standard acne treatments can sometimes make it worse, which is why proper diagnosis matters.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Phymatous Rosacea (Rhinophyma)</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A less common but more advanced form, where the skin thickens, most often around the nose. The tissue becomes enlarged and uneven. Early medical management can help slow progression and improve skin quality.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Ocular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This affects the eyes, causing redness, dryness, irritation or a gritty sensation. It may occur alongside facial rosacea or on its own. If eye symptoms are present, I usually recommend coordinated care with your GP or an ophthalmologist to ensure safe, appropriate care</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5071],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-03-03 08:56:36','2026-03-19 22:43:23','bbf63916-023c-4da9-ae22-036036d89fec'),
(3089,3089,1,'Rosacea Condition','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Condition\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Persistent redness, flushing and visible blood vessels can affect how your skin looks and feels every day. At Aesthetics by Dr Rachel, I take a calm, doctor-led approach to rosacea, focusing on reducing inflammation, strengthening your skin barrier and managing triggers safely over time.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"color:hsl(203,34%,27%);\\\"><i>Rosacea: Symptoms and Causes</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n  Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (known as telangiectasia) and, in some patients, small red bumps that can be mistaken for acne.\\n\\nThe exact cause is not fully understood, but rosacea is thought to develop due to a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels within the skin.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n  Environmental triggers can then aggravate the condition, leading to flare-ups that may become more frequent over time if rosacea is not carefully managed. There is also increasing evidence that gut health and the skin microbiome may play a role in some patients. Digestive health and dietary factors can influence inflammation, which is why I take a holistic approach, considering lifestyle, skincare and medical treatment together when creating a personalised plan.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-03-03 08:56:36','2026-04-16 14:33:57','0a308710-8f59-473a-b911-d06b81c2b634'),
(3090,3090,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p>Rosacea flare-ups are often linked to a combination of environmental and lifestyle triggers. Identifying what affects your skin is one of the most important steps in managing rosacea long term. Common triggers include sun exposure, heat, alcohol, spicy foods and emotional stress. Changes in temperature, particularly moving between warm indoor environments and cold outdoor air, can also provoke flushing. Harsh skincare, certain medications or topical steroids, hormonal changes, and underlying gut or dietary factors may all play a role in some patients.</p><p> </p><p>Living on the Wirral can bring additional challenges for rosacea-prone skin. Coastal wind, salt air and rapidly changing weather can disrupt the skin barrier, making redness and sensitivity more difficult to control. When I create a treatment plan, I take these local factors into account, recommending appropriate daily SPF, barrier-supporting skincare such as personalised pHformula routines, and simple, practical adjustments to help keep your skin calm in our coastal climate.</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How I Treat Rosacea at Aesthetics by Dr Rachel</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n   There is no single cure for rosacea, but with the right approach, flare-ups can be reduced and your skin can become calmer and more resilient over time. I take a careful, doctor-led approach, combining targeted treatments with supportive skincare to address both the visible redness and the underlying inflammation.\\n\\nEvery plan starts with a thorough consultation. I take time to understand your skin, your triggers, your medical history and your current routine, so we can choose treatments that are safe, appropriate and realistic for you.\\n\\nFor many patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) range can make a real difference.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n  These treatments are designed specifically for sensitive, redness-prone skin, helping to calm inflammation, support skin renewal and strengthen the skin barrier without aggravating rosacea.\\n\\nDepending on your presentation, I may also recommend regenerative treatments such as polynucleotides, or intradermal botulinum toxin to help reduce flushing and improve overall skin stability. Where appropriate, I can refer you on for laser or IPL therapy, which can be very effective for reducing persistent redness and visible blood vessels.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-03-03 08:56:36','2026-04-16 14:33:57','f8bff3e6-a6e8-4ce4-aa7a-3176de6b9ad8'),
(3091,3091,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','df661ad8-abd0-4b77-a9e3-cd5bf5fc36f3'),
(3092,3092,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','f8bab622-18e6-4fe4-81ae-ce7b1e36025f'),
(3093,3093,1,'Frequently Asked Questions About Rosacea Condition','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Rosacea Condition\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about rosacea\"}',1,'2026-03-03 08:56:36','2026-04-16 14:33:57','a68b00f8-ac7f-4dc5-830e-8f2855d1c2c7'),
(3094,3094,1,'Q: Is rosacea treatment suitable for all skin types?','q-is-rosacea-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is rosacea treatment suitable for all skin types?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Rosacea can affect all skin types and tones, although it is more common in patients with lighter skin tones. During your consultation I assess your skin carefully, including sensitivity, pigmentation risk and medical history, so I can recommend the safest and most effective treatment approach for you.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','885fe7ae-3047-46d3-bf64-2f58d3e4ee17'),
(3095,3095,1,'Q: How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many treatment sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: This depends on the type and severity of your rosacea and how reactive your skin is. Most treatments work best as a course rather than a single session. Gentle resurfacing, polynucleotides or other regenerative treatments are usually planned over several appointments, with progress reviewed carefully each time. Many patients start to see meaningful improvement over a few months as inflammation settles and the skin barrier becomes stronger. Because rosacea can be unpredictable, improvement is not always perfectly linear, so we keep your plan flexible and adjust treatments as your skin responds.\\nI will outline a clear, personalised plan during your consultation so you know what to expect while still allowing us to adapt as your skin improves.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','1df2a5b1-891e-4f28-9996-3ecd1a0c15ad'),
(3096,3096,1,'Q: Is rosacea treatment painful?','q-is-rosacea-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is rosacea treatment painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients find rosacea treatments very tolerable. Gentle resurfacing treatments may cause mild warmth or stinging that settles quickly, and injections can feel like small pinpricks. I always adjust the treatment depth, technique and pace to keep you comfortable.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','b7d6070f-3085-41eb-b5c0-ec1272134615'),
(3097,3097,1,'Q: How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long is the recovery time?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Downtime is usually minimal, although it depends on the treatment and how sensitive your skin is. Gentle resurfacing treatments may cause mild redness or light flaking for a few days, and injections can leave small marks or occasional bruising that settles within a few days.\\n\\nMost patients return to normal activities the same day, but I usually recommend avoiding heat, alcohol and strenuous exercise for 24 hours.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','208c8b16-6c7d-450c-a6b0-d571cdf32d6c'),
(3098,3098,1,'Q: When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results, and how long do they last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Some patients notice early improvement after the first session, but rosacea treatments usually work gradually as inflammation settles and the skin barrier becomes stronger. \\nBecause rosacea is a chronic condition, ongoing maintenance and consistent homecare really are important to keep flare-ups under control and your skin calm for the long-term.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','b9a281e3-59c5-423c-9153-f1727f75f632'),
(3099,3099,1,'Q: Are there any side effects or risks?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are there any side effects or risks?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: All treatments carry some risk, and your safety is my number one priority. Complications are uncommon when treatment is carefully planned and performed by an experienced medical practitioner. Temporary redness, mild swelling, sensitivity or light flaking are the most common effects and usually settle within a few days.\\nDuring your consultation I will explain all potential risks and aftercare, so you feel confident and informed before proceeding with any treatments.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','a8904cdc-579e-4f77-8d02-fa424dc0f4b1'),
(3100,3100,1,'Q: Can I combine rosacea treatment with other treatments?','q-can-i-combine-rosacea-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine rosacea treatment with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely, and a combined approach often gives the best results. Different treatments improve different aspects of rosacea, from calming inflammation to strengthening the skin barrier. I can design a personalised, layered plan for you so treatments work together safely and your skin improves gradually over time.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','3c6fbd0b-9e70-4e65-a948-04b38c931224'),
(3101,3101,1,'Q: What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','q-what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: I am a practising GP with specialist training in aesthetic medicine, and patient safety is always my top priority. You will always see me personally, and I take time to understand your triggers, lifestyle and goals before recommending any treatments.\\nYou will never receive a one-size-fits-all protocol. Your plan is tailored to your skin, combining both effective in-clinic treatments and science-backed skincare. I am able to get to know your skin over time, review your progress regularly and adjust treatment as needed so your rosacea improves in a safe, gentle and sustainable way.\"}',1,'2026-03-03 08:56:36','2026-03-03 08:56:36','d3fdc3de-c1a6-466f-b08c-ad4c241d478b'),
(3102,3102,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-03 08:56:36','2026-04-20 19:05:23','d86b5c22-f4e4-4f17-8992-af7e7cf53930'),
(3116,3116,1,'Is rosacea treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, rosacea treatments can be adapted for all skin types, but they need to be chosen carefully. Rosacea-prone skin is often more sensitive and reactive, so I focus on gentle, barrier-supporting treatments that calm inflammation rather than overstimulating the skin. Your plan will always be based on your skin type, your rosacea subtype and how your skin is likely to respond.\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','5618d1fb-b364-40d8-a7b2-d866a2366506'),
(3117,3117,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This depends on how your rosacea presents and how reactive your skin is. Most patients benefit from a course of treatments rather than a one-off session, with treatments spaced a few weeks apart.\\n\\nRosacea is a long-term condition, so the focus is on control rather than cure. Once your skin is more stable, maintenance treatments and consistent homecare help keep flare-ups under control.\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','ad4d561b-aad7-4ecc-9744-b3e1511590e8'),
(3118,3118,1,'Is rosacea treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments are very manageable. You may feel some mild warmth, tingling or slight stinging, particularly with active treatments, but this usually settles quickly. I always work gently and adjust the treatment to suit your skin, especially as rosacea-prone skin can be more sensitive.\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','bc269e60-5c56-48e1-8c6b-ce5b85b3041e'),
(3119,3119,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is usually minimal. You may notice some temporary redness or sensitivity for a few hours to a couple of days, depending on the treatment. I will guide you on simple aftercare to help your skin recover quickly and comfortably.\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','bf2be10b-3fe7-4931-bc33-7656890e74cb'),
(3120,3120,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results develop gradually. Most patients notice their skin becoming calmer, less reactive and more even over a course of treatments.\\n\\nWith the right combination of treatments, skincare and trigger management, results can be long-lasting, but ongoing maintenance is usually needed to keep rosacea under control and prevent flare-ups returning.\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','6de567d2-a0ec-425d-b8b7-0c233de73c4e'),
(3121,3121,1,'Are there any side effects or risks?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"All treatments carry some level of risk, but these are minimised with careful assessment and appropriate treatment selection. The most common side effects are temporary redness, sensitivity or mild irritation. Because rosacea-prone skin can be more reactive, I always take a cautious approach and avoid overly aggressive treatments that could worsen inflammation.\\n\\nBefore any treatment, I will talk you through the potential risks and side effects in full so you feel informed and comfortable proceeding. You will have plenty of opportunity to ask questions, and I am always available if you have any concerns after your treatment.\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','b08af48d-2e34-49c7-be6d-b98f9540ade3'),
(3122,3122,1,'Can I combine rosacea treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine rosacea treatment with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, but this needs to be done carefully. In many cases, combining <a href=\\\"https://hermeswp.xyz/rachel/web/treatments\\\">treatments</a> gives the best results, as long as your skin barrier is stable. I usually focus on calming and strengthening the skin first, then gradually introduce other treatments if appropriate, so results remain natural and your skin is not overwhelmed. Skincare is often used alongside medical treatment from your GP, such as prescription creams or tablets, to help support the skin barrier and improve overall control.</p>\"}',1,'2026-03-03 09:03:12','2026-04-16 14:33:57','1ff367dd-a5b0-46a1-b2af-e6503e752539'),
(3123,3123,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','6f167037-055c-4169-af66-a632298b779d'),
(3124,3124,1,'Neck Lines on the Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Neck Lines on the Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"Skin Conditions\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in clinic. Neck lines, sometimes called <i>tech neck</i> or <i>necklace lines</i>, are one of the most common yet most overlooked signs of ageing.</span></p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The good news is that neck lines respond very well to the right, doctor-led treatments. I take a gentle, layered approach to improve skin quality, firmness and texture safely over time, often combining in-clinic treatments with personalised homecare for longer-lasting results.</span></p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"ebd5cb\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','4ea8f557-bece-4fad-9909-182f0d30bdbb'),
(3125,3125,1,'The Four Types of Rosacea','what-is-treatment-3',NULL,'{\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Neck Lines: What They Are and Why They Appear\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines are the horizontal creases and wrinkles that form across the front and sides of the neck. You may know them as <i>necklace lines</i>, because they sit in the same place a necklace would. Some people also notice vertical bands caused by the platysma muscle tightening beneath the skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The neck is one of the thinnest and most exposed areas of the body. It has fewer oil glands than the face, less fat cushioning underneath, and it is moving constantly throughout the day. Because of this, the neck often shows ageing earlier than expected.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">It is very common to focus skincare and treatments only on the face, but for natural results the neck should never be an afterthought. When the neck is included in a gentle, layered plan alongside the face, supported by consistent homecare, the whole area ages in harmony and results stay subtle and natural.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Ideal Candidates Include Those With:</strong></span></h4><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">✓ <span>\\t</span>Horizontal neck lines or creases that remain visible at rest</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">✓ <span>\\t</span>Loose, crepey skin on the neck that has lost its firmness</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">✓ <span>\\t</span>Visible vertical bands when the neck is tensed</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">✓ <span>\\t</span>A mismatch between a well-maintained face and an ageing neck</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">✓ <span>\\t</span>Feeling self-conscious in photos or open necklines</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">✓ <span>\\t</span>Early signs of <i>tech neck</i> from frequent phone or screen use</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"What Causes Neck Lines?\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slows. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Because the neck is thinner and more exposed than the face, it often shows these changes earlier, especially if it has been unintentionally neglected in skincare routines.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>•   </strong><span><strong>\\t</strong></span><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">•   <span>\\t</span><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">•   <span>\\t</span><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">•   <span>\\t</span><strong>Genetics</strong>, which influence how early and how deeply lines form</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">•   <span>\\t</span><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">•   <span>\\t</span><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">•   <span>\\t</span><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2583]}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','9350327f-378d-4c1e-972a-06ce8afe27ce'),
(3126,3126,1,'Types of Neck Lines','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Not all neck lines are the same, and understanding which type you have helps me choose the safest and most effective treatment approach for you.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Horizontal Necklace Lines</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">These are the lines that run across the neck, often sitting in natural skin folds. They may start as fine surface lines and gradually deepen with age. In many patients, they are increasingly linked to prolonged device use, where the repeated downward tilt of the head creases the skin in the same place for hours each day</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Vertical Neck Bands (Platysmal Bands)</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">These are the cord-like bands that run from the jawline towards the collarbone. They often become more visible when the neck is tensed. They are caused by tightening of the platysma muscle beneath the skin, combined with natural loss of skin elasticity over time.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Crepey Neck Skin</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">Some patients notice thinning, papery or loose skin rather than distinct lines. This usually reflects collagen and elastin loss, sun damage and reduced skin hydration.</span></p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck has very few oil glands, so it becomes dry more easily, which makes texture changes more noticeable. This is common after menopause but can appear earlier with sun exposure, weight changes or smoking history.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Tech Neck</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">A newer term describing neck lines linked to frequent screen use. Looking down at phones, tablets or laptops for long periods places repeated folds in the same part of the neck. Over time, these lines can become permanent. I now see tech neck in patients in their twenties and thirties who are otherwise noticing very few signs of ageing.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2034],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','217a9c36-1cc8-4848-9285-dbd5f17eaa37'),
(3127,3127,1,'How We Treat Neck Lines at Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"How We Treat Neck Lines\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"How We Treat Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The neck needs a different approach from the face. The skin is thinner, movement is constant, and treatments that work well on facial wrinkles do not always translate directly. I tailor every neck treatment plan based on the type of lines you have, the quality of your skin, your medical history, and the results you are hoping to see.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">My aim is always safe, natural improvement that stays balanced with your face. I usually take a gentle, layered approach, improving skin quality first and then addressing deeper lines if needed. Many patients include neck treatments within a longer-term Radiance Collection programme so results build gradually and harmoniously.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h4><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>JULAINE™</strong></span></h4><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">JULÄINE™ is one of my favourite treatments for neck lines because it works by stimulating your own collagen production over time. Rather than simply filling a crease, it encourages the skin to rebuild structure from within, improving firmness, elasticity and overall skin quality. This is especially helpful on the neck, where the skin is thin and often needs gentle, regenerative support rather than heavy treatment. Results develop gradually over several months and can look very natural, particularly when combined with good homecare.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Profhilo®</strong></span></h4><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Profhilo® is one of my favourite treatments for neck rejuvenation because it improves skin quality rather than adding volume. It contains a high concentration of hyaluronic acid that spreads gently like honey beneath the skin, deeply hydrating and stimulating collagen and elastin production. This helps improve firmness, texture and elasticity in the delicate neck area without changing the shape of your neck. I usually start with a course of 2 treatments 4 weeks apart, followed by maintenance sessions every 6-9 months.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Other skin boosters can also be very helpful depending on your skin type and concerns. For example, Hydro Deluxe combines hyaluronic acid with added amino acids, which support collagen formation, and small amounts of calcium hydroxyapatite, which provides gentle collagen stimulation over time. These ingredients work together to strengthen thin neck skin, improve elasticity and enhance overall skin quality.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Polynucleotides</strong></span></h4><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are regenerative treatments that work at a cellular level to repair and strengthen damaged skin. They are made from highly purified DNA fragments that support your skin’s natural healing processes, improve collagen production and help calm inflammation. This makes them particularly helpful for delicate neck skin that has become thin, crepey or sensitive. Over a course of treatments, the skin becomes stronger, smoother and more resilient. Results develop gradually over several weeks as the skin repairs itself from within.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Microneedling</strong></span></h4><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Microneedling creates tiny, controlled micro-injuries in the skin, which trigger your body’s natural healing response and stimulate new collagen production. On the neck, this can gradually improve texture, soften fine lines and help tighten lax, crepey skin over a course of treatments. I often combine microneedling with carefully selected active serums, such as NCTF, polynucleotides or other powerful regenerative ingredients like exosomes, so they are delivered deeper into the skin for better results. Because neck skin is delicate, treatments are always tailored carefully to keep things safe and comfortable.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Medical-Grade Skincare</strong></span></h4><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every treatment plan I design includes a personalised skincare routine that extends to the neck and décolletage. A lot of the real work happens at home. I often compare it to brushing your teeth between dental visits, in-clinic treatments help, but daily care is what truly protects and maintains your results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I usually recommend a tailored pHformula routine tailored to your skin, often including active vitamin A, antioxidant protection such as vitamin C, barrier-repair products and daily broad-spectrum SPF. These ingredients support collagen, improve skin quality and help prevent new neck lines from forming.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The neck is one of the most neglected areas in most skincare routines, and simply extending your products down from the face can make a noticeable difference over time.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','35b7c691-82b1-44a2-ba84-6f81bdd67813'),
(3128,3128,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','b0350008-6145-4344-a4c1-5770819824f0'),
(3129,3129,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','5817d407-2db7-424e-acd8-4d731a5fbf26'),
(3130,3130,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about rosacea treatment.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','123f1a2f-684b-45bd-ba49-c999e5def606'),
(3131,3131,1,'Q: Is neck line treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is neck line treatment suitable for all skin types?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, I treat all skin types and tones. During your consultation I assess your neck skin carefully, including pigmentation risk, sensitivity and healing capacity, so I can recommend the safest and most effective approach for you. Treatments are always tailored and adjusted gradually to keep results natural and safe.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','35b549d9-ece5-4aa6-80b2-f29d75d1f1ef'),
(3132,3132,1,'Q: How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many treatment sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: This depends on the severity of your neck lines, your skin quality and the treatments we choose. Neck lines improve best with a course of treatments rather than a one-off.\\n\\nAs a general guide:\\n• Profhilo® or similar skin boosters: usually start with 2-3 sessions spaced four weeks apart\\n • Polynucleotides: typically a course of 3-4 treatments spaced 2-4 weeks apart\\n • Microneedling: often 3 to 6 sessions spaced 4-6 weeks apart\\n • Biostimulators such as JULÄINE™: 3-4 sessions spaced 4-6 weeks apart with 1 maintenance session every 18-24 months\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','80e5f89a-b77f-4a09-ada1-5415f573c3ed'),
(3133,3133,1,'Q: Is the neck line treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the neck line treatment painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients find neck treatments very manageable. Injections feel like brief pinpricks, and I can use numbing cream where appropriate. Microneedling can feel prickly or warm, but it is usually well-tolerated. Your comfort is always a priority, and I adjust the technique and pace to suit you.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','0173098d-c0ae-4e99-acdf-6b7a184fd31e'),
(3134,3134,1,'Q: How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long is the recovery time?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most neck treatments involve very little downtime. You may notice some redness, swelling or small marks for 24-48 hours after injections, and microneedling can leave the skin pink for a few days. Occasional bruising is possible. Most patients return to normal activities the same day, although I usually recommend avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','0427be2a-1b23-4c20-8694-b92372e1b626'),
(3135,3135,1,'Q: When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results, and how long do they last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most neck treatments work gradually as collagen production increases and skin quality improves. You may notice early changes within a few weeks, with continued improvement over several months. Results are not instant, but they are worth the wait because they look natural and long lasting. Maintenance treatments help keep your neck looking its best over time.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','b4b8e8bd-a13e-4922-94ce-78da3cd9c5a4'),
(3136,3136,1,'Q: Can I treat tech neck even if I am in my 20s or 30s?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I treat tech neck even if I am in my 20s or 30s?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A:  Yes, absolutely. I see tech neck more and more in younger patients because of long hours on phones and laptops. Starting early with gentle treatments, good posture habits and consistent skincare can slow the progression of neck lines and help prevent them becoming deeper over time. Prevention is always easier, and often simpler, than correction later.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','52825246-6e74-4fe9-8e7b-339bef78c139'),
(3137,3137,1,'Q: Can I combine neck line treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine neck line treatment with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, and combining treatments often gives the best results. Different treatments improve different layers of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation I assess your face and neck together and design a personalised plan that keeps everything balanced, often combining treatments gradually as part of a Radiance Collection programme.\"}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','30779057-5c4a-4cc9-981b-0f0795359e56'),
(3138,3138,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-03 09:03:13','2026-03-03 09:03:13','aa77f6a0-14a9-40ff-9a4b-6f2635bc3ee0'),
(3317,3317,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-03 10:24:16','2026-03-03 10:24:16','16b06747-5f5d-48cb-a3ca-214901dc2d20'),
(3318,3318,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about neck line treatment.\"}',1,'2026-03-03 10:24:16','2026-03-03 10:24:16','71c5dfac-c675-4109-ad16-3618bea2ffc6'),
(3333,3333,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-03 10:25:22','2026-03-03 10:25:22','8cc67a6f-d8b5-4a41-b8da-40c066a51856'),
(3334,3334,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about neck lines\"}',1,'2026-03-03 10:25:22','2026-03-03 10:25:22','3176e030-5cba-4eab-98ea-ab592ba1fbd5'),
(3507,3507,1,NULL,'__temp_daxohvziwrsravpoaohnmazqgoykpbkqrozc',NULL,NULL,1,'2026-03-03 11:04:09','2026-03-03 11:04:09','227614b3-7ded-4f73-815f-c84dcea998e4'),
(3541,3541,1,'Rosacea','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-16 22:29:01','c31e5ec6-5e3d-49dc-aa36-ac765e03c161'),
(3542,3542,1,'Ageing Skin','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:08:40','d305ce78-8f74-43a1-9159-c059134d24b5'),
(3543,3543,1,'Dark Circles Under the Eyes','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:08:50','5862fda2-2aae-4869-90be-d633c48d5eac'),
(3544,3544,1,'Crepey Skin','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:08:48','a061b94b-7a9a-4582-a883-04e5fdbcb18e'),
(3545,3545,1,'Hyperpigmentation','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:08:52','835e5485-06c2-49de-92b8-a4bdc3c2b2a5'),
(3546,3546,1,'Acne Scarring','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:08:44','8ba3bc5d-8546-4798-8875-223d2ef22179'),
(3547,3547,1,'Upper Lips Lines','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:08:24','0095e447-7855-42b1-85bd-0b02d7ee9b55'),
(3548,3548,1,'Lines and Wrinkles','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:09:06','7c75c70f-46d9-41bb-b582-8980df38a6a2'),
(3549,3549,1,'Rosacea','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 11:08:11','2026-03-03 11:09:10','6fb87753-7881-424e-99eb-8ccfe9cdec62'),
(3552,3552,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:30:25','2026-03-13 11:30:25','f1a44322-921e-4085-997b-c9db18c58c17'),
(3553,3553,1,'Types of Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem Ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Symptoms and Causes\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Horizontal Necklace Lines</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">These are the lines that run across the neck, often sitting in natural skin folds. They may start as fine surface lines and gradually deepen with age. In many patients, they are increasingly linked to prolonged device use, where the repeated downward tilt of the head creases the skin in the same place for hours each day</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Vertical Neck Bands (Platysmal Bands)</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">These are the cord-like bands that run from the jawline towards the collarbone. They often become more visible when the neck is tensed. They are caused by tightening of the platysma muscle beneath the skin, combined with natural loss of skin elasticity over time.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Crepey Neck Skin</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">Some patients notice thinning, papery or loose skin rather than distinct lines. This usually reflects collagen and elastin loss, sun damage and reduced skin hydration.</span></p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck has very few oil glands, so it becomes dry more easily, which makes texture changes more noticeable. This is common after menopause but can appear earlier with sun exposure, weight changes or smoking history.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#1a1a2e;\\\"><strong>Tech Neck</strong></span></h4><p><span style=\\\"background-color:transparent;color:#333333;\\\">A newer term describing neck lines linked to frequent screen use. Looking down at phones, tablets or laptops for long periods places repeated folds in the same part of the neck. Over time, these lines can become permanent. I now see tech neck in patients in their twenties and thirties who are otherwise noticing very few signs of ageing.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2034],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-13 11:30:26','2026-03-13 11:30:26','2c6e7f44-ebcf-4f15-aee9-3653bade657a'),
(3555,3555,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:31:02','2026-03-13 11:31:02','04d87448-af57-4fdb-b8ef-880407093a3f'),
(3558,3558,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:34:18','2026-03-13 11:34:18','3debac08-7522-4a72-844b-0f4022a04fe7'),
(3559,3559,1,'Types of Neck Lines','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Condition 2 : Symptoms and Causes\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p><span><strong>Fine lines and wrinkles that have begun to appear on the face and neck</strong></span></p><p><span><strong>Uneven skin tone or texture, including hyperpigmentation and age spots</strong></span></p><p><span><strong>Loss of skin elasticity and firmness, particularly around the jawline and neck</strong></span></p><p><span><strong>Acne scars or other textural irregularities that affect skin smoothness</strong></span></p><p><span><strong>Dull or lackluster complexion that needs revitalization</strong></span></p><p><span><strong>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</strong></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:34:18','2026-03-13 11:34:18','4538e16c-c21b-4497-be5f-712f5f536439'),
(3562,3562,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:35:42','2026-03-13 11:35:42','bc9a038d-99e8-4c6d-a620-2f102a457312'),
(3563,3563,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>Condition 2 : Symptoms and Causes</h2><p> </p><p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Fine lines and wrinkles that have begun to appear on the face and neck</strong></span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Uneven skin tone or texture, including hyperpigmentation and age spots</strong></span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Loss of skin elasticity and firmness, particularly around the jawline and neck</strong></span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Acne scars or other textural irregularities that affect skin smoothness</strong></span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Dull or lackluster complexion that needs revitalization</strong></span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</strong></span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:35:42','2026-03-13 11:35:42','3a462fe7-8d52-4919-8496-bc3b7083fa7f'),
(3566,3566,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:36:45','2026-03-13 11:36:45','d346f1d8-e015-4b3d-b8cf-9c74159b6338'),
(3567,3567,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><i>Condition 2 : Symptoms and Causes</i></h2><p> </p><p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Fine lines and wrinkles that have begun to appear on the face and neck</strong></span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Uneven skin tone or texture, including hyperpigmentation and age spots</strong></span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Loss of skin elasticity and firmness, particularly around the jawline and neck</strong></span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Acne scars or other textural irregularities that affect skin smoothness</strong></span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Dull or lackluster complexion that needs revitalization</strong></span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span><strong>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</strong></span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:36:45','2026-03-13 11:36:45','532f5578-a758-42fc-af8a-dca9b3be16bd'),
(3571,3571,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:39:15','2026-03-13 11:39:15','e2b79521-a6ac-4ecd-bb81-3c054fe51f65'),
(3572,3572,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><i>Condition 2 : Symptoms and Causes</i></h2><p> </p><p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:39:15','2026-03-13 11:39:15','45e1e39f-2ffd-4239-bc78-1c9dcc469cbe'),
(3575,3575,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:39:40','2026-03-13 11:39:40','cc5ffafc-6e4a-4318-b8ef-0e7c435e92b4'),
(3576,3576,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><i>Condition 2 : Symptoms and Causes</i></h2><p> </p><p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:39:40','2026-03-13 11:39:40','a3f2d337-ac79-4487-aeb0-4e9ef2a38837'),
(3579,3579,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:40:37','2026-03-13 11:40:37','888c6f51-a401-4f0b-be9f-229692318ccd'),
(3580,3580,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><i>Condition 2 : Symptoms and Causes</i></h2><p> </p><p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:40:37','2026-03-13 11:40:37','d5507153-da2c-4c5c-8992-26dab7a61cee'),
(3583,3583,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:42:34','2026-03-13 11:42:34','0f5720ee-f3af-4d9a-bac4-247bc5f6781c'),
(3584,3584,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,100%);\\\"><i><span>Condition 2 : Symptoms and Causes</span></i></span></h2><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-13 11:42:34','2026-03-13 11:42:34','0bd56a6c-9df6-4c8f-b918-6a2e3cb02e2f'),
(3587,3587,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:43:07','2026-03-13 11:43:07','25e8a762-485a-4204-b1cc-54d68dc3d558'),
(3588,3588,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,100%);\\\"><i><span>Condition 2 : Symptoms and Causes</span></i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-13 11:43:07','2026-03-13 11:43:07','9249f998-c496-4bd0-b131-77683175a192'),
(3591,3591,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:43:37','2026-03-13 11:43:37','273730af-0358-4dc8-820a-8c6ddfa304c1'),
(3592,3592,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,100%);\\\"><i><span>Condition 2 : Symptoms and Causes</span></i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2698],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-13 11:43:37','2026-03-13 11:43:37','a87a46a7-d2c0-4e7f-bea9-2ef361ea8c34'),
(3595,3595,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:46:15','2026-03-13 11:46:15','b583d469-9d9f-438b-9d48-a2434a0dbc7c'),
(3596,3596,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Condition 2 : Symptoms and Causes\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></p><p> </p><p><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Understanding Condition 2: What Is It?\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></p><p> </p><p><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:46:15','2026-03-13 11:46:15','c15d23a0-5ff2-4d52-a430-88559b1422ec'),
(3598,3598,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:46:36','2026-03-13 11:46:36','231112c4-2004-4f21-b121-6d5589226cd1'),
(3601,3601,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:49:10','2026-03-13 11:49:10','b06cb3a0-6be1-4f79-8a51-cea8a7f4619e'),
(3602,3602,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></p><p> </p><p><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></p><p> </p><p><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:49:10','2026-03-13 11:49:10','8550b59c-8f98-4807-99e6-9572e1aada9a'),
(3605,3605,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:50:00','2026-03-13 11:50:00','2865a26d-c26b-4946-9744-3741ea2fc230'),
(3606,3606,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:50:00','2026-03-13 11:50:00','9c46c785-d89a-473f-a9c2-a6b0016b3253'),
(3609,3609,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:50:32','2026-03-13 11:50:32','c1e70eb5-5176-4e10-9aa3-9a6596510ff8'),
(3610,3610,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:50:32','2026-03-13 11:50:32','74d72dc1-2e09-4111-ab27-622a89837f61'),
(3613,3613,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:51:33','2026-03-13 11:51:33','5636c94b-f778-4164-b11c-398a0982a2a0'),
(3614,3614,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><p> </p><p><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></p><p> </p><h4><span>Ideal Candidates Include Those With:</span></h4><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:51:33','2026-03-13 11:51:33','ac191381-1310-4ddf-b687-0501f7cba656'),
(3617,3617,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:52:02','2026-03-13 11:52:02','d3c5f391-bcc1-46af-9b70-b73a371caccd'),
(3618,3618,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics and expressions.</span></span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:52:02','2026-03-13 11:52:02','7044215d-f738-4983-be2f-55e9650b2c37'),
(3621,3621,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:52:28','2026-03-13 11:52:28','4c478229-8081-434a-9a39-91cbbb183e9a'),
(3622,3622,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics.</span></span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-13 11:52:28','2026-03-13 11:52:28','09c9e049-9747-4fea-9105-ede6c27e5f6a'),
(3625,3625,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:53:11','2026-03-13 11:53:11','9693e2a0-cb6c-46dc-8393-74c350cc65dc'),
(3626,3626,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:53:11','2026-03-13 11:53:11','86a9240f-2a95-476d-843b-75c100dd6e0d'),
(3629,3629,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:55:42','2026-03-13 11:55:42','ca8a635b-2545-4f80-8485-b66bac0d7eec'),
(3630,3630,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:55:42','2026-03-13 11:55:42','845a4210-231e-49bb-932e-ac792115c66a'),
(3633,3633,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:55:57','2026-03-13 11:55:57','050d0964-0795-46ba-8ef2-cd633fcdd8ce'),
(3634,3634,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:55:57','2026-03-13 11:55:57','4511b370-05f5-45d8-8ae3-02317e075e4e'),
(3637,3637,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 11:58:18','2026-03-13 11:58:18','631de8b9-88a1-4bff-a37e-a0902c1f1b67'),
(3638,3638,1,'Condition 2 : Symptoms and Causes','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><h2> </h2><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Understanding Condition 2: What Is It?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Condition 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>The treatment works by stimulating your skin\'s natural collagen production and cellular renewal processes. Through carefully controlled techniques, we can target specific areas of concern while maintaining the natural contours and expressions that make you uniquely you. This approach ensures results that enhance rather than alter your appearance.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-13 11:58:18','2026-03-13 11:58:18','11104d58-c6bc-4c33-9991-7e386195a141'),
(3649,3649,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','5ccf088a-09fb-46eb-bc1e-dafc4d37ae24'),
(3650,3650,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about neck lines\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','e99bc2a1-21f5-4384-beff-20a545e206fc'),
(3651,3651,1,'Is neck line treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is neck line treatment suitable for all skin types?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, I treat all skin types and tones. During your consultation I assess your neck skin carefully, including pigmentation risk, sensitivity and healing capacity, so I can recommend the safest and most effective approach for you. Treatments are always tailored and adjusted gradually to keep results natural and safe.\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','87920980-4898-4508-9a8b-1fc75146eb37'),
(3652,3652,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"This depends on the severity of your neck lines, your skin quality and the treatments we choose. Neck lines improve best with a course of treatments rather than a one-off.\\n\\nAs a general guide:\\n• Profhilo® or similar skin boosters: usually start with 2-3 sessions spaced four weeks apart\\n • Polynucleotides: typically a course of 3-4 treatments spaced 2-4 weeks apart\\n • Microneedling: often 3 to 6 sessions spaced 4-6 weeks apart\\n • Biostimulators such as JULÄINE™: 3-4 sessions spaced 4-6 weeks apart with 1 maintenance session every 18-24 months\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','60f19b22-cba1-46b5-9b40-b45d075522d8'),
(3653,3653,1,'Is the neck line treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the neck line treatment painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find neck treatments very manageable. Injections feel like brief pinpricks, and I can use numbing cream where appropriate. Microneedling can feel prickly or warm, but it is usually well-tolerated. Your comfort is always a priority, and I adjust the technique and pace to suit you.\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','86e9c9af-28e5-481a-8e93-d678e4d314b0'),
(3654,3654,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most neck treatments involve very little downtime. You may notice some redness, swelling or small marks for 24-48 hours after injections, and microneedling can leave the skin pink for a few days. Occasional bruising is possible. Most patients return to normal activities the same day, although I usually recommend avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','4f0be1c1-9b10-4c7b-a3bb-35eb4ceaef57'),
(3655,3655,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most neck treatments work gradually as collagen production increases and skin quality improves. You may notice early changes within a few weeks, with continued improvement over several months. Results are not instant, but they are worth the wait because they look natural and long lasting. Maintenance treatments help keep your neck looking its best over time.\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','6860a59c-09ba-4e27-ae36-5eb9a190686a'),
(3656,3656,1,'Can I treat tech neck even if I am in my 20s or 30s?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat tech neck even if I am in my 20s or 30s?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, absolutely. I see tech neck more and more in younger patients because of long hours on phones and laptops. Starting early with gentle treatments, good posture habits and consistent skincare can slow the progression of neck lines and help prevent them becoming deeper over time. Prevention is always easier, and often simpler, than correction later.\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','ae666334-5c37-4517-a57e-04caa5a8c903'),
(3657,3657,1,'Can I combine neck line treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine neck line treatment with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, and combining treatments often gives the best results. Different treatments improve different layers of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation I assess your face and neck together and design a personalised plan that keeps everything balanced, often combining treatments gradually as part of a Radiance Collection programme.\"}',1,'2026-03-13 12:04:50','2026-03-13 12:04:50','6d7233d5-2596-4cfb-b556-08ab2d443aff'),
(3660,3660,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 12:06:39','2026-03-13 12:06:39','590d95a2-5d22-43d6-b15e-7c2b9b6807ac'),
(3661,3661,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-13 12:06:39','2026-03-13 12:06:39','e6fba78a-6313-489d-bda0-45b6d8f03741'),
(3664,3664,1,'Condition','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-13 12:07:08','2026-03-13 12:07:08','03cad7ab-ef87-428c-94d8-43993c008e30'),
(3665,3665,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-13 12:07:08','2026-03-13 12:07:08','4fdd9199-782a-4053-abea-322abd30c22c'),
(3679,3679,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p style=\\\"text-align:center;\\\">\\n    <span style=\\\"color:hsl(0,0%,0%);\\\"><span>Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.</span></span>\\n</p>\\n<p>\\n     \\n</p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-13 12:13:03','2026-03-13 12:13:03','8e63b596-706a-4bff-988f-33a1814a5d90'),
(3688,3688,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-13 12:15:02','2026-03-13 12:15:02','8d4cd493-cdfd-4279-a065-930c482d7064'),
(3692,3692,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"24 Hours\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Long-lasting effects\"}',1,'2026-03-13 12:15:02','2026-03-13 12:15:02','6ffe8e77-1371-4dbf-8846-8ea8bb375bc9'),
(3707,3707,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 12:22:20','2026-03-13 12:22:20','9b0c9a93-e61f-46bb-8606-4a3e55194876'),
(3708,3708,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span>Experience the difference of expert care, advanced technology, and </span></p><p><span>personalised treatment plans designed to deliver exceptional results.</span></p>\"}',1,'2026-03-13 12:22:20','2026-03-13 12:22:20','3439d07f-60fa-45e4-b5f5-9b2e4d2c0203'),
(3711,3711,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 12:22:51','2026-03-13 12:22:51','0ca289c9-de9d-498e-9974-6b8fb2db9ca0'),
(3712,3712,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span>Experience the difference of expert care, advanced technology, and personalised </span></p><p><span>treatment plans designed to deliver exceptional results.</span></p>\"}',1,'2026-03-13 12:22:51','2026-03-13 12:22:51','9f610a53-b8c7-4f91-b14d-79f998c03732'),
(3715,3715,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 12:25:10','2026-03-13 12:25:10','3f40922a-95fb-445f-9afd-d8c11e1207ee'),
(3716,3716,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"Quote: \\\"I was nervous about looking \'done\' but the results are so natural. My husband said I looked really well-rested, he had no idea I\'d had anything done! The consultation was thorough, the treatment was quick, and the follow-up appointment to check everything was perfect. I\'ll definitely be returning.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah M., West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 12:25:10','2026-03-13 12:25:10','d60b261d-225d-4a31-ba64-a68c5b476cd0'),
(3719,3719,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 12:25:43','2026-03-13 12:25:43','6e31dbd1-845b-4145-b8fa-cb79821214b1'),
(3720,3720,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"Quote: \\\"I was nervous about looking \'done\' but the results are so natural. My husband said I looked really well-rested, he had no idea I\'d had anything done! The consultation was thorough, the treatment was quick, and the follow-up appointment to check everything was perfect. I\'ll definitely be returning.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah M., West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 12:25:43','2026-03-13 12:25:43','c2bf1d05-1f10-4a3c-bed4-634d6be20ff1'),
(3723,3723,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 12:27:05','2026-03-13 12:27:05','7c64c5ca-d3f7-45a4-a8f8-b95d3a988645'),
(3724,3724,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I was nervous about looking \'done\' but the results are so natural. My husband said I looked really well-rested, he had no idea I\'d had anything done! The consultation was thorough, the treatment was quick, and the follow-up appointment to check everything was perfect. I\'ll definitely be returning.\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah M., West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 12:27:05','2026-03-13 12:27:05','725ef672-32f2-4a2c-8b4b-628d30fccd2d'),
(3727,3727,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:05:35','2026-03-13 13:05:35','c61008cb-f3e3-495b-af1b-7c5061839e12'),
(3728,3728,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again, just refreshed.\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 13:05:35','2026-03-13 13:05:35','bf2e50c3-abf9-49c5-b89e-44e4c00af002'),
(3731,3731,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:06:01','2026-03-13 13:06:01','85e28ea8-4c7c-4eb2-90c6-81e323a3a38a'),
(3732,3732,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again.\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 13:06:02','2026-03-13 13:06:02','b387c3b4-f2bb-483d-86e2-3840471cf4db'),
(3737,3737,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:14:19','2026-03-13 13:14:19','5e44aecf-20ce-4483-8fc9-710f528bb03e'),
(3738,3738,1,'Who Should Consider This Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Condition 2 : Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics.</span></span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-13 13:14:19','2026-03-13 13:14:19','175b80a0-8e01-4322-a2e2-45e377fbd980'),
(3741,3741,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:15:15','2026-03-13 13:15:15','def30a1c-894a-4299-8757-33aae39a33cd'),
(3742,3742,1,'Who Should Consider This Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Who Should Consider This Treatment?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics.</span></span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-13 13:15:15','2026-03-13 13:15:15','673b00cd-c702-4532-82e5-1668ffddbaa2'),
(3756,3756,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:18:52','2026-03-13 13:18:52','5a09a507-ac5e-4eb9-a92e-22e2b7d59411'),
(3757,3757,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your Questions Answered\"}',1,'2026-03-13 13:18:53','2026-03-13 13:18:53','9d837c70-c197-444b-97c8-0337119dfd7f'),
(3768,3768,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-13 13:18:53','2026-03-13 13:18:53','dbe501b4-b4bf-4272-a5a8-c09ba99d1214'),
(3771,3771,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:20:35','2026-03-13 13:20:35','9ae29330-1c82-48ae-adb4-3d12bef266fd'),
(3772,3772,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-13 13:20:35','2026-03-13 13:20:35','0809d73f-0d78-4336-8f15-7c07c47f8661'),
(3775,3775,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:25:08','2026-03-13 13:25:08','d8a8ed73-4cce-46bc-b4f3-2ac5185306fc'),
(3776,3776,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Expert medical aesthetics, face, and skin</span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span> treatments. Precision artistry for results that </span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>look authentically you.</span></span></p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-13 13:25:08','2026-03-13 13:25:08','e73b4946-61c1-40dd-ad3a-0961db7fce3f'),
(3783,3783,1,'One Session','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','aa98763b-9eb8-404a-8248-f657d7adf080'),
(3784,3784,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','e43c4d59-2831-4601-be4d-64491c443be6'),
(3785,3785,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','30b104c3-ba62-4249-bd00-1b42ddee5973'),
(3786,3786,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','47f5165e-ef85-42c4-96db-c4bf81361a2d'),
(3787,3787,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','92b33ffa-bcdc-4ea2-b801-47ce8080ab26'),
(3788,3788,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','21f379b2-2938-4ca0-bc28-28e689363004'),
(3789,3789,1,'One Session','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','48a8f557-14f3-40be-ab28-35511cde044c'),
(3790,3790,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','c66a53d5-4213-42e9-87a8-a6a966fb4f90'),
(3791,3791,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','247e9087-ee73-421a-bfa9-9a9444900491'),
(3792,3792,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-03-13 13:26:17','2026-03-13 13:26:17','09bd9a36-2681-4a9d-8a01-c97cf7fdaf99'),
(3793,3793,1,'Treatment 2','anti-wrinkle-injections-2','treatments/anti-wrinkle-injections-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','aa5394e4-489f-47e2-867e-a34570e9f56b'),
(3794,3794,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Expert medical aesthetics, face, and skin</span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span> treatments. Precision artistry for results that </span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>look authentically you.</span></span></p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','c6e96cdf-94f8-4ade-82e3-c3fb509b5ffe'),
(3795,3795,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','0cfac826-0b1f-459c-be52-046efcc292ed'),
(3796,3796,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £145\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','1e0e778e-2cac-4aa6-88c1-89e8144b8b9c'),
(3797,3797,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"45 Minutes\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Efficient treatment\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','282ca7e1-9efe-41e4-bc55-e760145bf5c1'),
(3798,3798,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"24 Hours\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Quick recovery\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','7ffdbea5-d90e-4f46-9c60-9abcda798d42'),
(3799,3799,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"24 Hours\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Long-lasting effects\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','312ce2e9-4210-48c9-a34f-b0fac2e6ba17'),
(3800,3800,1,'One Session','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','d2ce6d39-4dd1-4dac-9c3c-f85a436af28e'),
(3801,3801,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','1ec50372-1a5d-4084-be4c-102f4e23870c'),
(3802,3802,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','60512414-9cf6-41ef-871c-25ac4b64ff12'),
(3803,3803,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','fe28cf10-6f9d-440d-a34e-e3328f1585f7'),
(3804,3804,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span>Experience the difference of expert care, advanced technology, and personalised </span></p><p><span>treatment plans designed to deliver exceptional results.</span></p>\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','1b436945-25fb-4f2e-a824-f2fe093718f7'),
(3805,3805,1,'Understand What Bothers You','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>Precision technology and personalized treatment plans ensure optimal outcomes tailored to your unique skin concerns.</span></p><p> </p>\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','9a5cccad-4d92-42ce-b324-ebe1ff3b7ba2'),
(3806,3806,1,'Subtle & Safe','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Safety First\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>All treatments are FDA approved and backed by extensive clinical research, ensuring the highest standards of safety and efficacy. Our rigorous protocols prioritise your well-being above all else.</span></p><p> </p>\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','80c93778-4f3b-4fec-8743-20cbfdc5304c'),
(3807,3807,1,'Expert Care','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Expert Care\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>Qualified practitioners with years of experience deliver exceptional personalized care.</span><br /> </p>\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','f1d84b43-1151-4386-8b51-1114aa84ad48'),
(3808,3808,1,'Proven Excellence','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Excellence\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.</span><br /> </p>\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','991d6d5f-71af-4f5b-88cb-ce2327458100'),
(3809,3809,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again.\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','2a8e524c-4f75-4ef9-89af-660f309314dc'),
(3810,3810,1,'Who Should Consider This Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Who Should Consider This Treatment?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics.</span></span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','fed886b2-b444-4a62-b4e8-e5ff8e1d16c8'),
(3811,3811,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the transformation. See the remarkable results our patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-13 13:40:59','2026-03-26 08:53:37','5d7e1a05-f917-468b-bad3-3eabbbdc8b08'),
(3812,3812,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your Questions Answered\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','d0311203-c5e8-46d8-8078-70e0c29e260d'),
(3813,3813,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results vary from person to person, but most treatments last up to around 3 months, sometimes longer. Rather than suddenly wearing off, the effect fades gradually - a bit like a dimmer switch slowly turning back on - as muscle movement gently returns over that time.\\nFor many patients, this gradual return of movement feels very natural. Follow-up and maintenance timing can be discussed during your consultation, depending on how your face responds to treatment.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','dc8ed4e7-9ec8-495b-9b7d-8e071bfe0231'),
(3814,3814,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are not permanent. The effects gradually wear off over time as muscle movement slowly returns, and you will need repeated treatments to maintain your results. How often treatment is repeated varies from person to person and depends on how your muscles respond.\\nSome patients choose to repeat treatment regularly every 3-4 months, while others prefer occasional top-ups. This is always discussed on an individual basis, rather than following a fixed schedule.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','84720688-301a-4654-a733-4a8bdff9ae42'),
(3815,3815,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are temporary by design. For most people, results last up to around 3 months and fade gradually as muscle movement slowly returns.\\nThis is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent, non-surgical solutions for expression lines caused by muscle movement.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','8488514f-2dca-47d0-8071-9712a70b4725'),
(3816,3816,1,'Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"When administered by a qualified medical professional using UK-licensed products, anti-wrinkle injections have an excellent safety profile. Botulinum toxin has been used in medical and aesthetic practice for several decades and is one of the most well-researched cosmetic treatments available.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, product handling, administration, and aftercare. Serious side effects are rare, and any risks are fully discussed with you during your consultation so you can make an informed decision.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','bc5064ab-47f9-4f2c-8ce1-12386b1fc43c'),
(3817,3817,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find treatment much more comfortable than they expect. I use very fine needles and precise techniques to minimise discomfort. The sensation is usually described as a quick scratch or brief pressure, and is generally very well tolerated.\\nTreatment itself is quick, with the whole process typically taking around 20–30 minutes. Your skin is cleansed, injection points are carefully planned, and small, controlled amounts of botulinum toxin are placed into specific muscles. You can return to normal activities straight afterwards.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','4240ef55-d286-406e-9603-0a930670baea'),
(3818,3818,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"No. My approach is focused on achieving natural, balanced results that suit you and your preferences. Treatment is planned conservatively, with careful attention to both medical judgement and aesthetic restraint.\\nBy softening overactive muscle activity rather than over-treating, results look relaxed and refreshed rather than stiff or unnatural. Every treatment is personalised, so the level of movement preserved is guided by what feels right for you.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','5b9f2e37-144a-4ca3-81b6-3435e8d3625b'),
(3819,3819,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"There is little to no downtime. You may notice mild redness or tiny marks at the injection sites, which usually settle within an hour. Occasionally, small areas of bruising can occur, particularly around delicate areas, but this is generally minor and can be covered with makeup.\\nMost patients return to work and normal daily activities straight away. To help minimise the risk of bruising, it is advised to avoid strenuous exercise for 24 hours. Facial treatments and massages should be avoided for around 2 weeks following treatment.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','f97eb51a-11ab-488d-92a4-bce3260b5800'),
(3820,3820,1,'When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most people begin to notice subtle changes from around 48 hours after treatment, as muscle activity starts to soften. Results continue to develop gradually over the following days, with the full effect usually seen by around 2 weeks.\\nThis is why a follow-up assessment is offered at the 2-week mark — it allows time to see the full result and, if needed, make any small adjustments.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','3f9e4727-9b6e-47ac-bc1f-6d731e071329'),
(3821,3821,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels.\\nAnti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced bio-stimulators like JULAINE™ or polynucleotides to boost collagen production and improve skin laxity, and subtle dermal filler to artfully restore lost volume.\\nMany of my Wirral patients support their treatment outcomes with tailored pharmaceutical-strength skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','b7ba9d8e-766f-43b9-a15b-68c5d10a5a00'),
(3822,3822,1,'Are there any side effects or risks?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most side effects of anti-wrinkle injections, if they occur, are mild and temporary. These may include slight redness at the injection sites, minor bruising, or a temporary headache. Less commonly, small areas of asymmetry or mild eyelid drooping can occur; these effects usually settle naturally over time and can be reviewed and adjusted at your follow-up appointment.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, administration, and aftercare. I am always available to my patients after treatment, and if you have any concerns at all, you can contact me directly and I will respond promptly. All potential risks are discussed in advance so you can feel informed, supported, and reassured throughout your treatment journey.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','ae5ba9ab-8668-4555-b7f0-84b9fdd1b86b'),
(3823,3823,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-13 13:40:59','2026-03-13 13:40:59','f94b4ff9-16a1-41a5-9c09-913778a03707'),
(3824,3824,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-13 13:40:59','2026-03-26 08:40:42','d91a2450-d31f-4a96-b103-a5df86fc4e0f'),
(3825,3825,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again.\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-13 13:43:57','2026-03-13 13:44:01','776dec57-81bc-4d43-ab9b-11db7bacfa0d'),
(3826,3826,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your Questions Answered\"}',1,'2026-03-13 13:45:43','2026-03-13 13:45:43','369f806c-81f1-473b-a89c-38f3527c4a7e'),
(3827,3827,1,'dassaasddas','__temp_umpzilqrcarirotbcpcdiydlekhvucfryfsp',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"asdasdadsads\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"asdasdasd\"}',1,'2026-03-13 13:45:43','2026-03-13 13:45:58','2e8b78ac-c37b-428d-a673-351fecc96e5f'),
(3847,3847,1,'dasd','dasd',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"dasd\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"dasd\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"dsd\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"dasd\"}',1,'2026-03-16 19:24:51','2026-03-16 19:25:02','5ae4cb62-c928-409b-93e2-e27b13ae390f'),
(3857,3857,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 19:30:28','2026-03-16 19:30:28','d039777f-644f-4b75-a724-b47ee8b812d1'),
(3858,3858,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-16 19:30:28','2026-03-16 19:30:28','82355314-1ce1-4107-9b60-166b833e878d'),
(3859,3859,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-16 19:30:28','2026-03-16 19:30:28','9bd1131a-dfe6-4ea6-ada9-b942e1eb72e0'),
(3860,3860,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-12 Months\"}',1,'2026-03-16 19:30:28','2026-03-16 19:30:28','106850f3-0f55-4b95-a4fe-310d00d66f91'),
(3878,3878,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 19:53:23','2026-03-16 19:53:23','f0f49062-71b3-4582-ab19-339756611f2f'),
(3879,3879,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-16 19:53:23','2026-03-16 19:53:23','d1382f6a-e473-4bd3-b8d9-564518252f6a'),
(3884,3884,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is a targeted biorevitalising injectable developed by Professional Dietetics in Italy, specifically designed to regenerate skin quality in the delicate periocular area. Using a patented combination of hyaluronic acid and amino acids, it improves under-eye brightness, texture and firmness without adding volume - making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers frequently struggle in this region because they aim to replace volume where volume is not always the issue. In many patients, the concern is skin quality rather than structural loss. Adding volume to fragile tissue can lead to puffiness, product visibility through thin skin, a bluish Tyndall effect, migration and an unnatural appearance. Sunekos Performa takes a fundamentally different approach.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-16 19:53:23','2026-03-16 19:53:23','ea33426d-bc9b-4ecd-9e3f-fc423de705c5'),
(3885,3885,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s–40s to support under-eye skin quality before more significant ageing changes develop.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-16 19:53:23','2026-03-16 19:53:23','835e3514-e04b-4e66-ac02-e9fa9206b69c'),
(3899,3899,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:02:49','2026-03-16 20:02:49','6281c26b-5242-4af9-a5f0-d94308657b19'),
(3900,3900,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-16 20:02:49','2026-03-16 20:02:49','18ed7d83-1f57-4183-a868-676d8d406cf1'),
(3901,3901,1,'Frequently Asked Questions About Sinekos','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Sunekos under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-16 20:02:49','2026-03-16 20:02:49','e84c9167-c484-46e8-9807-6329d34856fc'),
(3906,3906,1,'Natural, Subtle Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-spa\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Results develop gradually over the course of treatment as your own collagen and elastin production is supported. There is no sudden change and nothing that looks obvious or overdone. Instead, the under-eye area appears fresher, more rested, and naturally brighter, while you continue to look completely like yourself.</span></p>\"}',1,'2026-03-16 20:09:35','2026-04-06 21:12:06','57e3c475-121f-41cb-ac63-434567e9743e'),
(3918,3918,1,'Gentle Yet Effective','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Sunekos is specifically designed for the delicate under-eye area, making it suitable even for thin or sensitive skin. Its carefully balanced formula supports collagen and elastin production, helping to improve skin strength, smoothness, and resilience over time.</span></p>\"}',1,'2026-03-16 20:19:17','2026-04-06 21:12:06','c2eb0736-2c8c-432e-b846-c525a418bc56'),
(3919,3919,1,'Treatment 2','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:19:17','2026-03-16 20:19:17','b397f065-73b9-4f6b-b84b-4d70209b2cef'),
(3920,3920,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-16 20:19:17','2026-03-16 20:19:17','dd31eac5-ca11-4b73-9777-6c94bb64ec89'),
(3923,3923,1,'Gentle Yet Effective','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa contains no chemical crosslinkers, making it exceptionally gentle and biocompatible even for the thinnest, most sensitive periocular skin. The low molecular weight hyaluronic acid integrates smoothly into the tissue, while the amino acids provide fibroblasts with essential building blocks for collagen and elastin.</span></p>\"}',1,'2026-03-16 20:19:17','2026-03-16 20:19:17','f59ec1f6-f405-4712-9fab-e07587d3a410'),
(3924,3924,1,'Natural, Subtle Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-spa\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Results develop gradually over the treatment course as your own collagen and elastin production is stimulated. There is no sudden change and nothing that looks obvious or overdone. The under-eye area appears fresher, more rested and naturally brighter. Refreshed, not changed - subtle improvement that still looks entirely like you.</span></p>\"}',1,'2026-03-16 20:19:17','2026-03-16 20:19:17','0a9ab8fb-1d56-4de5-9b1f-4dd5689e74f5'),
(3926,3926,1,'Sunekos Eye Treatment','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:19:39','2026-03-16 20:19:39','8f64ae9a-e3d9-419f-9428-64f284a03b24'),
(3928,3928,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:19:47','2026-03-16 20:19:47','2447fe86-aa00-4b35-97e9-fbad2f550cf5'),
(3929,3929,1,'Patented Non-Volumising Formula','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-dna text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Patented Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Unlike traditional fillers that add volume, Sunekos focuses on improving skin quality. Its patented formula combines hyaluronic acid with a precise blend of amino acids to support the skin’s natural repair processes and collagen production, helping the under-eye area look smoother, firmer, and more refreshed over time.</span></p>\"}',1,'2026-03-16 20:20:20','2026-04-06 21:12:06','73ae1acf-bc82-4a13-8a37-d5288947cc55'),
(3937,3937,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-magnifying-glass text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Dark circles often develop because the under-eye skin becomes thinner and more fragile over time. Sunekos helps strengthen and improve skin quality around the eye, supporting collagen and elastin so the area looks smoother, healthier, and less tired.</span></p>\"}',1,'2026-03-16 20:22:17','2026-04-06 21:12:06','feb3fd6d-61dc-4c41-adf9-ffa2dea8cab1'),
(3938,3938,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','82cc22ed-1cc6-48d9-b1ea-53c0b443b88b'),
(3939,3939,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','7a925113-4294-4fde-a776-2766ac477d52'),
(3940,3940,1,'Patented Non-Volumising Formula','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-dna text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Patented Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Unlike traditional fillers that add volume, Sunekos Performa focuses purely on regenerating skin quality from within. Its patented HY6AA formula combines non-crosslinked low molecular weight hyaluronic acid with six specific amino acids that stimulate fibroblast activity and rebuild the extracellular matrix.</span></p>\"}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','4f326c26-2092-40d9-b88c-dd92368df690'),
(3941,3941,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-magnifying-glass text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Dark circles often result from thin, translucent skin revealing underlying blood vessels, reduced microcirculation, and increased pigment under the eyes. Sunekos Performa works across all three by stimulating new collagen and elastin, supporting healthier microcirculation, and encouraging cellular renewal at the extracellular matrix.</span></p>\"}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','eab3c7fe-2f30-4bc5-bdd9-48f0b41ae0c9'),
(3942,3942,1,'Gentle Yet Effective','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa contains no chemical crosslinkers, making it exceptionally gentle and biocompatible even for the thinnest, most sensitive periocular skin. The low molecular weight hyaluronic acid integrates smoothly into the tissue, while the amino acids provide fibroblasts with essential building blocks for collagen and elastin.</span></p>\"}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','76030080-c32d-4b96-9ebf-305894d667e0'),
(3943,3943,1,'Natural, Subtle Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-spa\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Results develop gradually over the treatment course as your own collagen and elastin production is stimulated. There is no sudden change and nothing that looks obvious or overdone. The under-eye area appears fresher, more rested and naturally brighter. Refreshed, not changed - subtle improvement that still looks entirely like you.</span></p>\"}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','53419177-146e-4a9e-baca-0b9ef56ed071'),
(3944,3944,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is a targeted biorevitalising injectable developed by Professional Dietetics in Italy, specifically designed to regenerate skin quality in the delicate periocular area. Using a patented combination of hyaluronic acid and amino acids, it improves under-eye brightness, texture and firmness without adding volume - making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers frequently struggle in this region because they aim to replace volume where volume is not always the issue. In many patients, the concern is skin quality rather than structural loss. Adding volume to fragile tissue can lead to puffiness, product visibility through thin skin, a bluish Tyndall effect, migration and an unnatural appearance. Sunekos Performa takes a fundamentally different approach.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-16 20:22:17','2026-03-16 20:22:17','756740fd-1b8d-4ef9-864f-23122d5bf586'),
(3947,3947,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:27:20','2026-03-16 20:27:20','3c70bfee-9f77-4ddd-9f82-02fadeea30bb'),
(3948,3948,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-16 20:27:20','2026-03-16 20:27:20','2f2f8562-88ee-41a4-b8dd-850669509f0c'),
(3951,3951,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 20:28:39','2026-03-16 20:28:39','9f698da3-b702-4ce3-ac38-c7bbed6a6a87'),
(3952,3952,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-16 20:28:39','2026-03-16 20:28:39','5b60ae8c-3b12-43ff-85f1-66de912b3ae2'),
(3953,3953,1,'Who should consider this treatment',NULL,NULL,NULL,1,'2026-03-16 21:32:15','2026-03-16 21:32:15','7712f746-e3c6-49b9-b410-04aa8e53beb8'),
(3956,3956,1,'Sunekos Eye Treatment 2',NULL,NULL,NULL,1,'2026-03-16 21:34:44','2026-03-16 21:34:44','a39e19cc-1641-4088-b835-858f27981aa6'),
(3957,3957,1,'Sunekos Eye Treatment',NULL,NULL,NULL,1,'2026-03-16 21:34:45','2026-03-16 21:34:45','9abfefe1-03db-4b6d-9307-10b891fd592f'),
(3960,3960,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 21:36:18','2026-03-16 21:36:18','ad2c10d9-c163-4737-a564-1e87c1e20416'),
(3961,3961,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is a targeted biorevitalising injectable developed by Professional Dietetics in Italy, specifically designed to regenerate skin quality in the delicate periocular area. Using a patented combination of hyaluronic acid and amino acids, it improves under-eye brightness, texture and firmness without adding volume - making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers frequently struggle in this region because they aim to replace volume where volume is not always the issue. In many patients, the concern is skin quality rather than structural loss. Adding volume to fragile tissue can lead to puffiness, product visibility through thin skin, a bluish Tyndall effect, migration and an unnatural appearance. Sunekos Performa takes a fundamentally different approach.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[3957],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[3956],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-16 21:36:18','2026-03-16 21:36:18','ef21d3a8-b169-479b-840d-02f4379dccab'),
(3962,3962,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-16 21:36:18','2026-03-16 21:36:18','16b6df2f-8b2c-4f8d-8a1c-f7d995b2a24f'),
(3963,3963,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 21:36:20','2026-03-16 21:36:20','559bac09-b051-4ff6-aacb-9f54c3f96c9a'),
(3968,3968,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £240\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','8072359c-a031-4470-9dad-62f34b28ec85'),
(3969,3969,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"20-30 Minutes\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','af123fb9-e73f-469e-84ff-52f0bbc74547'),
(3970,3970,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','6a9db9fb-446c-4e94-a445-042210302a10'),
(3971,3971,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','783c9cf6-99e1-4c09-819f-037ee0c11ea4'),
(3972,3972,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','d892b318-a1f4-402e-b644-5eccd743b06b'),
(3973,3973,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £240\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','e0fb759e-e9c7-4213-afa7-b27cedf35068'),
(3974,3974,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"20-30 Minutes\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','7f371a7f-e8f7-4961-9fe0-33cb171c6070'),
(3975,3975,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','b493f6cb-84c7-4b07-9c2a-8ff7b135b9fb'),
(3976,3976,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-12 Months\"}',1,'2026-03-16 21:39:46','2026-03-16 21:39:46','e2f6e85f-aa89-4ef5-90a3-2da74a7b090e'),
(3979,3979,1,'Sunekos Eye Treatment','sunekos-eye-treatment','treatments/sunekos-eye-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 21:40:56','2026-03-16 21:40:56','fea602ac-c2c0-468d-94a7-cb2c3c677b31'),
(3980,3980,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-16 21:40:56','2026-03-16 21:40:56','84dc9597-4dd7-4a4b-9830-5f4700af3986'),
(3982,3982,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 21:46:29','2026-03-16 21:46:29','7878d86a-b077-4577-8a1d-bcf5feed88c2'),
(3983,3983,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-16 21:46:45','2026-03-16 21:46:45','c1bca637-a055-42d3-8443-6a461313017c'),
(3992,3992,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-16 22:29:01','2026-03-16 22:29:01','c24c0da4-6ae6-4572-8e4a-81633a5d2265'),
(3993,3993,1,'Rosacea Treatment on the Wirral','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Treatment on the Wirral\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Rosacea: Symptoms and Causes\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:#333333;\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:#333333;\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:#000000;\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-16 22:29:01','2026-03-16 22:29:01','c169d8a4-fc68-4b57-8528-e7778bc7bb5d'),
(3994,3994,1,'The Four Types of Rosacea','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"The Four Types of Rosacea\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Erythematotelangiectatic Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This most common form is characterised by persistent central facial redness and visible blood vessels. Skin often feels sensitive, dry or reactive, and flushing episodes can last longer over time.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Papulopustular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often mistaken for acne, this type causes red bumps (papules) and pus-filled spots (pustules) on a background of redness. It commonly affects the cheeks, chin and forehead. Standard acne treatments can sometimes make it worse, which is why proper diagnosis matters.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Phymatous Rosacea (Rhinophyma)</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A less common but more advanced form, where the skin thickens, most often around the nose. The tissue becomes enlarged and uneven. Early medical management can help slow progression and improve skin quality.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Ocular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This affects the eyes, causing redness, dryness, irritation or a gritty sensation. It may occur alongside facial rosacea or on its own. If eye symptoms are present, I usually recommend coordinated care with your GP or an ophthalmologist to ensure safe, appropriate care</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2698],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-16 22:29:01','2026-03-16 22:29:01','a960a050-b2bf-4ba9-aba7-817b75fdd2f8'),
(3995,3995,1,'Common Rosacea Triggers','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,0%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea flare-ups are often linked to specific environmental and lifestyle triggers. Identifying your personal triggers is one of the most important steps in controlling rosacea long-term. Common triggers include: sun exposure and UV radiation, heat, alcohol, spicy foods, emotional stress, cold wind or sudden temperature changes, harsh skincare products, certain medications or topical steroids, hormonal changes, and gut irritation or dietary triggers.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">Living on the Wirral Peninsula can present extra challenges for rosacea-prone skin. Coastal wind, salt air and quickly changing temperatures can dry and irritate the skin barrier, making flushing and sensitivity more likely. When I design rosacea treatment plans in Wirral, I always factor in local conditions, recommending appropriate SPF, barrier-repair skincare such as personalised pHformula routines, and practical habits to help keep your skin calm in our coastal climate.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:#333333;\\\">There is no single cure for rosacea, but with the right approach flare-ups can be greatly reduced and your skin can become calmer and more resilient. I take a careful, doctor-led approach, combining targeted treatments with medical-grade skincare to address both the visible redness and the underlying inflammation. Every plan starts with a thorough consultation. I assess your skin type, triggers, medical history and current routine so we can choose treatments that are safe for your skin and appropriate for your rosacea subtype.</span><span style=\\\"color:#666666;\\\"><i> </i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">For many rosacea patients, gentle resurfacing using the </span><span style=\\\"color:hsl(0,75%,60%);\\\">pHformula</span><span style=\\\"color:#333333;\\\"> C.R. (Chronic Redness) treatment range can make a real difference. These treatments are specifically designed for sensitive, redness-prone skin. They help reduce inflammation, improve skin renewal and strengthen the skin barrier without aggravating rosacea.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-16 22:29:01','2026-03-16 22:29:01','3f5f7b5c-ec80-4b91-ad4e-1c05cf3c41c7'),
(3996,3996,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-16 22:29:04','2026-03-16 22:29:04','cf829bed-7b38-483d-88e4-0521cd687669'),
(3998,3998,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-16 22:36:04','2026-03-16 22:36:04','ffd14eb5-c634-48c5-811e-653afbeea11b'),
(4001,4001,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-16 22:40:44','2026-03-16 22:40:44','406d99ce-f5d1-4b44-992d-49173c5ae641'),
(4002,4002,1,'Rosacea Treatment on the Wirral','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Treatment on the Wirral\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:#333333;\\\"><i>Rosacea: Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:#333333;\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:#000000;\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-16 22:40:44','2026-03-16 22:40:44','b2671db2-2606-4b4e-b80b-18f59bb2e380'),
(4003,4003,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,0%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea flare-ups are often linked to specific environmental and lifestyle triggers. Identifying your personal triggers is one of the most important steps in controlling rosacea long-term. Common triggers include: sun exposure and UV radiation, heat, alcohol, spicy foods, emotional stress, cold wind or sudden temperature changes, harsh skincare products, certain medications or topical steroids, hormonal changes, and gut irritation or dietary triggers.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">Living on the Wirral Peninsula can present extra challenges for rosacea-prone skin. Coastal wind, salt air and quickly changing temperatures can dry and irritate the skin barrier, making flushing and sensitivity more likely. When I design rosacea treatment plans in Wirral, I always factor in local conditions, recommending appropriate SPF, barrier-repair skincare such as personalised pHformula routines, and practical habits to help keep your skin calm in our coastal climate.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p> </p><h2><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><i>How We Treat Rosacea at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">There is no single cure for rosacea, but with the right approach, flare-ups can be greatly reduced, and your skin can become calmer and more resilient. I take a careful, doctor-led approach, combining targeted treatments with medical-grade skincare to address both the visible redness and the underlying inflammation. Every plan starts with a thorough consultation. I assess your skin type, triggers, medical history and current routine so we can choose treatments that are safe for your skin and appropriate for your rosacea subtype.<i> </i></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">For many rosacea patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) treatment range can make a real difference. These treatments are specifically designed for sensitive, redness-prone skin. They help reduce inflammation, improve skin renewal and strengthen the skin barrier without aggravating rosacea.<i><span> </span></i><span>Other treatments include polynucleotides, microtoxin infusion, laser and IPL therapy.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-16 22:40:44','2026-03-16 22:40:44','a8ef0d43-1b5f-4f76-9a72-f046e798db0c'),
(4007,4007,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-16 22:42:09','2026-03-16 22:42:09','4850673f-ac3e-4900-9316-54aa9e9b6454'),
(4008,4008,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,20%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea flare-ups are often linked to specific environmental and lifestyle triggers. Identifying your personal triggers is one of the most important steps in controlling rosacea long-term. Common triggers include: sun exposure and UV radiation, heat, alcohol, spicy foods, emotional stress, cold wind or sudden temperature changes, harsh skincare products, certain medications or topical steroids, hormonal changes, and gut irritation or dietary triggers.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">Living on the Wirral Peninsula can present extra challenges for rosacea-prone skin. Coastal wind, salt air and quickly changing temperatures can dry and irritate the skin barrier, making flushing and sensitivity more likely. When I design rosacea treatment plans in Wirral, I always factor in local conditions, recommending appropriate SPF, barrier-repair skincare such as personalised pHformula routines, and practical habits to help keep your skin calm in our coastal climate.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2578],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p> </p><h2><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><i>How We Treat Rosacea at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">There is no single cure for rosacea, but with the right approach, flare-ups can be greatly reduced, and your skin can become calmer and more resilient. I take a careful, doctor-led approach, combining targeted treatments with medical-grade skincare to address both the visible redness and the underlying inflammation. Every plan starts with a thorough consultation. I assess your skin type, triggers, medical history and current routine so we can choose treatments that are safe for your skin and appropriate for your rosacea subtype.<i> </i></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">For many rosacea patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) treatment range can make a real difference. These treatments are specifically designed for sensitive, redness-prone skin. They help reduce inflammation, improve skin renewal and strengthen the skin barrier without aggravating rosacea.<i><span> </span></i><span>Other treatments include polynucleotides, microtoxin infusion, laser and IPL therapy.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[81]}',1,'2026-03-16 22:42:09','2026-03-16 22:42:09','df416a33-b104-468b-a8b1-ad61fe431dd8'),
(4011,4011,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-16 22:43:31','2026-03-16 22:43:31','9564ee9a-dc75-4f5f-a038-fc80803d5d3b'),
(4012,4012,1,'Rosacea Treatment on the Wirral','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Treatment on the Wirral\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(0,0%,20%);\\\"><i>Rosacea: Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712]}',1,'2026-03-16 22:43:31','2026-03-16 22:43:31','7f5e38c6-ed20-4f08-8210-2652eb1fb501'),
(4016,4016,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-17 10:08:43','2026-03-17 10:08:43','e19d3fb6-5c42-4f77-928b-3096f160ef3d'),
(4017,4017,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-17 10:08:43','2026-03-17 10:08:43','3e56302a-dc09-4370-a517-9ba8e789bb96'),
(4019,4019,1,NULL,'__temp_bqyqqdxnvzktwqvcfevgustcyhwoondswpvf',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-17 11:20:03','2026-03-17 11:20:03','92893615-a17f-47a2-b8e4-2af011d93922'),
(4020,4020,1,NULL,'__temp_wlzqofvropvehpggjzesbwdvufaoqwmoqvav',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-17 11:21:46','2026-03-17 11:21:46','49714db0-3358-4597-a7ee-76e4254528ae'),
(4021,4021,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-17 11:28:19','2026-03-17 11:28:19','b115fe9a-cb3b-4c87-bd2e-0e9b101f9478'),
(4024,4024,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-17 12:52:41','2026-03-17 12:52:41','dfe25558-3f58-43e8-ba08-b9ef088f0de5'),
(4025,4025,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-17 12:52:41','2026-03-17 12:52:41','202eee20-995d-40d4-b0c7-3ff3078ad18f'),
(4026,4026,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 10:16:31','2026-03-26 10:47:41','d83335bb-27c8-4246-9c89-8412206b06be'),
(4027,4027,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Natural-looking anti-wrinkle injections by a medical expert | GMC-Registered Doctor | Smooth forehead lines, frown lines &amp; crow\'s feet | UK-licensed products only</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-18 10:16:31','2026-04-17 16:28:25','dc08f8ef-159e-4c90-8943-c59faf4ba568'),
(4028,4028,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 10:16:31','2026-03-18 10:16:31','56860483-70bb-4588-8e25-4146d41a3d28'),
(4029,4029,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £145\"}',1,'2026-03-18 10:16:31','2026-03-18 11:20:58','69faf611-3ba2-45e4-843b-36a2216d6fc8'),
(4030,4030,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"5-10 Minutes\"}',1,'2026-03-18 10:16:31','2026-03-18 11:20:58','1979fa04-3e5a-4f53-96a7-86d32d0eca1d'),
(4031,4031,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Immediate\"}',1,'2026-03-18 10:16:31','2026-03-18 11:20:58','771a8f86-9ad9-494a-9074-e1d4b3829a84'),
(4032,4032,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Up to 12 Weeks\"}',1,'2026-03-18 10:16:31','2026-03-18 11:20:58','00bf134e-d996-493a-b036-2a29cca355b5'),
(4033,4033,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Anti-Wrinkle Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Soften visible signs of ageing with anti-wrinkle treatments designed to keep you looking natural, refreshed and still recognisably you.</span></p>\"}',1,'2026-03-18 10:16:31','2026-04-06 13:44:39','880c2486-b157-4cfe-8aab-7b0132a4db37'),
(4034,4034,1,'Patented Non-Volumising Formula','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-dna text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Patented Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Unlike traditional fillers that add volume, Sunekos Performa focuses purely on regenerating skin quality from within. Its patented HY6AA formula combines non-crosslinked low molecular weight hyaluronic acid with six specific amino acids that stimulate fibroblast activity and rebuild the extracellular matrix.</span></p>\"}',1,'2026-03-18 10:16:31','2026-03-18 10:16:31','47d35e39-5143-4599-bec2-4762bc57e72b'),
(4035,4035,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-magnifying-glass text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Dark circles often result from thin, translucent skin revealing underlying blood vessels, reduced microcirculation, and increased pigment under the eyes. Sunekos Performa works across all three by stimulating new collagen and elastin, supporting healthier microcirculation, and encouraging cellular renewal at the extracellular matrix.</span></p>\"}',1,'2026-03-18 10:16:31','2026-03-18 10:16:31','e3611d37-2bd1-40db-a2f7-79754029b98a'),
(4036,4036,1,'Gentle Yet Effective','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa contains no chemical crosslinkers, making it exceptionally gentle and biocompatible even for the thinnest, most sensitive periocular skin. The low molecular weight hyaluronic acid integrates smoothly into the tissue, while the amino acids provide fibroblasts with essential building blocks for collagen and elastin.</span></p>\"}',1,'2026-03-18 10:16:31','2026-03-18 10:16:31','dfcf50db-6685-4044-afeb-81e8954abe82'),
(4037,4037,1,'Natural, Subtle Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-spa\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Results develop gradually over the treatment course as your own collagen and elastin production is stimulated. There is no sudden change and nothing that looks obvious or overdone. The under-eye area appears fresher, more rested and naturally brighter. Refreshed, not changed - subtle improvement that still looks entirely like you.</span></p>\"}',1,'2026-03-18 10:16:31','2026-03-18 10:16:31','585d6f6d-b01d-43f1-b529-82e71a0337fe'),
(4038,4038,1,'What Are Anti-Wrinkle Injections?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Anti-Wrinkle Injections?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections are a popular, non-surgical treatment used to soften fine lines and wrinkles caused by facial movement. They work by gently relaxing the muscles underneath the skin, reducing repeated movement so lines appear smoother. Treatment is quick, minimally invasive, and does not require surgery or downtime. Most patients return to normal activities immediately after treatment.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time you frown, squint, or raise your eyebrows, specific facial muscles contract and crease the skin above them. Over time, those repeated movements cause lines to linger - even when your face is at rest. This can leave you looking more tired, tense, or cross than you actually feel.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections work by gently relaxing the muscles that are responsible for these expression lines. When those muscles are less active, the skin above them has a chance to smooth and recover, leaving you looking fresher, more relaxed, and more like yourself again.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is not about freezing your face. It is about balance and precision - softening overactive muscles while keeping natural movement and expression. You will still look like you, just brighter and more refreshed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Before treatment, I take time to carefully assess how your face moves, where lines form, and how strong your different muscles are. This allows me to tailor treatment specifically to you, rather than taking a one-size-fits-all approach.</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"I have been performing anti-wrinkle treatments for many years, and what I love most is seeing the confidence grow in my patients. It is never just about the wrinkles - it is about helping you feel like yourself again.”</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What sets my clinic apart is my medical-first approach.</strong> I am a GMC-registered doctor and a practising GP based here on the Wirral. I hold a BSc (Hons) in Genetics and completed my medical degree through Graduate Entry Medicine, giving me a strong scientific foundation and a deep understanding of how these treatments work.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before every treatment, I carry out a thorough medical and facial assessment to understand how your face moves and where treatment will be most effective. This allows me to create a personalised plan tailored to you - because anti-wrinkle treatment should never be one-size-fits-all.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Here is something most clinics do not do:</strong> I change the needle between treatment areas to reduce tissue trauma, minimise bruising, and ensure the sharpest, most precise delivery each time. A complimentary 2-week follow-up assessment is included in your treatment. This is where good results become exceptional results.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-18 10:16:31','2026-04-20 19:15:07','72eef6d0-a7a6-4629-bc66-ae9cf390220d'),
(4039,4039,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You have forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 10:16:31','2026-04-06 13:44:39','59e5a961-7b2e-44f6-9e7f-4aa5135a92fa'),
(4040,4040,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-18 10:16:31','2026-03-26 08:51:18','19423d2a-693f-4e05-998f-35fdb1ec4463'),
(4041,4041,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Anti-Wrinkle Injections\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-03-18 10:16:31','2026-03-26 08:58:14','74e8cc20-d82d-4ac2-bca2-77c55eb1974c'),
(4042,4042,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results vary from person to person, but most treatments last up to 3 months, sometimes longer. Rather than suddenly wearing off, the effect fades gradually - a bit like a dimmer switch slowly turning back on - as muscle movement gently returns over that time. </p><p> </p><p>For many patients, this gradual return of movement feels very natural. Follow-up and maintenance timing can be discussed during your consultation, depending on how your face responds to treatment.</p>\"}',1,'2026-03-18 10:16:31','2026-04-13 12:44:41','ecc1a537-f657-4e0b-a25c-e95bb234a299'),
(4043,4043,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Anti-wrinkle injections are not permanent. The effects gradually wear off over time as muscle movement slowly returns, and you will need repeated treatments to maintain your results. How often treatment is repeated varies from person to person and depends on how your muscles respond. Some patients choose to repeat treatment regularly every 3-4 months, while others prefer occasional top-ups. This is always discussed on an individual basis, rather than following a fixed schedule.</p>\"}',1,'2026-03-18 10:16:31','2026-03-20 18:29:19','f5276538-f8c5-4749-8319-a2b29688e257'),
(4044,4044,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Anti-wrinkle injections are temporary by design. For most people, results last up to 3 months and fade gradually as muscle movement slowly returns. This is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent non-surgical treatments for expression lines, but they can be softened and managed very effectively with the right approach.</p>\"}',1,'2026-03-18 10:16:31','2026-04-13 12:44:41','5dc584aa-9247-4774-8faf-b28b868cc1a2'),
(4045,4045,1,'Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"When administered by a qualified medical professional using UK-licensed products, anti-wrinkle injections have an excellent safety profile. Botulinum toxin has been used in medical and aesthetic practice for several decades and is one of the most well-researched cosmetic treatments available.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, product handling, administration, and aftercare. Serious side effects are rare, and any risks are fully discussed with you during your consultation so you can make an informed decision.\"}',1,'2026-03-18 10:16:31','2026-03-20 18:29:19','7c93ec79-58b4-4f12-8525-83c4047b23d8'),
(4046,4046,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find treatment much more comfortable than they expect. I use very fine needles and precise techniques to minimise discomfort. The sensation is usually described as a quick scratch or brief pressure, and is generally very well tolerated.\\nTreatment itself is quick, with the whole process typically taking around 20–30 minutes. Your skin is cleansed, injection points are carefully planned, and small, controlled amounts of botulinum toxin are placed into specific muscles. You can return to normal activities straight afterwards.\"}',1,'2026-03-18 10:16:31','2026-03-20 18:29:19','bc955f51-4dbb-4fce-b527-98e3873e9abe'),
(4047,4047,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. My approach is focused on achieving natural, balanced results that suit you and your preferences. Treatment is planned conservatively, with careful attention to both medical judgement and aesthetic restraint.\\nBy softening overactive muscle activity rather than over-treating, results look relaxed and refreshed rather than stiff or unnatural. Every treatment is personalised, so the level of movement preserved is guided by what feels right for you.\"}',1,'2026-03-18 10:16:31','2026-03-20 18:29:19','19fa4c66-220e-46a3-9534-1e41c58dc74b'),
(4048,4048,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is little to no downtime. You may notice mild redness or tiny marks at the injection sites, which usually settle within an hour. Occasionally, small areas of bruising can occur, particularly around delicate areas, but this is generally minor and can be covered with makeup.\\nMost patients return to work and normal daily activities straight away. To help minimise the risk of bruising, it is advised to avoid strenuous exercise for 24 hours. Facial treatments and massages should be avoided for around 2 weeks following treatment.\"}',1,'2026-03-18 10:16:31','2026-03-20 18:29:19','847038ed-a4d7-4b95-829c-061eafc1f76b'),
(4049,4049,1,'When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most people begin to notice subtle changes from around 48 hours after treatment, as muscle activity starts to soften. Results continue to develop gradually over the following days, with the full effect usually seen by around 2 weeks.\\nThis is why a follow-up assessment is offered at the 2-week mark, it allows time to see the full result and, if needed, make any small adjustments.\"}',1,'2026-03-18 10:16:31','2026-03-20 18:29:19','283dbdd4-aba0-4c28-8fda-c982e0d7e651'),
(4050,4050,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels. Anti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. </p><p> </p><p>Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">bio-stimulators like JULAINE™</a> or <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> to boost collagen production and improve skin laxity, and subtle <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> to artfully restore lost volume. Many of my Wirral patients support their treatment outcomes with personalised specialist skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.</p>\"}',1,'2026-03-18 10:16:31','2026-04-13 12:44:41','0334f827-a6b0-45c9-bcc4-25d014390c91'),
(4051,4051,1,'Are there any side effects or risks?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most side effects of anti-wrinkle injections, if they occur, are mild and temporary. These may include slight redness at the injection sites, minor bruising, or a temporary headache. Less commonly, small areas of asymmetry or mild eyelid drooping can occur; these effects usually settle naturally over time and can be reviewed and adjusted at your follow-up appointment. As a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, administration, and aftercare. I am always available to support my patients after treatment, and if you have any concerns at all, you can contact me directly and I will respond promptly. All potential risks are discussed in advance so you can feel informed, supported, and reassured throughout your treatment journey.</p>\"}',1,'2026-03-18 10:16:31','2026-04-13 12:44:41','76d5883b-d5a4-4418-9860-7df929cc75ac'),
(4052,4052,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Not unless you tell them. The hallmark of well-planned anti-wrinkle treatment is that people notice you look refreshed, well-rested, or simply <i>really well</i>, without being able to pinpoint exactly why. Patients often tell me friends or colleagues comment that they look less tired, or ask if they have been on holiday. When treatment is carefully planned and performed with a light touch, the results should never look obvious or overdone. You will still look like yourself - just fresher and more confident.</p>\"}',1,'2026-03-18 10:16:31','2026-04-13 12:44:41','c2b8a9ce-be39-42a5-993d-a772aadb8bd4'),
(4053,4053,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"If you are unsure about anything or would like honest advice, I am always happy to help. You are very welcome to get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-18 10:16:31','2026-04-20 19:15:07','47655881-2a5d-474c-bf48-3587ca3c8a1a'),
(4054,4054,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','05351bde-d77e-42a3-9c45-2bd802303325'),
(4055,4055,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','ca1be19d-ec9a-42af-b895-6eef03d74914'),
(4056,4056,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','8d73f69b-18ee-439b-add2-dbbce009e82f'),
(4057,4057,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £240\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','f56d2859-e79e-48de-80f7-4bfa1c4437c8'),
(4058,4058,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"20-30 Minutes\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','79a7d1e1-e7d7-4a6e-b457-f102adce4a98'),
(4059,4059,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','8dc9f15a-e5bb-4668-a76b-857149ceb297'),
(4060,4060,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-12 Months\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','94bc3ff8-1655-443e-a2b2-0a9ffa05f051'),
(4061,4061,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','80f36270-7986-4354-9abf-f78062261d2f'),
(4062,4062,1,'Patented Non-Volumising Formula','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-dna text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Patented Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Unlike traditional fillers that add volume, Sunekos Performa focuses purely on regenerating skin quality from within. Its patented HY6AA formula combines non-crosslinked low molecular weight hyaluronic acid with six specific amino acids that stimulate fibroblast activity and rebuild the extracellular matrix.</span></p>\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','9ed9ae6b-b865-4980-b8df-da630a182a0f'),
(4063,4063,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-magnifying-glass text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Dark circles often result from thin, translucent skin revealing underlying blood vessels, reduced microcirculation, and increased pigment under the eyes. Sunekos Performa works across all three by stimulating new collagen and elastin, supporting healthier microcirculation, and encouraging cellular renewal at the extracellular matrix.</span></p>\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','12ba7202-9685-4154-bf37-2b6f1ece545f'),
(4064,4064,1,'Gentle Yet Effective','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa contains no chemical crosslinkers, making it exceptionally gentle and biocompatible even for the thinnest, most sensitive periocular skin. The low molecular weight hyaluronic acid integrates smoothly into the tissue, while the amino acids provide fibroblasts with essential building blocks for collagen and elastin.</span></p>\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','3613bd42-f9e7-4275-9f84-8fc11fae589a'),
(4065,4065,1,'Natural, Subtle Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-spa\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Results develop gradually over the treatment course as your own collagen and elastin production is stimulated. There is no sudden change and nothing that looks obvious or overdone. The under-eye area appears fresher, more rested and naturally brighter. Refreshed, not changed - subtle improvement that still looks entirely like you.</span></p>\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','91024420-41d5-4137-a4e5-221bb3fea923'),
(4066,4066,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is a targeted biorevitalising injectable developed by Professional Dietetics in Italy, specifically designed to regenerate skin quality in the delicate periocular area. Using a patented combination of hyaluronic acid and amino acids, it improves under-eye brightness, texture and firmness without adding volume - making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers frequently struggle in this region because they aim to replace volume where volume is not always the issue. In many patients, the concern is skin quality rather than structural loss. Adding volume to fragile tissue can lead to puffiness, product visibility through thin skin, a bluish Tyndall effect, migration and an unnatural appearance. Sunekos Performa takes a fundamentally different approach.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[3957],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[3956],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','1e224cbd-6081-41ed-b012-48e7fb9a2734'),
(4067,4067,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','d2514db1-98a0-40b3-a98e-eec20e75cf63'),
(4068,4068,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','79b366bd-3ab0-4b67-a05a-17c78bba0c66'),
(4069,4069,1,'Frequently Asked Questions About Sinekos','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Sunekos under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','5a711baa-f4ca-4908-bd04-e32e7c205dd8'),
(4070,4070,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results vary from person to person, but most treatments last up to around 3 months, sometimes longer. Rather than suddenly wearing off, the effect fades gradually - a bit like a dimmer switch slowly turning back on - as muscle movement gently returns over that time.\\nFor many patients, this gradual return of movement feels very natural. Follow-up and maintenance timing can be discussed during your consultation, depending on how your face responds to treatment.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','0f71fad6-06ea-45fd-b50e-57ed4a9ae1d1'),
(4071,4071,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are not permanent. The effects gradually wear off over time as muscle movement slowly returns, and you will need repeated treatments to maintain your results. How often treatment is repeated varies from person to person and depends on how your muscles respond.\\nSome patients choose to repeat treatment regularly every 3-4 months, while others prefer occasional top-ups. This is always discussed on an individual basis, rather than following a fixed schedule.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','619b7932-8904-417e-ae51-7df1ee7a74ba'),
(4072,4072,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are temporary by design. For most people, results last up to around 3 months and fade gradually as muscle movement slowly returns.\\nThis is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent, non-surgical solutions for expression lines caused by muscle movement.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','3ccb14c8-3cb9-48ef-88c2-2624b0dee0ad'),
(4073,4073,1,'Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"When administered by a qualified medical professional using UK-licensed products, anti-wrinkle injections have an excellent safety profile. Botulinum toxin has been used in medical and aesthetic practice for several decades and is one of the most well-researched cosmetic treatments available.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, product handling, administration, and aftercare. Serious side effects are rare, and any risks are fully discussed with you during your consultation so you can make an informed decision.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','30bff594-417a-44d8-a6a0-c66a10885bfe'),
(4074,4074,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find treatment much more comfortable than they expect. I use very fine needles and precise techniques to minimise discomfort. The sensation is usually described as a quick scratch or brief pressure, and is generally very well tolerated.\\nTreatment itself is quick, with the whole process typically taking around 20–30 minutes. Your skin is cleansed, injection points are carefully planned, and small, controlled amounts of botulinum toxin are placed into specific muscles. You can return to normal activities straight afterwards.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','8253b59d-d3d6-4068-8796-519fda0f1793'),
(4075,4075,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"No. My approach is focused on achieving natural, balanced results that suit you and your preferences. Treatment is planned conservatively, with careful attention to both medical judgement and aesthetic restraint.\\nBy softening overactive muscle activity rather than over-treating, results look relaxed and refreshed rather than stiff or unnatural. Every treatment is personalised, so the level of movement preserved is guided by what feels right for you.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','01334394-d3fd-457e-9d9b-9651afdb2e83'),
(4076,4076,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"There is little to no downtime. You may notice mild redness or tiny marks at the injection sites, which usually settle within an hour. Occasionally, small areas of bruising can occur, particularly around delicate areas, but this is generally minor and can be covered with makeup.\\nMost patients return to work and normal daily activities straight away. To help minimise the risk of bruising, it is advised to avoid strenuous exercise for 24 hours. Facial treatments and massages should be avoided for around 2 weeks following treatment.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','b351db73-3e7a-446b-8dcb-ea54e2647ff2'),
(4077,4077,1,'Is Sunekos treatment safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, when administered by a qualified medical professional. Sunekos Performa is CE-marked and contains biocompatible ingredients - non-crosslinked hyaluronic acid and amino acids, with no chemical crosslinkers, making it exceptionally well tolerated in the delicate periocular area. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols, including detailed medical history assessment, strict sterile technique, and appropriate post-treatment monitoring. Emergency equipment is always available.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','073b9c7b-b81f-4b91-9226-70be6368fdd3'),
(4078,4078,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels.\\nAnti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced bio-stimulators like JULAINE™ or polynucleotides to boost collagen production and improve skin laxity, and subtle dermal filler to artfully restore lost volume.\\nMany of my Wirral patients support their treatment outcomes with tailored pharmaceutical-strength skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','e3a02fbc-d47a-475f-ac9f-3746ffbf4278'),
(4079,4079,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. Use a gentle cleanser only, without active ingredients, for 48 hours. A soothing eye product containing hyaluronic acid or peptides can be applied to support hydration. Daily use of SPF 50 is essential to protect the delicate under-eye skin. Avoid retinoids, vitamin C and other active ingredients around the eyes for 3-5 days following treatment. Detailed aftercare instructions are provided.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','8bc6f10c-26fe-4143-9dcb-7eb49cdd78fe'),
(4080,4080,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','8993175c-a0ca-40ba-a1f3-3e0b497a2f2d'),
(4081,4081,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-18 10:17:07','2026-03-18 10:17:07','9529ef37-251f-46b9-a068-185db942691f'),
(4082,4082,1,'Anti wrinkle injection rachel',NULL,NULL,NULL,1,'2026-03-18 10:21:12','2026-03-18 10:21:12','4321494c-5bf5-4596-a6ef-edce5106cfd7'),
(4083,4083,1,'Anti wrinkle injection wirral',NULL,NULL,NULL,1,'2026-03-18 10:21:13','2026-03-18 10:21:13','d68254d0-a6ad-4325-931c-1e6fc9522fba'),
(4084,4084,1,'Anti wrinkle injection',NULL,NULL,NULL,1,'2026-03-18 10:21:13','2026-03-18 10:21:13','f3a95871-4ce1-4ccc-8544-c38836097bea'),
(4088,4088,1,'Anti wrinkle injection wirral uk',NULL,NULL,NULL,1,'2026-03-18 10:23:31','2026-03-18 10:23:31','0a307108-497b-4c97-8e1d-86189c855320'),
(4089,4089,1,'DSC02607',NULL,NULL,NULL,1,'2026-03-18 10:24:41','2026-03-18 10:24:41','a84639b5-8e42-4fb3-a0ea-6fad7a1fed24'),
(4090,4090,1,'Anti wrinkle injection wirral',NULL,NULL,NULL,1,'2026-03-18 10:26:26','2026-03-18 10:26:26','3c84a737-d936-49a4-9192-ace4cf5e86f2'),
(4105,4105,1,'Anti wrinkle injection client',NULL,NULL,NULL,1,'2026-03-18 11:18:33','2026-03-18 11:18:33','35016db3-90a9-42f6-815e-1223613719fd'),
(4108,4108,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','611bf968-b21d-4ec0-b634-2256a6beda15'),
(4109,4109,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Natural-looking anti-wrinkle injections by a medical expert | GMC-Registered Doctor | Smooth forehead lines, frown lines &amp; crow\'s feet | UK-licensed products only</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','28ec6042-634c-40d8-b599-528ca09d4458'),
(4110,4110,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','15670b78-2154-4cc2-931a-bf5e19f9980d'),
(4111,4111,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £145\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','7c104070-0ad8-4a2d-bfa7-50bc40d21241'),
(4112,4112,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"5-10 Minutes\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','b192eabb-d096-4f7d-a839-518602930363'),
(4113,4113,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Immediate\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','b2c596cc-e5c4-4ff9-9eb8-ca8d158f10c3'),
(4114,4114,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Up to 12 Weeks\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','bd42976a-e8f7-40b2-b05f-4b1edd659ac4'),
(4115,4115,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Anti-Wrinkle Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','1fc3a102-68c8-4fcf-a03f-28fae738e07b'),
(4116,4116,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is a targeted biorevitalising injectable developed by Professional Dietetics in Italy, specifically designed to regenerate skin quality in the delicate periocular area. Using a patented combination of hyaluronic acid and amino acids, it improves under-eye brightness, texture and firmness without adding volume - making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers frequently struggle in this region because they aim to replace volume where volume is not always the issue. In many patients, the concern is skin quality rather than structural loss. Adding volume to fragile tissue can lead to puffiness, product visibility through thin skin, a bluish Tyndall effect, migration and an unnatural appearance. Sunekos Performa takes a fundamentally different approach.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 11:20:58','2026-03-18 11:20:58','5c42749f-c531-4646-b3b9-ddf771e660d6'),
(4118,4118,1,'Aesthetics by rachel banner',NULL,NULL,NULL,1,'2026-03-18 11:45:04','2026-03-18 11:45:04','e1316710-a350-4cfd-9fa0-d8a7052ec1e3'),
(4124,4124,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-03-18 11:45:10','2026-03-18 11:45:10','ee35d416-ee2d-4afd-8a69-347155b1b2af'),
(4125,4125,1,'Learn More','learn-more',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Learn More\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2026-03-18 11:45:10','2026-03-18 11:45:10','f364bf6c-0292-433a-a817-069ec1e11fc4'),
(4126,4126,1,'Aesthetics by rachel home banner',NULL,NULL,NULL,1,'2026-03-18 11:47:11','2026-03-18 11:47:11','2d040720-828a-44f2-b6fc-b578f6046ae8'),
(4136,4136,1,NULL,'__temp_wfvovknzbgqsxktzgpxkjinndrdcepdhardb',NULL,NULL,1,'2026-03-18 12:02:54','2026-03-18 12:02:54','ea1b1864-0379-43fc-a2e1-a4b0d29a9bdd'),
(4153,4153,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 12:09:17','2026-03-18 12:09:17','b33769c9-19e9-4564-b081-b8b76cc8561a'),
(4154,4154,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Anti-Wrinkle Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-03-18 12:09:17','2026-03-18 12:09:17','5f66a7fe-408f-4df9-a361-ed91929ec6bb'),
(4171,4171,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-18 16:28:35','2026-03-18 16:28:35','9d1c31ff-7587-4798-a2c8-3e1db144df31'),
(4172,4172,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h3><i>Who Should Consider Sunekos Eye Treatment?</i></h3><p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 16:28:35','2026-03-18 16:28:35','d12119a6-4b54-46d5-b2e1-dd88bd84ddfb'),
(4173,4173,1,'Targeted Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Anti-wrinkle injections work by relaxing the facial muscles that create expression lines, such as frown lines, forehead lines and crow’s feet. This allows the skin to smooth and recover over time, softening existing lines and helping to prevent deeper ones from developing. The result is a refreshed, well-rested appearance that still looks completely natural.</span></p>\"}',1,'2026-03-18 16:29:25','2026-03-18 16:29:25','0f724c13-efb7-41e7-a037-09a74f864df1'),
(4174,4174,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 16:29:26','2026-03-18 16:29:26','a73ddbb4-0807-453d-81f2-da9e6828d3d9'),
(4175,4175,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Anti-Wrinkle Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Reduce visible signs of ageing with tailored medical aesthetic treatments that soften lines whilst keeping your face natural, expressive, and unmistakably you.</span></p>\"}',1,'2026-03-18 16:29:26','2026-03-18 16:29:26','5dc547d1-1e6c-49a5-b1b3-c81e4615cee2'),
(4176,4176,1,'Targeted Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Anti-wrinkle injections work by relaxing the facial muscles that create expression lines, such as frown lines, forehead lines and crow’s feet. This allows the skin to smooth and recover over time, softening existing lines and helping to prevent deeper ones from developing. The result is a refreshed, well-rested appearance that still looks completely natural.</span></p>\"}',1,'2026-03-18 16:29:26','2026-03-18 16:29:26','f8857097-035a-4edd-906d-274c2940f2b5'),
(4180,4180,1,'What Are Anti-Wrinkle Injections?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Anti-Wrinkle Injections?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections are a popular, non-surgical treatment used to soften fine lines and wrinkles caused by facial movement. They work by gently relaxing the muscles underneath the skin, reducing repeated movement so lines appear smoother. Treatment is quick, minimally invasive, and does not require surgery or downtime. Most patients return to normal activities immediately after treatment.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time you frown, squint, or raise your eyebrows, specific facial muscles contract and crease the skin above them. Over time, those repeated movements cause lines to linger - even when your face is at rest. This can leave you looking more tired, tense, or cross than you actually feel.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections work by gently relaxing the muscles that are responsible for these expression lines. When those muscles are less active, the skin above them has a chance to smooth and recover, leaving you looking fresher, more relaxed, and more like yourself again.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is not about freezing your face. It is about balance and precision - softening overactive muscles while keeping natural movement and expression. You will still look like you, just brighter and more refreshed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Before treatment, I take time to carefully assess how your face moves, where lines form, and how strong your different muscles are. This allows me to tailor treatment specifically to you, rather than taking a one-size-fits-all approach.</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"I have been performing anti-wrinkle treatments for many years, and what I love most is seeing the confidence grow in my patients. It is never just about the wrinkles - it is about helping you feel like yourself again.”</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What sets my clinic apart is my medical-first approach.</strong> I am a GMC-registered doctor and a practising GP based here on the Wirral. I hold a BSc (Hons) in Genetics and completed my medical degree through Graduate Entry Medicine, giving me a strong scientific foundation and a deep understanding of how these treatments work.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before every treatment, I carry out a thorough medical and facial assessment to understand how your face moves and where treatment will be most effective. This allows me to create a personalised plan tailored to you - because anti-wrinkle treatment should never be one-size-fits-all.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Here is something most clinics do not do:</strong> I change the needle between treatment areas to reduce tissue trauma, minimise bruising, and ensure the sharpest, most precise delivery each time. A complimentary 2-week follow-up assessment is included in your treatment. This is where good results become exceptional results.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 16:29:26','2026-03-18 16:29:26','656f2431-ef62-4c87-8375-12737ef27882'),
(4181,4181,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Anti-Wrinkle Injections?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">Forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 16:29:26','2026-03-18 16:29:26','d7a53ef7-7489-47c1-af66-36ba0762f00f'),
(4184,4184,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 16:30:09','2026-03-18 16:30:09','5f21eea3-b2f4-45a1-b8f1-051177697ccd'),
(4185,4185,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Anti-Wrinkle Injections?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">Forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 16:30:09','2026-03-18 16:30:09','e3e5713d-c609-41ff-9528-191dfe42fdcf'),
(4188,4188,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-18 16:30:45','2026-03-18 16:30:45','f1cd82e1-8685-4faf-9e54-16831ab6ccca'),
(4189,4189,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h3><i>Who Should Consider Sunekos Eye Treatment?</i></h3><p> </p><p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 16:30:45','2026-03-18 16:30:45','a64520cc-cc3e-44d3-9d3b-d02f1d6972d7'),
(4192,4192,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-18 16:31:16','2026-03-18 16:31:16','e6153f9e-a12c-4876-a37f-0e93666bc27e'),
(4193,4193,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Sunekos Eye Treatment?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><i>Who Should Consider Sunekos Eye Treatment?</i></h2><h2> </h2><p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 16:31:16','2026-03-18 16:31:16','c0cb5a4d-60cd-480b-a55f-d289d8e21783'),
(4199,4199,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 22:34:40','2026-03-18 22:34:40','d73882dc-37d1-449b-b6e3-3f1f16221625'),
(4200,4200,1,'What Are Anti-Wrinkle Injections?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Anti-Wrinkle Injections?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections are a popular, non-surgical treatment used to soften fine lines and wrinkles caused by facial movement. They work by gently relaxing the muscles underneath the skin, reducing repeated movement so lines appear smoother. Treatment is quick, minimally invasive, and does not require surgery or downtime. Most patients return to normal activities immediately after treatment.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time you frown, squint, or raise your eyebrows, specific facial muscles contract and crease the skin above them. Over time, those repeated movements cause lines to linger - even when your face is at rest. This can leave you looking more tired, tense, or cross than you actually feel.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections work by gently relaxing the muscles that are responsible for these expression lines. When those muscles are less active, the skin above them has a chance to smooth and recover, leaving you looking fresher, more relaxed, and more like yourself again.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is not about freezing your face. It is about balance and precision - softening overactive muscles while keeping natural movement and expression. You will still look like you, just brighter and more refreshed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Before treatment, I take time to carefully assess how your face moves, where lines form, and how strong your different muscles are. This allows me to tailor treatment specifically to you, rather than taking a one-size-fits-all approach.</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"I have been performing anti-wrinkle treatments for many years, and what I love most is seeing the confidence grow in my patients. It is never just about the wrinkles - it is about helping you feel like yourself again.”</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What sets my clinic apart is my medical-first approach.</strong> I am a GMC-registered doctor and a practising GP based here on the Wirral. I hold a BSc (Hons) in Genetics and completed my medical degree through Graduate Entry Medicine, giving me a strong scientific foundation and a deep understanding of how these treatments work.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before every treatment, I carry out a thorough medical and facial assessment to understand how your face moves and where treatment will be most effective. This allows me to create a personalised plan tailored to you - because anti-wrinkle treatment should never be one-size-fits-all.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Here is something most clinics do not do:</strong> I change the needle between treatment areas to reduce tissue trauma, minimise bruising, and ensure the sharpest, most precise delivery each time. A complimentary 2-week follow-up assessment is included in your treatment. This is where good results become exceptional results.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 22:34:40','2026-03-18 22:34:40','a2958be8-2142-4157-9523-6186950185bc'),
(4201,4201,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">Forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 22:34:40','2026-03-18 22:34:40','763a03d3-ed56-46ce-bb5e-ff2439031b28'),
(4202,4202,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-03-18 22:34:40','2026-03-18 22:34:40','9f076c01-42c0-46cc-aa19-8b07017ecba9'),
(4203,4203,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 22:34:51','2026-04-02 09:10:40','4c1cbb98-3526-4462-8504-f4b608207a45'),
(4204,4204,1,'JULÄINE™ Bio-Stimulator','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Next-generation PLLA collagen stimulator | Natural facial rejuvenation lasting 24 months | LASYNPRO™ technology </span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-18 22:34:51','2026-04-17 16:28:38','d97a5c96-5483-4a9c-becc-f6410411bd32'),
(4205,4205,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 22:34:51','2026-03-18 22:34:51','e445947c-8f94-485e-bc54-34e8c18691ab'),
(4206,4206,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £750\"}',1,'2026-03-18 22:34:51','2026-03-18 22:38:28','6f6d047a-ba07-4c64-ad46-322f00b082ea'),
(4207,4207,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-18 22:34:51','2026-03-18 22:38:28','6c927566-2f15-41e0-b418-987c7b855605'),
(4208,4208,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"12-24 Hours\"}',1,'2026-03-18 22:34:51','2026-03-18 22:38:28','8562725c-e33f-4850-92e0-5aa2e8bc964c'),
(4209,4209,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Up to 2 Years\"}',1,'2026-03-18 22:34:51','2026-03-18 22:38:28','00bc588c-154b-498b-ad63-9a2ca83515e7'),
(4210,4210,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose JULÄINE™ Bio-Stimulator?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is a next-generation collagen-stimulating treatment designed to increase your skin’s own collagen production at a deeper level. By supporting long-term collagen renewal, JULÄINE™ delivers visible improvements in skin firmness, texture, and radiance, with results that develop naturally and last far longer than many traditional treatments.</span></p>\"}',1,'2026-03-18 22:34:51','2026-03-18 22:41:44','cab5ce48-48e0-4c47-b13a-1fc21a1b3990'),
(4211,4211,1,'Next-Generation Swedish Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Next-Generation Swedish Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULAINE™ is a next-generation </span><span style=\\\"background-color:#ffffff;color:#333333;\\\">poly-L-lactic (PLLA) injectable</span><span style=\\\"background-color:transparent;color:#000000;\\\"> designed to significantly improve skin quality by stimulating your skin’s own natural collagen production. Rather than creating instant change, it supports gradual, progressive improvement by working with your body’s natural biology.</span></p>\"}',1,'2026-03-18 22:34:51','2026-03-18 22:41:44','b7906c3d-3a32-4971-995f-2996677f03ae'),
(4212,4212,1,'The Invisible Transformation','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"The Invisible Transformation\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULAINE™ is a luxury investment in long-term skin health. Results develop gradually, in line with neocollagenesis — the natural process by which your skin produces new collagen. JULAINE™ works by gently activating the body’s own repair response, encouraging collagen and elastin production within the deeper layers of the skin.</span></p>\"}',1,'2026-03-18 22:34:51','2026-03-18 22:41:44','5886d3ce-8974-42f5-b49d-bc74055e4744'),
(4213,4213,1,'True Tissue Regeneration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Tissue Regeneration\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ works by encouraging your skin to rebuild its own collagen from within. Rather than creating an instant change, it supports gradual renewal by stimulating the cells responsible for healthy, youthful skin. The collagen produced is predominantly Type I collagen, the form most closely associated with skin firmness, bounce, and strength.</span></p>\"}',1,'2026-03-18 22:34:51','2026-03-18 22:41:44','a6d5d4df-c85e-4298-89d3-4ea557e52fb7'),
(4214,4214,1,'Exceptional Longevity','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Exceptional Longevity\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is designed for long-term improvement, with results that typically last 18–24 months following a course of 3 treatments. Rather than creating a temporary change, it supports your skin to rebuild its own collagen, delivering gradual, lasting rejuvenation. Over time, the treatment material is naturally broken down by the body, leaving behind the new collagen that your skin has produced.</span></p>\"}',1,'2026-03-18 22:34:51','2026-04-13 12:47:41','5911c9f9-abd7-48fa-b333-2854daa18d22'),
(4215,4215,1,'WHAT IS JULÄINE™?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JULÄINE™?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">JULÄINE™ is a next-generation poly-L-lactic (PLLA) collagen-stimulating treatment developed in Sweden. It works by encouraging your skin to produce more of its own natural collagen over time, supporting genuine tissue renewal from within, and significantly improving skin quality with a gradual skin-tightening effect.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of bio-stimulation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">“JULÄINE™ represents a fundamental shift in how we approach facial rejuvenation. Rather than focusing on immediate change, it works by stimulating your skin’s own collagen-producing cells (fibroblasts), helping the skin rebuild and strengthen itself from within. Because this relies on natural biological processes, results develop gradually rather than overnight. Let me explain the biological processes that are occurring after treatment with JULÄINE™:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 1:</strong> Immediately After Treatment (Days 1-3): The PLLA particles are injected into the deep dermis of your skin, where they get to work. In the first few days, your skin starts its natural repair process. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 2: </strong>Collagen Cells Are Activated (Weeks 1-3): Over the following weeks, JULÄINE™ begins activating fibroblasts — the cells responsible for producing collagen and elastin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 3: </strong>Progressive Collagen Formation (Weeks 4-12): As new collagen and elastin begin to form, visible improvements become more noticeable. Skin starts to look firmer, smoother, and more even in tone.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> <strong>Phase 4: </strong>Lasting Skin Improvement (Months 6-24) As your skin continues to build new collagen, the PLLA treatment material itself is gradually and safely broken down by your body. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led bio-stimulation matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">\\\"Bio-stimulators like JULÄINE™ require a detailed understanding of facial anatomy, tissue biology, and cellular signalling pathways. This is a regenerative treatment, and success depends on careful assessment, precision, and sound clinical judgement rather than a one-size-fits-all approach. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP with over a decade of clinical experience, I bring a medical understanding of skin structure, collagen behaviour, and tissue response that guides how and when treatments should be used. Just as importantly, I understand when a bio-stimulator is appropriate - and when it is not. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Not every concern is best treated with JULÄINE™ alone. Some patients may benefit more from dermal filler for targeted volume, polynucleotides for cellular repair, or a carefully planned combination approach. My role is to assess what your skin truly needs and guide you honestly, using my clinical judgement and extensive medical training.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> Technique is also critical with collagen-stimulating treatments. Placement depth, product distribution, and pacing all influence comfort, safety, and results. I manage the entire regenerative journey with precision, from treatment planning through to aftercare and follow-up.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-18 22:34:51','2026-04-20 19:15:28','8fac3c10-2d32-4b17-a62f-744c240fbdbf'),
(4216,4216,1,'What Areas Can JULÄINE™ Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can JULÄINE™ Treat?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Common Treatment Areas:</span></span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Midface Rejuvenation</strong> - Restore youthful support to flattened cheeks and temples. JULÄINE™ works by strengthening the skin from within, improving firmness and structure in areas affected by collagen loss, creating a subtle lifting and tightening effect that looks completely natural. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Nasolabial Folds (Smile Lines)</strong> - Soften the appearance of lines running from the nose to the corners of the mouth, by improving collagen support in the surrounding skin, leading to gradual, natural-looking improvement over time. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Jawline Definition </strong>- Improves jawline definition and addresses early jowling. JULÄINE™ supports collagen renewal and tissue firmness, helping create a more defined, tightened lower face.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Neck Rejuvenation</strong> - Improves skin laxity and crepey texture in the neck area. JULÄINE™ tightens tissue and stimulates collagen for a smoother, more youthful neck appearance.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 22:34:51','2026-04-13 12:54:27','b8803668-a442-427d-bb32-a23ead609c7c'),
(4217,4217,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-18 22:34:51','2026-03-26 08:52:14','7bc74d92-d2e8-4aa2-958f-97a8556a0a7a'),
(4218,4218,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Bio-Stimulator answered by Dr Rachel.\"}',1,'2026-03-18 22:34:51','2026-04-13 12:48:59','4a2b6bcd-3955-4b29-8dd8-3173a8664edc'),
(4220,4220,1,'Is JULÄINE™ treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find JULÄINE™ treatment very comfortable. The product itself does not sting, and it is placed into the deeper layers of the skin using a soft, flexible cannula rather than multiple sharp needle injections. This helps minimise discomfort during the procedure.\\nYou may feel some pressure as the product is carefully placed, but this is generally well tolerated. Any tenderness afterwards is usually mild and, if it occurs, settles within 12-24 hours.\"}',1,'2026-03-18 22:34:51','2026-03-20 18:34:52','cc1a22fb-ca76-4a06-a8aa-615bb619c860'),
(4221,4221,1,'How many JULÄINE™ sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many JULÄINE™ sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"For most patients, I recommend a course of 3-4 treatments, spaced around 4-6 weeks apart. This allows results to build gradually and evenly, giving your skin time to respond and produce new collagen between sessions.\\nSome patients, particularly those with more advanced skin laxity, may benefit from additional treatments. The exact number needed varies from person to person and depends on how your skin responds.\\nDuring your consultation, I will assess your skin carefully and create a personalised treatment plan tailored to your individual concerns and goals.\"}',1,'2026-03-18 22:34:51','2026-03-20 18:34:52','a6914bb8-7e37-4ed4-a7eb-686c2d68358f'),
(4223,4223,1,'How long do JULÄINE™ results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do JULÄINE™ results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results typically last around 18-24 months following a complete treatment course of 3 sessions. This incredible longevity is because JULÄINE™ works by stimulating your skin to produce its own collagen, rather than relying on a temporary product to create change.\\nOver time, the PLLA treatment material is naturally and evenly broken down by the body, while the collagen your skin has produced continues to support firmness, texture, and structure. For many patients, a single maintenance treatment every 18-24 months is enough to help sustain results long-term.\\nThis makes JULÄINE™ a cost-effective, long-term approach to skin health, with benefits that continue well beyond the treatment period itself.\"}',1,'2026-03-18 22:34:51','2026-03-20 18:34:52','64cff170-9be5-47ee-a597-48e4a6738b6b'),
(4224,4224,1,'Is there downtime after JULÄINE™?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there downtime after JULÄINE™?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is minimal. You may notice small marks where the cannula was inserted, along with mild swelling for 24-48 hours. Occasionally, slight bruising can occur, but this is usually minor and settles on its own.\\nMost patients return to work and normal daily activities immediately. I advise avoiding strenuous exercise for 24 hours to reduce the risk of bruising. One of the advantages of JULÄINE™ is that aftercare is straightforward, with no intensive massage or complicated routines required.\\nAs a general guide, I recommend avoiding aesthetic treatments in the week leading up to important events, and allowing a 48-hour buffer for any visible marks to settle.\"}',1,'2026-03-18 22:34:51','2026-03-20 18:34:52','577ef1d6-6390-47f8-9aa8-7160ebc3f191'),
(4225,4225,1,'Can JULÄINE™ be combined with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can JULÄINE™ be combined with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, JULÄINE™ works beautifully alongside other aesthetic treatments for comprehensive facial rejuvenation. It can be combined with <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">anti-wrinkle injections </a>(regeneration plus wrinkle prevention), <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> (long-term regeneration plus immediate volume where needed), <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> (collagen stimulation plus hydration), and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> (bio-stimulation plus cellular repair). I will discuss the optimal combination approach during your consultation based on your specific concerns.</p>\"}',1,'2026-03-18 22:34:51','2026-03-20 18:34:52','08b60593-298d-43ef-a782-ea5f444fe527'),
(4226,4226,1,'Is JULÄINE™ safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes - when administered by a qualified medical professional, JULÄINE™ has an excellent safety profile. Poly-L-lactic acid (PLLA) has been used safely in medicine for decades, including in dissolvable sutures and orthopaedic applications. JULÄINE™ LASYNPRO™ technology represents the latest advancement in PLLA bio-stimulation, working through a low-inflammatory pathway for superior safety compared to older-generation products. </p><p> </p><p>Over time, the treatment material is naturally broken down by the body, while the collagen your skin produces remains. This allows results to develop gradually and integrate naturally with your own tissue. As a GMC-registered doctor and a member of CMAC (the Complications in Medical Aesthetics Collaborative), I follow strict medical standards for assessment, treatment planning, injection technique, and aftercare. While complications are uncommon when treatment is carried out appropriately, this medical oversight ensures that safety is prioritised at every stage.</p>\"}',1,'2026-03-18 22:34:51','2026-03-20 18:34:52','21ecbdc1-5715-468e-bb48-361d872698ee'),
(4227,4227,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology. </p><p> </p><p>As a doctor, I am very selective about the treatments I introduce into my clinic. JULÄINE™ is a collagen-stimulating treatment I have chosen because of its strong scientific foundation, innovative formulation and the natural, reliable results it can achieve.</p>\"}',1,'2026-03-18 22:34:51','2026-04-13 12:50:11','29555d68-3b34-4aac-8f5b-12234b5e6291'),
(4228,4228,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. Use a gentle cleanser only, without active ingredients, for 48 hours. A soothing eye product containing hyaluronic acid or peptides can be applied to support hydration. Daily use of SPF 50 is essential to protect the delicate under-eye skin. Avoid retinoids, vitamin C and other active ingredients around the eyes for 3-5 days following treatment. Detailed aftercare instructions are provided.\"}',1,'2026-03-18 22:34:51','2026-03-18 22:34:51','60226965-9a1d-46a6-957c-ba77b3bd7739'),
(4229,4229,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-18 22:34:51','2026-03-18 22:34:51','e116dbff-5a25-4252-9888-a0421908f48b'),
(4230,4230,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-18 22:34:51','2026-04-20 19:15:28','473fb34b-c3c8-499c-9a75-c76546b51fb1'),
(4244,4244,1,'Anti-Wrinkle Injection','anti-wrinkle-injection-2','treatments/anti-wrinkle-injection-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','18b064d3-9225-4a3f-a889-856dd96a61e8'),
(4245,4245,1,'JULÄINE™ Bio-Stimulator','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Next-generation PLLA collagen stimulator | Natural facial rejuvenation lasting 24 months | LASYNPRO™ technology </span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','fab8d0b3-4d6f-4da6-b0cd-b3d25c9e71fe'),
(4246,4246,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','c05dc527-b7ad-48dd-a9a6-e278f9840438'),
(4247,4247,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £750\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','f748713e-b7d5-4827-b074-1ddd36a966bf'),
(4248,4248,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','46ca06ab-69c3-4025-954a-16f3fc947d59'),
(4249,4249,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"12-24 Hours\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','264f3251-2976-4826-871a-1b60a426b7e8'),
(4250,4250,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Up to 2 Years\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','ebacc43f-4034-4e45-9c12-8bfc656e27ef'),
(4251,4251,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose JULÄINE™ Bio-Stimulator?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is a next-generation collagen-stimulating treatment designed to increase your skin’s own collagen production at a deeper level. By supporting long-term collagen renewal, JULÄINE™ delivers visible improvements in skin firmness, texture, and radiance, with results that develop naturally and last far longer than many traditional treatments.</span></p>\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','45f654fc-6fe1-4498-a7a3-bee9ddbd1569'),
(4252,4252,1,'Next-Generation Swedish Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Next-Generation Swedish Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULAINE™ is a next-generation </span><span style=\\\"background-color:#ffffff;color:#333333;\\\">poly-L-lactic (PLLA) injectable</span><span style=\\\"background-color:transparent;color:#000000;\\\"> designed to significantly improve skin quality by stimulating your skin’s own natural collagen production. Rather than creating instant change, it supports gradual, progressive improvement by working with your body’s natural biology.</span></p>\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','ac8649b8-ad70-4f23-b404-a74f7e6cd8cd'),
(4253,4253,1,'The Invisible Transformation','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"The Invisible Transformation\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULAINE™ is a luxury investment in long-term skin health. Results develop gradually, in line with neocollagenesis — the natural process by which your skin produces new collagen. JULAINE™ works by gently activating the body’s own repair response, encouraging collagen and elastin production within the deeper layers of the skin.</span></p>\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','71a97ff9-eaf9-463a-9364-2d3a120a0532'),
(4254,4254,1,'True Tissue Regeneration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Tissue Regeneration\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ works by encouraging your skin to rebuild its own collagen from within. Rather than creating an instant change, it supports gradual renewal by stimulating the cells responsible for healthy, youthful skin. The collagen produced is predominantly Type I collagen, the form most closely associated with skin firmness, bounce, and strength.</span></p>\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','ef2faf30-cc8e-4cc4-a07c-5b884cf8c7c9'),
(4255,4255,1,'Exceptional Longevity','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Exceptional Longevity\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is designed for long-term improvement, with results that typically last 18–24 months following a course of 3 treatments. Rather than creating a temporary change, it supports your skin to rebuild its own collagen, delivering gradual, lasting rejuvenation. Over time, the treatment material is naturally broken down by the body, leaving behind the collagen your skin has produced. </span></p>\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','89209c6a-26b0-434d-a433-288ea3fdc9d3'),
(4256,4256,1,'WHAT IS JULÄINE™?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JULÄINE™?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">JULÄINE™ is a next-generation poly-L-lactic (PLLA) collagen-stimulating treatment developed in Sweden. It works by encouraging your skin to produce more of its own natural collagen over time, supporting genuine tissue renewal from within, and significantly improving skin quality with a gradual skin-tightening effect.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of bio-stimulation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">“JULÄINE™ represents a fundamental shift in how we approach facial rejuvenation. Rather than focusing on immediate change, it works by stimulating your skin’s own collagen-producing cells (fibroblasts), helping the skin rebuild and strengthen itself from within. Because this relies on natural biological processes, results develop gradually rather than overnight. Let me explain the biological processes that are occurring after treatment with JULÄINE™:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 1:</strong> Immediately After Treatment (Days 1-3): The PLLA particles are injected into the deep dermis of your skin, where they get to work. In the first few days, your skin starts its natural repair process. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 2: </strong>Collagen Cells Are Activated (Weeks 1-3): Over the following weeks, JULÄINE™ begins activating fibroblasts — the cells responsible for producing collagen and elastin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 3: </strong>Progressive Collagen Formation (Weeks 4-12): As new collagen and elastin begin to form, visible improvements become more noticeable. Skin starts to look firmer, smoother, and more even in tone.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> <strong>Phase 4: </strong>Lasting Skin Improvement (Months 6-24) As your skin continues to build new collagen, the PLLA treatment material itself is gradually and safely broken down by your body. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led bio-stimulation matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">\\\"Bio-stimulators like JULÄINE™ require a detailed understanding of facial anatomy, tissue biology, and cellular signalling pathways. This is a regenerative treatment, and success depends on careful assessment, precision, and sound clinical judgement rather than a one-size-fits-all approach. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP with over a decade of clinical experience, I bring a medical understanding of skin structure, collagen behaviour, and tissue response that guides how and when treatments should be used. Just as importantly, I understand when a bio-stimulator is appropriate - and when it is not. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Not every concern is best treated with JULÄINE™ alone. Some patients may benefit more from dermal filler for targeted volume, polynucleotides for cellular repair, or a carefully planned combination approach. My role is to assess what your skin truly needs and guide you honestly, using my clinical judgement and extensive medical training.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> Technique is also critical with collagen-stimulating treatments. Placement depth, product distribution, and pacing all influence comfort, safety, and results. I manage the entire regenerative journey with precision, from treatment planning through to aftercare and follow-up.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','50beeedb-dce0-4ed7-8311-4c95de6c6c86'),
(4257,4257,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">Forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','982ec4e7-7d83-4d93-a5b3-c861cd9f9b3e'),
(4258,4258,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','7cd5598f-2fc7-4135-b7cf-07bf1e2c66b4'),
(4259,4259,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','f845a714-8067-4549-bfea-70fa2ee4f4dc'),
(4261,4261,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are not permanent. The effects gradually wear off over time as muscle movement slowly returns, and you will need repeated treatments to maintain your results. How often treatment is repeated varies from person to person and depends on how your muscles respond.\\nSome patients choose to repeat treatment regularly every 3-4 months, while others prefer occasional top-ups. This is always discussed on an individual basis, rather than following a fixed schedule.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','b73d95aa-f46e-417d-ae50-2c96a9c76d80'),
(4262,4262,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are temporary by design. For most people, results last up to around 3 months and fade gradually as muscle movement slowly returns.\\nThis is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent, non-surgical solutions for expression lines caused by muscle movement.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','1e2456ab-82c4-486f-8507-22ec36ec62a1'),
(4264,4264,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find treatment much more comfortable than they expect. I use very fine needles and precise techniques to minimise discomfort. The sensation is usually described as a quick scratch or brief pressure, and is generally very well tolerated.\\nTreatment itself is quick, with the whole process typically taking around 20–30 minutes. Your skin is cleansed, injection points are carefully planned, and small, controlled amounts of botulinum toxin are placed into specific muscles. You can return to normal activities straight afterwards.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','70392e2f-7d86-4fe9-a6ca-03d71c2bca6a'),
(4265,4265,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"No. My approach is focused on achieving natural, balanced results that suit you and your preferences. Treatment is planned conservatively, with careful attention to both medical judgement and aesthetic restraint.\\nBy softening overactive muscle activity rather than over-treating, results look relaxed and refreshed rather than stiff or unnatural. Every treatment is personalised, so the level of movement preserved is guided by what feels right for you.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','17188709-47cd-4a6f-8b32-588d8bc6d5e0'),
(4266,4266,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"There is little to no downtime. You may notice mild redness or tiny marks at the injection sites, which usually settle within an hour. Occasionally, small areas of bruising can occur, particularly around delicate areas, but this is generally minor and can be covered with makeup.\\nMost patients return to work and normal daily activities straight away. To help minimise the risk of bruising, it is advised to avoid strenuous exercise for 24 hours. Facial treatments and massages should be avoided for around 2 weeks following treatment.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','e3520786-3481-456c-9fcf-b1e6c00e5ba5'),
(4267,4267,1,'Is Sunekos treatment safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, when administered by a qualified medical professional. Sunekos Performa is CE-marked and contains biocompatible ingredients - non-crosslinked hyaluronic acid and amino acids, with no chemical crosslinkers, making it exceptionally well tolerated in the delicate periocular area. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols, including detailed medical history assessment, strict sterile technique, and appropriate post-treatment monitoring. Emergency equipment is always available.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','c3cb8ad0-bf0b-456e-87e6-902c7ed554e8'),
(4268,4268,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels.\\nAnti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced bio-stimulators like JULAINE™ or polynucleotides to boost collagen production and improve skin laxity, and subtle dermal filler to artfully restore lost volume.\\nMany of my Wirral patients support their treatment outcomes with tailored pharmaceutical-strength skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','bc1e7556-27b8-4e66-af18-3e0addded7f3'),
(4269,4269,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. Use a gentle cleanser only, without active ingredients, for 48 hours. A soothing eye product containing hyaluronic acid or peptides can be applied to support hydration. Daily use of SPF 50 is essential to protect the delicate under-eye skin. Avoid retinoids, vitamin C and other active ingredients around the eyes for 3-5 days following treatment. Detailed aftercare instructions are provided.\"}',1,'2026-03-18 22:49:09','2026-03-18 22:49:09','4803a444-7397-495a-a0c7-af960571f759'),
(4270,4270,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-18 22:49:10','2026-03-18 22:49:10','4665fb4b-7452-4ef9-8b7d-59163288beb2'),
(4271,4271,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-18 22:49:10','2026-03-18 22:49:10','bd93e702-fdfa-4623-b151-e06fad42966f'),
(4284,4284,1,'Anti-Wrinkle Injection','anti-wrinkle-injection-2','treatments/anti-wrinkle-injection-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','d9822610-c127-43e7-aaec-f20ae485734b'),
(4285,4285,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can JULÄINE™ Treat?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Common Treatment Areas:</span></span></h3><p> </p><p><strong>Midface Restoration</strong> - Restore youthful support to flattened cheeks and temples. JULÄINE™ works by strengthening the skin from within, improving firmness and structure in areas affected by collagen loss, creating a subtle lifting and tightening effect that looks completely natural. </p><p> </p><p><strong>Nasolabial Folds (Smile Lines)</strong> - Soften the appearance of lines running from the nose to the corners of the mouth, by improving collagen support in the surrounding skin, leading to gradual, natural-looking improvement over time. </p><p> </p><p><strong>Jawline Definition </strong>- Improves jawline definition and addresses early jowling. JULÄINE™ supports collagen renewal and tissue firmness, helping create a more defined, tightened lower face.</p><p> </p><p><strong>Neck Rejuvenation</strong> - Improves skin laxity and crepey texture in the neck area. JULÄINE™ tightens tissue and stimulates collagen for a smoother, more youthful neck appearance.</p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','e3a402c2-d35f-4133-bab0-74c94920fff8'),
(4286,4286,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about JULÄINE™ Bio - Stimulator answered by Dr Rachel.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','8e0ba0b5-63da-44ee-a89c-deb0f4d77321'),
(4288,4288,1,'Is JULÄINE™ treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ treatment painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find JULÄINE™ treatment very comfortable. The product itself does not sting, and it is placed into the deeper layers of the skin using a soft, flexible cannula rather than multiple sharp needle injections. This helps minimise discomfort during the procedure.\\nYou may feel some pressure as the product is carefully placed, but this is generally well tolerated. Any tenderness afterwards is usually mild and, if it occurs, settles within 12–24 hours.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','1b0a277e-26f7-4f25-90c6-1e0f06f72946'),
(4289,4289,1,'How many JULÄINE™ sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many JULÄINE™ sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"For most patients, I recommend a course of 3–4 treatments, spaced around 4–6 weeks apart. This allows results to build gradually and evenly, giving your skin time to respond and produce new collagen between sessions.\\nSome patients, particularly those with more advanced skin laxity, may benefit from additional treatments. The exact number needed varies from person to person and depends on how your skin responds.\\nDuring your consultation, I will assess your skin carefully and create a personalised treatment plan tailored to your individual concerns and goals.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','73909eb9-2800-4f2d-9178-70f3af2013be'),
(4291,4291,1,'How long do JULÄINE™ results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do JULÄINE™ results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results typically last around 18–24 months following a complete treatment course of 3 sessions. This incredible longevity is because JULÄINE™ works by stimulating your skin to produce its own collagen, rather than relying on a temporary product to create change.\\nOver time, the PLLA treatment material is naturally and evenly broken down by the body, while the collagen your skin has produced continues to support firmness, texture, and structure. For many patients, a single maintenance treatment every 18–24 months is enough to help sustain results long-term.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','c744c4e8-0da8-4bdf-ad38-1f6f5ec1228d'),
(4292,4292,1,'Is there downtime after JULÄINE™?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there downtime after JULÄINE™?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is minimal. You may notice small marks where the cannula was inserted, along with mild swelling for 24–48 hours. Occasionally, slight bruising can occur, but this is usually minor and settles on its own.\\nMost patients return to work and normal daily activities immediately. I advise avoiding strenuous exercise for 24 hours to reduce the risk of bruising. One of the advantages of JULÄINE™ is that aftercare is straightforward, with no intensive massage or complicated routines required.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','ca3b6c8b-334c-42e3-ad31-f3ba63a1a90c'),
(4293,4293,1,'Can JULÄINE™ be combined with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can JULÄINE™ be combined with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, JULÄINE™ works beautifully alongside other aesthetic treatments for comprehensive facial rejuvenation. It can be combined with anti-wrinkle injections (regeneration plus wrinkle prevention), dermal fillers (long-term regeneration plus immediate volume where needed), skin boosters (collagen stimulation plus hydration), and polynucleotides (bio-stimulation plus cellular repair). I will discuss the optimal combination approach during your consultation based on your specific concerns.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','85a5f6ff-95d9-4ad6-8b52-a11f005574ff'),
(4294,4294,1,'Is JULÄINE™ safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes - when administered by a qualified medical professional, JULÄINE™ has an excellent safety profile. Poly-L-lactic acid (PLLA) has been used safely in medicine for decades, including in dissolvable sutures and orthopaedic applications. JULÄINE™ LASYNPRO™ technology represents the latest advancement in PLLA bio-stimulation, working through a low-inflammatory pathway for superior safety compared to older-generation products. Over time, the treatment material is naturally broken down by the body, while the collagen your skin produces remains. This allows results to develop gradually and integrate naturally with your own tissue.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','c5e7f707-8d5e-4b5a-9f60-6ac7d3ac391b'),
(4295,4295,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology.\\nIn clinical practice, this more controlled behaviour in the tissue is associated with a more predictable treatment experience, improved comfort, and a reduced likelihood of uneven collagen stimulation or unwanted nodules. These factors are particularly important when treating delicate areas and when planning results that develop gradually and look natural.\"}',1,'2026-03-18 23:00:22','2026-03-18 23:00:22','ee980491-a386-4649-958d-59e4af83985d'),
(4296,4296,1,'Anti-Wrinkle Injection','anti-wrinkle-injection-2','treatments/anti-wrinkle-injection-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 23:00:26','2026-03-18 23:00:26','0b61f224-573a-4bc3-8c89-959138926919'),
(4298,4298,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 23:00:53','2026-03-18 23:00:53','b7629cec-d0f9-4ecb-a46d-0797669c9e69'),
(4301,4301,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 23:04:29','2026-03-18 23:04:29','21f969e7-f5f4-4c3f-95c6-ec437e9c1127'),
(4302,4302,1,'What Areas Can JULÄINE™ Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can JULÄINE™ Treat?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Common Treatment Areas:</span></span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Midface Restoration</strong> - Restore youthful support to flattened cheeks and temples. JULÄINE™ works by strengthening the skin from within, improving firmness and structure in areas affected by collagen loss, creating a subtle lifting and tightening effect that looks completely natural. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Nasolabial Folds (Smile Lines)</strong> - Soften the appearance of lines running from the nose to the corners of the mouth, by improving collagen support in the surrounding skin, leading to gradual, natural-looking improvement over time. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Jawline Definition </strong>- Improves jawline definition and addresses early jowling. JULÄINE™ supports collagen renewal and tissue firmness, helping create a more defined, tightened lower face.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Neck Rejuvenation</strong> - Improves skin laxity and crepey texture in the neck area. JULÄINE™ tightens tissue and stimulates collagen for a smoother, more youthful neck appearance.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 23:04:29','2026-03-18 23:04:29','3a9f9f11-6fc4-4418-a36e-dc07744a0e3c'),
(4303,4303,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-03-18 23:06:21','2026-03-30 18:31:48','72a209ef-10be-46c6-bafd-1f53480133a6'),
(4304,4304,1,'Chemical Peels Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"> Doctor-led skin rejuvenation | Superficial to deep peels | Treat acne, scarring, pigmentation &amp; ageing</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-18 23:06:21','2026-04-17 16:28:49','21f96b2c-ea44-4469-ab73-4d056579a616'),
(4305,4305,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 23:06:21','2026-03-18 23:06:21','dec956eb-9e7d-40ea-ad5c-b5fb6c160e38'),
(4306,4306,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £135\"}',1,'2026-03-18 23:06:21','2026-04-06 21:26:55','bdb07d28-6fa0-4ce8-bc87-9caa3efe61bd'),
(4307,4307,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-18 23:06:21','2026-03-18 23:06:21','11abf6cb-0678-46c3-9cdd-c151742d4add'),
(4308,4308,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-18 23:06:21','2026-03-18 23:26:10','2fe394de-2aa7-4d74-ae42-5067e12a4e59'),
(4309,4309,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6 Months\"}',1,'2026-03-18 23:06:21','2026-03-18 23:26:10','3806aaac-d7df-49a7-b803-2c1a3bfac6b6'),
(4310,4310,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">If your skin looks dull or congested, if pigmentation refuses to fade, or if fine lines and acne scarring are beginning to affect your confidence, chemical peels can offer a level of skin renewal that topical products alone simply cannot achieve. By accelerating cell turnover and stimulating deeper regeneration, professional chemical resurfacing treatments improve clarity, smooth texture, brighten uneven tone and restore luminosity. The result is skin that looks fresher, healthier and revitalised.</span></p>\"}',1,'2026-03-18 23:06:21','2026-04-06 21:26:55','f468dc98-643d-4de2-acb5-5040a664b511'),
(4311,4311,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Accelerated Cellular Renewal\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Professional chemical peels use carefully selected acids to gently loosen and remove the build-up of dead, damaged skin cells on the surface. By accelerating your skin’s natural renewal process, fresher, brighter skin is revealed while deeper layers are stimulated to regenerate. This controlled resurfacing not only improves texture and clarity, but also supports collagen production beneath the surface. </span></p>\"}',1,'2026-03-18 23:06:21','2026-03-18 23:26:10','5a194a36-fc69-46b4-8b67-177b3f98c9b1'),
(4315,4315,1,'What Is Chemical Resurfacing?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Chemical Resurfacing?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often referred to as advanced chemical peels, chemical resurfacing treatments go beyond traditional exfoliation to deliver deeper, regenerative skin correction. Chemical resurfacing is a medically controlled skin regeneration treatment that uses carefully formulated acids and active ingredients to stimulate renewal within your skin. Rather than simply exfoliating the surface, resurfacing treatments work by activating cellular turnover, improving skin function and encouraging collagen production in a measured, targeted way. </span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When most people think of chemical peels, they often picture visible peeling and surface exfoliation. In reality, the most advanced treatments I offer go far beyond traditional peels. I work with pHformula to provide advanced chemical resurfacing - a controlled, regenerative approach that stimulates cellular renewal without the need for aggressive surface damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skin naturally renews itself over approximately 28–40 days, a process that slows with age, inflammation and environmental stress. Rather than simply removing the outer layer, pHformula resurfacing treatments activate specific renewal pathways within the skin while preserving barrier integrity. This is what makes pHformula fundamentally different.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These treatments combine carefully calibrated acids with regenerative active ingredients in balanced formulations. Instead of relying purely on strength, they use controlled delivery systems and synergistic actives to initiate correction at a cellular level.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4375],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led chemical peel matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Chemical peels may appear straightforward, but the difference between excellent results and complications lies in clinical judgement. As a GMC-registered GP, I approach your skin with medical insight as well as aesthetic expertise. I assess your Fitzpatrick skin type accurately, identify contraindications such as active infection or recent isotretinoin use, and evaluate your skin’s healing capacity before recommending treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is particularly important for patients with darker skin tones, where the risk of post-inflammatory hyperpigmentation must be carefully managed. Appropriate preparation, correct product selection and conservative, intelligent treatment planning are essential to achieving improvement without triggering unwanted pigmentation.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Precision during treatment is essential. Acid selection, application technique, exposure time and skin response are all carefully monitored throughout your treatment. Rather than chasing visible peeling, I assess your skin in real time, adjusting the treatment to optimise regeneration while protecting and strengthening your skin barrier.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4372],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I recently had an aesthetic treatment and could not be more thrilled with the results. I appreciated the honesty, attention to detail, and genuine care for achieving natural-looking results. I highly recommend Dr Rachel to anyone considering aesthetic treatments.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lindsay Doolan\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.D.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-18 23:06:21','2026-04-20 19:16:21','676c4391-3351-4fa0-9e98-756e798833e5'),
(4316,4316,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Chemical Resurfacing?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if</span></span><span style=\\\"color:hsl(0,0%,20%);\\\"><span>:</span></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have stubborn pigmentation</strong> such as melasma, sun spots and post-inflammatory hyperpigmentation that skincare alone has not improved.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You struggle with acne or congestion</strong> and require deeper clinical-grade treatment to help clear pores and calm inflammation. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are noticing early ageing changes </strong>such as fine lines, sun damage and dullness, and would like to support collagen and healthier skin renewal.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your skin feels rough or uneven</strong> and you want smoother, brighter skin on which makeup sits beautifully.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have acne scarring</strong> and would benefit from gradual TCA resurfacing as part of a structured treatment course.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want to maintain healthy, radiant skin</strong> and include regular light peels within your personalised Radiance Collection programme.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 23:06:21','2026-04-06 21:26:55','19e80d16-d642-44db-bf31-9eb28a37723d'),
(4317,4317,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-18 23:06:21','2026-03-26 08:51:41','86c1a13a-f5c2-4322-9187-dff3fc9424b0'),
(4318,4318,1,'Frequently Asked Questions About Chemical Peels','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Chemical Peels\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Chemical Peels answered by Dr Rachel.\"}',1,'2026-03-18 23:06:21','2026-04-13 12:27:25','2c2d98a8-223a-4712-a511-638c4ef86fdd'),
(4319,4319,1,'How much downtime do chemical peels require?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much downtime do chemical peels require?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"For patients who require deeper resurfacing, I also offer carefully selected TCA resurfacing treatments. Even then, the aim is still controlled, doctor-led improvement with only mild flaking rather than dramatic shedding. I will always talk you through what to expect based on your treatment and skin type, and we can plan this carefully within your personalised Radiance Collection journey so results remain gradual, safe and natural-looking.\"}',1,'2026-03-18 23:06:21','2026-04-16 13:57:12','df501438-a571-467f-b27a-2ea9cc6d2844'),
(4320,4320,1,'Do chemical peels hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do chemical peels hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>No - the resurfacing treatments I offer are not painful. With pHformula dermatological controlled skin resurfacing, most patients feel only a gentle warmth or light tingling for a few minutes, because the treatment is designed to work with your skin barrier rather than aggressively stripping it. </p><p> </p><p>If your skin has been prepared with the recommended homecare, treatments are usually very comfortable, and afterwards the skin may feel slightly warm or tight for a short time, similar to mild sun exposure. There are very deep peels that can be uncomfortable, but I do not offer these in the clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.</p>\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','eeb46e71-dbe9-4787-abc4-6ebed588c273'),
(4321,4321,1,'How many chemical peel sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many chemical peel sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This depends on your skin concerns and what we are trying to improve. With pHformula dermatological controlled skin resurfacing, I usually recommend a course of 6 treatments, spaced 4-6 weeks apart, to allow gradual and safe improvement. For targeted TCA resurfacing, most patients need 2-3 treatments, again spaced 4-6 weeks apart. I will assess your skin carefully during consultation and tailor the plan to your goals, skin type, and how your skin responds.\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','b7662bf7-19ce-4074-8a7c-72e97be1eaef'),
(4322,4322,1,'Are chemical peels safe for dark skin?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are chemical peels safe for dark skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes - the resurfacing treatments I offer are designed to be suitable for all skin types and tones. I use the pHformula dermatological controlled skin resurfacing approach, which works with the skin barrier rather than aggressively stripping it, making it much safer and more predictable across different Fitzpatrick types. As a GP, I still assess your skin carefully first and prepare it with the right homecare so we minimise any risk of post-inflammatory pigmentation. With the correct protocols and doctor-led treatment, chemical resurfacing can safely improve pigmentation, acne, and texture in every skin tone.\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','2d253a5f-e0b2-4a01-b706-a84341170445'),
(4323,4323,1,'What is the difference between glycolic, salicylic, and TCA peels?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between glycolic, salicylic, and TCA peels?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Traditional peels typically rely on a single acid. Glycolic acid is often used to improve dullness and fine texture, salicylic acid is particularly helpful for oily or acne-prone skin, and TCA (trichloroacetic acid) works at a deeper level to address pigmentation and visible ageing changes. In my clinic, most treatments use pHformula’s advanced controlled skin resurfacing systems, which combine multiple acids in carefully balanced formulations. This allows me to tailor treatments precisely to your skin concerns while keeping irritation low and results more predictable and progressive.\"}',1,'2026-03-18 23:06:21','2026-04-16 13:57:12','8389ed09-a00f-45ac-9a8e-a2813be7086a'),
(4324,4324,1,'Can I combine chemical peels with other treatments?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine chemical peels with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Combining treatments often gives the most natural, effective results when each one targets a different layer of the skin. Chemical resurfacing improves the surface, <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">microneedling </a>supports deeper collagen, <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> improve hydration and skin quality, and treatments like <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a> or carefully placed <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> restore structural support where needed. We approach this step by step over time, not all at once. I plan your treatments in the right sequence and pace, allowing your skin to recover and respond properly, so the final result looks natural, balanced, and truly healthy.</p>\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','cb362dba-99e1-44f5-a11f-300bd60d0ebe'),
(4325,4325,1,'What skincare should I use after a chemical peel?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after a chemical peel?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"After resurfacing, your skin needs gentle, supportive care. I usually recommend a simple routine with a mild cleanser, soothing moisturiser, and strict daily SPF 50 while the skin settles, and we pause stronger actives until your barrier has recovered. If you are having pHformula resurfacing or TCA treatments, you will already be on the appropriate clinical-grade pHformula homecare, which I tailor to support healing, protect your results, and prepare your skin safely for the next stage of treatment.\\nThis is all discussed in detail during your skin consultation, so you know exactly what to use and when.\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','357f3955-f29d-4f10-9654-1ff7e8266f26'),
(4326,4326,1,'How do I prevent pigmentation after a peel?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How do I prevent pigmentation after a peel?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The most important step is protecting your skin from sun exposure while it heals. I recommend daily broad-spectrum SPF 50, reapplying regularly, and avoiding strong sun or heat for the first few weeks after treatment. I also minimise risk by preparing your skin properly beforehand with the right homecare and choosing the safest resurfacing approach for your skin type. If you are having pHformula resurfacing or TCA treatments, you will already be on the appropriate clinical-grade pHformula homecare to support healing and reduce pigmentation risk.\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','4e188cca-5795-4ba4-b152-14929c095271'),
(4327,4327,1,'Can chemical peels treat acne?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can chemical peels treat acne?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes - chemical peels can be very helpful for acne and breakouts. pHformula dermatological controlled skin resurfacing, and in particular carefully selected TCA treatments, work to clear congestion, calm inflammation, and support healthier cell turnover so skin becomes clearer over time. Acne almost always responds best to a structured course of treatments alongside the right homecare, and I will assess your skin carefully to create a plan that treats both active breakouts and any marks or scarring safely and effectively.</p>\"}',1,'2026-03-18 23:06:21','2026-03-20 18:41:36','bb3a5dbf-16f2-4ca1-b05a-ec893bd520c0'),
(4328,4328,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-18 23:06:21','2026-04-20 19:16:22','698bb8a9-41e5-4c70-80c3-4529beb27dc9'),
(4329,4329,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','a3864b64-d6b1-451e-8e97-5df20cf7eb3f'),
(4330,4330,1,'JULÄINE™ Bio-Stimulator','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Next-generation PLLA collagen stimulator | Natural facial rejuvenation lasting 24 months | LASYNPRO™ technology </span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','019f2e11-3483-41a6-a27d-0eb52da32b88'),
(4331,4331,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','0f94ede6-b083-449e-a9b8-11bbc3351004'),
(4332,4332,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £750\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','534aca4b-1dff-4140-af62-34a90de3e3f4'),
(4333,4333,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','1ba9141d-eaaf-4896-9e40-2461df29d9be'),
(4334,4334,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"12-24 Hours\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','82b5a177-2e22-46f1-a7d8-52542136ed5e'),
(4335,4335,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Up to 2 Years\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','486e5d37-5345-4640-9455-5a33fd210c7e'),
(4336,4336,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose JULÄINE™ Bio-Stimulator?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is a next-generation collagen-stimulating treatment designed to increase your skin’s own collagen production at a deeper level. By supporting long-term collagen renewal, JULÄINE™ delivers visible improvements in skin firmness, texture, and radiance, with results that develop naturally and last far longer than many traditional treatments.</span></p>\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','f5fedc8d-6b00-4f04-8538-4f7f4d2dca55'),
(4337,4337,1,'Next-Generation Swedish Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Next-Generation Swedish Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULAINE™ is a next-generation </span><span style=\\\"background-color:#ffffff;color:#333333;\\\">poly-L-lactic (PLLA) injectable</span><span style=\\\"background-color:transparent;color:#000000;\\\"> designed to significantly improve skin quality by stimulating your skin’s own natural collagen production. Rather than creating instant change, it supports gradual, progressive improvement by working with your body’s natural biology.</span></p>\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','eb10dade-5af9-4c32-8f8e-1801a5eab541'),
(4341,4341,1,'WHAT IS JULÄINE™?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JULÄINE™?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">JULÄINE™ is a next-generation poly-L-lactic (PLLA) collagen-stimulating treatment developed in Sweden. It works by encouraging your skin to produce more of its own natural collagen over time, supporting genuine tissue renewal from within, and significantly improving skin quality with a gradual skin-tightening effect.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of bio-stimulation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">“JULÄINE™ represents a fundamental shift in how we approach facial rejuvenation. Rather than focusing on immediate change, it works by stimulating your skin’s own collagen-producing cells (fibroblasts), helping the skin rebuild and strengthen itself from within. Because this relies on natural biological processes, results develop gradually rather than overnight. Let me explain the biological processes that are occurring after treatment with JULÄINE™:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 1:</strong> Immediately After Treatment (Days 1-3): The PLLA particles are injected into the deep dermis of your skin, where they get to work. In the first few days, your skin starts its natural repair process. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 2: </strong>Collagen Cells Are Activated (Weeks 1-3): Over the following weeks, JULÄINE™ begins activating fibroblasts — the cells responsible for producing collagen and elastin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 3: </strong>Progressive Collagen Formation (Weeks 4-12): As new collagen and elastin begin to form, visible improvements become more noticeable. Skin starts to look firmer, smoother, and more even in tone.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> <strong>Phase 4: </strong>Lasting Skin Improvement (Months 6-24) As your skin continues to build new collagen, the PLLA treatment material itself is gradually and safely broken down by your body. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led bio-stimulation matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">\\\"Bio-stimulators like JULÄINE™ require a detailed understanding of facial anatomy, tissue biology, and cellular signalling pathways. This is a regenerative treatment, and success depends on careful assessment, precision, and sound clinical judgement rather than a one-size-fits-all approach. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP with over a decade of clinical experience, I bring a medical understanding of skin structure, collagen behaviour, and tissue response that guides how and when treatments should be used. Just as importantly, I understand when a bio-stimulator is appropriate - and when it is not. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Not every concern is best treated with JULÄINE™ alone. Some patients may benefit more from dermal filler for targeted volume, polynucleotides for cellular repair, or a carefully planned combination approach. My role is to assess what your skin truly needs and guide you honestly, using my clinical judgement and extensive medical training.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> Technique is also critical with collagen-stimulating treatments. Placement depth, product distribution, and pacing all influence comfort, safety, and results. I manage the entire regenerative journey with precision, from treatment planning through to aftercare and follow-up.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','b468efec-b2d6-49bf-8a02-5b98371293b8'),
(4342,4342,1,'What Areas Can JULÄINE™ Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can JULÄINE™ Treat?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Common Treatment Areas:</span></span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Midface Restoration</strong> - Restore youthful support to flattened cheeks and temples. JULÄINE™ works by strengthening the skin from within, improving firmness and structure in areas affected by collagen loss, creating a subtle lifting and tightening effect that looks completely natural. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Nasolabial Folds (Smile Lines)</strong> - Soften the appearance of lines running from the nose to the corners of the mouth, by improving collagen support in the surrounding skin, leading to gradual, natural-looking improvement over time. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Jawline Definition </strong>- Improves jawline definition and addresses early jowling. JULÄINE™ supports collagen renewal and tissue firmness, helping create a more defined, tightened lower face.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Neck Rejuvenation</strong> - Improves skin laxity and crepey texture in the neck area. JULÄINE™ tightens tissue and stimulates collagen for a smoother, more youthful neck appearance.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','0fe873c4-0fea-495b-8e91-e68a5f36922c'),
(4343,4343,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','82c29b86-40f2-40be-a72b-f576965d44a7'),
(4344,4344,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about JULÄINE™ Bio - Stimulator answered by Dr Rachel.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','c0cc0d7b-0fa0-4b4b-b5ff-c3218fa7b379'),
(4345,4345,1,'Is JULÄINE™ different from dermal fillers?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ different from dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes - they are fundamentally different, but often highly complementary.\\nDermal fillers are typically made from hyaluronic acid, a naturally occurring hydrating substance. They work by replacing lost volume and providing immediate shape and support. Results are visible straight away and usually last around 6–12 months, making fillers ideal for targeted volume correction or contouring.\\n\\nJULÄINE™, on the other hand, is a collagen bio-stimulator. Rather than replacing volume, it works by stimulating your skin to produce its own collagen over time. This supports long-term structural improvement, enhancing skin quality, firmness, and texture in a gradual, natural way. Most patients begin to notice changes around 2–3 months after treatment, with results continuing to improve over several months and typically lasting up to 18–24 months.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','75f2f2e9-4919-49b3-a6aa-8ff0bc8f11af'),
(4346,4346,1,'Is JULÄINE™ treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ treatment painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find JULÄINE™ treatment very comfortable. The product itself does not sting, and it is placed into the deeper layers of the skin using a soft, flexible cannula rather than multiple sharp needle injections. This helps minimise discomfort during the procedure.\\nYou may feel some pressure as the product is carefully placed, but this is generally well tolerated. Any tenderness afterwards is usually mild and, if it occurs, settles within 12–24 hours.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','425a75a6-999a-45f5-ae5a-055a36473ce6'),
(4347,4347,1,'How many JULÄINE™ sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many JULÄINE™ sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"For most patients, I recommend a course of 3–4 treatments, spaced around 4–6 weeks apart. This allows results to build gradually and evenly, giving your skin time to respond and produce new collagen between sessions.\\nSome patients, particularly those with more advanced skin laxity, may benefit from additional treatments. The exact number needed varies from person to person and depends on how your skin responds.\\nDuring your consultation, I will assess your skin carefully and create a personalised treatment plan tailored to your individual concerns and goals.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','f9652a41-2332-4029-9e67-967b846c2051'),
(4348,4348,1,'When will I see results from JULÄINE™?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from JULÄINE™?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results develop gradually as your skin begins to produce new collagen. Some patients notice an initial glow or improvement in skin texture shortly after the first treatment, but this is only the very early stage. Most patients report noticing more meaningful changes after the second treatment, usually around 4–6 weeks in. At this point, skin often looks smoother, brighter, and more supported, with an overall improvement in texture and firmness. The most significant changes develop from around 12 weeks onwards, once collagen production is well established. Improvements continue to build over the following months, with final results becoming visible in the months after your last treatment.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','64e0714d-cc97-4b28-abaa-ea7ab07c845a'),
(4349,4349,1,'How long do JULÄINE™ results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do JULÄINE™ results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results typically last around 18–24 months following a complete treatment course of 3 sessions. This incredible longevity is because JULÄINE™ works by stimulating your skin to produce its own collagen, rather than relying on a temporary product to create change.\\nOver time, the PLLA treatment material is naturally and evenly broken down by the body, while the collagen your skin has produced continues to support firmness, texture, and structure. For many patients, a single maintenance treatment every 18–24 months is enough to help sustain results long-term.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','fd33e48e-2d66-47cb-937a-827de3b32706'),
(4350,4350,1,'Is there downtime after JULÄINE™?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there downtime after JULÄINE™?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is minimal. You may notice small marks where the cannula was inserted, along with mild swelling for 24–48 hours. Occasionally, slight bruising can occur, but this is usually minor and settles on its own.\\nMost patients return to work and normal daily activities immediately. I advise avoiding strenuous exercise for 24 hours to reduce the risk of bruising. One of the advantages of JULÄINE™ is that aftercare is straightforward, with no intensive massage or complicated routines required.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','ab364cb5-0686-48e5-9b9d-e51ff06dd456'),
(4351,4351,1,'Can JULÄINE™ be combined with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can JULÄINE™ be combined with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, JULÄINE™ works beautifully alongside other aesthetic treatments for comprehensive facial rejuvenation. It can be combined with anti-wrinkle injections (regeneration plus wrinkle prevention), dermal fillers (long-term regeneration plus immediate volume where needed), skin boosters (collagen stimulation plus hydration), and polynucleotides (bio-stimulation plus cellular repair). I will discuss the optimal combination approach during your consultation based on your specific concerns.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','812e1e75-381b-4cde-91a4-6e67bca64397'),
(4352,4352,1,'Is JULÄINE™ safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes - when administered by a qualified medical professional, JULÄINE™ has an excellent safety profile. Poly-L-lactic acid (PLLA) has been used safely in medicine for decades, including in dissolvable sutures and orthopaedic applications. JULÄINE™ LASYNPRO™ technology represents the latest advancement in PLLA bio-stimulation, working through a low-inflammatory pathway for superior safety compared to older-generation products. Over time, the treatment material is naturally broken down by the body, while the collagen your skin produces remains. This allows results to develop gradually and integrate naturally with your own tissue.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','6ae31a98-8492-4e99-855a-5328bc207284'),
(4353,4353,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology.\\nIn clinical practice, this more controlled behaviour in the tissue is associated with a more predictable treatment experience, improved comfort, and a reduced likelihood of uneven collagen stimulation or unwanted nodules. These factors are particularly important when treating delicate areas and when planning results that develop gradually and look natural.\"}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','ea10e851-abc8-4d5b-9ccd-f42e20082ff3'),
(4354,4354,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-18 23:06:51','2026-03-18 23:06:51','76f04735-2ae4-4198-8aa6-7215c6ed0663'),
(4355,4355,1,'Chemical peel wirral',NULL,NULL,NULL,1,'2026-03-18 23:07:37','2026-03-18 23:07:37','edb6fa99-03bc-4a52-a94a-cbd4b90b8f90'),
(4372,4372,1,'Chemical peels wirral by dr rachel',NULL,NULL,NULL,1,'2026-03-18 23:23:32','2026-03-18 23:23:32','0ee79e00-3927-4845-a27d-9f19a76398c3'),
(4373,4373,1,'Chemical peels wirral',NULL,NULL,NULL,1,'2026-03-18 23:23:33','2026-03-18 23:23:33','e66ea37b-3aaf-4caf-95cf-87d2ea47621e'),
(4375,4375,1,'Chemical peels wirral by rachel aesthetics',NULL,NULL,NULL,1,'2026-03-18 23:25:44','2026-03-18 23:25:44','17ce4a76-d209-4a02-95f6-58850db4cf3a'),
(4376,4376,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','0db3423b-55ec-4f8c-b8df-55751756479d'),
(4377,4377,1,'Chemical Peels Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"> Doctor-led skin rejuvenation | Superficial to deep peels | Treat acne, scarring, pigmentation &amp; ageing</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','ccee2f7e-013b-4918-b087-c076e3b12314'),
(4378,4378,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','95af9e16-6132-45f3-b28f-dcaf9001b134'),
(4379,4379,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £90\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','02c1e3b3-865f-4676-95d2-5ced361ded82'),
(4380,4380,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','1c18a110-849c-44ce-8d90-4e2c734fa298'),
(4381,4381,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','8c7b789a-1864-4de4-bcce-63999c055c94'),
(4382,4382,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6 Months\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','2edf74e0-6a7a-4fc0-88f8-f148f723e79d'),
(4383,4383,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">If your skin looks dull or congested, if pigmentation refuses to fade, or if fine lines and acne scarring are beginning to affect your confidence, chemical peels can offer a level of skin renewal that topical products alone simply cannot achieve. By accelerating cell turnover and stimulating deeper regeneration, professional chemical resurfacing treatments improve clarity, smooth texture, brighten uneven tone and restore luminosity. The result is skin that looks fresher, healthier and more refined, not over-treated, just revitalised.</span></p>\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','070fec85-14d2-4a2c-a44c-bcc1f44b622a'),
(4384,4384,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Accelerated Cellular Renewal\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Professional chemical peels use carefully selected acids to gently loosen and remove the build-up of dead, damaged skin cells on the surface. By accelerating your skin’s natural renewal process, fresher, brighter skin is revealed while deeper layers are stimulated to regenerate. This controlled resurfacing not only improves texture and clarity, but also supports collagen production beneath the surface. </span></p>\"}',1,'2026-03-18 23:26:10','2026-03-18 23:26:10','59cf9de8-93ca-45bf-8136-02f069054a62'),
(4388,4388,1,'What Is Chemical Resurfacing?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Chemical Resurfacing?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often referred to as advanced chemical peels, chemical resurfacing treatments go beyond traditional exfoliation to deliver deeper, regenerative skin correction. Chemical resurfacing is a medically controlled skin regeneration treatment that uses carefully formulated acids and active ingredients to stimulate renewal within the skin. Rather than simply exfoliating the surface, resurfacing treatments work by activating cellular turnover, improving skin function and encouraging collagen production in a measured, targeted way. </span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When most people search for chemical peels, they are usually imagining visible peeling and surface exfoliation. In reality, the most sophisticated treatments I offer go far beyond traditional peeling. I partner with pHformula to deliver advanced chemical resurfacing — a controlled, regenerative approach designed to stimulate cellular renewal without aggressive surface damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skin naturally renews itself over approximately 28–40 days, a process that slows with age, inflammation and environmental stress. Rather than simply removing the outer layer, pHformula resurfacing treatments activate specific renewal pathways within the skin while preserving barrier integrity. This is what makes pHformula fundamentally different.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These treatments combine carefully calibrated acids with regenerative active ingredients in balanced formulations. Instead of relying purely on strength, they use controlled delivery systems and synergistic actives to initiate correction at a cellular level.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4375],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led chemical peel matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Chemical peels may appear straightforward, but the difference between excellent results and complications lies in clinical judgement. As a GMC-registered GP, I approach your skin with medical insight as well as aesthetic expertise. I assess your Fitzpatrick skin type accurately, identify contraindications such as active infection or recent isotretinoin use, and evaluate your skin’s healing capacity before recommending treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is particularly important for patients with darker skin tones, where the risk of post-inflammatory hyperpigmentation must be carefully managed. Appropriate preparation, correct product selection and conservative, intelligent treatment planning are essential to achieving improvement without triggering unwanted pigmentation.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Precision during treatment matters. Acid selection, application technique, exposure time and skin response are all continuously assessed. Rather than chasing visible peeling, I monitor your skin closely and adjust in real time to optimise regeneration while protecting the barrier.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4372],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I recently had an aesthetic treatment and could not be more thrilled with the results. I appreciated the honesty, attention to detail, and genuine care for achieving natural-looking results. I highly recommend Dr Rachel to anyone considering aesthetic treatments.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lindsay Doolan\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.D.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-18 23:26:11','2026-03-18 23:26:11','8c4fadec-7894-4e4e-9636-22e63ec5eebb'),
(4389,4389,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Chemical Resurfacing?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"background-color:transparent;color:#000000;\\\">Ideal Candidates</span><span style=\\\"color:hsl(0,0%,20%);\\\"><span>:</span></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have stubborn pigmentation</strong> such as melasma, sun spots and post-inflammatory hyperpigmentation that skincare alone has not improved.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You struggle with acne or congestion</strong> and require deeper medical-grade treatment to help clear pores and calm inflammation. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are noticing early ageing changes </strong>such as fine lines, sun damage and dullness, and would like to support collagen and healthier cell renewal.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your skin feels rough or uneven</strong> and you want smoother, brighter skin on which makeup sits beautifully.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have acne scarring</strong> and would benefit from gradual TCA resurfacing as part of a structured treatment course.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want to maintain healthy, radiant skin</strong> and include regular light peels within your personalised Radiance Collection programme.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-18 23:26:11','2026-03-18 23:26:11','566d54fe-33a9-4c4f-a660-00dd7ffb43b8'),
(4402,4402,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','fa26411e-c92e-45bb-b2cb-0c41a63bf425'),
(4403,4403,1,'Frequently Asked Questions About Chemical Peel','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Chemical Peel\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Chemical Peel answered by Dr Rachel.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','5ec3eb63-f612-43be-b653-988bf4a6042d'),
(4404,4404,1,'How much downtime do chemical peels require?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most of the resurfacing treatments I offer use the pHformula dermatological controlled skin resurfacing approach, which is designed to work with your skin rather than aggressively stripping it. This means more reliable results with far less irritation or downtime than traditional peels. If you prepare your skin with the recommended homecare first, most patients experience minimal downtime - usually just mild dryness, light flaking, or occasion\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','1b7166a4-fb54-4efa-9c91-88d1c8e3f9c3'),
(4405,4405,1,'Do chemical peels hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"No - the resurfacing treatments I offer are not painful. With pHformula dermatological controlled skin resurfacing, most patients feel only a gentle warmth or light tingling for a few minutes, because the treatment is designed to work with your skin barrier rather than aggressively stripping it.\\nIf your skin has been prepared with the recommended homecare, treatments are usually very comfortable, and afterwards the skin may feel slightly warm or tight for a short time, similar to mild sun exposure.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','c9af46f4-675b-461a-a04b-8acf6365a2c5'),
(4406,4406,1,'How many chemical peel sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"This depends on your skin concerns and what we are trying to improve. With pHformula dermatological controlled skin resurfacing, I usually recommend a course of 6 treatments, spaced 4–6 weeks apart, to allow gradual and safe improvement. For targeted TCA resurfacing, most patients need 2–3 treatments, again spaced 4–6 weeks apart. I will assess your skin carefully during consultation and tailor the plan to your goals, skin type, and how your skin responds.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','77c62cbe-2bda-456f-8d1f-a9741dcb9230'),
(4407,4407,1,'Are chemical peels safe for dark skin?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes - the resurfacing treatments I offer are designed to be suitable for all skin types and tones. I use the pHformula dermatological controlled skin resurfacing approach, which works with the skin barrier rather than aggressively stripping it, making it much safer and more predictable across different Fitzpatrick types. As a GP, I still assess your skin carefully first and prepare it with the right homecare so we minimise any risk of post-inflammatory pigmentation. With the correct protocols and doctor-led treatment, chemical resurfacing can safely improve pigmentation, acne, and texture in every skin tone.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','b177e05b-087a-4a37-a92f-1a7e4b35c998'),
(4408,4408,1,'What is the difference between glycolic, salicylic, and TCA peels?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Traditional peels use a single acid - glycolic acid helps with dullness and fine texture, salicylic acid targets oily or acne-prone skin, and TCA (trichloroacetic acid) works more deeply for pigmentation and ageing changes.\\nIn my clinic, most treatments use pHformula advanced controlled skin resurfacing, which combines multiple acids in a science-led formulation so I can tailor treatment precisely to your skin concerns while keeping irritation low and results more predictable.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','d344b2b3-f7ea-4d63-bb05-9ca709248f21'),
(4409,4409,1,'Can I combine chemical peels with other treatments?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. Combining treatments often gives the most natural, effective results when each one targets a different layer of the skin. Chemical resurfacing improves the surface, microneedling supports deeper collagen, skin boosters improve hydration and skin quality, and treatments like JULAINE™ or carefully placed dermal filler restore structural support where needed.\\nWe approach this step by step over time, not all at once. I plan your treatments in the right sequence and pace, allowing your skin to recover and respond properly, so the final result looks natural, balanced, and truly healthy\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','1a4c8a4b-a964-48f9-8bf2-6d8f71082ab8'),
(4410,4410,1,'What skincare should I use after a chemical peel?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"After resurfacing, your skin needs gentle, supportive care. I usually recommend a simple routine with a mild cleanser, soothing moisturiser, and strict daily SPF 50 while the skin settles, and we pause stronger actives until your barrier has recovered. If you are having pHformula resurfacing or TCA treatments, you will already be on the appropriate clinical-grade pHformula homecare, which I tailor to support healing, protect your results, and prepare your skin safely for the next stage of treatment.\\nThis is all discussed in detail during your skin consultation, so you know exactly what to use and when.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','01678778-7861-423c-924b-e11cd9da0f1f'),
(4411,4411,1,'How do I prevent pigmentation after a peel?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The most important step is protecting your skin from sun exposure while it heals. I recommend daily broad-spectrum SPF 50, reapplying regularly, and avoiding strong sun or heat for the first few weeks after treatment. I also minimise risk by preparing your skin properly beforehand with the right homecare and choosing the safest resurfacing approach for your skin type. If you are having pHformula resurfacing or TCA treatments, you will already be on the appropriate clinical-grade pHformula homecare to support healing and reduce pigmentation risk.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','9d49918e-5716-457a-b8b7-1806ccb9ff53'),
(4412,4412,1,'Can chemical peels treat acne?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes - chemical peels can be very helpful for acne and breakouts. pHformula dermatological controlled skin resurfacing, and in particular carefully selected TCA treatments, work to clear congestion, calm inflammation, and support healthier cell turnover so skin becomes clearer over time. Acne almost always responds best to a structured course of treatments alongside the right homecare, and I will assess your skin carefully to create a plan that treats both active breakouts and any marks or scarring safely and effectively.\"}',1,'2026-03-18 23:30:34','2026-03-18 23:30:34','aa0dc2a1-bc38-4ed0-9ab2-ac8e424a219c'),
(4413,4413,1,'Chemical Peels','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-18 23:31:20','2026-03-18 23:31:31','f1c55192-b5fd-4024-a7a4-88a5c65d159e'),
(4414,4414,1,'Anti Wrinkle Injections','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-18 23:31:20','2026-03-26 10:47:41','ec1d8df9-3101-4987-8bec-c217744be0fb'),
(4415,4415,1,'Bio-Stimulators','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-18 23:31:20','2026-03-30 18:02:28','5574754e-fdef-4992-ad82-beb0246f697c'),
(4416,4416,1,'Chemical Peels','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-18 23:32:24','2026-03-18 23:32:24','32c96c1a-d61b-4269-9d91-f9fa340258eb'),
(4417,4417,1,'Chemical Peels','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-18 23:32:48','2026-03-18 23:32:53','699bee45-c382-4a4b-88e4-9d3a6d49e732'),
(4418,4418,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-19 10:14:35','2026-03-26 10:24:32','705413e9-9d5f-4a6a-9f52-53a1da511437'),
(4419,4419,1,'Medical Microneedling Wirral Advanced Skin Regeneration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Medical Microneedling Wirral Advanced Skin Regeneration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led collagen induction therapy | Premium serums: NCTF, Polynucleotides &amp; Exosomes | Treat acne scars, wrinkles &amp; pigmentation</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-19 10:14:35','2026-04-17 16:29:19','bbe37ef9-d9ab-4105-811d-944dcd70e1a6'),
(4420,4420,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 10:14:35','2026-03-19 10:14:35','12101d65-59e4-4c3e-9619-322980899409'),
(4421,4421,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £170\"}',1,'2026-03-19 10:14:35','2026-03-19 10:18:52','76e4fa7e-e44a-4313-847d-b74405f64460'),
(4422,4422,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 10:14:35','2026-03-19 10:18:52','ac98032f-b07f-4c5d-ac14-18de57361f61'),
(4423,4423,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 10:14:35','2026-03-19 10:18:52','c84e20fb-eb3a-49a9-b2e1-facb1ce455b8'),
(4424,4424,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-12 Months\"}',1,'2026-03-19 10:14:35','2026-03-19 10:18:52','b3e1037f-57c5-4c78-bf28-862135e908f3'),
(4425,4425,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">or skin concerns such as acne scarring, fine lines, uneven texture and persistent pigmentation, medical microneedling targets the deeper layers of the skin to stimulate regeneration and renewal beyond what topical treatments alone can achieve.</span></p>\"}',1,'2026-03-19 10:14:35','2026-04-06 15:44:54','aff4f87c-1cdd-4089-8f68-74495bbf6614'),
(4426,4426,1,'True Collagen Induction','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Collagen Induction\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Microneedling creates controlled micro-injuries that trigger the body’s wound-healing cascade. This process stimulates collagen and elastin production within the dermis, with studies showing increases in collagen levels of up to 400% over time. Rather than relying on surface treatments, microneedling harnesses the skin’s own repair mechanisms to support true dermal regeneration. </span></p>\"}',1,'2026-03-19 10:14:35','2026-03-19 10:21:27','8958a2b9-b7f4-41af-b236-cce0c21654f2'),
(4427,4427,1,'Advanced Serum Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Advanced Serum Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">What sets medical microneedling apart is the combination of advanced, medical-grade serums and the ability to work at greater depths than standard microneedling. As a doctor, I am able to tailor needle depth precisely according to the area being treated, skin thickness, and the concern being addressed, allowing powerful treatment serums to reach the layers where real change occurs. </span></p>\"}',1,'2026-03-19 10:14:35','2026-03-19 10:21:27','f89a3b0a-d4bf-49e7-839f-31d14cf9c54b'),
(4428,4428,1,'Treats What Lasers Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Lasers Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is suitable for all skin types, including darker skin tones, where some energy-based treatments can carry a higher risk of pigmentation changes. As a non-ablative treatment, it works without removing or destroying tissue, meaning recovery is typically straightforward. Medical microneedling can be used to improve a wide range of concerns.</span></p>\"}',1,'2026-03-19 10:14:35','2026-03-19 10:21:27','59e5acaf-2c77-4cdc-a8c0-1dd50bbf7774'),
(4429,4429,1,'Medical-Grade Precision','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Precision\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led microneedling allows for precise needle depth calibration, typically ranging from 0.5 mm to 2.5 mm depending on the area treated and the concern being addressed. Treatment is performed using sterile technique, with careful selection of medical-grade serums and the ability to recognise and manage complications should they arise.</span></p>\"}',1,'2026-03-19 10:14:35','2026-03-19 10:21:27','49845385-0da7-4d57-83dc-332216ca0ec7'),
(4430,4430,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Medical Microneedling?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical microneedling is collagen induction therapy designed to stimulate the skin’s natural wound-healing processes, supporting collagen production and tissue regeneration at a deeper level.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of collagen induction\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"Microneedling works by harnessing the body’s natural and highly effective wound-healing biology. When performed in a controlled, medical setting, it encourages the skin to repair, strengthen, and regenerate itself from within. When tiny needles create precise micro-injuries within the dermis, the skin recognises this as a signal to begin repair. This process unfolds in three carefully coordinated phases.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 1: Early Healing Response (first few hours)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skin releases growth factors and signalling molecules that initiate repair. Blood platelets are drawn to the treated areas, helping to start the regeneration process. This response is controlled and purposeful, supporting healing rather than causing damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 2: Repair and Renewal (days to weeks)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblast cells migrate to the treated areas and begin producing new collagen and elastin. New micro-circulation develops, improving oxygen and nutrient delivery to the skin. During this phase, skin strength, texture, and quality begin to improve.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 3: Remodelling and Maturation (weeks 4–12)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Newly formed collagen continues to mature and organise into a stronger, more functional dermal structure. Over time, the skin becomes firmer, smoother, and more resilient, with results continuing to develop for up to twelve weeks.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4448],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led microneedling matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Microneedling may appear straightforward, but achieving safe, consistent, and meaningful results relies on medical expertise and clinical judgement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I bring a detailed understanding of skin anatomy, facial structure, and individual variation. I understand how dermal depth differs across facial zones, where important vascular structures lie beneath the skin, and how to calibrate needle depth precisely to stimulate collagen while protecting tissue integrity.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Equally important is accurate assessment. Not every skin concern is best treated with microneedling alone. Some types of scarring respond better to alternative resurfacing approaches, some concerns benefit from injectable regenerative treatments, and others require targeted chemical resurfacing for pigmentation. Knowing which approach is most appropriate comes from clinical training, experience, and taking a whole-skin view rather than relying on a single treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Serum selection also plays a critical role. Different formulations support different biological processes: some enhance hydration and radiance, others support tissue repair and recovery, while more advanced regenerative options help encourage collagen renewal in more challenging cases. Matching the right serum to your skin biology is key to achieving optimal outcomes.</span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4531],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-19 10:14:35','2026-04-20 19:17:18','43150566-0e6f-4598-acce-9be137045c39'),
(4431,4431,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Who Should Consider Medical Microneedling?</span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"color:hsl(0,0%,0%);\\\"><strong>You have acne scarring</strong> that skincare alone cannot improve. Microneedling works within the deeper layers of the skin to remodel scar tissue and support smoother texture over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You notice fine lines and uneven texture</strong> that make your skin appear less smooth or refreshed, and would like to support natural collagen renewal.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have pigmentation concerns </strong>such as sunspots that are bothering you, where some energy-based treatments may carry a higher risk of pigment change.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have stretch marks</strong> and would like to improve skin texture and quality in these areas.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking overall skin rejuvenation</strong> with minimal downtime, typically limited to short-term redness that settles within 24-48 hours.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 10:14:35','2026-04-13 13:01:08','a5403239-c888-415e-b8ef-51607079569d'),
(4432,4432,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 10:14:35','2026-03-26 08:52:24','46496c7e-c014-4cfd-afef-a6d0cce81830'),
(4433,4433,1,'Frequently Asked Questions About Microneedling','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Microneedling\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Microneedling Treatment answered by Dr Rachel.\"}',1,'2026-03-19 10:14:35','2026-03-19 10:32:06','1136f29c-4c68-40f7-9e8f-31ff4e638fb1'),
(4435,4435,1,'Does microneedling hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does microneedling hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe microneedling as mildly uncomfortable rather than painful. During treatment, you feel pressure and a light scratching sensation as the device passes over the skin. Sensation varies depending on individual sensitivity and the area being treated, with finer areas such as the upper lip feeling slightly more intense. Treatment is very well tolerated and the discomfort is brief. Afterwards, the skin typically feels warm and tight, similar to mild sunburn, and this settles quickly.\"}',1,'2026-03-19 10:14:35','2026-03-20 18:51:27','9df5da6d-e497-4f8f-adaf-dc061265b920'),
(4436,4436,1,'When will I see results from microneedling?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"You may notice an early improvement in radiance once initial redness settles, but the most meaningful results develop gradually over time. Microneedling works by stimulating your skin’s natural collagen production, which is a slow, regenerative process. Around 12 weeks is when results become most noticeable, as newly formed collagen has had time to mature and strengthen the skin. Improvements in texture, firmness and overall skin quality continue to develop for several months after treatment, creating results that look natural, refreshed and long-lasting rather than instant or artificial.\"}',1,'2026-03-19 10:14:35','2026-03-20 18:51:27','cbc8ffdb-2294-401a-9d3d-3df1f7c6b789'),
(4444,4444,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-19 10:14:36','2026-03-19 10:14:36','507b424e-3f65-4d44-8d1f-efc1432e6a33'),
(4445,4445,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 10:14:36','2026-04-20 19:17:18','329433ff-138f-4cc1-87ef-9ad9d24342ea'),
(4446,4446,1,'Microneedling Wirral Featured Image',NULL,NULL,NULL,1,'2026-03-19 10:17:08','2026-03-19 10:17:08','1198da38-79e6-4bf3-90a1-a57386836da5'),
(4447,4447,1,'Microneedling Wirral Patient',NULL,NULL,NULL,1,'2026-03-19 10:17:09','2026-03-19 10:17:09','c02210e6-2dde-4c56-baf3-be1927191a50'),
(4448,4448,1,'Microneedling Wirral Treatment',NULL,NULL,NULL,1,'2026-03-19 10:17:10','2026-03-19 10:17:10','e74226ed-e8bc-4d55-9789-52409ae74f3a'),
(4473,4473,1,'Anti-Wrinkle Injection','anti-wrinkle-injection-2','treatments/anti-wrinkle-injection-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','fff2eba5-d127-4e6f-8f6f-342746bab04f'),
(4474,4474,1,'Medical Microneedling Wirral Advanced Skin Regeneration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Medical Microneedling Wirral Advanced Skin Regeneration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led collagen induction therapy | Premium serums: NCTF, Polynucleotides &amp; Exosomes | Treat acne scars, wrinkles &amp; pigmentation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','fc580d7e-b313-4c8b-8cdb-523a9521bf2e'),
(4475,4475,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','2c4a99f2-0533-4b5c-976f-888ebfc81607'),
(4476,4476,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £170\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','3a348326-62a9-4813-8f57-0eb36b54b61d'),
(4477,4477,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','ec66bd8e-e8ed-4fcc-b203-ff4c438a0a51'),
(4478,4478,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','54292f57-e633-4968-9798-7b74ed46d723'),
(4479,4479,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-12 Months\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','95ad22e9-b9d0-4b97-89ed-4f930e00247f'),
(4480,4480,1,'Why Choose Medical Microneedling Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When topical skincare reaches its limits - whether with acne scarring, fine lines, uneven texture, or persistent pigmentation - medical microneedling works deeper within the skin to stimulate repair and renewal on a level that surface treatments cannot deliver.</span></p>\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','1124938c-4864-47da-a939-f213cc5216f4'),
(4481,4481,1,'True Collagen Induction','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Collagen Induction\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Microneedling creates controlled micro-injuries that trigger the body’s wound-healing cascade. This process stimulates collagen and elastin production within the dermis, with studies showing increases in collagen levels of up to 400% over time. Rather than relying on surface treatments, microneedling harnesses the skin’s own repair mechanisms to support true dermal regeneration. </span></p>\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','0fa89141-3576-4282-b81a-b6b00734b53f'),
(4482,4482,1,'Advanced Serum Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Advanced Serum Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">What sets medical microneedling apart is the combination of advanced, medical-grade serums and the ability to work at greater depths than standard microneedling. As a doctor, I am able to tailor needle depth precisely according to the area being treated, skin thickness, and the concern being addressed, allowing powerful treatment serums to reach the layers where real change occurs. </span></p>\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','8c1d71b9-88b4-4aaf-a00d-8a6e2d5363ad'),
(4483,4483,1,'Treats What Lasers Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Lasers Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is suitable for all skin types, including darker skin tones, where some energy-based treatments can carry a higher risk of pigmentation changes. As a non-ablative treatment, it works without removing or destroying tissue, meaning recovery is typically straightforward. Medical microneedling can be used to improve a wide range of concerns.</span></p>\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','971bcbe9-78eb-4f12-940a-2d0223522855'),
(4484,4484,1,'Medical-Grade Precision','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Precision\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led microneedling allows for precise needle depth calibration, typically ranging from 0.5 mm to 2.5 mm depending on the area treated and the concern being addressed. Treatment is performed using sterile technique, with careful selection of medical-grade serums and the ability to recognise and manage complications should they arise.</span></p>\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','72cbd411-e629-4b90-b419-7eb018c465fc'),
(4485,4485,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Medical Microneedling?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical microneedling is collagen induction therapy designed to stimulate the skin’s natural wound-healing processes, supporting collagen production and tissue regeneration at a deeper level.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of collagen induction\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"Microneedling works by harnessing the body’s natural and highly effective wound-healing biology. When performed in a controlled, medical setting, it encourages the skin to repair, strengthen, and regenerate itself from within. When tiny needles create precise micro-injuries within the dermis, the skin recognises this as a signal to begin repair. This process unfolds in three carefully coordinated phases.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 1: Early Healing Response (first few hours)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skin releases growth factors and signalling molecules that initiate repair. Blood platelets are drawn to the treated areas, helping to start the regeneration process. This response is controlled and purposeful, supporting healing rather than causing damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 2: Repair and Renewal (days to weeks)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblast cells migrate to the treated areas and begin producing new collagen and elastin. New micro-circulation develops, improving oxygen and nutrient delivery to the skin. During this phase, skin strength, texture, and quality begin to improve.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 3: Remodelling and Maturation (weeks 4–12)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Newly formed collagen continues to mature and organise into a stronger, more functional dermal structure. Over time, the skin becomes firmer, smoother, and more resilient, with results continuing to develop for up to twelve weeks.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led microneedling matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Microneedling may appear straightforward, but achieving safe, consistent, and meaningful results relies on medical expertise and clinical judgement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I bring a detailed understanding of skin anatomy, facial structure, and individual variation. I understand how dermal depth differs across facial zones, where important vascular structures lie beneath the skin, and how to calibrate needle depth precisely to stimulate collagen while protecting tissue integrity.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Equally important is accurate diagnosis. Not every skin concern is best treated with microneedling alone. Some patterns of scarring respond better to alternative resurfacing approaches, some skin concerns benefit from injectable regenerative treatments, and others require targeted chemical resurfacing for pigmentation. Identifying the most appropriate treatment pathway requires medical training and experience.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Serum selection also plays a critical role. Different formulations support different biological processes: some enhance hydration and radiance, others support tissue repair and recovery, while more advanced regenerative options help encourage collagen renewal in more challenging cases. Matching the right serum to your skin biology is key to achieving optimal outcomes.</span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','66edf93a-01dc-4ede-af2b-600c2b4523a4'),
(4486,4486,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Who Should Consider Medical Microneedling?</span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have acne scarring</strong> that topical treatments alone cannot improve. Microneedling remodels scar tissue at a dermal level for significant improvement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You notice fine lines and uneven texture</strong> that make your skin appear less smooth or refreshed, and would like to support natural collagen renewal.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have pigmentation concerns </strong>such as sunspots that are bothering you, where some energy-based treatments may carry a higher risk of pigment change.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have stretch marks</strong> and would like to improve skin texture and quality in these areas.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking overall skin rejuvenation</strong> with minimal downtime, typically limited to short-term redness that settles within 24-48 hours.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','c83957e5-e064-45a0-acb1-6b66269fb668'),
(4487,4487,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','4e9cdccc-f033-4890-b838-427a46dc5d12'),
(4488,4488,1,'Frequently Asked Questions About Microneedling','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Microneedling\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Microneedling Treatment answered by Dr Rachel.\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','27c0f2b2-c389-49b9-b184-90449d2cb2ce'),
(4490,4490,1,'Does microneedling hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients describe microneedling as mildly uncomfortable rather than painful. During treatment, you feel pressure and a light scratching sensation as the device passes over the skin. Sensation varies depending on individual sensitivity and the area being treated, with finer areas such as the upper lip feeling slightly more intense. Treatment is very well tolerated and the discomfort is brief. Afterwards, the skin typically feels warm and tight, similar to mild sunburn, and this settles quickly.\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','d8ab74b0-e0c0-436b-ba8a-159c97b938d9'),
(4491,4491,1,'When will I see results from microneedling?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"You may notice an early improvement in radiance once initial redness settles, but the most meaningful results develop gradually over time. Microneedling works by stimulating your skin’s natural collagen production, which is a slow, regenerative process. Around 12 weeks is when results become most noticeable, as newly formed collagen has had time to mature and strengthen the skin. Improvements in texture, firmness and overall skin quality continue to develop for several months after treatment, creating results that look natural, refreshed and long-lasting rather than instant or artificial.\"}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','6ce75370-3626-4158-855a-d8047581d979'),
(4499,4499,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 10:32:09','2026-03-19 10:32:09','604abef6-9ccf-4fcb-b31a-83e5fed7bc07'),
(4501,4501,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-19 10:32:28','2026-03-19 10:32:28','f6697927-3946-4699-bb38-da708790f900'),
(4502,4502,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-19 10:33:21','2026-03-26 10:25:19','2aecd413-ae66-4f2b-9f7a-2c01a36b13a7'),
(4503,4503,1,'Skin Boosters Wirral Doctor-Led Injectable Hydration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Boosters Injectable Hydration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin booster treatment | Hyaluronic acid injectable moisturiser | Transform dull, dehydrated skin</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-19 10:33:21','2026-04-17 16:29:38','bd0f84b6-7eca-4337-b0fd-c6b35ea6b48d'),
(4504,4504,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 10:33:21','2026-03-19 10:33:21','e3092c64-14bf-49a6-a298-77efe755da0d'),
(4505,4505,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £225\"}',1,'2026-03-19 10:33:21','2026-03-19 15:43:23','43ffd3c8-195f-4319-81c6-da1a0cc50104'),
(4506,4506,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 10:33:22','2026-03-19 15:43:23','0aa00cf0-1fcf-4dd2-a5cd-15a94830d835'),
(4507,4507,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 10:33:22','2026-03-19 15:43:23','7f278aaa-75bc-4730-9d7e-5f0d231e2098'),
(4508,4508,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6 Months\"}',1,'2026-03-19 10:33:22','2026-03-19 15:43:23','cd430c82-6fd6-455a-9515-d0d750869144'),
(4509,4509,1,'Why Choose Skin Boosters?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Skin Boosters?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When skin looks dull or tired despite high-quality skincare, when dehydration lines are becoming more noticeable, or when the neck and lower face begin to show crepey texture, skin boosters offer a deeper level of support. By delivering hydration directly into the dermis and stimulating collagen production, skin boosters improve skin quality from within in a way that topical products simply cannot achieve.</span></p>\"}',1,'2026-03-19 10:33:22','2026-03-19 15:45:51','7ee41319-db9f-499e-9628-7fbc390d3376'),
(4510,4510,1,'Intelligent Skin Hydration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Intelligent Skin Hydration\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Skin boosters use non-cross-linked hyaluronic acid injected directly into the dermis to deeply hydrate the skin from within. Unlike topical serums that sit on the surface, injectable hyaluronic acid can attract up to 1,000 times its weight in water, supporting hydration at a cellular level. Many skin boosters also contain additional ingredients that support collagen production and skin repair.</span></p>\"}',1,'2026-03-19 10:33:22','2026-03-19 15:45:51','8982a201-05eb-4a60-a0f2-7ebbd351fcb8'),
(4511,4511,1,'Quality, Not Volume','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Quality, Not Volume\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike dermal fillers, which are designed to add structure and shape, skin boosters focus on improving skin quality, texture and radiance without altering facial features. They are ideal for patients seeking healthy, hydrated, glowing skin rather than volumising enhancement. Your face remains entirely yours, just fresher, smoother and more luminous. This reflects my philosophy that the best results should look effortless and completely natural.</span></p>\"}',1,'2026-03-19 10:33:22','2026-04-06 20:58:45','4137a1bc-da8f-4315-90e7-04ee5b7ae03b'),
(4512,4512,1,'Treats What Skincare Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Skincare Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Skin boosters are particularly helpful for areas where topical skincare has limited reach, such as crepey neck texture, dehydrated décolletage affected by sun damage, ageing hands with thinning skin and more visible veins, and fine dehydration lines that can create a tired appearance. By delivering hydration directly into the dermis, skin boosters support deeper hydration and bio-remodelling in areas that skincare alone is unable to fully address.</span></p>\"}',1,'2026-03-19 10:33:22','2026-03-19 15:45:51','a1977622-db33-47bf-be81-a1f6b8790b3d'),
(4513,4513,1,'Medical-Grade Science','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Science\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Premium products such as <strong>Profhilo®</strong> and <strong>Neauvia Hydro Deluxe</strong> deliver more than hydration alone. Profhilo® uses a unique, high-concentration hyaluronic acid to stimulate collagen and elastin through bio-remodelling, while Neauvia Hydro Deluxe combines hyaluronic acid with calcium hydroxyapatite to support skin structure and firmness by stimulating collagen production.</span></p>\"}',1,'2026-03-19 10:33:22','2026-03-19 15:45:51','826e08bb-f6d9-45e8-875e-8b776fc5dc2c'),
(4514,4514,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters are injectable treatments that deliver hyaluronic acid directly into the dermis to improve skin quality from within. By providing deep, long-lasting hydration and supporting bio-remodelling processes, they help enhance luminosity, elasticity and overall skin health in a way that topical skincare alone cannot achieve.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Skin Redensification\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When patients tell me they have tried countless high-street and luxury serums without seeing real change, I explain a simple truth: most cosmetic skincare is designed to work primarily at the surface of the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The epidermis is the outer protective layer. Beneath this lies the dermis - the living layer of the skin. This is where fibroblasts produce collagen and elastin, where hydration is retained, and where true skin strength, elasticity and resilience are determined. Many over-the-counter products, regardless of price, are not formulated to meaningfully influence this deeper layer.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters bypass this limitation entirely. Using ultra-fine needles or cannula, I deliver non-cross-linked hyaluronic acid directly into the dermis through a series of micro-injections distributed evenly across the treatment area. This allows hydration and bio-remodelling to take place exactly where skin quality is determined.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is also what differentiates skin boosters from dermal fillers. Fillers use cross-linked hyaluronic acid designed to add structure and volume. Skin boosters use non-cross-linked hyaluronic acid that disperses throughout the dermis, attracting water, improving skin density and supporting collagen and elastin production without altering facial shape.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why Doctor-Led Matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin booster treatments may appear straightforward, but delivering hundreds of precise micro-injections across the face requires detailed anatomical knowledge, clinical judgement and meticulous technique. The difference between excellent outcomes and avoidable complications lies in medical expertise.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess skin quality, hydration levels, barrier function and overall skin health, review relevant medical history and medications, and determine whether skin boosters are truly the most appropriate option.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, patients who believe they need skin boosters may benefit more from <strong>polynucleotides</strong> or biostimulators like <strong>JULAINE™ </strong>to support cellular regeneration. Others may require <strong>dermal fillers</strong> to address structural volume loss, or <strong>clinical-grade skincare like pHformula</strong> to optimise the skin barrier before injectable treatment. Making these distinctions requires medical expertise, experience and clinical judgement.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4538],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I am new to treatment an have only had a few meetings / treatments with Dr Rachel but I am really pleased with everything so far. Dr Rachel is very knowledgeable, professional and friendly. She makes you feel very comfortable and confident in her ability to treat. I am looking forward to further visits.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lisa Walker\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.W.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-19 10:33:22','2026-04-20 19:28:02','c7c53c4b-74b5-4c3c-b25c-67d29eb76bbb'),
(4515,4515,1,'Who Should Consider Skin Boosters?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Skin Boosters?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your skin looks dull and lacks radiance </strong>despite consistent skincare use, and you are seeking a healthier, more </span><a href=\\\"sadasdasd\\\"><span style=\\\"background-color:transparent;color:#000000;\\\">luminous</span></a><span style=\\\"background-color:transparent;color:#000000;\\\"> appearance where make-up feels optional.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have fine dehydration lines</strong> across your face that create a tired appearance and are not caused by muscle movement, meaning they will not improve with anti-wrinkle treatments.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your neck shows crepey texture,</strong> an area especially prone to dehydration and sun-related skin changes.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your hands appear thinner, </strong>with more visible veins, and you would like to improve skin smoothness and overall quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are interested in prevention, not just correction</strong> and are in your late 20s or early 30s, using skin boosters proactively to maintain skin health before more significant ageing develops.</span></p><p> </p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 10:33:22','2026-04-06 20:58:45','42e8660b-6409-409d-9063-ed5bd2aa3da8'),
(4516,4516,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 10:33:22','2026-03-26 08:52:45','0e382a68-0484-4313-a381-ad22d6acf328'),
(4517,4517,1,'Frequently Asked Questions About Skin Booster Injectable Treatments','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Booster Injectable Treatments\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Booster Injectable Treatments answered by Dr Rachel.\"}',1,'2026-03-19 10:33:22','2026-03-19 15:56:52','ab44bf7c-be28-4881-a92d-566b70f2e024'),
(4518,4518,1,'Do skin boosters hurt?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do skin boosters hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find skin booster treatment very comfortable. You may feel gentle pressure and occasional pinching as the micro-injections are delivered using either ultra-fine needles or a cannula, depending on the area being treated. Any discomfort is brief and well tolerated. Ice packs can be used before and after treatment to further enhance comfort, and many patients are pleasantly surprised by how easy the treatment feels.\"}',1,'2026-03-19 10:33:22','2026-03-20 19:05:26','e4e08b37-1c97-4029-9ff8-be211b174b94'),
(4519,4519,1,'When will I see results from skin boosters?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from skin boosters?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Improvements develop gradually as the skin responds to treatment. You may notice increased hydration and luminosity once any minor swelling settles over the first 24–48 hours. More meaningful changes develop over the following weeks as hyaluronic acid supports fibroblast activity and collagen production. Peak results are typically seen around 12 weeks, particularly when treatments are delivered as a 3-session course spaced monthly, allowing improvements in skin quality to build progressively and naturally over time.\"}',1,'2026-03-19 10:33:22','2026-03-20 19:05:26','2158a816-632b-46f8-8457-aa3188477446'),
(4520,4520,1,'Are skin boosters safe?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are skin boosters safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, when administered by a qualified medical professional, skin boosters have an excellent safety profile. Hyaluronic acid is a naturally occurring substance within the body, which makes allergic reactions very rare. The products I use, including Profhilo® and Neauvia Hydro Deluxe, are clinical-grade and manufactured to strict medical standards, with strong clinical evidence supporting their safety. As a GMC-registered GP and member of CMAC (Complications in Medical Aesthetic Collaborative), I follow comprehensive safety protocols and carry emergency equipment to manage any adverse events promptly, although serious complications are exceptionally uncommon.\"}',1,'2026-03-19 10:33:22','2026-03-20 19:14:32','5b308a5c-5aa3-40f2-9074-b3d9270f228a'),
(4521,4521,1,'What is the downtime after skin boosters?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after skin boosters?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is usually minimal. Immediately after treatment, you may notice small injection marks with mild swelling or redness. These typically settle within 24-72 hours. Some patients experience light bruising, particularly in more delicate areas such as under the eyes. Most people feel comfortable returning to work and normal daily activities straight away. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.\"}',1,'2026-03-19 10:33:22','2026-03-20 19:14:32','245f6135-01ad-4f9c-8fe1-754924fd6ca3'),
(4522,4522,1,'How long do skin booster results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do skin booster results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results typically last between 6-12 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolism. Patients with good underlying skin health may find results last closer to 12 months, while those with more advanced skin ageing or sun damage may notice results gradually fading around 6-9 months. Maintenance treatments every 6 months help sustain optimal skin quality, and some patients find they require less frequent maintenance over time as overall skin health improves.</p>\"}',1,'2026-03-19 10:33:22','2026-04-13 09:34:35','bb6216d8-f3bb-4c18-b1bf-b369ff5d9747'),
(4523,4523,1,'How many treatments will I need?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I usually recommend an initial course of 3 treatments spaced 4 weeks apart to achieve optimal, cumulative improvement. This allows hydration and bio-remodelling to build progressively with each session. After completing the initial course, maintenance treatments every 6 months help sustain results. Some patients with more significantly dehydrated or sun-damaged skin may benefit from additional treatments during the initial phase, which can be discussed during your consultation.\"}',1,'2026-03-19 10:33:22','2026-03-20 19:14:32','d90ea770-e8a5-4934-af79-0978bf784def'),
(4524,4524,1,'What is the difference between Neauvia Hydro Deluxe and Profhilo®?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between Neauvia Hydro Deluxe and Profhilo®?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Both are injectable hyaluronic acid treatments used to improve skin quality, but they work in slightly different ways. Neauvia Hydro Deluxe uses non-cross-linked hyaluronic acid combined with calcium hydroxyapatite. It is delivered in a grid pattern of micro-injections across the treatment area to deeply hydrate the dermis and support collagen stimulation. This approach focuses on improving hydration, resilience and overall skin quality, especially in areas prone to dehydration and texture loss. Profhilo® is a high-concentration hyaluronic acid formulation that is injected at fewer strategic points (typically 5 on each side of your face). Once placed, it spreads naturally through the tissue, promoting bio-remodelling by stimulating multiple types of collagen and elastin. This leads to improved tissue firmness and a subtle lifting effect alongside enhanced hydration. Many patients benefit from a strategic combination of both, tailored to their individual skin goals and skin quality.</p>\"}',1,'2026-03-19 10:33:22','2026-04-13 09:34:35','d50770af-fd62-4a09-8470-9731319b71db'),
(4525,4525,1,'Can I combine skin boosters with other treatments?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine skin boosters with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely, and this is often how the best results are achieved. Skin boosters sit beautifully within my Radiance Collection programmes, where treatments are layered and timed strategically to address skin quality, structure and long-term skin health. They can be combined with anti-wrinkle injections to support hydration alongside wrinkle prevention, dermal fillers where volume restoration is needed, and <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™ to stimulate collagen</a> and improve firmness over time. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> can further enhance collagen production and skin renewal, while pharmaceutical-grade skincare such as pHformula supports the skin barrier and helps maintain results at home. Your treatment plan and timeline will always be personalised following consultation.</p>\"}',1,'2026-03-19 10:33:22','2026-03-20 19:14:32','81f9b492-2e7c-4ca0-9912-96c08c10c45b'),
(4526,4526,1,'How can I extend my skin booster results?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How can I extend my skin booster results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Several factors influence how long your results last, and small daily habits can make a meaningful difference: </p><p> </p><ul><li><strong>Daily SPF 50: </strong>UV exposure accelerates collagen loss, so consistent sun protection is essential. </li></ul><p> </p><ul><li><strong>High-grade pHformula skincare: </strong>Targeted actives delivered through advanced formulations, including retinoids, vitamin C and peptides, help support collagen production, optimise skin renewal and maintain results between treatments. </li></ul><p> </p><ul><li><strong>Hydration:</strong> Drinking adequate water each day supports hyaluronic acid function, as it binds water within the skin. </li></ul><p> </p><ul><li><strong>Lifestyle factors: </strong>Smoking and excessive alcohol intake both impair collagen production and dehydrate the skin, shortening result longevity. </li></ul><p> </p><ul><li><strong>Complementary treatments:</strong> Collagen-stimulating options such as JULAINE™ and medical microneedling can further enhance and extend results when layered strategically within my Radiance Collection, where treatments are planned and timed to support long-term skin health and optimal outcomes. </li></ul><p> </p><p>I provide detailed aftercare and skin guidance following treatment to help you maintain and maximise your results over time.</p>\"}',1,'2026-03-19 10:33:22','2026-03-20 19:14:32','3e380b69-0f21-4d49-92fd-994b02373dd9'),
(4527,4527,1,'Will skin boosters help my acne scars?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will skin boosters help my acne scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Skin boosters can help improve mild, superficial atrophic (indented) acne scars by hydrating the tissue and supporting collagen production. However, they are not the primary treatment for more established or deeper scarring. For moderate to severe acne scars, I often recommend more targeted options such as biostimulators like <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a> to improve collagen quality and firmness, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> to support cellular repair, <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">medical microneedling</a> to stimulate collagen production, or <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">chemical resurfacing</a> to improve skin texture and turnover. In some cases, I may also recommend referral for laser-based treatments where appropriate. During your consultation, I will assess your scarring in detail and recommend the most effective, personalised treatment plan.</p>\"}',1,'2026-03-19 10:33:22','2026-03-20 19:14:32','ea3f8d49-c8ed-46c5-9c00-74258f3a4523'),
(4528,4528,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-19 10:33:22','2026-03-19 10:33:22','0009a467-b439-40c2-8a90-8c9ad57ad0d1'),
(4529,4529,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 10:33:22','2026-04-20 19:17:50','c4635ef7-1eab-4166-98c9-59e805cfbbe2'),
(4531,4531,1,'Microneedling Wirral happy patient',NULL,NULL,NULL,1,'2026-03-19 10:57:23','2026-03-19 10:57:23','ca5f609b-75ed-4a0e-ad41-8721872d743d'),
(4533,4533,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-19 10:57:48','2026-03-19 10:57:48','ad5820ee-a39e-48ea-b773-a9a02803f527'),
(4534,4534,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Medical Microneedling?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical microneedling is collagen induction therapy designed to stimulate the skin’s natural wound-healing processes, supporting collagen production and tissue regeneration at a deeper level.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of collagen induction\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"Microneedling works by harnessing the body’s natural and highly effective wound-healing biology. When performed in a controlled, medical setting, it encourages the skin to repair, strengthen, and regenerate itself from within. When tiny needles create precise micro-injuries within the dermis, the skin recognises this as a signal to begin repair. This process unfolds in three carefully coordinated phases.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 1: Early Healing Response (first few hours)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skin releases growth factors and signalling molecules that initiate repair. Blood platelets are drawn to the treated areas, helping to start the regeneration process. This response is controlled and purposeful, supporting healing rather than causing damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 2: Repair and Renewal (days to weeks)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblast cells migrate to the treated areas and begin producing new collagen and elastin. New micro-circulation develops, improving oxygen and nutrient delivery to the skin. During this phase, skin strength, texture, and quality begin to improve.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 3: Remodelling and Maturation (weeks 4–12)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Newly formed collagen continues to mature and organise into a stronger, more functional dermal structure. Over time, the skin becomes firmer, smoother, and more resilient, with results continuing to develop for up to twelve weeks.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4448],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led microneedling matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Microneedling may appear straightforward, but achieving safe, consistent, and meaningful results relies on medical expertise and clinical judgement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I bring a detailed understanding of skin anatomy, facial structure, and individual variation. I understand how dermal depth differs across facial zones, where important vascular structures lie beneath the skin, and how to calibrate needle depth precisely to stimulate collagen while protecting tissue integrity.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Equally important is accurate diagnosis. Not every skin concern is best treated with microneedling alone. Some patterns of scarring respond better to alternative resurfacing approaches, some skin concerns benefit from injectable regenerative treatments, and others require targeted chemical resurfacing for pigmentation. Identifying the most appropriate treatment pathway requires medical training and experience.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Serum selection also plays a critical role. Different formulations support different biological processes: some enhance hydration and radiance, others support tissue repair and recovery, while more advanced regenerative options help encourage collagen renewal in more challenging cases. Matching the right serum to your skin biology is key to achieving optimal outcomes.</span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4531],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 10:57:48','2026-03-19 10:57:48','db9840d0-25d7-491e-aad5-257fa9470ed8'),
(4535,4535,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-19 10:57:56','2026-03-19 10:57:56','790c03e9-107a-4a0d-ad38-c634bb8ffaec'),
(4536,4536,1,'Skin Booster in Wirral Patient',NULL,NULL,NULL,1,'2026-03-19 15:41:33','2026-03-19 15:41:33','075f8a30-e0fa-41d4-bc5d-85a4c8842037'),
(4537,4537,1,'Skin Booster in Wirral',NULL,NULL,NULL,1,'2026-03-19 15:41:33','2026-03-19 15:41:33','4865dc63-be7f-4184-9cf0-f112d2722502'),
(4538,4538,1,'Skin Booster injection',NULL,NULL,NULL,1,'2026-03-19 15:41:34','2026-03-19 15:41:34','3cba7448-4388-4a83-bb47-d4e269686dee'),
(4539,4539,1,'Skin Booster Featured Image',NULL,NULL,NULL,1,'2026-03-19 15:41:35','2026-03-19 15:41:35','c8903e4e-eef6-43ee-bb9b-fc064e2b84d2'),
(4564,4564,1,'Anti-Wrinkle Injection','anti-wrinkle-injection-2','treatments/anti-wrinkle-injection-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4539]}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','e9df121a-f6ec-4825-a89e-d092a0b90e5e'),
(4565,4565,1,'Skin Boosters Wirral Doctor-Led Injectable Hydration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Boosters Injectable Hydration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin booster treatment | Hyaluronic acid injectable moisturiser | Transform dull, dehydrated skin</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','a1b7f8db-4da7-49e0-9996-b9a2fc615cb3'),
(4566,4566,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','db84ef03-3107-4e1d-b5b9-95383bb284cf'),
(4567,4567,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £225\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','cc3250a5-9ce0-405f-b77b-3fde1022a0a5'),
(4568,4568,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','40fe71d9-acb7-405f-b5b2-dacab9a63a21'),
(4569,4569,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','433ede28-fe64-4810-a236-75d8326c8b55'),
(4570,4570,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6 Months\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','9d66df32-bf40-405b-a537-54c072f86816'),
(4571,4571,1,'Why Choose Skin Boosters?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Skin Boosters?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When skin looks dull or tired despite high-quality skincare, when dehydration lines are becoming more noticeable, or when the neck and lower face begin to show crepey texture, skin boosters offer a deeper level of support. By delivering hydration directly into the dermis and stimulating collagen production, skin boosters improve skin quality from within in a way that topical products simply cannot achieve.</span></p>\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','c69ee76c-11b1-486b-9c79-3b9dfeac499f'),
(4572,4572,1,'Intelligent Skin Hydration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Intelligent Skin Hydration\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Skin boosters use non-cross-linked hyaluronic acid injected directly into the dermis to deeply hydrate the skin from within. Unlike topical serums that sit on the surface, injectable hyaluronic acid can attract up to 1,000 times its weight in water, supporting hydration at a cellular level. Many skin boosters also contain additional ingredients that support collagen production and skin repair.</span></p>\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','f46edaf4-c824-4751-8e94-019cd685927e'),
(4573,4573,1,'Quality, Not Volume','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Quality, Not Volume\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike dermal fillers, which are designed to add structure and shape, skin boosters focus on improving skin quality, texture and radiance without altering facial features. They are ideal for patients seeking healthy, hydrated, glowing skin rather than volumising enhancement. Your face remains entirely yours, just fresher, smoother and more luminous. This perfectly reflects my philosophy of refreshed, never changed.</span></p>\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','68f73c6c-f5ec-452f-8567-5ee85aadb91e'),
(4574,4574,1,'Treats What Skincare Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Skincare Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Skin boosters are particularly helpful for areas where topical skincare has limited reach, such as crepey neck texture, dehydrated décolletage affected by sun damage, ageing hands with thinning skin and more visible veins, and fine dehydration lines that can create a tired appearance. By delivering hydration directly into the dermis, skin boosters support deeper hydration and bio-remodelling in areas that skincare alone is unable to fully address.</span></p>\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','d54a7c6e-ebe5-4d2e-b10e-1b6b3ea23a53'),
(4575,4575,1,'Medical-Grade Science','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Science\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Premium products such as <strong>Profhilo®</strong> and <strong>Neauvia Hydro Deluxe</strong> deliver more than hydration alone. Profhilo® uses a unique, high-concentration hyaluronic acid to stimulate collagen and elastin through bio-remodelling, while Neauvia Hydro Deluxe combines hyaluronic acid with calcium hydroxyapatite to support skin structure and firmness by stimulating collagen production.</span></p>\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','4d506fae-5339-4058-8422-24e7516d2226'),
(4576,4576,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters are injectable treatments that deliver hyaluronic acid directly into the dermis to improve skin quality from within. By providing deep, long-lasting hydration and supporting bio-remodelling processes, they help enhance luminosity, elasticity and overall skin health in a way that topical skincare alone cannot achieve.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Skin Redensification\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When patients tell me they have tried countless high-street and luxury serums without seeing real change, I explain a simple truth: most cosmetic skincare is designed to work primarily at the surface of the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The epidermis is the outer protective layer. Beneath this lies the dermis - the living layer of the skin. This is where fibroblasts produce collagen and elastin, where hydration is retained, and where true skin strength, elasticity and resilience are determined. Many over-the-counter products, regardless of price, are not formulated to meaningfully influence this deeper layer.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters bypass this limitation entirely. Using ultra-fine needles or cannula, I deliver non-cross-linked hyaluronic acid directly into the dermis through a series of micro-injections distributed evenly across the treatment area. This allows hydration and bio-remodelling to take place exactly where skin quality is determined.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is also what differentiates skin boosters from dermal fillers. Fillers use cross-linked hyaluronic acid designed to add structure and volume. Skin boosters use non-cross-linked hyaluronic acid that disperses throughout the dermis, attracting water, improving skin density and supporting collagen and elastin production without altering facial shape.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why Doctor-Led Matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin booster treatments may appear straightforward, but delivering hundreds of precise micro-injections across the face requires detailed anatomical knowledge, clinical judgement and meticulous technique. The difference between excellent outcomes and avoidable complications lies in medical expertise.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess skin quality, hydration levels, barrier function and overall skin health, review relevant medical history and medications, and determine whether skin boosters are truly the most appropriate option.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, patients who believe they need skin boosters may benefit more from <strong>polynucleotides</strong> or biostimulators like JULAINE™ to support cellular regeneration. Others may require <strong>dermal fillers</strong> to address structural volume loss, or <strong>pharmaceutical-grade skincare such as pHformula</strong> to optimise the skin barrier before injectable treatment. Making these distinctions requires medical expertise, experience and clinical judgement.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4538],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I am new to treatment an have only had a few meetings / treatments with Dr Rachel but I am really pleased with everything so far. Dr Rachel is very knowledgeable, professional and friendly. She makes you feel very comfortable and confident in her ability to treat. I am looking forward to further visits.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lisa Walker\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.W.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','0f089ceb-7994-4d03-b8f1-0867f035088b'),
(4577,4577,1,'Who Should Consider Skin Boosters?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Skin Boosters?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your skin looks dull and lacks radiance </strong>despite consistent skincare use, and you are seeking a healthier, more luminous appearance where make-up feels optional.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have fine dehydration lines</strong> across your face that create a tired appearance and are not caused by muscle movement, meaning they will not improve with anti-wrinkle treatments.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your neck shows crepey texture,</strong> an area especially prone to dehydration and sun-related skin changes.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your hands appear thinner, </strong>with more visible veins, and you would like to improve skin smoothness and overall quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are interested in prevention, not just correction</strong> and are in your late 20s or early 30s, using skin boosters proactively to maintain skin health before more significant ageing develops.</span></p><p> </p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','403e81c2-b5e2-4b86-9868-56a1b82b9980'),
(4578,4578,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','e73780ee-72a9-4d74-a311-bbfe03fcf152'),
(4579,4579,1,'Frequently Asked Questions About Skin Booster Injectable Treatments','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Booster Injectable Treatments\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Booster Injectable Treatments answered by Dr Rachel.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','45678123-9736-473b-b2a7-dbd9b888b807'),
(4580,4580,1,'Do skin boosters hurt?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do skin boosters hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find skin booster treatment very comfortable. You may feel gentle pressure and occasional pinching as the micro-injections are delivered using either ultra-fine needles or a cannula, depending on the area being treated. Any discomfort is brief and well tolerated. Ice packs can be used before and after treatment to further enhance comfort, and many patients are pleasantly surprised by how easy the treatment feels.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','2db8f9d3-debf-4ae9-abde-e47ad65b4979'),
(4581,4581,1,'When will I see results from skin boosters?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from skin boosters?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Improvements develop gradually as the skin responds to treatment. You may notice increased hydration and luminosity once any minor swelling settles over the first 24–48 hours. More meaningful changes develop over the following weeks as hyaluronic acid supports fibroblast activity and collagen production. Peak results are typically seen around 12 weeks, particularly when treatments are delivered as a 3-session course spaced monthly, allowing improvements in skin quality to build progressively and naturally over time.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','c0060c54-474b-4645-bc6e-22d5c34ec878'),
(4582,4582,1,'Are skin boosters safe?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are skin boosters safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, when administered by a qualified medical professional, skin boosters have an excellent safety profile. Hyaluronic acid is a naturally occurring substance within the body, which makes allergic reactions very rare. The products I use, including Profhilo® and Neauvia Hydro Deluxe, are clincial-grade and manufactured to strict medical standards, with strong clinical evidence supporting their safety. As a GMC-registered GP and member of CMAC (Complications in Medical Aesthetic Collaborative), I follow comprehensive safety protocols and carry emergency equipment to manage any adverse events promptly, although serious complications are exceptionally uncommon.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','22b6155b-0d32-4b14-b5e8-ac283ea33fe3'),
(4583,4583,1,'What is the downtime after skin boosters?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after skin boosters?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is usually minimal. Immediately after treatment, you may notice small injection marks with mild swelling or redness. These typically settle within 24-72 hours. Some patients experience light bruising, particularly in more delicate areas such as under the eyes. Most people feel comfortable returning to work and normal daily activities straight away. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','1425c2ff-efbf-452b-b43b-a388e8f5a058'),
(4584,4584,1,'How long do skin booster results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do skin booster results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results typically last between 6-12 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolic rate. Patients with good underlying skin health may find results last closer to 12 months, while those with more advanced skin ageing or sun damage may notice results gradually fading around 6-9 months. Maintenance treatments every 6 months help sustain optimal skin quality, and some patients find they require less frequent maintenance over time as overall skin health improves.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','92994086-aff7-4151-8a5f-483cf393bc7e'),
(4585,4585,1,'How many treatments will I need?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"I usually recommend an initial course of 3 treatments spaced 4 weeks apart to achieve optimal, cumulative improvement. This allows hydration and bio-remodelling to build progressively with each session. After completing the initial course, maintenance treatments every 6 months help sustain results. Some patients with more significantly dehydrated or sun-damaged skin may benefit from additional treatments during the initial phase, which can be discussed during your consultation.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','21277853-e3d5-451c-a498-3813843db180'),
(4586,4586,1,'What is the difference between skin boosters and Profhilo?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between skin boosters and Profhilo?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Both are injectable hyaluronic acid treatments used to improve skin quality, but they work in slightly different ways. Neauvia Hydro Deluxe uses non-cross-linked hyaluronic acid combined with calcium hydroxyapatite. It is delivered in a grid pattern of micro-injections across the treatment area to deeply hydrate the dermis and support collagen stimulation. This approach focuses on improving hydration, resilience and overall skin quality, especially in areas prone to dehydration and texture loss. Profhilo® is a high-concentration hyaluronic acid formulation that is injected at fewer strategic points (typically 5-10 per side). Once placed, it spreads naturally through the tissue, promoting bio-remodelling by stimulating multiple types of collagen and elastin. This leads to improved tissue firmness and a subtle lifting effect alongside enhanced hydration. Many patients benefit from a strategic combination of both, tailored to their individual skin goals and skin quality.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','6d82af4f-f6b3-4d1d-9207-7508c0812074'),
(4587,4587,1,'Can I combine skin boosters with other treatments?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine skin boosters with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely, and this is often how the best results are achieved. Skin boosters sit beautifully within my Radiance Collection programmes, where treatments are layered and timed strategically to address skin quality, structure and long-term skin health. They can be combined with anti-wrinkle injections to support hydration alongside wrinkle prevention, dermal fillers where volume restoration is needed, and JULAINE™ to stimulate collagen and improve firmness over time. Microneedling can further enhance collagen production and skin renewal, while pharmaceutical-grade skincare such as pHformula supports the skin barrier and helps maintain results at home. Your treatment plan and timeline will always be personalised following consultation.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','48ab2e3a-6cdf-41ee-8257-e837683ceba7'),
(4588,4588,1,'How can I extend my skin booster results?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How can I extend my skin booster results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Several factors influence how long your results last, and small daily habits can make a meaningful difference:\\nDaily SPF 50: UV exposure accelerates collagen loss, so consistent sun protection is essential.\\n\\n\\nHigh-grade pHformula skincare: Targeted actives delivered through advanced formulations, including retinoids, vitamin C and peptides, help support collagen production, optimise skin renewal and maintain results between treatments.\\n\\n\\nHydration: Drinking adequate water each day supports hyaluronic acid function, as it binds water within the skin.\\n\\n\\nLifestyle factors: Smoking and excessive alcohol intake both impair collagen production and dehydrate the skin, shortening result longevity.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','3e7c59c7-d4d2-494e-a543-6b65f9ffe8b0'),
(4589,4589,1,'Will skin boosters help my acne scars?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will skin boosters help my acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Skin boosters can help improve mild, superficial atrophic (indented) acne scars by hydrating the tissue and supporting collagen production. However, they are not the primary treatment for more established or deeper scarring. For moderate to severe acne scars, I often recommend more targeted options such as biostimulators like JULAINE™ to improve collagen quality and firmness, polynucleotides to support cellular repair, medical microneedling to stimulate collagen production, or chemical resurfacing to improve skin texture and turnover. In some cases, I may also recommend referral for laser-based treatments where appropriate. During your consultation, I will assess your scarring in detail and recommend the most effective, personalised treatment plan.\"}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','20af0d61-e324-4a62-b0f4-1b6834823493'),
(4590,4590,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 15:56:54','2026-03-19 15:56:54','97023f02-3e37-4b85-94e5-81965b623ed4'),
(4592,4592,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4539]}',1,'2026-03-19 15:57:10','2026-03-19 15:57:10','bb02060a-7957-4dc4-ba14-a177fed149dc'),
(4593,4593,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-03-19 15:59:49','2026-03-30 18:01:13','89993636-edfe-4d3f-8ff9-e867e2368fab'),
(4594,4594,1,'Polynucleotides Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning cellular repair therapy | Treat dark circles, fine lines &amp; crepey skin | Salmon DNA bio-stimulator | Polynucletoides on the Wirral</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-19 15:59:49','2026-04-17 16:29:29','6c4b7d1a-cde1-43ae-b7ec-1c01c495cd8b'),
(4595,4595,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 15:59:49','2026-03-19 15:59:49','6a70f6ce-6a31-4239-ad49-d031044b366f'),
(4596,4596,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £240\"}',1,'2026-03-19 15:59:49','2026-03-19 16:04:27','b91a1ca7-c0f2-4957-b801-45cd52858550'),
(4597,4597,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 15:59:49','2026-03-19 16:04:27','1be2cee1-1a6a-4452-9bc0-492aa1e0874d'),
(4598,4598,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 15:59:49','2026-03-19 16:04:27','e4f65c89-46b9-447e-8cbe-383e7f481f7f'),
(4599,4599,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-9 Months\"}',1,'2026-03-19 15:59:49','2026-03-19 16:04:27','b33e4f8b-3f58-4d39-b605-2d4895f29d48'),
(4600,4600,1,'Why Choose Polynucleotide Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Polynucleotide Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When skincare alone is no longer delivering results, when the under-eye area appears persistently tired, or when the skin feels thinner and less resilient, polynucleotides offer a different approach. Rather than masking concerns, they work at a cellular level to support repair, strengthen skin structure and improve overall skin quality. This is a regenerative treatment designed to restore the skin’s underlying health and function, helping it behave more like younger skin over time rather than offering a short-term cosmetic effect.</span></p>\"}',1,'2026-03-19 15:59:49','2026-03-19 16:30:24','25ef2042-043f-4616-8e3c-5332bb7c4ed1'),
(4601,4601,1,'True Regenerative Medicine','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Regenerative Medicine\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are highly purified DNA fragments originally isolated from salmon, chosen for their close biological compatibility with human skin. They work by activating fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid. Rather than adding volume or acting only at the surface, polynucleotides support the skin’s natural repair processes from within. </span></p>\"}',1,'2026-03-19 15:59:49','2026-03-19 16:30:24','dd1f3192-8cb9-4129-b5c8-bdc918ef2b26'),
(4602,4602,1,'Treats What Others Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Others Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are particularly helpful for concerns driven by skin quality rather than volume, such as dark circles caused by thin under-eye skin, crepey skin texture, menopausal skin thinning associated with hormonal change, acne scarring that requires tissue remodelling, and even certain forms of hair loss. </span></p>\"}',1,'2026-03-19 15:59:49','2026-03-19 16:30:24','7c36f8f2-7315-47ee-9b89-abc81af6b949'),
(4603,4603,1,'Natural, Lasting Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Lasting Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Results develop gradually as the skin regenerates, creating improvements that look subtle and natural rather than sudden or artificial. Over time, the skin becomes thicker, firmer, better hydrated and more resilient. Patients are often told they look rested or refreshed, without it being obvious that they have had treatment.</span></p>\"}',1,'2026-03-19 15:59:49','2026-03-19 16:30:24','0d6268e5-f976-4efa-868e-b763f614b058'),
(4604,4604,1,'Medical-Grade Safety','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Safety\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides have been used in regenerative medicine for many years and are highly biocompatible with human tissue. These purified DNA fragments are well tolerated and integrate naturally within the skin, with a low risk of adverse reactions when used appropriately. </span></p>\"}',1,'2026-03-19 15:59:49','2026-03-19 16:30:24','e98fa14c-c13e-4d52-b156-ca06aa149d38'),
(4605,4605,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Polynucleotides?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon, selected for their close biological compatibility with human skin. They work at a cellular level to support the skin’s natural repair processes, strengthening tissue and improving skin quality from within. This is a regenerative treatment that focuses on restoring skin health, rather than simply treating the surface.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science Behind Cellular Repair\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time I explain polynucleotides to patients, I often see a lightbulb moment. For many people, this treatment offers something that other aesthetic approaches cannot. While many traditional treatments focus on improving visible symptoms, polynucleotides work at a deeper level, supporting one of the key biological drivers of skin ageing: declining cellular function.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As we age, fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid - become less active. This contributes to thinning skin, reduced elasticity, dehydration and the tired, crepey appearance that is often most noticeable around delicate areas such as the under-eyes, where treatment options can be limited.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon. When carefully injected into human tissue, they encourage fibroblasts to become more active, supporting collagen production, improving microcirculation and helping repair cellular DNA damage caused by UV exposure and oxidative stress. By strengthening the skin from within, they also create a healthier foundation, making them an ideal primer before other collagen-stimulating treatments.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4630],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The under-eye area, where many patients choose polynucleotides, is one of the most delicate and technically demanding areas of the face. The skin is extremely thin, the vascular anatomy is complex, and careful assessment and precise technique are essential to minimise risk and achieve the best outcome.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry emergency equipment and hold full professional indemnity insurance for advanced injectable procedures. However, safety is not only about responding to problems; it is about preventing them. That starts with a thorough assessment, correct product choice and precise technique.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess your skin quality, examine the anatomy around the under-eye area and discuss suitability in detail. In some cases, I may recommend alternative or complementary treatments, such as combining polynucleotides with <strong>clinically formulated pHformula skincare</strong> or <strong>microneedling</strong>, to support skin health more holistically.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4628],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr. Rachel made me feel very comfortable and reassured me every step of the way as I was quite anxious. I had no idea what treatments would work for me, but she was very patient and listened to my concerns. She formulated a plan - I\'ve had 3 treatments so far and can really see a difference. She is truly lovely and caring, and her knowledge and bedside manner are second to none. I cannot praise her enough and would definitely recommend her.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Jill\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"J.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-19 15:59:49','2026-04-20 19:17:34','6d4d48a2-3855-48c8-9ccb-373014665175'),
(4606,4606,1,'Who Should Consider Polynucleotides?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Polynucleotides?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have under-eye dark circles</strong> caused by thin, translucent skin where underlying blood vessels are visible. Polynucleotides help improve skin thickness and support microcirculation, gradually softening the </span><a href=\\\"link\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"background-color:transparent;color:#000000;\\\">appearance</span></a><span style=\\\"background-color:transparent;color:#000000;\\\"> of these stubborn circles.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey, thinning skin,</strong> especially around the under-eyes, neck or hands. By supporting dermal repair, polynucleotides help improve elasticity and resilience for smoother, stronger skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are experiencing menopausal skin changes</strong> related to declining oestrogen, including thinning, dryness and loss of firmness. Polynucleotides help support the cellular processes that are normally influenced by oestrogen, improving skin quality and resilience over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking long-term improvement in skin quality</strong> rather than short-term cosmetic fixes, with results that develop progressively over 12 weeks as the skin regenerates.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 15:59:49','2026-04-06 20:27:46','356decf9-3c7e-4b71-8586-63def3f30c7e'),
(4607,4607,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 15:59:49','2026-03-26 08:52:34','5f6e2aa0-8df3-41f5-9855-0a2bb1c3fa93'),
(4608,4608,1,'Frequently Asked Questions About Polynucleotide Treatment','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Polynucleotide Treatment\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about polynucleotide treatment answered by Dr Rachel.\"}',1,'2026-03-19 15:59:49','2026-04-06 20:27:46','81ba896a-c726-462c-a3b7-e40e4adfc777'),
(4609,4609,1,'Are polynucleotides safe?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are polynucleotides safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, when administered by a qualified medical professional, polynucleotides have an excellent safety profile. They have been used in regenerative medicine for many years and are supported by extensive clinical research. The DNA fragments are highly purified and biocompatible, meaning the body recognises and integrates them naturally. Allergic reactions are very rare. In my clinic, I use clinical-grade products such as Plinest and follow strict medical protocols, with full emergency equipment in place. Safety, careful assessment and appropriate patient selection are always my priority.\"}',1,'2026-03-19 15:59:49','2026-03-20 19:57:20','27389233-d1a7-4322-bf56-dae6109d8214'),
(4610,4610,1,'How long before I see results?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long before I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results develop gradually as the skin responds and new collagen, elastin and hyaluronic acid are produced. Subtle improvements in hydration and skin quality are often noticed within the first few weeks. More visible changes develop progressively over 8-12 weeks, with results typically most noticeable at around the 3-month mark, once new collagen has matured. This gradual process supports natural-looking regeneration rather than sudden change. Results can last 9-12 months or longer, with maintenance treatments helping to prolong the benefits.\"}',1,'2026-03-19 15:59:49','2026-03-20 19:57:20','e995e3a1-53d1-44d1-b57f-50f2ec6f76f7'),
(4611,4611,1,'Is there any downtime?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Downtime is usually minimal. You may notice small injection marks and mild swelling for 24-48 hours as the product settles into the skin. Some patients experience temporary under-eye puffiness for a day or two, and occasional bruising can occur. Most people feel comfortable returning to normal activities by the next day. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12-24 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.</p>\"}',1,'2026-03-19 15:59:49','2026-04-13 09:13:54','264896ad-0c95-4391-9772-f66769af7608'),
(4612,4612,1,'Does it hurt?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe the sensation as mild discomfort with some brief stinging during the injections. For comfort, I can apply a topical anaesthetic cream beforehand, which helps reduce sensation. Ultra-fine needles are used to minimise tissue trauma, and the treatment is generally very well tolerated.\"}',1,'2026-03-19 15:59:49','2026-03-20 19:57:20','146cee96-d37b-4ec9-b068-e0bf37e1ee73'),
(4613,4613,1,'What\'s the difference between polynucleotides and Profhilo®?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What\'s the difference between polynucleotides and Profhilo®?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Polynucleotides are highly purified DNA fragments derived from salmon that work by stimulating fibroblasts to support collagen, elastin and hyaluronic acid production. They focus on cellular repair and tissue regeneration, making them particularly helpful for delicate areas such as the under-eyes, crepey skin and acne scarring. Results typically develop gradually and can last 9-12 months or longer.\\nProfhilo® is a high-concentration hyaluronic acid treatment designed to improve hydration and skin laxity through bio-remodelling. It focuses on enhancing skin hydration and firmness, with results usually lasting around 6-9 months.\\nThese treatments work in different but complementary ways, and many patients benefit from a combined or staged approach when used strategically as part of a personalised treatment plan.\"}',1,'2026-03-19 15:59:49','2026-03-20 19:57:20','9aa654e8-cd67-4bd1-8f65-53cebb8e3d70'),
(4614,4614,1,'Can polynucleotides treat my dark circles?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can polynucleotides treat my dark circles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This depends on the underlying cause of the dark circles. Polynucleotides are particularly effective for structural or vascular dark circles, where thin under-eye skin allows underlying blood vessels to show through. In these cases, they help improve skin thickness and support microcirculation, gradually softening the appearance of darkness. Polynucleotides are not designed to treat pigment-related dark circles caused by melanin, which are usually better managed with treatments such as chemical peels or lasers. During your consultation, I will carefully assess your under-eye area to identify the cause and recommend the most appropriate treatment approach for you.\"}',1,'2026-03-19 15:59:49','2026-03-20 19:57:20','7817c8e0-4c3c-4436-a5fe-322f94ab0904'),
(4615,4615,1,'Can I combine polynucleotides with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine polynucleotides with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely, and this is often where results are really elevated. Polynucleotides work very well alongside other aesthetic treatments, supporting skin quality while complementary treatments address other specific concerns. They can be combined with anti-wrinkle injections to improve skin quality while softening lines, dermal fillers to support tissue health alongside volume restoration, and <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a> to stimulate even more collagen and improve skin firmness over time. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> can further enhance collagen production, while pharmaceutical-grade skincare such as <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">pHformula</a> supports surface renewal and long-term skin health. Many patients choose to incorporate polynucleotides as part of my Radiance Collection programmes, where treatments are layered and timed strategically. I will always create a bespoke treatment plan and timeline during your consultation.</p>\"}',1,'2026-03-19 15:59:49','2026-03-20 19:57:20','56e6aadd-edb1-4c47-8d3f-cd0532b50ac9'),
(4616,4616,1,'Is Sunekos treatment safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, when administered by a qualified medical professional. Sunekos Performa is CE-marked and contains biocompatible ingredients - non-crosslinked hyaluronic acid and amino acids, with no chemical crosslinkers, making it exceptionally well tolerated in the delicate periocular area. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols, including detailed medical history assessment, strict sterile technique, and appropriate post-treatment monitoring. Emergency equipment is always available.\"}',1,'2026-03-19 15:59:49','2026-03-19 15:59:49','8e25f12c-33ff-462b-9c4a-8ef2db4c8cbf'),
(4617,4617,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels.\\nAnti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced bio-stimulators like JULAINE™ or polynucleotides to boost collagen production and improve skin laxity, and subtle dermal filler to artfully restore lost volume.\\nMany of my Wirral patients support their treatment outcomes with tailored pharmaceutical-strength skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.\"}',1,'2026-03-19 15:59:49','2026-03-19 15:59:49','cf39e831-e1bd-4beb-ae4f-4641558da0d2'),
(4618,4618,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. Use a gentle cleanser only, without active ingredients, for 48 hours. A soothing eye product containing hyaluronic acid or peptides can be applied to support hydration. Daily use of SPF 50 is essential to protect the delicate under-eye skin. Avoid retinoids, vitamin C and other active ingredients around the eyes for 3-5 days following treatment. Detailed aftercare instructions are provided.\"}',1,'2026-03-19 15:59:49','2026-03-19 15:59:49','1004691f-4185-40f8-862c-649bf9a69611'),
(4619,4619,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-19 15:59:49','2026-03-19 15:59:49','2558bd80-38f9-4a59-b92d-cf6e20e7ffc0'),
(4620,4620,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 15:59:49','2026-04-20 19:17:34','9284a6af-669a-48f8-9942-63b8f8949e3e'),
(4623,4623,1,'Skin Booster in Wirral Patient',NULL,NULL,NULL,1,'2026-03-19 16:01:30','2026-03-19 16:01:30','439e2af8-d4db-46be-b9e3-5603f6f8234a'),
(4624,4624,1,'Skin Booster in Wirral',NULL,NULL,NULL,1,'2026-03-19 16:01:31','2026-03-19 16:01:31','58d164e9-5873-4eeb-92f5-a8ec4d87ef6d'),
(4625,4625,1,'Skin Booster injection',NULL,NULL,NULL,1,'2026-03-19 16:01:31','2026-03-19 16:01:31','cf911652-5262-4948-9584-8b572434cc8f'),
(4626,4626,1,'Skin Booster Featured Image',NULL,NULL,NULL,1,'2026-03-19 16:01:32','2026-03-19 16:01:32','2072137a-07bc-4462-b8d5-58ff8ba9f708'),
(4627,4627,1,'Polynucleotides in wirral featured',NULL,NULL,NULL,1,'2026-03-19 16:03:06','2026-03-19 16:03:06','54d753fa-352c-466f-ab7d-3f8e1da2e0cc'),
(4628,4628,1,'Polynucleotides in wirral uk',NULL,NULL,NULL,1,'2026-03-19 16:03:07','2026-03-19 16:03:07','5ccfcb75-87da-4056-9f87-cc532440a63d'),
(4629,4629,1,'Polynucleotides in wirral',NULL,NULL,NULL,1,'2026-03-19 16:03:08','2026-03-19 16:03:08','1582ab89-5386-47cd-93aa-6b5e7b0307c3'),
(4630,4630,1,'Polynucleotides treatment in wirral',NULL,NULL,NULL,1,'2026-03-19 16:03:09','2026-03-19 16:03:09','16a2700c-1d76-4b84-8b6f-72e5c9385934'),
(4636,4636,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','d5b377fe-c830-460c-a181-47b38ee84fdb'),
(4637,4637,1,'Polynucleotides Doctor-Led Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides Doctor-Led Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning cellular repair therapy | Treat dark circles, fine lines &amp; crepey skin | Salmon DNA bio-stimulator | Polynucletoides on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','42c359b6-dc53-4ef7-bedf-13827c67a213'),
(4638,4638,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','70467cf7-d268-422c-a48a-fab6d371a877'),
(4639,4639,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £240\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','6013c918-bc20-4654-8c47-55bb226d8b75'),
(4640,4640,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','3c85ce0b-0346-4f64-b019-5e8b919de082'),
(4641,4641,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','5021d70e-8644-4a8a-b01f-bb57b28b37c0'),
(4642,4642,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-9 Months\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','181c6f35-6a76-4ba6-9c7e-4601918112cf'),
(4643,4643,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Anti-Wrinkle Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Reduce visible signs of ageing with tailored medical aesthetic treatments that soften lines whilst keeping your face natural, expressive, and unmistakably you.</span></p>\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','a0d805f9-50a9-48e4-b478-47d05e98c5f7'),
(4644,4644,1,'Targeted Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Anti-wrinkle injections work by relaxing the facial muscles that create expression lines, such as frown lines, forehead lines and crow’s feet. This allows the skin to smooth and recover over time, softening existing lines and helping to prevent deeper ones from developing. The result is a refreshed, well-rested appearance that still looks completely natural.</span></p>\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','ab618b1d-c9ff-4ef3-97c7-a6281b513da0'),
(4645,4645,1,'Subtle & Safe','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Subtle & Safe\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">I do not believe in the “frozen” look. I use careful facial assessment and advanced injection techniques to deliver subtle, balanced results. You will keep your natural expression while looking more refreshed, brighter, and confident</span></p>\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','40fc11f4-bc0b-4b72-bfac-20793480c150'),
(4646,4646,1,'Expert Care','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Expert Care\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Every treatment is personally carried out by me as a GMC-registered doctor, with advanced training in facial anatomy and medical aesthetics. I use only UK-licensed, </span><span style=\\\"background-color:#ffffff;color:#27252a;\\\">medical-grade products from trusted UK pharmacies</span><span style=\\\"background-color:transparent;color:#000000;\\\"> (Botox™, Azzalure™) and follow strict medical protocols to ensure your safety and peace of mind.</span></p>\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','232ba5bf-a2b3-4457-8462-42431d8d0ac5'),
(4647,4647,1,'Proven Excellence','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Excellence\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Botulinum toxin is one of the most popular, extensively researched and well-established treatments in medical aesthetics. I combine this strong scientific evidence with a detailed facial assessment to tailor each treatment to your individual facial movement and needs.</span></p>\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','ee076b2f-2c40-4b3b-b321-e7823326bf12'),
(4648,4648,1,'What Are Anti-Wrinkle Injections?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Anti-Wrinkle Injections?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections are a popular, non-surgical treatment used to soften fine lines and wrinkles caused by facial movement. They work by gently relaxing the muscles underneath the skin, reducing repeated movement so lines appear smoother. Treatment is quick, minimally invasive, and does not require surgery or downtime. Most patients return to normal activities immediately after treatment.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time you frown, squint, or raise your eyebrows, specific facial muscles contract and crease the skin above them. Over time, those repeated movements cause lines to linger - even when your face is at rest. This can leave you looking more tired, tense, or cross than you actually feel.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections work by gently relaxing the muscles that are responsible for these expression lines. When those muscles are less active, the skin above them has a chance to smooth and recover, leaving you looking fresher, more relaxed, and more like yourself again.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is not about freezing your face. It is about balance and precision - softening overactive muscles while keeping natural movement and expression. You will still look like you, just brighter and more refreshed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Before treatment, I take time to carefully assess how your face moves, where lines form, and how strong your different muscles are. This allows me to tailor treatment specifically to you, rather than taking a one-size-fits-all approach.</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"I have been performing anti-wrinkle treatments for many years, and what I love most is seeing the confidence grow in my patients. It is never just about the wrinkles - it is about helping you feel like yourself again.”</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What sets my clinic apart is my medical-first approach.</strong> I am a GMC-registered doctor and a practising GP based here on the Wirral. I hold a BSc (Hons) in Genetics and completed my medical degree through Graduate Entry Medicine, giving me a strong scientific foundation and a deep understanding of how these treatments work.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before every treatment, I carry out a thorough medical and facial assessment to understand how your face moves and where treatment will be most effective. This allows me to create a personalised plan tailored to you - because anti-wrinkle treatment should never be one-size-fits-all.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Here is something most clinics do not do:</strong> I change the needle between treatment areas to reduce tissue trauma, minimise bruising, and ensure the sharpest, most precise delivery each time. A complimentary 2-week follow-up assessment is included in your treatment. This is where good results become exceptional results.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','06d4c44c-f03f-4152-b905-46db3b5d9f47'),
(4649,4649,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">Forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','61837b75-1ac7-4ba8-8d03-f3e44b10bd5b'),
(4650,4650,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','d3026e10-1dec-4f6c-abfc-c9a2a70973c9'),
(4651,4651,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','47bbd3bb-d787-4c4e-971a-e51be1adbee1'),
(4652,4652,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results vary from person to person, but most treatments last up to around 3 months, sometimes longer. Rather than suddenly wearing off, the effect fades gradually - a bit like a dimmer switch slowly turning back on - as muscle movement gently returns over that time.\\nFor many patients, this gradual return of movement feels very natural. Follow-up and maintenance timing can be discussed during your consultation, depending on how your face responds to treatment.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','45d6cff1-b1d0-4bfc-8c69-cc7859824d17'),
(4653,4653,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are not permanent. The effects gradually wear off over time as muscle movement slowly returns, and you will need repeated treatments to maintain your results. How often treatment is repeated varies from person to person and depends on how your muscles respond.\\nSome patients choose to repeat treatment regularly every 3-4 months, while others prefer occasional top-ups. This is always discussed on an individual basis, rather than following a fixed schedule.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','ce8feb45-a31e-498f-ab11-a9c40a978bf2'),
(4654,4654,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Anti-wrinkle injections are temporary by design. For most people, results last up to around 3 months and fade gradually as muscle movement slowly returns.\\nThis is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent, non-surgical solutions for expression lines caused by muscle movement.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','10205d1c-6bb5-4565-911c-7e3018f7c2f4'),
(4655,4655,1,'Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"When administered by a qualified medical professional using UK-licensed products, anti-wrinkle injections have an excellent safety profile. Botulinum toxin has been used in medical and aesthetic practice for several decades and is one of the most well-researched cosmetic treatments available.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, product handling, administration, and aftercare. Serious side effects are rare, and any risks are fully discussed with you during your consultation so you can make an informed decision.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','a998d207-2e67-445b-a4af-ea9e62bef574'),
(4656,4656,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find treatment much more comfortable than they expect. I use very fine needles and precise techniques to minimise discomfort. The sensation is usually described as a quick scratch or brief pressure, and is generally very well tolerated.\\nTreatment itself is quick, with the whole process typically taking around 20–30 minutes. Your skin is cleansed, injection points are carefully planned, and small, controlled amounts of botulinum toxin are placed into specific muscles. You can return to normal activities straight afterwards.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','5e0fff60-c29f-4095-9b90-f955059d1f2f'),
(4657,4657,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"No. My approach is focused on achieving natural, balanced results that suit you and your preferences. Treatment is planned conservatively, with careful attention to both medical judgement and aesthetic restraint.\\nBy softening overactive muscle activity rather than over-treating, results look relaxed and refreshed rather than stiff or unnatural. Every treatment is personalised, so the level of movement preserved is guided by what feels right for you.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','74261af4-c088-4330-a170-693dbd3f25a4'),
(4658,4658,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"There is little to no downtime. You may notice mild redness or tiny marks at the injection sites, which usually settle within an hour. Occasionally, small areas of bruising can occur, particularly around delicate areas, but this is generally minor and can be covered with makeup.\\nMost patients return to work and normal daily activities straight away. To help minimise the risk of bruising, it is advised to avoid strenuous exercise for 24 hours. Facial treatments and massages should be avoided for around 2 weeks following treatment.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','63eb2d2d-64bf-4142-9737-f94bb06df0e6'),
(4659,4659,1,'Is Sunekos treatment safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, when administered by a qualified medical professional. Sunekos Performa is CE-marked and contains biocompatible ingredients - non-crosslinked hyaluronic acid and amino acids, with no chemical crosslinkers, making it exceptionally well tolerated in the delicate periocular area. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols, including detailed medical history assessment, strict sterile technique, and appropriate post-treatment monitoring. Emergency equipment is always available.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','2b9a80d1-eb48-4b9c-a471-3b51ad5dafcd'),
(4660,4660,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels.\\nAnti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced bio-stimulators like JULAINE™ or polynucleotides to boost collagen production and improve skin laxity, and subtle dermal filler to artfully restore lost volume.\\nMany of my Wirral patients support their treatment outcomes with tailored pharmaceutical-strength skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','fc89f7d8-792f-48c6-a70a-511ab3b9984c'),
(4661,4661,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. Use a gentle cleanser only, without active ingredients, for 48 hours. A soothing eye product containing hyaluronic acid or peptides can be applied to support hydration. Daily use of SPF 50 is essential to protect the delicate under-eye skin. Avoid retinoids, vitamin C and other active ingredients around the eyes for 3-5 days following treatment. Detailed aftercare instructions are provided.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','6291bb56-032f-40e6-ac5d-b65f63ef7bc5'),
(4662,4662,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','5b30b506-89ee-4487-908d-9baa080c9947'),
(4663,4663,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 16:04:32','2026-03-19 16:04:32','ec0fb391-48ca-43b4-97db-91d477685d82'),
(4664,4664,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-19 16:04:35','2026-03-19 16:04:35','2e9f80e8-31f6-48cb-96d5-39c4a97f61a1'),
(4681,4681,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','c62822bf-ea11-4d4c-8080-8629d83a9e37'),
(4682,4682,1,'Why Choose Polynucleotide Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Polynucleotide Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When skincare alone is no longer delivering results, when the under-eye area appears persistently tired, or when the skin feels thinner and less resilient, polynucleotides offer a different approach. Rather than masking concerns, they work at a cellular level to support repair, strengthen skin structure and improve overall skin quality. This is a regenerative treatment designed to restore the skin’s underlying health and function, helping it behave more like younger skin over time rather than offering a short-term cosmetic effect.</span></p>\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','3bc3683c-4616-4d88-88bb-48d03dce0fce'),
(4683,4683,1,'True Regenerative Medicine','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Regenerative Medicine\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are highly purified DNA fragments originally isolated from salmon, chosen for their close biological compatibility with human skin. They work by activating fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid. Rather than adding volume or acting only at the surface, polynucleotides support the skin’s natural repair processes from within. </span></p>\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','c0f1c882-ff86-475d-96b2-54f7fc357299'),
(4684,4684,1,'Treats What Others Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Others Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are particularly helpful for concerns driven by skin quality rather than volume, such as dark circles caused by thin under-eye skin, crepey skin texture, menopausal skin thinning associated with hormonal change, acne scarring that requires tissue remodelling, and even certain forms of hair loss. </span></p>\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','2c7cc37c-82c8-4831-9a97-bb3c770edfef'),
(4685,4685,1,'Natural, Lasting Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Lasting Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Results develop gradually as the skin regenerates, creating improvements that look subtle and natural rather than sudden or artificial. Over time, the skin becomes thicker, firmer, better hydrated and more resilient. Patients are often told they look rested or refreshed, without it being obvious that they have had treatment.</span></p>\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','78a37dc3-6d64-41bc-8d9b-05644956a497'),
(4686,4686,1,'Medical-Grade Safety','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Safety\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides have been used in regenerative medicine for many years and are highly biocompatible with human tissue. These purified DNA fragments are well tolerated and integrate naturally within the skin, with a low risk of adverse reactions when used appropriately. </span></p>\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','688a280c-c379-45f5-94e6-3633e78e1727'),
(4687,4687,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Polynucleotides?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon, selected for their close biological compatibility with human skin. They work at a cellular level to support the skin’s natural repair processes, strengthening tissue and improving skin quality from within. This is a regenerative treatment that focuses on restoring skin health, rather than simply treating the surface.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science Behind Cellular Repair\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time I explain polynucleotides to patients, I often see a lightbulb moment. For many people, this treatment offers something that other aesthetic approaches cannot. While many traditional treatments focus on improving visible symptoms, polynucleotides work at a deeper level, supporting one of the key biological drivers of skin ageing: declining cellular function.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As we age, fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid - become less active. This contributes to thinning skin, reduced elasticity, dehydration and the tired, crepey appearance that is often most noticeable around delicate areas such as the under-eyes, where treatment options can be limited.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon. When carefully injected into human tissue, they encourage fibroblasts to become more active, supporting collagen production, improving microcirculation and helping repair cellular DNA damage caused by UV exposure and oxidative stress. By strengthening the skin from within, they also create a healthier foundation, making them an ideal primer before other collagen-stimulating treatments.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4630],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The under-eye area, where many patients choose polynucleotides, is one of the most delicate and technically demanding areas of the face. The skin is extremely thin, the vascular anatomy is complex, and careful assessment and precise technique are essential to minimise risk and achieve the best outcome.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry emergency equipment and hold full professional indemnity insurance for advanced injectable procedures. However, safety is not only about responding to problems; it is about preventing them. That starts with a thorough assessment, correct product choice and precise technique.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess your skin quality, examine the anatomy around the under-eye area and discuss suitability in detail. In some cases, I may recommend alternative or complementary treatments, such as combining polynucleotides with <strong>pHformula medical skincare</strong> or <strong>microneedling</strong>, to support skin health more holistically.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4628],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr. Rachel made me feel very comfortable and reassured me every step of the way as I was quite anxious. I had no idea what treatments would work for me, but she was very patient and listened to my concerns. She formulated a plan - I\'ve had 3 treatments so far and can really see a difference. She is truly lovely and caring, and her knowledge and bedside manner are second to none. I cannot praise her enough and would definitely recommend her.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Jill\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"J.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','3bbfe6a8-3116-42c6-a07c-749f3d008430'),
(4688,4688,1,'Who Should Consider Polynucleotides?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Polynucleotides?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have under-eye dark circles</strong> caused by thin, translucent skin where underlying blood vessels are visible. Polynucleotides help improve skin thickness and support microcirculation, gradually softening the appearance of these stubborn circles.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey, thinning skin,</strong> especially around the under-eyes, neck or hands. By supporting dermal repair, polynucleotides help improve elasticity and resilience for smoother, stronger skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are experiencing menopausal skin changes</strong> related to declining oestrogen, including thinning, dryness and loss of firmness. Polynucleotides help support the cellular processes that are normally influenced by oestrogen, improving skin quality and resilience over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking long-term improvement in skin quality</strong> rather than short-term cosmetic fixes, with results that develop progressively over 12 weeks as the skin regenerates.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','399cf6cc-dbed-4dab-89aa-4a0201d7d293'),
(4689,4689,1,'Frequently Asked Questions About Polynucleotides Treatment','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Polynucleotides Treatment\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Polynucleotides Treatment answered by Dr Rachel.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','1c372c29-9dfc-48da-a2e2-38f63cd8a869'),
(4690,4690,1,'Are polynucleotides safe?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are polynucleotides safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, when administered by a qualified medical professional, polynucleotides have an excellent safety profile. They have been used in regenerative medicine for many years and are supported by extensive clinical research. The DNA fragments are highly purified and biocompatible, meaning the body recognises and integrates them naturally. Allergic reactions are very rare. In my clinic, I use clinical-grade products such as Plinest and follow strict medical protocols, with full emergency equipment in place. Safety, careful assessment and appropriate patient selection are always my priority.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','716342b9-e190-4248-b490-2eeb8ff12360'),
(4691,4691,1,'How long before I see results?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long before I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results develop gradually as the skin responds and new collagen, elastin and hyaluronic acid are produced. Subtle improvements in hydration and skin quality are often noticed within the first few weeks. More visible changes develop progressively over 8–12 weeks, with results typically most noticeable at around the 3-month mark, once new collagen has matured. This gradual process supports natural-looking regeneration rather than sudden change. Results can last 9-12 months or longer, with maintenance treatments helping to prolong the benefits.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','68eea783-68d6-4f19-92f9-172bfe8fed32'),
(4692,4692,1,'Is there any downtime?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is usually minimal. You may notice small injection marks and mild swelling for 24-48 hours as the product settles into the skin. Some patients experience temporary under-eye puffiness for a day or two, and occasional bruising can occur. Most people feel comfortable returning to normal activities straight away. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12-24 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','777c01ad-8e45-4afd-8917-edf6cfbeed17'),
(4693,4693,1,'Does it hurt?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients benefit from an initial course of 3-4 treatments spaced 2-3 weeks apart, which helps build a strong regenerative foundation within the skin. The exact number of sessions depends on your skin quality and the indication for treatment. Concerns such as more significant scarring or hair loss often require a longer course. After completing the initial programme, 1 maintenance treatment every 6 months helps sustain cellular activation and continue improving skin quality over time. Your treatment plan will always be tailored following a detailed consultation.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','09e1b5a2-84e6-4ba4-9bda-a824613bbb44'),
(4694,4694,1,'What\'s the difference between polynucleotides and Profhilo®?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What\'s the difference between polynucleotides and Profhilo®?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Polynucleotides are highly purified DNA fragments derived from salmon that work by stimulating fibroblasts to support collagen, elastin and hyaluronic acid production. They focus on cellular repair and tissue regeneration, making them particularly helpful for delicate areas such as the under-eyes, crepey skin and acne scarring. Results typically develop gradually and can last 9-12 months or longer.\\nProfhilo® is a high-concentration hyaluronic acid treatment designed to improve hydration and skin laxity through bio-remodelling. It focuses on enhancing skin hydration and firmness, with results usually lasting around 6–9 months.\\nThese treatments work in different but complementary ways, and many patients benefit from a combined or staged approach when used strategically as part of a personalised treatment plan.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','78e6eaed-9c39-4371-afed-17de3bcb20cf'),
(4695,4695,1,'Can polynucleotides treat my dark circles?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can polynucleotides treat my dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"This depends on the underlying cause of the dark circles. Polynucleotides are particularly effective for structural or vascular dark circles, where thin under-eye skin allows underlying blood vessels to show through. In these cases, they help improve skin thickness and support microcirculation, gradually softening the appearance of darkness. Polynucleotides are not designed to treat pigment-related dark circles caused by melanin, which are usually better managed with treatments such as chemical peels or lasers. During your consultation, I will carefully assess your under-eye area to identify the cause and recommend the most appropriate treatment approach for you.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','ebf8fed5-03ee-47a7-8055-a178369de47e'),
(4696,4696,1,'Can I combine polynucleotides with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine polynucleotides with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes, polynucleotides can be particularly helpful for skin changes associated with menopause. Declining oestrogen levels contribute to skin thinning, dryness, reduced elasticity and lower collagen production. Polynucleotides support fibroblast activity and the cellular processes that are normally influenced by oestrogen, helping to improve skin resilience and overall quality over time. Many of my Wirral patients in their 40s, 50s and 60s find this a valuable option for addressing menopausal skin changes as part of a wider, personalised skin plan.\"}',1,'2026-03-19 16:30:24','2026-03-19 16:30:24','01678ae1-db36-48ac-be63-aa514c2e76e8'),
(4697,4697,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-19 16:30:27','2026-03-19 16:30:27','272f66e7-af6e-4400-8705-99d103d56181'),
(4700,4700,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-19 18:36:32','2026-03-19 18:36:32','d27b3e75-e6bd-4c48-b86a-de2a03c4b9f2'),
(4701,4701,1,'Polynucleotides Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning cellular repair therapy | Treat dark circles, fine lines &amp; crepey skin | Salmon DNA bio-stimulator | Polynucletoides on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 18:36:32','2026-03-19 18:36:32','e258b93f-0861-4985-af9a-45e018de42fb'),
(4702,4702,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-19 18:39:02','2026-03-26 10:24:07','69212954-4faa-44a3-9d5a-930698214630'),
(4703,4703,1,'Dermal Fillers - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led aesthetic clinic | Natural-looking lip, cheek &amp; jawline fillers | Hyaluronic acid volume restoration on the Wirral</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-19 18:39:02','2026-04-17 16:29:09','517c1261-3dd0-4bb4-8ff0-a079b014a5a9'),
(4704,4704,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 18:39:02','2026-03-19 18:39:02','41409840-5c25-478b-8d22-d1bddc0cbc67'),
(4705,4705,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £295\"}',1,'2026-03-19 18:39:02','2026-04-13 09:29:39','655e8758-9d7f-410e-a1ca-6794e4c25fc8'),
(4706,4706,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"45-60 Minutes\"}',1,'2026-03-19 18:39:02','2026-03-19 19:07:56','ca97ca6e-69a8-45f3-a103-352ff463d1fa'),
(4707,4707,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 18:39:02','2026-03-19 18:39:02','1387cc2f-a231-481e-9695-36c25a573704'),
(4708,4708,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-18 Months\"}',1,'2026-03-19 18:39:02','2026-03-19 19:07:56','921cc67a-41d8-46e6-bd38-2024df85559a'),
(4709,4709,1,'Why a Consultation Comes First?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why a Consultation Comes First?\"}',1,'2026-03-19 18:39:02','2026-04-15 17:26:19','cda6d4ed-a72f-4e56-af67-3b4951fc3293'),
(4710,4710,1,'True Regenerative Medicine','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Regenerative Medicine\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are highly purified DNA fragments originally isolated from salmon, chosen for their close biological compatibility with human skin. They work by activating fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid. Rather than adding volume or acting only at the surface, polynucleotides support the skin’s natural repair processes from within. </span></p>\"}',1,'2026-03-19 18:39:02','2026-03-19 18:39:02','a35e55dc-358c-415a-8bb5-7de13b31ebe6'),
(4711,4711,1,'Treats What Others Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Others Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are particularly helpful for concerns driven by skin quality rather than volume, such as dark circles caused by thin under-eye skin, crepey skin texture, menopausal skin thinning associated with hormonal change, acne scarring that requires tissue remodelling, and even certain forms of hair loss. </span></p>\"}',1,'2026-03-19 18:39:03','2026-03-19 18:39:03','fffb8ab6-cde9-447f-88fc-79bc7041ae14'),
(4712,4712,1,'Natural, Lasting Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Lasting Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Results develop gradually as the skin regenerates, creating improvements that look subtle and natural rather than sudden or artificial. Over time, the skin becomes thicker, firmer, better hydrated and more resilient. Patients are often told they look rested or refreshed, without it being obvious that they have had treatment.</span></p>\"}',1,'2026-03-19 18:39:03','2026-03-19 18:39:03','f1c03d65-bfdb-441a-8bfc-1cea882502da'),
(4713,4713,1,'Medical-Grade Safety','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Safety\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides have been used in regenerative medicine for many years and are highly biocompatible with human tissue. These purified DNA fragments are well tolerated and integrate naturally within the skin, with a low risk of adverse reactions when used appropriately. </span></p>\"}',1,'2026-03-19 18:39:03','2026-03-19 18:39:03','6d31ce63-4e25-46e6-900e-8174b7a17c68'),
(4714,4714,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so effectively. As we move through our 30s, 40s and beyond, several structural changes happen at the same time. We gradually lose facial volume as the fat that once supported youthful contours reduces and shifts downwards.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Collagen production also slows, meaning the skin becomes less firm and elastic. The underlying bone structure changes too, particularly through the cheeks and jawline, subtly altering the framework that supports the face. At the same time, levels of hyaluronic acid decline, meaning the skin holds less moisture and can start to look less plump and radiant.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">In youth, the face is often shaped like an inverted triangle, with fullness through the cheeks and gentle tapering towards the chin. This is sometimes called the <i>triangle of youth</i>. As these changes occur, that triangle gradually reverses. Volume is lost from the mid-face, the lower face can appear heavier, and shadows begin to form where light once reflected smoothly. This is often when people notice they look more tired, even when they feel well.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">There is something many people are not aware of in the aesthetics industry: dermal fillers are medical devices, yet they are sometimes administered in settings without medical oversight. Dermal filler treatments may look simple, but they involve complex anatomy and carry medical risks that require appropriate training to manage safely.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Your face is complex and highly vascular, and treatments should always be approached with a thorough understanding of facial anatomy and safety. Potential risks can include blocked blood vessels, skin injury, filler migration or unsatisfactory aesthetic outcomes. While some issues are minor, others require urgent medical assessment and treatment. <strong>It is not the syringe that keeps you safe, but the training, anatomy knowledge and clinical judgement of the person holding it.</strong></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>GMC-registered doctor</strong></span></a><span style=\\\"color:hsl(0,0%,100%);\\\"> and practising GP, I bring over 10 years of clinical, diagnostic and emergency care experience to every appointment. I have detailed knowledge of facial anatomy and vascular structures, can recognise early signs of complications, and am trained to act quickly using established medical protocols. I also carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">For me, dermal fillers are not simply cosmetic procedures. They are medical treatments that should be performed with the same level of care, planning and safety you would expect in any clinical setting. <strong>Your face is not somewhere to take risks, and choosing the right practitioner is one of the most important decisions you can make.</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-19 18:39:03','2026-04-20 19:17:00','5be5c2f9-583b-44b8-b4ba-630478797b5d'),
(4715,4715,1,'What Areas Can Dermal Fillers Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can Dermal Fillers Treat</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Dermal fillers can be used to restore volume, support facial structure and improve balance across different areas of the face.</span></span></h3><h3> </h3><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration) - </strong>Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring - </strong>Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 18:39:03','2026-04-15 17:20:20','f15b0ff5-5cb8-46d1-9fcc-356fa9957a8c'),
(4716,4716,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 18:39:03','2026-03-26 08:52:03','9fd84033-3c0a-49a1-bbf1-0951b3b366e1'),
(4717,4717,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-03-19 18:39:03','2026-03-19 19:07:57','b80fd3d2-31fe-49d6-a699-2b1262699210'),
(4719,4719,1,'How long do dermal fillers last?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do dermal fillers last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The results from fillers generally last between 6 and 18 months. But, as with all treatments, results vary between individual metabolisms, products used and the area(s) injected. </p><p> </p><p>As a general guide: </p><p><strong>Lips:</strong> 6-9 months (higher movement area metabolises filler faster) </p><p><strong>Cheeks: </strong>12-18 months (lower movement area, deeper placement) </p><p><strong>Jawline/Chin:</strong> 12-18 months </p><p><strong>Nasolabial Folds:</strong> 9-12 months </p><p> </p><p>Your body gradually metabolises hyaluronic acid over time, so results fade naturally and gracefully. With regular, well-planned treatments, many patients find they require less filler over time as skin quality and underlying support improve. When dermal fillers are combined with treatments that target other layers of the skin - such as collagen stimulation or skin-quality therapies - results are often enhanced further, creating a more balanced, longer-lasting rejuvenation rather than relying on volume alone.</p>\"}',1,'2026-03-19 18:39:03','2026-03-20 20:04:02','b41d9198-7644-4946-a813-a84d582247f6'),
(4720,4720,1,'What is the aftercare for dermal fillers?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the aftercare for dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"After dermal filler treatment, aftercare is simple, and most patients return to normal activities straight away. You will be provided with clear, written aftercare instructions, and I remain available should you have any concerns during the healing process.\\nAs a general guide, it is advised to avoid strenuous exercise, alcohol, and excessive heat (such as saunas or steam rooms) for 24-48 hours, and to avoid massaging or applying pressure to the treated areas unless advised. Mild swelling, tenderness, or bruising can occur and usually settle within a few days.\\nYou are encouraged to attend your complimentary 4-week review appointment so we can review your results and make sure you are happy with how everything has settled. If you have any concerns at any point, you are encouraged to get in touch - ongoing support and reassurance are an important part of doctor-led care.\"}',1,'2026-03-19 18:39:03','2026-03-20 20:04:02','8d90cd26-c60b-42cd-880c-e30d608fd99b'),
(4722,4722,1,'Can dermal fillers look natural?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers look natural?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Natural-looking results rely on precise placement, a deep understanding of facial anatomy, and a conservative approach where less really is more. When people think about dermal fillers, they often picture the obvious, overdone results they have seen in the media. What is less often noticed are the many people you pass every day who have had treatment and simply look well rested and refreshed, because the best treatment should be undetectable.</p><p> </p><p>My philosophy is <i><strong>refreshed, never changed</strong></i><strong>.</strong> I am passionate about creating natural, subtle and balanced results that respect your individual anatomy and enhance your unique features. I use carefully measured amounts of filler, placed strategically to restore youthful proportions rather than add unnecessary volume. The aim is always to help you look like yourself on a good day.</p>\"}',1,'2026-03-19 18:39:03','2026-04-13 09:16:00','bb274ef8-8004-478c-b149-5166f1463ed5'),
(4723,4723,1,'What is the difference between dermal fillers and anti-wrinkle injections?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between dermal fillers and anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Dermal fillers and anti-wrinkle injections work in different ways and are often used together to achieve the most natural and balanced results.</p><p> </p><p><strong>Dermal fillers</strong> are used to restore volume and structural support where it has gradually reduced over time. They can help improve facial contours, support areas of hollowing or thinning, and also provide hydration within the skin due to their hyaluronic acid content. Results are visible immediately and typically last between 6 and 18 months depending on the area treated.</p><p> </p><p><strong>Anti-wrinkle injections</strong> work differently. Rather than adding volume, they gently relax specific muscles that contribute to expression lines. This helps soften dynamic wrinkles such as frown lines, forehead lines and crow’s feet, while also helping to prevent these lines from becoming deeper over time. Results usually begin to appear within 1–2 weeks and typically last around 3–4 months.</p><p> </p><p>Many patients benefit from a combined approach, using dermal fillers to restore structural support alongside anti-wrinkle treatment to soften movement-related lines. If appropriate, I will always talk this through with you during your consultation and advise on what will best suit your face, your goals and your preference for natural results.</p>\"}',1,'2026-03-19 18:39:03','2026-04-13 09:17:19','dad9deeb-ee7d-4b0d-819e-0f6778e5cfed'),
(4725,4725,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 18:39:03','2026-04-20 19:17:00','aa9ed743-002f-4bf7-b463-4ed191644d32'),
(4726,4726,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','0ece1ac1-eeac-41a0-aa38-04314696c69f'),
(4727,4727,1,'Polynucleotides Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning cellular repair therapy | Treat dark circles, fine lines &amp; crepey skin | Salmon DNA bio-stimulator | Polynucletoides on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','64b50e69-da43-455b-a657-c8a72144778d'),
(4728,4728,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','b0b55baa-76ca-43cd-bdc7-c754179f13e8'),
(4729,4729,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £240\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','148c51ba-8630-49d1-b7b9-af3afee38f6f'),
(4730,4730,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"30-45 Minutes\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','c99d0708-7a8e-4b9e-afdd-29418c89fb33'),
(4731,4731,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','61e2690c-8735-48b7-8650-7027873f5f96'),
(4732,4732,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-9 Months\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','d53790e5-a634-4759-b4c8-134ebfd33a7c'),
(4733,4733,1,'Why Choose Polynucleotide Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Polynucleotide Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When skincare alone is no longer delivering results, when the under-eye area appears persistently tired, or when the skin feels thinner and less resilient, polynucleotides offer a different approach. Rather than masking concerns, they work at a cellular level to support repair, strengthen skin structure and improve overall skin quality. This is a regenerative treatment designed to restore the skin’s underlying health and function, helping it behave more like younger skin over time rather than offering a short-term cosmetic effect.</span></p>\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','f4e447a1-7aa3-4405-8a0f-1e4aeede514b'),
(4734,4734,1,'True Regenerative Medicine','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Regenerative Medicine\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are highly purified DNA fragments originally isolated from salmon, chosen for their close biological compatibility with human skin. They work by activating fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid. Rather than adding volume or acting only at the surface, polynucleotides support the skin’s natural repair processes from within. </span></p>\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','73181afd-9f3c-48ee-9b53-8791d4375a70'),
(4735,4735,1,'Treats What Others Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Others Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are particularly helpful for concerns driven by skin quality rather than volume, such as dark circles caused by thin under-eye skin, crepey skin texture, menopausal skin thinning associated with hormonal change, acne scarring that requires tissue remodelling, and even certain forms of hair loss. </span></p>\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','819c9fb4-5501-43d9-856a-7baf2081190b'),
(4736,4736,1,'Natural, Lasting Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Lasting Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Results develop gradually as the skin regenerates, creating improvements that look subtle and natural rather than sudden or artificial. Over time, the skin becomes thicker, firmer, better hydrated and more resilient. Patients are often told they look rested or refreshed, without it being obvious that they have had treatment.</span></p>\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','1f1fb55f-9de9-4fca-bcd3-97476bd1acac'),
(4737,4737,1,'Medical-Grade Safety','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Safety\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides have been used in regenerative medicine for many years and are highly biocompatible with human tissue. These purified DNA fragments are well tolerated and integrate naturally within the skin, with a low risk of adverse reactions when used appropriately. </span></p>\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','6e1fdfaf-30c6-4ef9-9da7-3174f4ec8535'),
(4738,4738,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Polynucleotides?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon, selected for their close biological compatibility with human skin. They work at a cellular level to support the skin’s natural repair processes, strengthening tissue and improving skin quality from within. This is a regenerative treatment that focuses on restoring skin health, rather than simply treating the surface.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science Behind Cellular Repair\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time I explain polynucleotides to patients, I often see a lightbulb moment. For many people, this treatment offers something that other aesthetic approaches cannot. While many traditional treatments focus on improving visible symptoms, polynucleotides work at a deeper level, supporting one of the key biological drivers of skin ageing: declining cellular function.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As we age, fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid - become less active. This contributes to thinning skin, reduced elasticity, dehydration and the tired, crepey appearance that is often most noticeable around delicate areas such as the under-eyes, where treatment options can be limited.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon. When carefully injected into human tissue, they encourage fibroblasts to become more active, supporting collagen production, improving microcirculation and helping repair cellular DNA damage caused by UV exposure and oxidative stress. By strengthening the skin from within, they also create a healthier foundation, making them an ideal primer before other collagen-stimulating treatments.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4630],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The under-eye area, where many patients choose polynucleotides, is one of the most delicate and technically demanding areas of the face. The skin is extremely thin, the vascular anatomy is complex, and careful assessment and precise technique are essential to minimise risk and achieve the best outcome.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry emergency equipment and hold full professional indemnity insurance for advanced injectable procedures. However, safety is not only about responding to problems; it is about preventing them. That starts with a thorough assessment, correct product choice and precise technique.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess your skin quality, examine the anatomy around the under-eye area and discuss suitability in detail. In some cases, I may recommend alternative or complementary treatments, such as combining polynucleotides with <strong>pHformula medical skincare</strong> or <strong>microneedling</strong>, to support skin health more holistically.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4628],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr. Rachel made me feel very comfortable and reassured me every step of the way as I was quite anxious. I had no idea what treatments would work for me, but she was very patient and listened to my concerns. She formulated a plan - I\'ve had 3 treatments so far and can really see a difference. She is truly lovely and caring, and her knowledge and bedside manner are second to none. I cannot praise her enough and would definitely recommend her.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Jill\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"J.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','b2e1b916-2b10-4dcf-8a2b-43ba183f6675'),
(4739,4739,1,'Who Should Consider Polynucleotides?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Polynucleotides?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have under-eye dark circles</strong> caused by thin, translucent skin where underlying blood vessels are visible. Polynucleotides help improve skin thickness and support microcirculation, gradually softening the appearance of these stubborn circles.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey, thinning skin,</strong> especially around the under-eyes, neck or hands. By supporting dermal repair, polynucleotides help improve elasticity and resilience for smoother, stronger skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are experiencing menopausal skin changes</strong> related to declining oestrogen, including thinning, dryness and loss of firmness. Polynucleotides help support the cellular processes that are normally influenced by oestrogen, improving skin quality and resilience over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking long-term improvement in skin quality</strong> rather than short-term cosmetic fixes, with results that develop progressively over 12 weeks as the skin regenerates.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','c60601cb-9950-4523-8a3c-727842098723'),
(4740,4740,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','b5a1a646-d2ad-4eea-8e88-3bbcdd620df9'),
(4741,4741,1,'Frequently Asked Questions About Polynucleotides Treatment','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Polynucleotides Treatment\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Polynucleotides Treatment answered by Dr Rachel.\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','e4eb2d87-9dc4-4838-abfd-42201b9e30e1'),
(4743,4743,1,'How long before I see results?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long before I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Results develop gradually as the skin responds and new collagen, elastin and hyaluronic acid are produced. Subtle improvements in hydration and skin quality are often noticed within the first few weeks. More visible changes develop progressively over 8–12 weeks, with results typically most noticeable at around the 3-month mark, once new collagen has matured. This gradual process supports natural-looking regeneration rather than sudden change. Results can last 9-12 months or longer, with maintenance treatments helping to prolong the benefits.\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','067d5447-3250-40d2-8fdf-591d1eacb0a4'),
(4744,4744,1,'Is there any downtime?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is usually minimal. You may notice small injection marks and mild swelling for 24-48 hours as the product settles into the skin. Some patients experience temporary under-eye puffiness for a day or two, and occasional bruising can occur. Most people feel comfortable returning to normal activities straight away. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12-24 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','710e5e41-9779-4387-bff5-d03f8fd3fa82'),
(4746,4746,1,'What\'s the difference between polynucleotides and Profhilo®?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What\'s the difference between polynucleotides and Profhilo®?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Polynucleotides are highly purified DNA fragments derived from salmon that work by stimulating fibroblasts to support collagen, elastin and hyaluronic acid production. They focus on cellular repair and tissue regeneration, making them particularly helpful for delicate areas such as the under-eyes, crepey skin and acne scarring. Results typically develop gradually and can last 9-12 months or longer.\\nProfhilo® is a high-concentration hyaluronic acid treatment designed to improve hydration and skin laxity through bio-remodelling. It focuses on enhancing skin hydration and firmness, with results usually lasting around 6–9 months.\\nThese treatments work in different but complementary ways, and many patients benefit from a combined or staged approach when used strategically as part of a personalised treatment plan.\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','110e474c-1401-4b50-872c-02fbcd4dd672'),
(4747,4747,1,'Can polynucleotides treat my dark circles?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can polynucleotides treat my dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"This depends on the underlying cause of the dark circles. Polynucleotides are particularly effective for structural or vascular dark circles, where thin under-eye skin allows underlying blood vessels to show through. In these cases, they help improve skin thickness and support microcirculation, gradually softening the appearance of darkness. Polynucleotides are not designed to treat pigment-related dark circles caused by melanin, which are usually better managed with treatments such as chemical peels or lasers. During your consultation, I will carefully assess your under-eye area to identify the cause and recommend the most appropriate treatment approach for you.\"}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','b0b2444d-5897-4a69-8239-969ca86f88a8'),
(4749,4749,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 18:39:39','2026-03-19 18:39:39','6d7e3c92-5ac8-461f-86c1-5dc8ce993b14'),
(4752,4752,1,'Dermal fillers treatement wirral',NULL,NULL,NULL,1,'2026-03-19 18:45:19','2026-03-19 18:45:19','8e239d24-5a30-408a-b7e3-3e9ab5770cde'),
(4753,4753,1,'Dermal fillers wirral',NULL,NULL,NULL,1,'2026-03-19 18:45:19','2026-03-19 18:45:19','be5bb867-7d94-4988-ad70-1dcc89f499ce'),
(4754,4754,1,'Dermal fillers wirral fetured image',NULL,NULL,NULL,1,'2026-03-19 18:45:20','2026-03-19 18:45:20','088fa664-7b86-4988-964b-fb61a5a823f3'),
(4780,4780,1,'Can dermal fillers be reversed?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers be reversed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Hyaluronic acid fillers can be dissolved using an enzyme called hyaluronidase if needed. This may be used if you are unhappy with the result, if asymmetry develops, or in the unlikely event of a complication. When required, the filler can usually be broken down within 24-48 hours.\\nThis reversibility is one of the key safety advantages of hyaluronic acid fillers compared with permanent or semi-permanent products, meaning you are never committed to a result that does not feel right for you.\\nIn practice, dissolving filler is rarely needed. With careful assessment, precise placement, and a conservative approach, most concerns are prevented from the outset.\"}',1,'2026-03-19 19:07:57','2026-03-20 20:04:02','d35955d4-09a9-41ce-9eec-f9cedb2f045c'),
(4781,4781,1,'How much do dermal fillers cost?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much do dermal fillers cost?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p><a href=\\\"https://hermeswp.xyz/rachel/web/prices\\\">Pricing</a> varies depending on the area treated and the amount of product required. I will always discuss clear, transparent pricing during your consultation once I have assessed your facial anatomy and what is likely to achieve a balanced, natural result. I take a conservative approach and often use less filler than patients expect, focusing on precise placement rather than volume. That said, I will also be honest and realistic if achieving your goals is likely to require a certain amount of product, or if a phased approach would be more appropriate. My role is to guide you with clarity and integrity, without pressure or upselling, so you can make an informed decision that feels right for you.</p>\"}',1,'2026-03-19 19:07:57','2026-03-20 20:04:02','038dcffe-b8fd-44e8-98ea-131b50ce18c5'),
(4782,4782,1,'Can men have dermal fillers?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can men have dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in the clinic seeking subtle, natural-looking facial enhancement. Men often look to improve jawline definition, enhance chin projection, and restore facial balance, while maintaining a strong, masculine appearance. Male facial anatomy differs from female anatomy, with thicker skin, stronger musculature, and different fat distribution patterns. Treatment techniques and product placement, therefore, need to be carefully adapted. I tailor each treatment to respect these anatomical differences, focusing on proportion, structure, and natural results. Male aesthetics is a growing area of practice, and I welcome male patients looking for discreet, professional, doctor-led facial rejuvenation.</p>\"}',1,'2026-03-19 19:07:57','2026-03-20 20:04:02','b98025c6-2b97-40b7-99cf-9dae70b1cead'),
(4783,4783,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','17ad6e6c-a87e-45e0-87c3-467733c8bd65'),
(4784,4784,1,'Dermal Fillers - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led aesthetic clinic | Natural-looking lip, cheek &amp; jawline fillers | Hyaluronic acid volume restoration on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','df65b0f5-ffcc-49b8-9023-be7186ed2f04'),
(4785,4785,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','61a7b688-0ee8-4514-a61b-21b56c58e19d'),
(4786,4786,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £245\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','6c759cc4-b1e8-45d9-97e9-e0d490a882c2'),
(4787,4787,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"45-60 Minutes\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','e4002a51-c431-4c18-8fce-eb07aff4b834'),
(4788,4788,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','ba0abef4-e188-4779-95d2-1fa9a6e5d8f4'),
(4789,4789,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-18 Months\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','1afb75cf-fc6b-453e-9e47-f2a02d6a4799'),
(4790,4790,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">If you feel like the person you see in the mirror has lost their spark, if your reflection no longer reflects the person that you are, and your face looks more tired than you remember, dermal fillers offer a subtle, science-led way to restore what time has taken away. I help women and men who want to look refreshed, not “done” - restoring softness, light and confidence in a way that feels entirely like you.</span></p>\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','6fa5608f-7e1e-4f13-ae71-c0b4c0d3428b'),
(4791,4791,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so beautifully. As we move through our 30s, 40s, and beyond, several structural changes occur at the same time. We gradually lose facial volume as the fat that once supported youthful contours depletes and shifts downward. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Collagen production slows, meaning the skin becomes less firm and elastic. The underlying bone structure also changes, particularly through the cheeks and jaw, altering the framework that supports the face. At the same time, levels of hyaluronic acid fall, leading to dehydration and loss of that naturally plump, luminous skin quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In youth, the face is shaped like an inverted triangle — wider and fuller through the cheeks, gently tapering towards the chin. This is often referred to as the <i>triangle of youth</i>. As these age-related changes take place, that triangle gradually reverses. Volume is lost from the mid-face, the lower face becomes heavier, and shadows begin to form where light once reflected smoothly.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Here is something that frightens me about the aesthetics industry and many people are not aware of: dermal fillers are medical devices, yet they are being administered in settings with no medical oversight whatsoever.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I regularly meet patients who have experienced problems following filler treatments carried out by non-medical practitioners. These can include blocked blood vessels, damage to the surrounding skin, filler migration, asymmetry, or overfilling that later needs to be dissolved. While some issues are aesthetic, others require immediate medical assessment and clinical intervention.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered doctor and practising GP, I bring over 10 years of clinical, diagnostic, and emergency management experience to every appointment. I understand facial anatomy and vascular structures at a clinical level, can recognise early signs of complications, and act immediately using established medical protocols. I carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','4f164b40-4a16-45e8-b3f7-b2e424f1511c'),
(4792,4792,1,'Who Should Consider Dermal Fillers?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Dermal Fillers?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Lip Fillers - </strong>Lip fillers can be used to gently enhance volume, improve definition, address asymmetry, and restore the natural fullness that gradually reduces with age. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration) - </strong>Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring - </strong>Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','97fb5110-9661-415f-bb0b-7b1677d47369'),
(4793,4793,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','3d20212a-f3cc-47d9-ab08-1b07e089ad5f'),
(4795,4795,1,'How long do dermal fillers last?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do dermal fillers last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The results from fillers generally last between 6 and 18 months. But, as with all treatments, results vary between individual metabolisms, products used and the area(s) injected. \\n\\nAs a general guide:\\nLips: 6-9 months (higher movement area metabolises filler faster)\\nCheeks: 12-18 months (lower movement area, deeper placement)\\nJawline/Chin: 12-18 months\\nNasolabial Folds: 9-12 months\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','1f8e1322-ae90-4499-bcbc-86d8bfe46f50'),
(4796,4796,1,'What is the aftercare for dermal fillers?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the aftercare for dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"After dermal filler treatment, aftercare is simple, and most patients return to normal activities straight away. You will be provided with clear, written aftercare instructions, and I remain available should you have any concerns during the healing process.\\nAs a general guide, it is advised to avoid strenuous exercise, alcohol, and excessive heat (such as saunas or steam rooms) for 24-48 hours, and to avoid massaging or applying pressure to the treated areas unless advised. Mild swelling, tenderness, or bruising can occur and usually settle within a few days.\\nYou are encouraged to attend your complimentary 4-week review appointment so we can review your results and make sure you are happy with how everything has settled.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','e4c85ef7-da34-43a1-8837-8b4ad4f3c90c'),
(4798,4798,1,'Can dermal fillers look natural?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers look natural?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely - when you go to the right practitioner. Natural-looking results rely on precise placement, a deep understanding of facial anatomy, and a conservative approach where less really is more.\\nWhen people think about dermal fillers, they often picture the obvious, overdone results they have seen in the media. What is less often noticed are the many people you pass every day who have had filler and look simply well rested and refreshed - because good treatment should not be detectable.\\nMy philosophy is “refreshed, never changed.” I am passionate about creating natural, subtle, and balanced results that respect your individual anatomy and enhance your unique features. I use carefully measured amounts of filler, placed strategically to restore youthful proportions rather than add unnecessary volume.\\nAchieving natural results comes down to three things: anatomical expertise, high-quality products, and the willingness to exercise restraint. I never overfill, and I never apply a one-size-fits-all approach. The aim is for people to notice that you look healthy, radiant, and like yourself - without ever being able to pinpoint why.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','4eeac758-2e86-4b26-ba2d-3aab98d97f0f'),
(4799,4799,1,'What is the difference between dermal fillers and anti-wrinkle injections?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between dermal fillers and anti-wrinkle injections?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"These treatments work in different ways and are often used together for the most natural, balanced results. Many patients benefit from a combined approach, using dermal fillers to restore volume and contour, alongside anti-wrinkle injections to soften movement-related lines. If appropriate, I will talk this through with you during your consultation and advise on what will best suit your face and goals.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','b8daeca2-7ac9-47a0-bbb6-2e114d9e5b62'),
(4801,4801,1,'Can dermal fillers be reversed?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers be reversed?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes. Hyaluronic acid fillers can be dissolved using an enzyme called hyaluronidase if needed. This may be used if you are unhappy with the result, if asymmetry develops, or in the unlikely event of a complication. When required, the filler can usually be broken down within 24-48 hours.\\nThis reversibility is one of the key safety advantages of hyaluronic acid fillers compared with permanent or semi-permanent products, meaning you are never committed to a result that does not feel right for you.\\nIn practice, dissolving filler is rarely needed. With careful assessment, precise placement, and a conservative approach, most concerns are prevented from the outset.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','ffe0f14a-7285-40a7-a5b5-a37deef09a75'),
(4802,4802,1,'How much do dermal fillers cost?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much do dermal fillers cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"ricing varies depending on the area treated and the amount of product required. I will always discuss clear, transparent pricing during your consultation once I have assessed your facial anatomy and what is likely to achieve a balanced, natural result.\\nI take a conservative approach and often use less filler than patients expect, focusing on precise placement rather than volume. That said, I will also be honest and realistic if achieving your goals is likely to require a certain amount of product, or if a phased approach would be more appropriate. My role is to guide you with clarity and integrity, without pressure or upselling, so you can make an informed decision that feels right for you.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','0a0fd788-a906-4f2b-8169-41ded5329a5c'),
(4803,4803,1,'Can men have dermal fillers?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can men have dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in the clinic seeking subtle, natural-looking facial enhancement.\\nMen often look to improve jawline definition, enhance chin projection, and restore facial balance, while maintaining a strong, masculine appearance.\\nMale facial anatomy differs from female anatomy, with thicker skin, stronger musculature, and different fat distribution patterns. Treatment techniques and product placement, therefore, need to be carefully adapted. I tailor each treatment to respect these anatomical differences, focusing on proportion, structure, and natural results.\\nMale aesthetics is a growing area of practice, and I welcome male patients looking for discreet, professional, doctor-led facial rejuvenation.\"}',1,'2026-03-19 19:07:57','2026-03-19 19:07:57','9fab5ded-1d00-4be7-bf59-a278a7eca0b9'),
(4804,4804,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-19 19:08:00','2026-03-19 19:08:00','6ed1ffd5-64ea-44a6-91df-56c0b109fc14'),
(4805,4805,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-19 19:08:52','2026-03-19 19:23:50','295ae8b5-8a86-40c9-bd10-bc624a6a6321'),
(4806,4806,1,'Expert Cryotherapy Treatment by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment by Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin lesion removal | Advanced CryoIQ Cryotherapy technology | Skin tags, warts, moles &amp; more | Serving Wirral, Bebington, Eastham &amp; Moreton</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-19 19:08:52','2026-04-17 16:28:58','6c9b98e3-1e16-4387-8436-137a15ba77fa'),
(4807,4807,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 19:08:52','2026-03-19 19:08:52','80ec7772-688c-46a3-8c34-8f8b0c2a4b3b'),
(4808,4808,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £70\"}',1,'2026-03-19 19:08:52','2026-03-19 19:15:03','3475e284-2e62-472b-a2e2-1266d3a9763a'),
(4809,4809,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"15 Minutes\"}',1,'2026-03-19 19:08:52','2026-03-19 19:15:03','838041a6-40b4-4fb6-ae7a-006f49f49d20'),
(4810,4810,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Immediate\"}',1,'2026-03-19 19:08:52','2026-03-19 19:15:03','fc4f9235-08e0-41ab-8803-2d0c76897172'),
(4811,4811,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Permanent\"}',1,'2026-03-19 19:08:52','2026-03-19 19:15:03','567e7287-68b6-43b0-8801-6f615279f591'),
(4812,4812,1,'Why Choose Cryotherapy for Skin Lesions?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Cryotherapy for Skin Lesions?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy is a well-established treatment for many benign skin lesions, including skin tags, warts and moles. Cryotherapy offers a simple and effective medical treatment without the need for surgery or stitches.</span></p>\"}',1,'2026-03-19 19:08:52','2026-04-06 14:05:30','f5f46cf8-ee5f-4689-80c9-0627252b3ef6'),
(4813,4813,1,'What Is Cryotherapy Treatment?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Cryotherapy Treatment?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy is a medical procedure that uses controlled freezing with nitrous oxide to safely destroy unwanted skin lesions, while preserving the surrounding healthy skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the freeze\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy works by freezing fluid within targeted skin lesions, causing the unwanted cells to rupture and die. The beauty of this treatment lies in its precision, where I target only the problem tissue while leaving everything around it completely unharmed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">At my clinic, I use the CryoIQ pen, which delivers nitrous oxide at precisely -89°C. This is very different from the liquid nitrogen spray devices commonly used in many GP surgeries and high-street clinics. The CryoIQ allows far greater control over the depth and spread of the freeze, with millimetre-level precision. This level of accuracy matters because it allows me to treat the lesion effectively while minimising trauma to the surrounding healthy skin, reducing the risk of hypopigmentation, supporting faster healing, and ultimately achieving better cosmetic outcomes.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">During the 5–10 second treatment you will usually feel a brief sharp sting, often described as similar to an elastic band snapping against the skin. The area will turn white (known as <i>frosting</i>) as the cells freeze, before gradually returning to its normal colour. Within 24–48 hours a small protective blister may form, which is a normal and expected part of the healing process. Over the following 7–14 days this will dry into a scab and naturally fall away, revealing fresh pink skin underneath. The most important thing you can do to minimise the risk of scarring is to allow this to heal naturally and avoid picking the area.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4888],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Why doctor-led cryotherapy matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Here is something many people do not realise: cryotherapy is a medical procedure, not a beauty treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skill is not simply in applying cold to the skin, but in understanding <i>what</i> is being treated and <i>whether</i> cryotherapy is the right option. This includes recognising when a lesion appears suitable for treatment, when an alternative approach may be safer, and when referral for further assessment is the most appropriate next step.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Clinical judgement matters. Freeze time, lesion depth, skin type, and the risk of pigmentation change all influence how cryotherapy should be performed. These are decisions that rely on medical training and experience, not just equipment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a practising GP here on the Wirral, I bring over 10 years of clinical experience to every consultation. I take the time to examine your lesion carefully, review your medical history, and explain clearly what cryotherapy can and cannot achieve for your individual concern.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Just as importantly, I know when <i>not</i> to treat — when a lesion needs dermatology referral, when a biopsy may be more appropriate, or when cryotherapy is not the safest option. This clinical judgement is just as important as the treatment itself.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4887],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-19 19:08:52','2026-04-20 19:16:43','68cdb88c-697e-426f-9440-d2915b59a67a'),
(4814,4814,1,'Who Should Consider Cryotherapy?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Cryotherapy?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have benign skin lesions causing concern - </strong>Skin tags snagging on clothing or jewellery, warts on hands that over-the-counter treatments have failed to remove, milia around the eyes, cherry angiomas you find cosmetically bothersome, or age spots making you feel self-conscious.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want treatment in a clinical setting - </strong>You value having a GMC-registered doctor with the clinical expertise to assess whether cryotherapy is appropriate, treat safely, and advise when further medical review may be needed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want treatment in a clinical setting - </strong>You value having a GMC-registered doctor with the clinical expertise to assess whether cryotherapy is appropriate, treat safely, and advise when further medical review may be needed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of Marionette Lines - Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 19:08:52','2026-04-06 14:05:30','02032c9e-93b1-41c4-8a7a-ef033705e2cd'),
(4815,4815,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 19:08:52','2026-03-26 08:51:52','171b438a-dccf-491a-b177-0a93fc2813a6'),
(4816,4816,1,'Frequently Asked Questions About Cryotherapy','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Cryotherapy\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Cryotherapy answered by Dr Rachel.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','81369b46-a75d-44f7-8abc-0d55b8b27a7a'),
(4817,4817,1,'How long does the treatment take?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does the treatment take?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Each individual lesion usually takes just 5-10 seconds to freeze. A typical appointment lasts 15 minutes, including consultation, treatment of multiple lesions if needed, and aftercare discussion. You can have as many lesions treated as you wish in one session.</p>\"}',1,'2026-03-19 19:08:52','2026-04-13 09:36:40','fc993355-0e93-4a32-b220-fbbabc538555'),
(4818,4818,1,'Does cryotherapy hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does cryotherapy hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe a sharp sting or elastic band snap sensation during the freeze. It is a quick and well-tolerated treatment and the discomfort lasts only for the 5-10 second freeze time. Local anaesthetic is not usually required. Children from age 5+ can typically tolerate the procedure well.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','9e89150f-710f-449d-b885-893e8371a8e4'),
(4819,4819,1,'What happens immediately after treatment?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What happens immediately after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The treated area will appear white (frosted) during the freeze, then return to normal colour within a few minutes. You may notice redness and slight swelling for a few hours. Within 24-48 hours, a blister often forms (either clear fluid or blood-filled). This is normal and shows the treatment is working. Do not pop the blister; let it resolve naturally.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','2ba74662-e0b5-4939-a2d3-369a8cbd4919'),
(4820,4820,1,'How long does it take to heal?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to heal?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The healing timeline varies by lesion depth: </p><p>Days 1-3: Redness and possible blister formation </p><p>Days 3-7: Scab forms as blister dries </p><p>Days 7-14: Scab lifts away naturally, revealing fresh pink skin </p><p>Weeks 2-8: Treated area gradually blends with surrounding skin</p><p> </p><p>Most lesions heal completely within 2-4 weeks. Deeper lesions may take longer.</p>\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','6658934e-6e86-45d5-8734-0b5a7a97976d'),
(4821,4821,1,'Will I have a scar?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I have a scar?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"When cryotherapy is performed correctly with proper aftercare, scarring is rare. The most common cause of scarring is picking the scab or blister before it is ready to fall off naturally. Letting the scab lift away on its own minimises scarring risk significantly. The CryoIQ pen’s precision reduces scarring significantly compared to older liquid nitrogen methods.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','595f862d-9aa8-4691-84ed-9e5d6fd8374c'),
(4822,4822,1,'Will the treated area look lighter than my skin?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will the treated area look lighter than my skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is a risk of temporary or permanent hypopigmentation (lightening), particularly in patients with darker skin tones. The extreme cold can affect melanocytes (pigment-producing cells), making the treated area appear lighter. I use the precise CryoIQ pen to minimise this risk, but I will always discuss this possibility during your consultation so you can make an informed decision about whether to proceed.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','4f850b1c-b251-4607-9e9e-eb428943f7ff'),
(4823,4823,1,'Is there any downtime?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. You can return to work, exercise, and all normal activities immediately after treatment. The main aftercare requirements are: keep the area clean and dry for 48 hours, do not pick the scab, apply petroleum jelly if the area feels dry or sore, and use SPF 50 sunscreen on the treated area for at least 8 weeks to prevent abnormal pigmentation.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','e6bf9695-f7fb-4d06-a987-bb36c6579f92'),
(4824,4824,1,'Will the lesion come back?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will the lesion come back?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>It depends on the lesion type. Skin tags, milia, cherry angiomas, and age spots do not typically recur once successfully treated, though new lesions may develop elsewhere over time. Viral lesions (warts, verrucae, molluscum contagiosum) have a small risk of recurrence if the virus remains in surrounding tissue. I will discuss recurrence risk for your specific lesion type during <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">your consultation</a>.</p>\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','36dde215-5834-4ae6-ae9b-ba82cc86d8a0'),
(4825,4825,1,'Can I have multiple lesions treated at once?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I have multiple lesions treated at once?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, absolutely. In fact, treating multiple lesions in one session is more cost-effective. There is no limit to how many can be treated in one appointment, though I will advise on what is practical and comfortable for you.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','9fae036a-6fef-4fcb-a652-cad4d60ddd1e'),
(4826,4826,1,'What is the difference between the CryoIQ pen and liquid nitrogen?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between the CryoIQ pen and liquid nitrogen?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Traditional liquid nitrogen is sprayed onto the lesion using a gun-like device. This method is less precise and risks freezing too much of the surrounding healthy tissue, increasing the risk of permanent scarring and pigmentation changes. The CryoIQ pen delivers controlled nitrous oxide through a fine-tip applicator with millimetre precision, freezing only the target lesion while protecting surrounding skin. This results in faster healing, less scarring, and better cosmetic outcomes.\"}',1,'2026-03-19 19:08:52','2026-03-20 20:12:09','331b062e-0701-46be-8705-13e5d9680ece'),
(4827,4827,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 19:08:52','2026-04-20 19:16:43','c8a00d73-8bb2-4d1a-a683-685b7b737b20'),
(4828,4828,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','3708b69d-17c7-414c-b30d-39a65575979d'),
(4829,4829,1,'Dermal Fillers - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led aesthetic clinic | Natural-looking lip, cheek &amp; jawline fillers | Hyaluronic acid volume restoration on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','678bbcbb-0124-439b-8c9e-4b8eb47c73af'),
(4830,4830,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','c2183779-00af-4d4c-8c73-9adc6de384fe'),
(4831,4831,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £245\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','43774915-da3c-4b6a-be8a-d84708a746fc'),
(4832,4832,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"45-60 Minutes\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','13e8f284-0593-44e3-b442-6dac5a6ee43d'),
(4833,4833,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','d9447543-68ca-44bc-8f60-96dd27d83245'),
(4834,4834,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"6-18 Months\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','cb36132d-8929-4565-80ac-dc7495b77b2d'),
(4835,4835,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">If you feel like the person you see in the mirror has lost their spark, if your reflection no longer reflects the person that you are, and your face looks more tired than you remember, dermal fillers offer a subtle, science-led way to restore what time has taken away. I help women and men who want to look refreshed, not “done” - restoring softness, light and confidence in a way that feels entirely like you.</span></p>\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','427b6603-03c6-4002-8c8d-19f96db788c7'),
(4836,4836,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so beautifully. As we move through our 30s, 40s, and beyond, several structural changes occur at the same time. We gradually lose facial volume as the fat that once supported youthful contours depletes and shifts downward. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Collagen production slows, meaning the skin becomes less firm and elastic. The underlying bone structure also changes, particularly through the cheeks and jaw, altering the framework that supports the face. At the same time, levels of hyaluronic acid fall, leading to dehydration and loss of that naturally plump, luminous skin quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In youth, the face is shaped like an inverted triangle — wider and fuller through the cheeks, gently tapering towards the chin. This is often referred to as the <i>triangle of youth</i>. As these age-related changes take place, that triangle gradually reverses. Volume is lost from the mid-face, the lower face becomes heavier, and shadows begin to form where light once reflected smoothly.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Here is something that frightens me about the aesthetics industry and many people are not aware of: dermal fillers are medical devices, yet they are being administered in settings with no medical oversight whatsoever.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I regularly meet patients who have experienced problems following filler treatments carried out by non-medical practitioners. These can include blocked blood vessels, damage to the surrounding skin, filler migration, asymmetry, or overfilling that later needs to be dissolved. While some issues are aesthetic, others require immediate medical assessment and clinical intervention.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered doctor and practising GP, I bring over 10 years of clinical, diagnostic, and emergency management experience to every appointment. I understand facial anatomy and vascular structures at a clinical level, can recognise early signs of complications, and act immediately using established medical protocols. I carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','022ed7f7-dc40-45b7-82c4-b95cc2aa2b96'),
(4837,4837,1,'Who Should Consider Dermal Fillers?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Dermal Fillers?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Lip Fillers - </strong>Lip fillers can be used to gently enhance volume, improve definition, address asymmetry, and restore the natural fullness that gradually reduces with age. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration) - </strong>Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring - </strong>Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','28284c26-ea6b-4492-b5a5-298ce1971581'),
(4838,4838,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','f18b898f-fba1-4d34-85bd-bd28179014a8'),
(4839,4839,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','4094f0ee-d0ba-4695-b52d-7e9221a4b7f2'),
(4840,4840,1,'Do dermal fillers hurt?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do dermal fillers hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find dermal filler treatment very comfortable. I use ultra-fine needles and careful techniques to minimise discomfort. Modern dermal fillers also contain lidocaine, a local anaesthetic mixed into the gel, which helps numb the area as the product is placed. For more sensitive areas, such as the lips, topical numbing cream can be applied beforehand. Most patients describe the sensation as a feeling of pressure with the occasional brief pinch, and often find it far more comfortable than they expected.\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','024943d3-da77-4929-b231-9acfd4d431e8'),
(4841,4841,1,'How long do dermal fillers last?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do dermal fillers last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The results from fillers generally last between 6 and 18 months. But, as with all treatments, results vary between individual metabolisms, products used and the area(s) injected. \\n\\nAs a general guide:\\nLips: 6-9 months (higher movement area metabolises filler faster)\\nCheeks: 12-18 months (lower movement area, deeper placement)\\nJawline/Chin: 12-18 months\\nNasolabial Folds: 9-12 months\"}',1,'2026-03-19 19:09:14','2026-03-19 19:09:14','b38788c2-57ff-4850-a246-d10a6d4fd08b'),
(4842,4842,1,'What is the aftercare for dermal fillers?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the aftercare for dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"After dermal filler treatment, aftercare is simple, and most patients return to normal activities straight away. You will be provided with clear, written aftercare instructions, and I remain available should you have any concerns during the healing process.\\nAs a general guide, it is advised to avoid strenuous exercise, alcohol, and excessive heat (such as saunas or steam rooms) for 24-48 hours, and to avoid massaging or applying pressure to the treated areas unless advised. Mild swelling, tenderness, or bruising can occur and usually settle within a few days.\\nYou are encouraged to attend your complimentary 4-week review appointment so we can review your results and make sure you are happy with how everything has settled.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','2278d476-17c9-4799-abf2-b8f3b928b27b'),
(4843,4843,1,'Will I look swollen or bruised after treatment?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look swollen or bruised after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Minor swelling is normal and expected after dermal filler treatment, particularly with lip fillers. Swelling often peaks within 24-48 hours and usually settles over 3-5 days. Some patients experience very little swelling, while others notice more puffiness; this varies depending on individual sensitivity and the area treated.\\nBruising can occur, although it is less common. I use ultra-fine needles and careful techniques to minimise this risk. If bruising does develop, it typically fades within 5-7 days and can usually be covered with makeup after 24 hours.\\nIf you are planning treatment ahead of a special event, I recommend booking 3-4 weeks in advance to allow any swelling or bruising to fully resolve.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','3c70bb02-f034-4bd6-ba93-54e6e0d4b95f'),
(4844,4844,1,'Can dermal fillers look natural?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers look natural?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely - when you go to the right practitioner. Natural-looking results rely on precise placement, a deep understanding of facial anatomy, and a conservative approach where less really is more.\\nWhen people think about dermal fillers, they often picture the obvious, overdone results they have seen in the media. What is less often noticed are the many people you pass every day who have had filler and look simply well rested and refreshed - because good treatment should not be detectable.\\nMy philosophy is “refreshed, never changed.” I am passionate about creating natural, subtle, and balanced results that respect your individual anatomy and enhance your unique features. I use carefully measured amounts of filler, placed strategically to restore youthful proportions rather than add unnecessary volume.\\nAchieving natural results comes down to three things: anatomical expertise, high-quality products, and the willingness to exercise restraint. I never overfill, and I never apply a one-size-fits-all approach. The aim is for people to notice that you look healthy, radiant, and like yourself - without ever being able to pinpoint why.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','14d59f0d-e98a-4b5b-b06f-f20a3f65ac44'),
(4845,4845,1,'What is the difference between dermal fillers and anti-wrinkle injections?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between dermal fillers and anti-wrinkle injections?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"These treatments work in different ways and are often used together for the most natural, balanced results. Many patients benefit from a combined approach, using dermal fillers to restore volume and contour, alongside anti-wrinkle injections to soften movement-related lines. If appropriate, I will talk this through with you during your consultation and advise on what will best suit your face and goals.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','434312e2-96fc-44bb-823b-2c2943731450'),
(4846,4846,1,'Are dermal fillers safe?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are dermal fillers safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"When administered by qualified medical professionals using UK-licensed products, dermal fillers have an excellent safety profile. Hyaluronic acid is a biocompatible substance naturally found in the body, which means allergic reactions are extremely rare.\\nThe most common side effects are mild and temporary, such as swelling, bruising, redness, or tenderness at the injection sites. These usually settle within 3-7 days.\\nMore serious complications, including vascular occlusion, tissue damage, or infection, are rare but possible. This is why doctor-led treatment is so important. As a GMC-registered doctor and a member of the Complications in Medical Aesthetic Collaborative (CMAC), I have the anatomical knowledge to minimise risk, and the clinical training to recognise and manage complications promptly should they arise.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','951b0e6c-1fe2-4e41-ab86-1e7bc0eda005'),
(4847,4847,1,'Can dermal fillers be reversed?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers be reversed?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes. Hyaluronic acid fillers can be dissolved using an enzyme called hyaluronidase if needed. This may be used if you are unhappy with the result, if asymmetry develops, or in the unlikely event of a complication. When required, the filler can usually be broken down within 24-48 hours.\\nThis reversibility is one of the key safety advantages of hyaluronic acid fillers compared with permanent or semi-permanent products, meaning you are never committed to a result that does not feel right for you.\\nIn practice, dissolving filler is rarely needed. With careful assessment, precise placement, and a conservative approach, most concerns are prevented from the outset.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','4889b3c1-bdf8-4995-9b2e-f2e09d77d911'),
(4848,4848,1,'How much do dermal fillers cost?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much do dermal fillers cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"ricing varies depending on the area treated and the amount of product required. I will always discuss clear, transparent pricing during your consultation once I have assessed your facial anatomy and what is likely to achieve a balanced, natural result.\\nI take a conservative approach and often use less filler than patients expect, focusing on precise placement rather than volume. That said, I will also be honest and realistic if achieving your goals is likely to require a certain amount of product, or if a phased approach would be more appropriate. My role is to guide you with clarity and integrity, without pressure or upselling, so you can make an informed decision that feels right for you.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','9f781ade-df8d-450d-aa02-4d1a6fa7d519'),
(4849,4849,1,'Can men have dermal fillers?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can men have dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in the clinic seeking subtle, natural-looking facial enhancement.\\nMen often look to improve jawline definition, enhance chin projection, and restore facial balance, while maintaining a strong, masculine appearance.\\nMale facial anatomy differs from female anatomy, with thicker skin, stronger musculature, and different fat distribution patterns. Treatment techniques and product placement, therefore, need to be carefully adapted. I tailor each treatment to respect these anatomical differences, focusing on proportion, structure, and natural results.\\nMale aesthetics is a growing area of practice, and I welcome male patients looking for discreet, professional, doctor-led facial rejuvenation.\"}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','63204614-b2ac-4e5e-b82f-ad77ab2ba217'),
(4850,4850,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 19:09:15','2026-03-19 19:09:15','fd38d766-b1ce-4a65-b750-278b0dd378e5'),
(4869,4869,1,'Precision Technology','precision-technology',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Precision Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike traditional liquid nitrogen methods, the advanced CryoIQ pen used in my clinic delivers controlled nitrous oxide at -89°C with millimetre precision. This targeted approach freezes only the unwanted lesion while protecting surrounding healthy skin, reducing the risk of scarring and unwanted permanent skin changes.</span></p>\"}',1,'2026-03-19 19:15:03','2026-04-06 14:05:30','e6d7c08f-b809-4a1c-ab2c-ffd7d8abab5c'),
(4870,4870,1,'Quick & Effective','quick-effective',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Quick & Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Each lesion typically takes just 5-10 seconds to freeze. There are no needles, no stitches, and no surgical wounds. The procedure is quick and well-tolerated, with most patients describing only a brief stinging sensation. You can return to work immediately, and multiple lesions can often be treated in a single session for added convenience and cost-effectiveness.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','b594ff12-0731-413a-80bd-c7932198318a'),
(4871,4871,1,'Doctor-Led Expertise','doctor-led-expertise',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Doctor-Led Expertise\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">This is a medical-grade treatment, not a beauty salon procedure. As a GMC-registered GP with over ten years of clinical experience, I am trained to assess skin lesions, identify features that are appropriate for cryotherapy, and recognise when a lesion should not be treated and instead be referred for further medical assessment.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','604f9d15-df56-4494-a73e-83969c836d07'),
(4872,4872,1,'Proven Results','proven-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy has been used in medical practice for decades to safely remove benign skin lesions. The CryoIQ technology represents the latest advancement in this proven treatment, offering superior precision, faster healing, and better cosmetic outcomes compared to older freezing methods.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','177ba45e-8858-484a-9b5f-a150b7f0d00b'),
(4873,4873,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','2db7bb1a-37a4-4145-86f6-0a377c9f142e'),
(4874,4874,1,'Expert Cryotherapy Treatment by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment by Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin lesion removal | Advanced CryoIQ Cryotherapy technology | Skin tags, warts, moles &amp; more | Serving Wirral, Bebington, Eastham &amp; Moreton</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','89cea0b1-3993-4a4e-8fd9-5cb053fbd3d7'),
(4875,4875,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','b2fe0f63-c553-45dd-b74b-f1f590f32283'),
(4876,4876,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £70\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','fad64e2a-37da-45aa-bfba-31ced3211e06'),
(4877,4877,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"15 Minutes\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','76541507-4e1b-4531-b27c-d50658ee7b10'),
(4878,4878,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Immediate\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','747c442f-6946-454c-87e0-f5b73a334dd1'),
(4879,4879,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Permanent\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','e0239f47-9f08-4b01-b3a5-7c5af81663a1'),
(4880,4880,1,'Why Choose Cryotherapy for Skin Lesions?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Cryotherapy for Skin Lesions?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy is a well-established medical treatment for many benign skin lesions, including skin tags, warts and moles. Cryotherapy offers a simple and effective medical treatment without the need for surgery or stitches.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','17ed911b-f09e-47b5-94c6-e0ac958612f8'),
(4881,4881,1,'Precision Technology','precision-technology',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Precision Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike traditional liquid nitrogen methods, the advanced CryoIQ pen used in the clinic delivers controlled nitrous oxide at -89°C with millimetre precision. This targeted approach freezes only the unwanted lesion while protecting surrounding healthy skin, reducing the risk of scarring and unwanted permanent skin changes.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','316e2907-e2ec-4988-9851-c9a29aba3365'),
(4882,4882,1,'Quick & Effective','quick-effective',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Quick & Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Each lesion typically takes just 5-10 seconds to freeze. There are no needles, no stitches, and no surgical wounds. The procedure is quick and well-tolerated, with most patients describing only a brief stinging sensation. You can return to work immediately, and multiple lesions can often be treated in a single session for added convenience and cost-effectiveness.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','0e9c101c-b213-49a2-bea9-baba4c8a8603'),
(4883,4883,1,'Doctor-Led Expertise','doctor-led-expertise',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Doctor-Led Expertise\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">This is a medical-grade treatment, not a beauty salon procedure. As a GMC-registered GP with over ten years of clinical experience, I am trained to assess skin lesions, identify features that are appropriate for cryotherapy, and recognise when a lesion should not be treated and instead be referred for further medical assessment.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','4f20f225-2290-4f4d-8f50-570362403c10'),
(4884,4884,1,'Proven Results','proven-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy has been used in medical practice for decades to safely remove benign skin lesions. The CryoIQ technology represents the latest advancement in this proven treatment, offering superior precision, faster healing, and better cosmetic outcomes compared to older freezing methods.</span></p>\"}',1,'2026-03-19 19:15:03','2026-03-19 19:15:03','21ad28d9-30f2-4d1c-a1f3-789f561fc8c1'),
(4886,4886,1,'Cryotherapy in wirral',NULL,NULL,NULL,1,'2026-03-19 19:23:10','2026-03-19 19:23:10','fb0621f5-7c2d-41f3-be8e-99cc5014445a'),
(4887,4887,1,'Cryotherapy treatment in wirral clinic',NULL,NULL,NULL,1,'2026-03-19 19:23:10','2026-03-19 19:23:10','73299a20-dc07-4759-9190-3b88d9309cd2'),
(4888,4888,1,'Cryotherapy treatment in wirral',NULL,NULL,NULL,1,'2026-03-19 19:23:11','2026-03-19 19:23:11','0e8e065c-48ee-43ad-9341-60c7c8167767'),
(4890,4890,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-19 19:23:50','2026-03-19 19:23:50','b92ad575-b569-485e-bc60-f8c2e005ec73'),
(4891,4891,1,'What Is Cryotherapy Treatment?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Cryotherapy Treatment?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy is a medical procedure that uses controlled freezing with nitrous oxide to safely destroy unwanted skin lesions, while preserving the surrounding healthy skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the freeze\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy works by freezing fluid within targeted skin lesions, causing the unwanted cells to rupture and die. The beauty of this treatment lies in its precision, where I target only the problem tissue while leaving everything around it completely unharmed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">At my clinic, I use the CryoIQ pen, which delivers nitrous oxide at exactly -89°C. This is fundamentally different from the liquid nitrogen spray guns used in many GP surgeries and high-street clinics. The CryoIQ pen allows me to control the depth and spread of the freeze with millimetre accuracy. Why does this matter? Because precision means better results. Less risk of damaging healthy skin. Less risk of permanent lightening (hypopigmentation). Faster healing. Better cosmetic outcomes.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During the 5-10 second treatment, you will feel a sharp sting like an elastic band snap against your skin. The area will turn white (we call this \'frosting\') as the cells freeze, then gradually return to normal colour. Within 24-48 hours, a protective blister can form. This is good, and it means the treatment is working. Over the next 7-14 days, a scab will form and eventually fall away, revealing fresh pink skin underneath. The key to avoiding scarring is simple: do not pick the scab.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4888],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led cryotherapy matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Here is something many people do not realise: cryotherapy is a medical procedure, not a beauty treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skill is not simply in applying cold to the skin, but in understanding <i>what</i> is being treated and <i>whether</i> cryotherapy is the right option. This includes recognising when a lesion appears suitable for treatment, when an alternative approach may be safer, and when referral for further assessment is the most appropriate next step.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Clinical judgement matters. Freeze time, lesion depth, skin type, and the risk of pigmentation change all influence how cryotherapy should be performed. These are decisions that rely on medical training and experience, not just equipment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I regularly see patients who have previously tried cryotherapy in non-medical settings and been left with incomplete results, unnecessary scarring, or ongoing concerns that were never properly addressed. In some cases, treatment was carried out when further medical assessment would have been more appropriate.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a practising GP here on the Wirral, I bring over 10 years of clinical experience to every consultation. I take the time to examine the lesion carefully, review your medical history, and explain clearly what cryotherapy can and cannot achieve for your individual concern.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4887],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 19:23:50','2026-03-19 19:23:50','780ca4d6-5c16-4721-8877-47825f10ac8d'),
(4892,4892,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-19 19:23:52','2026-03-19 19:23:52','b14a6d1c-9f25-4173-9020-58c2aaf72764'),
(4893,4893,1,'Skin booster in Wirral fetured image',NULL,NULL,NULL,1,'2026-03-19 19:41:00','2026-03-19 19:41:00','936b35c6-5975-459e-a4e8-d46fec7b9292'),
(4895,4895,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-19 19:41:04','2026-03-19 19:41:04','43035a06-fb51-444e-bbfb-57805291d432'),
(4896,4896,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-19 19:45:54','2026-03-19 20:04:33','5b026bed-6dd1-405d-bf67-b58b7f3d1e73'),
(4897,4897,1,'Skin Consultation By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation By Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Understand what is bothering your skin | In-depth skin analysis &amp; sensitivity testing | Personalised Skincare &amp; Clinic Plans | Bebington, Heswall, West Kirby, Caldy</span></p><p> </p><p> </p>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-03-19 19:45:54','2026-04-17 16:29:46','965a6d59-055a-4010-a100-f20f7f57b51f'),
(4898,4898,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 19:45:54','2026-03-19 19:45:54','b6bddf78-f9d0-4afb-b785-6d1506636670'),
(4899,4899,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £75\"}',1,'2026-03-19 19:45:54','2026-04-06 20:30:42','5723ef4f-9fe2-49e0-9e8b-2ea76e90ffa9'),
(4900,4900,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"60 Minutes\"}',1,'2026-03-19 19:45:54','2026-04-06 20:30:42','d2116af8-33a3-4726-9eb0-e9026118822e'),
(4901,4901,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 19:45:54','2026-03-19 19:49:03','93f50476-5af9-48bf-a072-075b3c0c59c6'),
(4902,4902,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"12 Months +\"}',1,'2026-03-19 19:45:54','2026-03-19 19:49:03','18bde234-9067-46b9-a3f0-df7df7f23b3a'),
(4903,4903,1,'Why Book a Skin Consultation?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Book a Skin Consultation?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">You have tried the products, followed the trends, and maybe even invested in treatments that did not quite deliver - yet your skin still is not where you want it to be. A skin consultation at Aesthetics By Dr Rachel gives you clarity and a clear way forward using skincare that actually works and reaches where it really needs to go.</span></p>\"}',1,'2026-03-19 19:45:54','2026-03-19 19:51:42','ba9fe4a2-ec6f-471b-b1ad-6b70891343c7'),
(4904,4904,1,'Understand What Bothers You','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Understand What Bothers You\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Your consultation begins in a calm, private setting where I take time to understand how your skin makes you feel and what truly matters to you. I explore your concerns, goals, and medical history in detail, then use advanced skin analysis to look beneath the surface and identify the root causes of your skin issues.</span></p>\"}',1,'2026-03-19 19:45:54','2026-04-06 20:50:15','9dc29875-6eeb-4bf8-a9a9-e6be12371469'),
(4905,4905,1,'Test Your Skin\'s Tolerance','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Test Your Skin\'s Tolerance\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">During your consultation, you will receive a pHformula SP Complex sensitivity facial, which is a patented skin sensitivity test designed to assess how reactive your skin truly is. This allows me to understand how your skin responds to different treatment strengths, so we can create protocols that work with your skin biology rather than against it.</span></p>\"}',1,'2026-03-19 19:45:54','2026-04-06 20:50:15','e650eefe-a17e-405a-930e-2fd44d5d749b'),
(4906,4906,1,'Get Your Personalised Plan','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Get Your Personalised Plan\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">I create a personalised skin health plan for you, combining clinically formulated pHformula skincare with carefully selected in-clinic treatments. For some patients, this may naturally evolve into a Radiance Collection programme or the Skin Coach Club, providing structured, long-term skin support.</span></p>\"}',1,'2026-03-19 19:45:54','2026-04-06 20:50:15','c4574f7d-7f6c-4664-8d48-6c756e4e9ed0'),
(4907,4907,1,'Ongoing Support','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Ongoing Support\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">This is not a one-and-done approach. I provide regular review appointments, adjust treatments as your skin evolves, and offer continuous professional guidance throughout your skin journey. You will always have clear guidance at every stage, helping you feel informed, reassured, and confident in your plan.</span></p>\"}',1,'2026-03-19 19:45:54','2026-04-06 20:50:15','2b3f674e-415d-4f2a-b837-f7196e92f456'),
(4908,4908,1,'Your Comprehensive Skin Consultation','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Your Comprehensive Skin Consultation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A relaxed, in-depth appointment where I explore your concerns, analyse your skin in detail, and create a personalised plan to support meaningful, long-term improvements in your skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your consultation begins with time dedicated to understanding what is bothering you, how your skin makes you feel, and what truly matters to you. Many patients come to me at a point where their confidence is at its lowest - frustrated by persistent concerns such as acne breakouts, scarring, inflamed skin, pigmentation problems, textural irregularities, visible ageing, or skin that feels dull, dry, or fatigued. Skin has a powerful impact on how we see ourselves, and goes far beyond how it looks.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry out a thorough face-to-face assessment, exploring your medical and aesthetic history in detail, because your skin is completely unique,  and your plan going forward should be too. Every recommendation is made with your long-term skin health at the centre, ensuring it is safe, clinically appropriate, and genuinely tailored to you.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Using advanced skin analysis, I look beyond what we can see with the naked eye to assess the deeper layers of your skin, including hydration, pigmentation, congestion, and barrier function. This allows us to identify the root causes of your concerns, choose the right treatments in the right order, and monitor your progress over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">From here, I create a personalised plan designed specifically for your skin. For some patients, this develops into ongoing, structured support through the Skin Coach Club, while others choose a Radiance Collection programme - both providing clear direction, regular reviews, and a strategic long-term approach to skin health. I take time to explain the science behind each option, expected outcomes, and realistic timeframes, so you feel informed, confident, and fully in control throughout your journey.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GP, I approach skin through a medical lens - diagnosing concerns accurately, recognising when symptoms require medical input, and calibrating treatments safely across all skin tones. I understand contraindications, inflammatory pathways, and how to work with skin biology rather than against it.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I commonly support patients struggling with acne and scarring, stubborn pigmentation, dull or fatigued skin, visible ageing changes, and sensitive or compromised skin barriers.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I partner with pHformula for both home skincare and in-clinic treatments because their approach is firmly science-led and evidence-based. Their patented technologies are designed to deliver active ingredients precisely to where they are needed within the skin, supporting controlled renewal and barrier health rather than aggressively stripping the skin back. This precision-led approach produces consistent, meaningful results - and is a system I trust clinically and use myself.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When it comes to your skin, diagnostic accuracy and formulation quality matter. You deserve informed medical guidance, not guesswork.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4948],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-03-19 19:45:54','2026-04-20 19:18:06','6452b56e-b520-49f4-8f94-41c71d1af2e4'),
(4909,4909,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Will Benefit From a Skin Consultation?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have</strong></span><span style=\\\"color:hsl(0,0%,20%);\\\"><span>:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Active acne or recurrent breakouts </strong>that have not settled despite consistent effort</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Stubborn pigmentation, </strong>including age spots and sun damage, that has not responded to topical treatments</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ageing-related skin changes</strong> you would like to address with evidence-based protocols</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Sensitive or compromised skin </strong>that requires a careful, medically informed approach</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 19:45:54','2026-03-19 19:55:38','8cb4f125-2f99-426d-9f26-6af3ccccb836'),
(4910,4910,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 19:45:54','2026-03-19 19:45:54','bf355b21-bf85-4fc1-8dcb-558865239e13'),
(4911,4911,1,'Frequently Asked Questions About Skin Consultation with Dr Rachel','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Consultation with Dr Rachel\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Consultation answered by Dr Rachel.\"}',1,'2026-03-19 19:45:54','2026-03-19 20:01:29','47bd049b-5e37-48da-8d28-23f91702d2ce'),
(4912,4912,1,'What happens during a consultation?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What happens during a consultation?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"We begin by discussing what is bothering you and how your skin makes you feel. I then use advanced skin analysis to assess each layer of your skin, followed by a pHformula SP Complex sensitivity facial to understand how your skin responds to different treatment strengths. From this, I create a personalised plan tailored to your skin, including clinically formulated skincare and in-clinic treatment recommendations - giving you complete clarity on what your skin needs and how to move forward.\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','fd662e90-4c44-4620-aa8c-21e093842483'),
(4913,4913,1,'How does a doctor-led skin consultation differ from retail skincare advice?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How does a doctor-led skin consultation differ from retail skincare advice?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This consultation is guided by clinical expertise rather than product sales. As a GMC-registered GP, I apply medical knowledge, risk assessment, and an understanding of skin physiology to assess your skin concerns safely. Advanced skin analysis allows me to look beneath the surface, while the SP Complex sensitivity test helps ensure any recommendations are appropriate for your individual skin tolerance. Every plan is personalised, evidence-led, and designed to work with how your skin functions - giving you clear direction and confidence rather than guesswork.\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','679162de-5513-4886-9e11-4f1331df89d7'),
(4914,4914,1,'What are my treatment options?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What are my treatment options?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Following your consultation, I create a personalised plan tailored specifically to your skin’s needs and goals. This includes a bespoke pHformula home skincare protocol designed to support your skin daily, alongside carefully selected in-clinic treatments where appropriate. Depending on your concerns and the level of support you would benefit from, this plan may include a structured Radiance Collection programme or ongoing care through the Skin Coach Club, ensuring your skin is guided, reviewed, and supported over time.\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','d8cba4c6-6af3-48f0-ada3-48ceaa252766'),
(4915,4915,1,'How long until I see results?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long until I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Timeframes vary widely depending on your starting skin health, the concerns we are addressing, and how reactive your skin is. Some improvements, such as calmer skin or reduced breakouts, may be noticed within a few weeks, while changes like pigmentation or texture take longer to evolve. Skin transformation is rarely a straight line - it is normal to have good days and more challenging phases along the way. Most patients see meaningful, lasting improvement over 3-6 months with consistent skincare and regular review, I will guide you through each stage as your skin responds.</p>\"}',1,'2026-03-19 19:45:54','2026-04-13 10:36:07','3ae8a94c-9874-4804-b1b4-9ddd9be3ec01'),
(4916,4916,1,'Is it safe for darker skin?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is it safe for darker skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Safety across all skin tones is central to how I practise. As a GP, I understand Fitzpatrick skin types and the risks associated with post-inflammatory hyperpigmentation, so treatments are carefully calibrated using conservative strength selection, modified protocols, and close monitoring. I work with pHformula because they are equally committed to treating all skin types safely, with formulations and protocols designed to respect melanin-rich skin and support barrier health throughout treatment.\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','e937b4e1-0f5c-41bd-814a-51821c9918e3'),
(4917,4917,1,'What is the SP Complex sensitivity test?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the SP Complex sensitivity test?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The SP Complex sensitivity test is a pHformula skin tolerance assessment carried out during your consultation to evaluate how your skin responds to active ingredients. It helps me assess your skin’s sensitivity on a scale of 1-10, allowing treatment strengths and protocols to be carefully selected according to your individual tolerance. This step helps ensure treatments are both safe and effective while reducing the risk of unnecessary irritation.</p>\"}',1,'2026-03-19 19:45:54','2026-04-13 10:36:07','8dfa6572-1b21-42f4-8422-cf34614002a8'),
(4918,4918,1,'How much does a Skin Consultation cost?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much does a Skin Consultation cost?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The comprehensive skin consultation is £75 and includes a dedicated 60-minute appointment with me. This allows time for detailed skin analysis, the pHformula SP Complex sensitivity assessment, and the creation of your personalised skin plan. You will leave with a clear understanding of your skin, realistic expectations, and a structured plan for improvement. Clear, transparent pricing is always discussed based on what is most appropriate for your skin.</p>\"}',1,'2026-03-19 19:45:54','2026-04-13 10:36:07','26744c4e-fea6-4a2b-ad55-bca1c42b4508'),
(4919,4919,1,'Can I combine with other treatments?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Many patients benefit from combining skin resurfacing with other treatments for a more comprehensive approach to skin rejuvenation. During your consultation, I create an integrated plan that may include <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">pHformula chemical resurfacing</a>, <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">microneedling</a>, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>, or <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">collagen-stimulating treatments such as JULÄINE™</a>, sequenced carefully for safety and optimal results. For those seeking structured, longer-term support, this approach can also be delivered through a Radiance Collection programme.</p>\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','0e4c8b57-ea66-4d38-a787-62f38a36ccbd'),
(4920,4920,1,'What is the Radiance Collection?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the Radiance Collection?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The Radiance Collection is a series of long-term skin treatment programmes designed to support meaningful, sustainable skin transformation under expert medical guidance. Designed over 9, 12, or 18 months, each programme is tailored specifically to your skin and works in harmony with your skin’s natural processes rather than chasing short-term fixes.\\nEach tier combines carefully selected in-clinic treatments with clinically formulated pHformula skincare, alongside complementary extras and regular review appointments to support consistency and progress over time. These programmes are ideal for patients ready to invest in their skin and commit to gradual, visible improvement, with measurable changes in tone, texture, hydration, and elasticity. The Radiance Collection removes guesswork, providing structure, continuity, and a clear pathway to healthier, more resilient, luminous skin - guided throughout by doctor-led care.\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','ac7fa96b-7233-47f7-983c-f3f72c80cd52'),
(4921,4921,1,'What is the Skin Coach Club?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the Skin Coach Club?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The Skin Coach Club is a structured 8 or 12 month membership programme designed to support long-term skin health through expert guidance, education, and personalised care. It is ideal for anyone ready to step away from trial-and-error skincare and invest in a professional, science-led plan that evolves as their skin changes. Each programme includes a bespoke strategy tailored to your skin, combining clinically formulated pHformula skincare with carefully selected in-clinic treatments and regular review appointments. Using advanced skin analysis, I monitor your skin’s progress over time, adjusting your plan to ensure we are always moving in the right direction. </p><p> </p><p>The Skin Coach Club supports a wide range of concerns, including acne, rosacea and inflammatory skin conditions, pigmentation disorders, textural irregularities, visible ageing changes, and skin that feels persistently dull, dry, or fatigued. Throughout your journey, you will receive ongoing professional support - whether that is a review, a question, or reassurance - so you are never left guessing. This is not a quick fix. The Skin Coach Club is about rebuilding skin confidence from the inside out, delivering meaningful, long-lasting results through consistency, expertise, and care. Patients typically see improvements in skin strength, tone, texture, and overall resilience - often reaching a point where makeup feels optional rather than essential.</p>\"}',1,'2026-03-19 19:45:54','2026-03-20 18:23:57','1135f75f-2121-40f1-997a-989072c2664c'),
(4922,4922,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-19 19:45:54','2026-03-19 19:45:54','bb9ffa83-60a9-462d-b624-118b342e5b89'),
(4923,4923,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 19:45:54','2026-04-20 19:18:06','c3af2824-03a4-4b4a-a78c-0032ee284463'),
(4948,4948,1,'Skin Consultation Wirral by dr rachel',NULL,NULL,NULL,1,'2026-03-19 20:04:27','2026-03-19 20:04:27','85295a66-2d7c-4f6a-bb2d-3f019407bfa3'),
(4949,4949,1,'Skin Consultation Wirral featured image',NULL,NULL,NULL,1,'2026-03-19 20:04:28','2026-03-19 20:04:28','6e7cc08e-9ff2-448d-b398-a342bd45c162'),
(4950,4950,1,'Skin Consultation Wirral',NULL,NULL,NULL,1,'2026-03-19 20:04:29','2026-03-19 20:04:29','491d1b9d-c708-4428-bbb5-76601ff3e9d9'),
(4952,4952,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','88c66776-9a17-4e8b-ae00-e940b7d59af6'),
(4953,4953,1,'Skin Consultation By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation By Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Understand what is bothering your skin | In-depth skin analysis &amp; sensitivity testing | Personalised Skincare &amp; Clinic Plans | Bebington, Heswall, West Kirby, Caldy</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','8e9228bf-5883-452e-a476-38605831a747'),
(4954,4954,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','88b8a7a4-98fa-45d6-bce6-ef137f9318e6'),
(4955,4955,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £60\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','5316a60f-6949-4e9d-adbd-f49b871ded8d'),
(4956,4956,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"45 Minutes\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','e0941cf4-7edc-49fd-aa4b-ed37905a9fdc'),
(4957,4957,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"Minimal\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','b845f97e-fb50-4ca9-b874-170e2c63b579'),
(4958,4958,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"12 Months +\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','2887a1cd-5ac4-44d7-bd53-2cbda2bfd0f6'),
(4959,4959,1,'Why Book a Skin Consultation?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Book a Skin Consultation?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">You have tried the products, followed the trends, and maybe even invested in treatments that did not quite deliver - yet your skin still is not where you want it to be. A skin consultation at Aesthetics By Dr Rachel gives you clarity and a clear way forward using skincare that actually works and reaches where it really needs to go.</span></p>\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','be8080a3-b07b-4732-968c-35f6e1257b06'),
(4960,4960,1,'Understand What Bothers You','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Understand What Bothers You\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Your consultation begins in a calm, private setting where we take time to understand how your skin makes you feel and what truly matters to you. I explore your concerns, goals, and medical history in detail, then use advanced skin analysis to look beneath the surface and identify the root causes of your skin issues.</span></p>\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','4875d0d3-1882-4764-a454-5ce76be6c2df'),
(4961,4961,1,'Test Your Skin\'s Tolerance','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Test Your Skin\'s Tolerance\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">During your consultation, you will receive a pHformula SP Complex sensitivity facial, a patented skin sensitivity test designed to assess how reactive your skin truly is. This allows me to understand how your skin responds to different treatment strengths, so we can create protocols that work with your skin biology rather than against it.</span></p>\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','24ed2a0f-6b79-41ac-bb8b-e1d311137d6e'),
(4962,4962,1,'Get Your Personalised Plan','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Get Your Personalised Plan\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">I create a carefully tailored plan for you, combining clinically formulated pHformula skincare with thoughtfully selected in-clinic treatments. For some patients, this may naturally evolve into a Radiance Collection programme or the Skin Coach Club, offering structured, long-term skin support.</span></p>\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','c1bbd587-3f1e-41ec-ba31-16da50ed82f2'),
(4963,4963,1,'Ongoing Support','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Ongoing Support\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">This is not a one-and-done approach. I provide regular review appointments, adjust treatments as your skin evolves, and offer continuous professional guidance throughout your 3–6 month transformation journey. You will never be left guessing!</span></p>\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','ef0bbf31-bea2-4ab4-8eba-5ea14a21b7cc'),
(4964,4964,1,'Your Comprehensive Skin Consultation','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Your Comprehensive Skin Consultation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A relaxed, in-depth appointment where I explore your concerns, analyse your skin in detail, and create a personalised plan to support meaningful, long-term skin transformation.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your consultation begins with time dedicated to understanding what is bothering you, how your skin makes you feel, and what truly matters to you. Many patients come to me at a point where their confidence is at its lowest - frustrated by persistent concerns such as acne breakouts, scarring, inflamed skin, pigmentation problems, textural irregularities, visible ageing, or skin that feels dull, dry, or fatigued. Skin has a powerful impact on how we see ourselves, and goes far beyond how it looks.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry out a thorough face-to-face assessment, exploring your medical and aesthetic history in detail, because your skin is completely unique,  and your plan going forward should be too. Every recommendation is made with your long-term skin health at the centre, ensuring it is safe, clinically appropriate, and genuinely tailored to you.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Using advanced skin analysis, I look beyond what we can see with the naked eye to assess the deeper layers of your skin, including hydration, pigmentation, congestion, and barrier function. This allows us to identify the root causes of your concerns, choose the right treatments in the right order, and monitor your progress over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">From here, I create a personalised plan designed specifically for your skin. For some patients, this develops into ongoing, structured support through the Skin Coach Club, while others may prefer a Radiance Collection programme - both offering clear direction, regular review, and long-term skin transformation. I take time to explain the science behind each option, expected results, and realistic timeframes, so you feel informed, supported, and fully in control at every stage.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GP, I approach skin through a medical lens - diagnosing concerns accurately, recognising when symptoms require medical input, and calibrating treatments safely across all skin tones. I understand contraindications, inflammatory pathways, and how to work with skin biology rather than against it.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I commonly support patients struggling with acne and scarring, stubborn pigmentation, dull or fatigued skin, visible ageing changes, and sensitive or compromised skin barriers.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I partner with pHformula for both home skincare and in-clinic treatments because their approach is firmly science-led and evidence-based. Their patented technologies are designed to deliver active ingredients precisely to where they are needed within the skin, supporting controlled renewal and barrier health rather than aggressively stripping the skin back. This precision-led approach produces consistent, meaningful results - and is a system I trust clinically and use myself.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When it comes to your skin, diagnostic accuracy and formulation quality matter. You deserve informed medical guidance, not guesswork.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4948],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','1f884986-580d-42f5-a50b-022514eb188d'),
(4965,4965,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Will Benefit From a Skin Consultation?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have</strong></span><span style=\\\"color:hsl(0,0%,20%);\\\"><span>:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Active acne or recurrent breakouts </strong>that have not settled despite consistent effort</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Stubborn pigmentation, </strong>including age spots and sun damage, that has not responded to topical treatments</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ageing-related skin changes</strong> you would like to address with evidence-based protocols</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Sensitive or compromised skin </strong>that requires a careful, medically informed approach</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','124ccb2f-1eef-4ef1-9a0f-c07711cb2edf'),
(4966,4966,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','b8e1cc9a-c32b-4271-b8bb-15edc5d0224e'),
(4967,4967,1,'Frequently Asked Questions About Skin Consultation with Dr Rachel','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Consultation with Dr Rachel\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Consultation answered by Dr Rachel.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','30425361-9754-4c9b-ac52-932576e2618d'),
(4968,4968,1,'What happens during a consultation?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What happens during a consultation?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"We begin by discussing what is bothering you and how your skin makes you feel. I then use advanced skin analysis to assess each layer of your skin, followed by a pHformula SP Complex sensitivity facial to understand how your skin responds to different treatment strengths. From this, I create a personalised plan tailored to your skin, including clinically formulated skincare and in-clinic treatment recommendations - giving you complete clarity on what your skin needs and how to move forward.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','c2641132-8606-466e-a5a7-44ad9e9eba2d'),
(4969,4969,1,'How does a doctor-led skin consultation differ from retail skincare advice?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How does a doctor-led skin consultation differ from retail skincare advice?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"This consultation is guided by clinical expertise rather than product sales. As a GMC-registered GP, I apply medical knowledge, risk assessment, and an understanding of skin physiology to assess your skin concerns safely. Advanced skin analysis allows me to look beneath the surface, while the SP Complex sensitivity test helps ensure any recommendations are appropriate for your individual skin tolerance. Every plan is personalised, evidence-led, and designed to work with how your skin functions - giving you clear direction and confidence rather than guesswork.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','e5d35d27-a8d3-41ae-9671-c79c4aab4170'),
(4970,4970,1,'What are my treatment options?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What are my treatment options?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Following your consultation, I create a personalised plan tailored specifically to your skin’s needs and goals. This includes a bespoke pHformula home skincare protocol designed to support your skin daily, alongside carefully selected in-clinic treatments where appropriate. Depending on your concerns and the level of support you would benefit from, this plan may include a structured Radiance Collection programme or ongoing care through the Skin Coach Club, ensuring your skin is guided, reviewed, and supported over time.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','2d0cc272-ac58-472d-a2b2-d4584fbc346c'),
(4971,4971,1,'How long until I see results?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long until I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Timeframes vary widely depending on your starting skin health, the concerns we are addressing, and how reactive your skin is. Some improvements, such as calmer skin or reduced breakouts, may be noticed within a few weeks, while changes like pigmentation or texture take longer to evolve. Skin transformation is rarely a straight line - it is normal to have good days and more challenging phases along the way. Most patients see meaningful, lasting improvement over 3-6 months with consistent skincare and regular review, and I guide you through each stage as your skin responds.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','bb8681fc-672b-4faf-a33b-663da2ebacdc'),
(4972,4972,1,'Is it safe for darker skin?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is it safe for darker skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes. Safety across all skin tones is central to how I practise. As a GP, I understand Fitzpatrick skin types and the risks associated with post-inflammatory hyperpigmentation, so treatments are carefully calibrated using conservative strength selection, modified protocols, and close monitoring. I work with pHformula because they are equally committed to treating all skin types safely, with formulations and protocols designed to respect melanin-rich skin and support barrier health throughout treatment.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','665e1e87-de00-49a6-8d0f-bec3cf903a14'),
(4973,4973,1,'What is the SP Complex sensitivity test?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the SP Complex sensitivity test?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The SP Complex sensitivity test is a pHformula facial carried out during your consultation to assess how your skin responds to active ingredients. It helps me evaluate your skin’s sensitivity on a scale of 1-10, allowing treatment strengths and protocols to be carefully selected for your individual tolerance. This step ensures treatments are both safe and effective, and helps reduce the risk of unnecessary irritation.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','7e45330b-1025-43eb-9a57-c643e8900152'),
(4974,4974,1,'How much does consultation cost?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much does consultation cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The comprehensive skin consultation is £60. This includes advanced skin analysis, the pHformula SP Complex sensitivity facial, and creation of a personalised treatment and skincare plan. Clear, transparent pricing is discussed during your consultation, based on the recommendations most appropriate for your skin.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','0116894a-73c9-4e71-ab5c-ab7f6bf0b905'),
(4975,4975,1,'Can I combine with other treatments?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely. Many patients benefit from combining skin resurfacing with other treatments for a more comprehensive approach to skin rejuvenation. During your consultation, I create an integrated plan that may include pHformula chemical resurfacing, microneedling, polynucleotides, or collagen-stimulating treatments such as JULÄINE™, sequenced carefully for safety and optimal results. For those seeking structured, longer-term support, this approach can also be delivered through a Radiance Collection programme.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','48094add-6cb8-4ec6-bbe9-e25e33c52e54'),
(4976,4976,1,'What is the Radiance Collection?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the Radiance Collection?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The Radiance Collection is a series of long-term skin treatment programmes designed to support meaningful, sustainable skin transformation under expert medical guidance. Designed over 9, 12, or 18 months, each programme is tailored specifically to your skin and works in harmony with your skin’s natural processes rather than chasing short-term fixes.\\nEach tier combines carefully selected in-clinic treatments with clinically formulated pHformula skincare, alongside complementary extras and regular review appointments to support consistency and progress over time. These programmes are ideal for patients ready to invest in their skin and commit to gradual, visible improvement, with measurable changes in tone, texture, hydration, and elasticity. The Radiance Collection removes guesswork, providing structure, continuity, and a clear pathway to healthier, more resilient, luminous skin - guided throughout by doctor-led care.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','9686c2d8-a657-42ac-b9e8-004c7e03828c'),
(4977,4977,1,'What is the Skin Coach Club?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the Skin Coach Club?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"The Skin Coach Club is a structured 8 or 12 month membership programme designed to support long-term skin health through expert guidance, education, and personalised care. It is ideal for anyone ready to step away from trial-and-error skincare and invest in a professional, science-led plan that evolves as their skin changes.\\nEach programme includes a bespoke strategy tailored to your skin, combining clinically formulated pHformula skincare with carefully selected in-clinic treatments and regular review appointments. Using advanced skin analysis, I monitor your skin’s progress over time, adjusting your plan to ensure we are always moving in the right direction.\\nThe Skin Coach Club supports a wide range of concerns, including acne, rosacea and inflammatory skin conditions, pigmentation disorders, textural irregularities, visible ageing changes, and skin that feels persistently dull, dry, or fatigued. Throughout your journey, you will receive ongoing professional support - whether that is a review, a question, or reassurance - so you are never left guessing.\"}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','60c497c3-fe64-402c-9c14-018c7dcbe32a'),
(4978,4978,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalised advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 20:05:19','2026-03-19 20:05:19','e43f7792-e4e4-4878-b65e-3cc0ff03cddd'),
(4979,4979,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-19 20:05:21','2026-03-19 20:05:21','18d0e096-98a9-49ed-90e3-6bf2139672b1'),
(4980,4980,1,'Sunekos treatment wirral fetured image',NULL,NULL,NULL,1,'2026-03-19 20:07:35','2026-03-19 20:07:35','5794d066-ce45-43c6-bd5f-6b9e4128aa59'),
(4982,4982,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-19 20:07:42','2026-03-19 20:07:42','fb6d3004-3733-4e08-948c-1aff2f2ef93b'),
(4994,4994,1,'Dr rachel',NULL,NULL,NULL,1,'2026-03-19 21:58:46','2026-03-19 21:58:46','6fd31488-6e43-4160-8537-b8d2f71b09ce'),
(4995,4995,1,'saddsdas','saddsdas',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"sadasddas\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-03-19 22:01:59','2026-03-19 22:01:59','13ec8068-28e2-4787-b7c6-7f3e5791799e'),
(5014,5014,1,NULL,'__temp_jkjicecplsvxavfhjilihzkpqchqqxydwevv','case-studies/__temp_jkjicecplsvxavfhjilihzkpqchqqxydwevv',NULL,1,'2026-03-19 22:06:00','2026-03-19 22:06:00','35efd93c-471f-46a4-abcc-0b103be78764'),
(5070,5070,1,'Rosacea Codition',NULL,NULL,NULL,1,'2026-03-19 22:36:24','2026-03-19 22:36:24','61f94af7-a047-49ac-b651-607c1b0a66d5'),
(5071,5071,1,'Rosacea Condition 2',NULL,NULL,NULL,1,'2026-03-19 22:36:27','2026-03-19 22:36:27','dfd08735-35de-41eb-806e-4cfefd725b7b'),
(5075,5075,1,'Aesthetics by Dr Rachel clinic',NULL,NULL,NULL,1,'2026-03-19 22:38:46','2026-03-19 22:38:46','dee52e80-a1c4-4d36-a30b-ecf3b074e662'),
(5076,5076,1,'Aesthetics by Dr Rachel',NULL,NULL,NULL,1,'2026-03-19 22:38:46','2026-03-19 22:38:46','96a9c54a-cb57-4225-9b71-5b7485b94966'),
(5087,5087,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Rosacea requires a thoughtful, medical approach rather than a one-size-fits-all treatment. As a GP with experience in skin health, I take time to understand your skin, your triggers and your overall health before recommending any treatment. I focus on gentle, evidence-based treatments and realistic, long-term management, rather than quick fixes. You will see me at every appointment, so I can monitor how your skin responds and adjust your plan carefully over time. My aim is always to help your skin feel calmer, stronger and more predictable, with results that look natural and in keeping with you.</p>\"}',1,'2026-03-19 22:43:23','2026-04-16 14:33:57','93f3a1d5-2621-4d7d-b1df-ac0e145669df'),
(5088,5088,1,'Rosacea','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','61888737-4f73-4157-82ea-39b0d21eb29e'),
(5089,5089,1,'Rosacea Treatment on the Wirral','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Treatment on the Wirral\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(0,0%,20%);\\\"><i>Rosacea: Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','562ce4a7-3cf4-4dcf-b05a-7ee6dbd1123f'),
(5090,5090,1,'The Four Types of Rosacea','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"The Four Types of Rosacea\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Erythematotelangiectatic Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This most common form is characterised by persistent central facial redness and visible blood vessels. Skin often feels sensitive, dry or reactive, and flushing episodes can last longer over time.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Papulopustular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often mistaken for acne, this type causes red bumps (papules) and pus-filled spots (pustules) on a background of redness. It commonly affects the cheeks, chin and forehead. Standard acne treatments can sometimes make it worse, which is why proper diagnosis matters.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Phymatous Rosacea (Rhinophyma)</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A less common but more advanced form, where the skin thickens, most often around the nose. The tissue becomes enlarged and uneven. Early medical management can help slow progression and improve skin quality.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Ocular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This affects the eyes, causing redness, dryness, irritation or a gritty sensation. It may occur alongside facial rosacea or on its own. If eye symptoms are present, I usually recommend coordinated care with your GP or an ophthalmologist to ensure safe, appropriate care</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5071],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','6be1cbb1-de50-41db-8e01-f8d048f73c29'),
(5091,5091,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(0,0%,20%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea flare-ups are often linked to specific environmental and lifestyle triggers. Identifying your personal triggers is one of the most important steps in controlling rosacea long-term. Common triggers include: sun exposure and UV radiation, heat, alcohol, spicy foods, emotional stress, cold wind or sudden temperature changes, harsh skincare products, certain medications or topical steroids, hormonal changes, and gut irritation or dietary triggers.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">Living on the Wirral Peninsula can present extra challenges for rosacea-prone skin. Coastal wind, salt air and quickly changing temperatures can dry and irritate the skin barrier, making flushing and sensitivity more likely. When I design rosacea treatment plans in Wirral, I always factor in local conditions, recommending appropriate SPF, barrier-repair skincare such as personalised pHformula routines, and practical habits to help keep your skin calm in our coastal climate.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p> </p><h2><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><i>How We Treat Rosacea at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">There is no single cure for rosacea, but with the right approach, flare-ups can be greatly reduced, and your skin can become calmer and more resilient. I take a careful, doctor-led approach, combining targeted treatments with medical-grade skincare to address both the visible redness and the underlying inflammation. Every plan starts with a thorough consultation. I assess your skin type, triggers, medical history and current routine so we can choose treatments that are safe for your skin and appropriate for your rosacea subtype.<i> </i></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">For many rosacea patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) treatment range can make a real difference. These treatments are specifically designed for sensitive, redness-prone skin. They help reduce inflammation, improve skin renewal and strengthen the skin barrier without aggravating rosacea.<i><span> </span></i><span>Other treatments include polynucleotides, microtoxin infusion, laser and IPL therapy.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','2eca18b1-3fac-4ef3-88a5-86aa6f75ea26'),
(5092,5092,1,'Frequently Asked Questions About Rosacea Condition','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Rosacea Condition\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about rosacea condition\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','de16504e-fe03-447e-a8ba-358ad19e311d'),
(5093,5093,1,'Is rosacea treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment suitable for all skin types?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes. Rosacea can affect all skin types and tones, although it is more common in patients with lighter skin tones. During your consultation, I assess your skin carefully, including sensitivity, pigmentation risk and medical history, so I can recommend the safest and most effective treatment approach for you.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','dc54c250-650f-4bf1-82e2-d2647e3af855'),
(5094,5094,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"This depends on the type and severity of your rosacea and how reactive your skin is. Most treatments work best as a course rather than a single session. Gentle resurfacing, polynucleotides or other regenerative treatments are usually planned over several appointments, with progress reviewed carefully each time. Many patients start to see meaningful improvement over a few months as inflammation settles and the skin barrier becomes stronger. Because rosacea can be unpredictable, improvement is not always perfectly linear, so we keep your plan flexible and adjust treatments as your skin responds.\\nI will outline a clear, personalised plan during your consultation so you know what to expect while still allowing us to adapt as your skin improves.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','0dd17e36-39bd-4980-96b9-1473c6cbddc8'),
(5095,5095,1,'Is rosacea treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Most patients find rosacea treatments very tolerable. Gentle resurfacing treatments may cause mild warmth or stinging that settles quickly, and injections can feel like small pinpricks. I always adjust the treatment depth, technique and pace to keep you comfortable.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','9cbd44d3-989c-4e89-a18c-8638fdba4542'),
(5096,5096,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is usually minimal, although it depends on the treatment and how sensitive your skin is. Gentle resurfacing treatments may cause mild redness or light flaking for a few days, and injections can leave small marks or occasional bruising that settles within a few days.\\nMost patients return to normal activities the same day, but I usually recommend avoiding heat, alcohol and strenuous exercise for 24 hours.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','93d15a32-c11f-4c3a-9b85-81f52c20748d'),
(5097,5097,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Some patients notice early improvement after the first session, but rosacea treatments usually work gradually as inflammation settles and the skin barrier becomes stronger. \\nBecause rosacea is a chronic condition, ongoing maintenance and consistent homecare really are important to keep flare-ups under control, and your skin calm for the long-term.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','c423beda-35be-49a8-8a23-56d4f844f15e'),
(5098,5098,1,'Are there any side effects or risks?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"All treatments carry some risk, and your safety is my number one priority. Complications are uncommon when treatment is carefully planned and performed by an experienced medical practitioner. Temporary redness, mild swelling, sensitivity or light flaking are the most common effects and usually settle within a few days.\\nDuring your consultation, I will explain all potential risks and aftercare, so you feel confident and informed before proceeding with any treatments.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','2fd32b76-d548-4006-bb75-7e9a7dc4068f'),
(5099,5099,1,'Can I combine rosacea treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine rosacea treatment with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely, and a combined approach often gives the best results. Different treatments improve different aspects of rosacea, from calming inflammation to strengthening the skin barrier. I can design a personalised, layered plan for you so treatments work together safely and your skin improves gradually over time.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','bb2a2697-b9b6-4b5b-88fe-d0a055afb1e7'),
(5100,5100,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"I am a practising GP with specialist training in aesthetic medicine, and patient safety is always my top priority. You will always see me personally, and I take time to understand your triggers, lifestyle and goals before recommending any treatments.\\nYou will never receive a one-size-fits-all protocol. Your plan is tailored to your skin, combining both effective in-clinic treatments and science-backed skincare. I am able to get to know your skin over time, review your progress regularly and adjust treatment as needed so your rosacea improves in a safe, gentle and sustainable way.\"}',1,'2026-03-19 22:43:23','2026-03-19 22:43:23','efd15402-c723-4137-8216-629fd034a540'),
(5101,5101,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 22:43:31','2026-03-19 22:43:31','1636e83e-fc1b-48fe-a215-212a09bed2db'),
(5105,5105,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 22:45:36','2026-03-19 22:45:36','40aa8f16-43b8-4270-a8e0-a108065ad21c'),
(5106,5106,1,'Rosacea Treatment on the Wirral','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Treatment on the Wirral\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Rosacea: Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-03-19 22:45:36','2026-03-19 22:45:36','5485ded1-b6ca-48f4-be9a-ba4d505bd538'),
(5107,5107,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea flare-ups are often linked to specific environmental and lifestyle triggers. Identifying your personal triggers is one of the most important steps in controlling rosacea long-term. Common triggers include: sun exposure and UV radiation, heat, alcohol, spicy foods, emotional stress, cold wind or sudden temperature changes, harsh skincare products, certain medications or topical steroids, hormonal changes, and gut irritation or dietary triggers.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">Living on the Wirral Peninsula can present extra challenges for rosacea-prone skin. Coastal wind, salt air, and quickly changing temperatures can dry and irritate the skin barrier, making flushing and sensitivity more likely. When I design rosacea treatment plans in Wirral, I always factor in local conditions, recommending appropriate SPF, barrier-repair skincare such as personalised pHformula routines, and practical habits to help keep your skin calm in our coastal climate.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How We Treat Rosacea at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">There is no single cure for rosacea, but with the right approach, flare-ups can be greatly reduced, and your skin can become calmer and more resilient. I take a careful, doctor-led approach, combining targeted treatments with medical-grade skincare to address both the visible redness and the underlying inflammation. Every plan starts with a thorough consultation. I assess your skin type, triggers, medical history and current routine so we can choose treatments that are safe for your skin and appropriate for your rosacea subtype.<i> </i></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">For many rosacea patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) treatment range can make a real difference. These treatments are specifically designed for sensitive, redness-prone skin. They help reduce inflammation, improve skin renewal and strengthen the skin barrier without aggravating rosacea.<i><span> </span></i><span>Other treatments include polynucleotides, microtoxin infusion, laser and IPL therapy.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-03-19 22:45:36','2026-03-19 22:45:36','4b66153a-df73-4965-a9a7-0a62de6f2454'),
(5108,5108,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6533]}',1,'2026-03-19 22:45:52','2026-04-03 11:27:18','dbf78d09-4b0a-43bd-a878-c23542cc1970'),
(5109,5109,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in the clinic. Neck lines, sometimes called tech neck or necklace lines, are one of the most common yet most overlooked signs of ageing.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Neck Lines: What They Are and Why They Appear</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Neck lines are the horizontal creases and wrinkles that develop across the front of the neck. They are often called necklace lines because they tend to sit where a necklace would naturally rest. Some people also notice vertical bands, which are caused by the platysma muscle becoming more visible or active beneath the skin.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The neck is one of the most delicate and exposed areas of the body. The skin here is thinner than on much of the face, with fewer oil glands and less supportive fat beneath it. It is also in almost constant motion, whether you are turning your head, looking down or speaking. As a result, the neck often starts to show signs of ageing earlier than people expect.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">It is very common to focus on the face and overlook the neck, but treating the two separately can make results feel less balanced. For the most natural outcome, the neck should be considered alongside the face as part of a gentle, layered approach, supported by consistent homecare so the whole area ages more evenly and harmoniously.</span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6533]}',1,'2026-03-19 22:45:52','2026-04-16 14:17:03','8c3465ea-cd7f-4b13-8850-78e710adef12'),
(5110,5110,1,'What Causes Neck Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Neck Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slow. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span>\\t</span><strong>Genetics</strong>, which influences how early and how deeply lines form</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6538],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-03-19 22:45:52','2026-04-01 10:08:29','c35829f4-496a-471f-9836-71acce949e1a'),
(5111,5111,1,'How I Treat Neck Lines at Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How I Treat Neck Lines at Aesthetics by Dr Rachel</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The neck needs a slightly different approach to the face. The skin is thinner, movement is constant, and treatments that work well for facial lines do not always translate directly to this area. I tailor every treatment plan to you, taking into account the type of lines you have, your skin quality, your medical history, and the kind of result you are hoping to achieve. My aim is always safe, natural improvement that remains in keeping with your face. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">I tend to take a gentle, layered approach, focusing first on improving skin quality and then addressing deeper lines if needed. This helps results look more subtle and balanced, rather than over-treated. Many patients choose to include the neck as part of a longer-term Radiance Collection programme, allowing improvements to build gradually over time so the face and neck age in harmony.</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What treatment options are available for Neck Lines?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Profhilo®</span>\\n</h3>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Profhilo® is one of my favourite treatments for neck rejuvenation because it improves skin quality rather than adding volume. It contains a high concentration of hyaluronic acid that spreads gently like honey beneath the skin, deeply hydrating and stimulating collagen and elastin production. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:#1a1a2e;\\\">JULAINE™</span>\\n</h3>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">JULAINE™ is an advanced collagen-stimulating treatment that works at a deeper structural level. It encourages your skin to gradually rebuild its own collagen over time, helping to improve firmness, elasticity and overall skin quality. This makes it particularly helpful for areas of laxity and more established lines, where the skin needs longer-term support.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Microneedling</span>\\n</h3>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Microneedling creates tiny, controlled micro-injuries in the skin, which trigger your body’s natural healing response and stimulate new collagen production. On the neck, this can gradually improve texture, soften fine lines and help tighten lax, crepey skin over a course of treatments. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-03-19 22:45:52','2026-04-16 14:17:03','91e81abd-0196-46a0-bd40-68edb4f3484a'),
(5112,5112,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 22:45:52','2026-03-19 22:45:52','1dee01ae-618a-420a-80d3-b8cd3b87163a'),
(5113,5113,1,'Frequently Asked Questions About Neck Lines','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Neck Lines\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about neck lines.\"}',1,'2026-03-19 22:45:52','2026-04-16 14:17:03','76fb9fb4-25ba-41d8-9017-bf0dca81b075'),
(5114,5114,1,'Is neck line treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is neck line treatment suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, I treat all skin types and tones. During your consultation, I assess your neck skin carefully, including pigmentation risk, sensitivity and healing capacity, so I can recommend the safest and most effective approach for you. Treatments are always tailored and adjusted gradually to keep results natural and safe.\"}',1,'2026-03-19 22:45:52','2026-04-01 14:56:05','1e686326-3fa6-4706-8aea-3023ca61ce2e'),
(5117,5117,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments involve very little downtime. You may notice some redness, swelling or small marks for 24-48 hours after injections, and microneedling can leave the skin pink for a few days. Occasional bruising is possible. Most patients return to normal activities the same day, although I usually recommend avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-03-19 22:45:52','2026-04-01 14:56:05','3f17b1b9-b0da-4c88-a64e-2dfa1cfa64d0'),
(5118,5118,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments work gradually as collagen production increases and skin quality improves. You may notice early changes within a few weeks, with continued improvement over several months. Results are not instant, but they are worth the wait because they look natural and long-lasting. Maintenance treatments help keep your neck looking its best over time.\"}',1,'2026-03-19 22:45:52','2026-04-01 14:56:05','70884bb5-9312-47a4-b358-16866f156f55'),
(5119,5119,1,'Can I treat tech neck even if I am in my 20s or 30s?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat tech neck even if I am in my 20s or 30s?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, absolutely. I see tech neck more and more in younger patients because of long hours on phones and laptops. Starting early with gentle treatments, good posture habits and consistent skincare can slow the progression of neck lines and help prevent them from becoming deeper over time. Prevention is always easier, and often simpler, than correction later.\"}',1,'2026-03-19 22:45:52','2026-04-01 14:56:05','6eeccfa2-f006-4b84-a3ec-3cf97a2325c1'),
(5120,5120,1,'Can I combine neck line treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine neck line treatment with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, and combining treatments often gives the best results. Different treatments improve different layers of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation, I assess your face and neck together and design a personalised plan that keeps everything balanced, often combining treatments gradually as part of a Radiance Collection programme.\"}',1,'2026-03-19 22:45:52','2026-04-01 14:56:05','7727c21a-bfbd-4e89-b0c0-4af3d0ea1c8e'),
(5121,5121,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"I am a practising GP with specialist training in aesthetic medicine, and patient safety is always my top priority. You will always see me personally, and I take time to understand your triggers, lifestyle and goals before recommending any treatments.\\nYou will never receive a one-size-fits-all protocol. Your plan is tailored to your skin, combining both effective in-clinic treatments and science-backed skincare. I am able to get to know your skin over time, review your progress regularly and adjust treatment as needed so your rosacea improves in a safe, gentle and sustainable way.\"}',1,'2026-03-19 22:45:52','2026-03-19 22:45:52','1fd6623f-86f1-41a5-b5f5-ef330745f733'),
(5122,5122,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 22:45:52','2026-04-20 19:09:20','8f0d7226-da2d-451e-8173-d84fc6029534'),
(5123,5123,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 22:46:15','2026-03-19 22:46:15','0d6601e4-9091-4d7c-8fc7-ca15f70e4d3f'),
(5124,5124,1,'Rosacea Treatment on the Wirral','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Treatment on the Wirral\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Rosacea: Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-03-19 22:46:15','2026-03-19 22:46:15','a8f9a104-2cba-4bbc-b675-4f201ada4d12'),
(5125,5125,1,'The Four Types of Rosacea','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"The Four Types of Rosacea\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Erythematotelangiectatic Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This most common form is characterised by persistent central facial redness and visible blood vessels. Skin often feels sensitive, dry or reactive, and flushing episodes can last longer over time.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Papulopustular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often mistaken for acne, this type causes red bumps (papules) and pus-filled spots (pustules) on a background of redness. It commonly affects the cheeks, chin and forehead. Standard acne treatments can sometimes make it worse, which is why proper diagnosis matters.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Phymatous Rosacea (Rhinophyma)</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A less common but more advanced form, where the skin thickens, most often around the nose. The tissue becomes enlarged and uneven. Early medical management can help slow progression and improve skin quality.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><i>Ocular Rosacea</i></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This affects the eyes, causing redness, dryness, irritation or a gritty sensation. It may occur alongside facial rosacea or on its own. If eye symptoms are present, I usually recommend coordinated care with your GP or an ophthalmologist to ensure safe, appropriate care</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5071],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','5f0bd0f7-e4ba-40ff-96b9-a7876af9c5f4'),
(5126,5126,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p><span style=\\\"color:#333333;\\\">Rosacea flare-ups are often linked to specific environmental and lifestyle triggers. Identifying your personal triggers is one of the most important steps in controlling rosacea long-term. Common triggers include: sun exposure and UV radiation, heat, alcohol, spicy foods, emotional stress, cold wind or sudden temperature changes, harsh skincare products, certain medications or topical steroids, hormonal changes, and gut irritation or dietary triggers.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p><p> </p><p><span style=\\\"color:#333333;\\\">Living on the Wirral Peninsula can present extra challenges for rosacea-prone skin. Coastal wind, salt air, and quickly changing temperatures can dry and irritate the skin barrier, making flushing and sensitivity more likely. When I design rosacea treatment plans in Wirral, I always factor in local conditions, recommending appropriate SPF, barrier-repair skincare such as personalised pHformula routines, and practical habits to help keep your skin calm in our coastal climate.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How We Treat Rosacea at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">There is no single cure for rosacea, but with the right approach, flare-ups can be greatly reduced, and your skin can become calmer and more resilient. I take a careful, doctor-led approach, combining targeted treatments with medical-grade skincare to address both the visible redness and the underlying inflammation. Every plan starts with a thorough consultation. I assess your skin type, triggers, medical history and current routine so we can choose treatments that are safe for your skin and appropriate for your rosacea subtype.<i> </i></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">For many rosacea patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) treatment range can make a real difference. These treatments are specifically designed for sensitive, redness-prone skin. They help reduce inflammation, improve skin renewal and strengthen the skin barrier without aggravating rosacea.<i><span> </span></i><span>Other treatments include polynucleotides, microtoxin infusion, laser and IPL therapy.</span></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','fa93b6e1-40dc-4bca-9d8f-527ecc06b4a0'),
(5127,5127,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','1251cdcf-ccd3-49b0-a271-ec6dccde0db5'),
(5128,5128,1,'Frequently Asked Questions About Rosacea Condition','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Rosacea Condition\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about rosacea condition\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','e948de26-9f44-4d0b-bcdc-b4343796ef8a'),
(5129,5129,1,'Is rosacea treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment suitable for all skin types?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Yes. Rosacea can affect all skin types and tones, although it is more common in patients with lighter skin tones. During your consultation, I assess your skin carefully, including sensitivity, pigmentation risk and medical history, so I can recommend the safest and most effective treatment approach for you.\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','63b6ff48-e545-46b3-aa59-f25d991281b3'),
(5132,5132,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Downtime is usually minimal, although it depends on the treatment and how sensitive your skin is. Gentle resurfacing treatments may cause mild redness or light flaking for a few days, and injections can leave small marks or occasional bruising that settles within a few days.\\nMost patients return to normal activities the same day, but I usually recommend avoiding heat, alcohol and strenuous exercise for 24 hours.\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','97f37105-6a30-40d5-beba-df8fb5fbff5d'),
(5133,5133,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Some patients notice early improvement after the first session, but rosacea treatments usually work gradually as inflammation settles and the skin barrier becomes stronger. \\nBecause rosacea is a chronic condition, ongoing maintenance and consistent homecare really are important to keep flare-ups under control, and your skin calm for the long-term.\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','4d88d88c-e370-4010-b1ef-8e15fc37dec5'),
(5134,5134,1,'Are there any side effects or risks?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"All treatments carry some risk, and your safety is my number one priority. Complications are uncommon when treatment is carefully planned and performed by an experienced medical practitioner. Temporary redness, mild swelling, sensitivity or light flaking are the most common effects and usually settle within a few days.\\nDuring your consultation, I will explain all potential risks and aftercare, so you feel confident and informed before proceeding with any treatments.\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','b5ae78d7-3ac5-4b71-a52f-ffbd0d9da27b'),
(5135,5135,1,'Can I combine rosacea treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine rosacea treatment with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"Absolutely, and a combined approach often gives the best results. Different treatments improve different aspects of rosacea, from calming inflammation to strengthening the skin barrier. I can design a personalised, layered plan for you so treatments work together safely and your skin improves gradually over time.\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','9e839481-3efb-436b-b04f-df885b48f753'),
(5136,5136,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"I am a practising GP with specialist training in aesthetic medicine, and patient safety is always my top priority. You will always see me personally, and I take time to understand your triggers, lifestyle and goals before recommending any treatments.\\nYou will never receive a one-size-fits-all protocol. Your plan is tailored to your skin, combining both effective in-clinic treatments and science-backed skincare. I am able to get to know your skin over time, review your progress regularly and adjust treatment as needed so your rosacea improves in a safe, gentle and sustainable way.\"}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','af946c81-476b-4fcb-a23b-f88d0cadc5b6'),
(5137,5137,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"Our team is here to help. Get in touch for personalized advice.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-19 22:46:16','2026-03-19 22:46:16','6cebd180-fbce-48fd-aeeb-063ae39f3135'),
(5143,5143,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 23:02:46','2026-03-19 23:02:46','2c625782-f458-4924-a7c2-55f221cd1ccf'),
(5144,5144,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in the clinic. Neck lines, sometimes called tech neck or necklace lines, are one of the most common yet most overlooked signs of ageing.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Neck Lines: What They Are and Why They Appear</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Neck lines are the horizontal creases and wrinkles that form across the front and sides of the neck. You may know them as necklace lines, because they sit in the same place a necklace would. Some people also notice vertical bands caused by the platysma muscle tightening beneath the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck is one of the thinnest and most exposed areas of the body. It has fewer oil glands than the face, less fat cushioning underneath, and it is constantly moving throughout the day. Because of this, the neck often shows ageing earlier than expected.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">It is very common to focus skincare and treatments only on the face, but for natural results, the neck should never be an afterthought. When the neck is included in a gentle, layered plan alongside the face, supported by consistent homecare, the whole area ages in harmony and results stay subtle and natural.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-03-19 23:02:46','2026-03-19 23:02:46','be60018d-edea-49a2-82c7-a62048e1a28a'),
(5145,5145,1,'What Causes Neck Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Neck Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slow. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span>\\t</span><strong>Genetics</strong>, which influences how early and how deeply lines form</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5071],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-19 23:02:46','2026-03-19 23:02:46','b42efaba-a6a7-428c-9c5a-6a11eb924e05'),
(5146,5146,1,'How We Treat Neck Lines at Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How We Treat Neck Lines at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck needs a different approach from the face. The skin is thinner, movement is constant, and treatments that work well on facial wrinkles do not always translate directly. I tailor every neck treatment plan based on the type of lines you have, the quality of your skin, your medical history, and the results you are hoping to see.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">My aim is always safe, natural improvement that stays balanced with your face. I usually take a gentle, layered approach, improving skin quality first and then addressing deeper lines if needed. Many patients include neck treatments within a longer-term Radiance Collection programme, so results build gradually and harmoniously.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What treatment options are available for Neck Lines?</i></span></h2><p> </p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Profhilo®</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Profhilo® is one of my favourite treatments for neck rejuvenation because it improves skin quality rather than adding volume. It contains a high concentration of hyaluronic acid that spreads gently like honey beneath the skin, deeply hydrating and stimulating collagen and elastin production. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Polynucleotides</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Polynucleotides are regenerative treatments that work at a cellular level to repair and strengthen damaged skin. They are made from highly purified DNA fragments that support your skin’s natural healing processes, improve collagen production and help calm inflammation.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Microneedling</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Microneedling creates tiny, controlled micro-injuries in the skin, which trigger your body’s natural healing response and stimulate new collagen production. On the neck, this can gradually improve texture, soften fine lines and help tighten lax, crepey skin over a course of treatments. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-03-19 23:02:46','2026-03-19 23:02:46','e61afcc9-7ac3-4402-a9da-79404a3e76f6'),
(5149,5149,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 23:03:27','2026-03-19 23:03:27','94b3221d-bc19-4672-bc11-049f0ca6da6a'),
(5150,5150,1,'Rosacea Condition','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Condition\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:#333333;\\\">Persistent redness, flushing and visible blood vessels can affect confidence every single day. At Aesthetics by Dr Rachel, I offer doctor-led rosacea treatment in Wirral focused on calming inflammation, strengthening your skin barrier and reducing triggers safely over time.</span><span style=\\\"color:#666666;\\\"><i><span>  </span></i></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Rosacea: Symptoms and Causes</i></span></h2><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\">Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (called telangiectasia) and, in some patients, small red bumps that can be mistaken for acne. The exact cause is not fully understood, but rosacea is thought to develop from a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels in the skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> Environmental triggers then aggravate the condition, leading to flare-ups that can become more frequent if rosacea is not properly managed. </span><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">There is also growing evidence that gut health and the skin microbiome may influence rosacea in some patients. Conditions affecting the digestive system and dietary triggers can sometimes worsen inflammation, which is why we look at lifestyle, skincare and medical treatment together when creating a personalised plan.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-03-19 23:03:27','2026-03-19 23:03:27','0aa09729-4de6-4256-a7c6-dde0314700e2'),
(5151,5151,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-19 23:07:26','2026-03-19 23:07:26','69853573-3de0-4a08-a817-27030f7040b4'),
(5154,5154,1,NULL,'__temp_cxymmgjcfgyvisxugmnofaqbuqacixmlpidg',NULL,NULL,1,'2026-03-19 23:13:39','2026-03-19 23:13:39','09cad1c1-a89d-46bf-be93-13d65a761e86'),
(5159,5159,1,NULL,'__temp_ksfstqyhwlnfvpvubnysljxvofzetljcoefn',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2026-03-19 23:23:02','2026-03-19 23:23:02','73627d0f-2afb-4276-bfe1-b555f1260dc5'),
(5161,5161,1,'a','a',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"sas\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"SasS\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"<p>SasaS</p>\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p>Sasa</p>\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4994],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-19 23:23:38','2026-03-19 23:23:38','90ee6d86-4baf-4de4-a0af-99a3ce2911f9'),
(5162,5162,1,'Contacts','contacts','contacts',NULL,1,'2026-03-19 23:23:38','2026-03-19 23:23:38','d04ae2f7-1e93-4680-8ca0-2313c3f2ae22'),
(5163,5163,1,'a','a',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"sas\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"SasS\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"<p>SasaS</p>\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p>Sasa</p>\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4994],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-19 23:23:38','2026-03-19 23:23:38','e6013d81-bcd7-4a3b-8bbf-aa9c53382731'),
(5164,5164,1,'Contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Dr Rachel Aesthetics\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Contact Us\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);\\\">Danielle Louise, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:rgb(0,0,0);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:rgb(0,0,0);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\"}',1,'2026-03-19 23:23:38','2026-03-19 23:23:38','8e38894c-1e69-4a01-8391-47dc696d01d3'),
(5166,5166,1,'Contacts','contacts','contacts',NULL,1,'2026-03-19 23:23:58','2026-03-19 23:23:58','4f48734a-64b4-4041-b13b-22bd291128bd'),
(5167,5167,1,'Contacts','contacts','contacts',NULL,1,'2026-03-19 23:24:02','2026-03-19 23:24:02','68cf33af-a32c-476e-90ce-2a66213e817d'),
(5178,5178,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- A natural, subtle approach</strong> focused on helping you look refreshed and well, never overdone</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Evidence-based treatments </strong>chosen for safety and long-term skin health</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Clear, honest advice</strong>, including when a treatment is not the right choice</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Continuity of care</strong>, seeing the same doctor from consultation through to review</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- A personalised plan </strong>designed around your face, your skin and your goals</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-03-19 23:40:52','2026-04-16 12:20:07','dd0a5bf8-0fea-4da8-85c3-884f39817eb7'),
(5179,5179,1,'About','about','about',NULL,1,'2026-03-19 23:40:52','2026-03-19 23:40:52','ff26dcde-1a91-488e-963f-b03932e01930'),
(5180,5180,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Who is Dr Rachel\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at The Aesthetic Clinic\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Dr Rachel is a GMC-registered medical doctor who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#555555;\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-03-19 23:40:52','2026-03-19 23:40:52','98fbcad2-3fd9-4494-acfe-05884a4650fb'),
(5181,5181,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – The Woman Behind The Needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dr Rachel is a member of the Aesthetics Complications Expert Group (ACE Group), trained in advanced complication management, and regularly undertakes CPD through leading aesthetic training bodies. She operates from a CQC-compliant clinical environment where patient safety is never compromised.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Her philosophy is simple: listen carefully, assess thoroughly, treat conservatively, and always prioritise safety over sales. That’s why patients trust her with their faces and keep coming back year after year.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Real patients. Real results. No filters, no editing, no exaggeration. Dr Rachel uses clinically proven, non-surgical treatments. We believe in transparency because when the results speak for themselves, there’s nothing to hide.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-19 23:40:52','2026-03-19 23:40:52','574c2388-aa77-4673-b81c-8c4f601cd720'),
(5182,5182,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about our treatments\"}',1,'2026-03-19 23:40:52','2026-03-19 23:40:52','37e0c1c8-7daa-4e4e-84dd-3a33eb882ea2'),
(5183,5183,1,'About','about','about',NULL,1,'2026-03-19 23:40:55','2026-03-19 23:40:55','7df15dc4-ba6d-480a-9196-dc5542676914'),
(5192,5192,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-03-20 00:44:45','2026-04-17 12:19:21','ddbac5ba-52a3-46e9-9a4b-30ab255b034b'),
(5195,5195,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://hermeswp.xyz/rachel/web/contacts\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-03-20 00:44:45','2026-03-20 00:44:45','fdae0bbf-9a30-4edb-8278-385a5bbc745b'),
(5200,5200,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Expert aesthetic treatments delivered by a qualified medical doctor with over 10 years of clinical experience. Dr Rachel combines medical precision with an artist’s eye to enhance your natural features - never mask them.</span></p><p> </p><p> </p>\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-20 09:47:55','2026-03-20 09:47:55','8135d68d-c1a5-4afe-b664-16d0bed1de1d'),
(5237,5237,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-20 10:12:38','2026-03-20 10:12:38','36d00ee1-f288-4339-b62b-a650ec7320ed'),
(5238,5238,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose JULÄINE™ Bio-Stimulator?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is a next-generation collagen-stimulating treatment designed to increase your skin’s own collagen production at a deeper level. By supporting long-term collagen renewal, JULÄINE™ delivers visible improvements in skin firmness, texture, and radiance, with results that develop naturally and last far longer than many traditional treatments.</span></p>\"}',1,'2026-03-20 10:12:38','2026-03-20 10:12:38','0d93d804-0cb3-4a7e-9b56-9be45a39f8dd'),
(5239,5239,1,NULL,'__temp_gnbvwcowghabrerqbtcbjmxpsboumanldjau','case-studies/__temp_gnbvwcowghabrerqbtcbjmxpsboumanldjau',NULL,1,'2026-03-20 10:16:11','2026-03-20 10:16:11','702052e9-5ee9-40ad-b81d-12977a037689'),
(5240,5240,1,NULL,'__temp_emysnpbgfsbpcfufsgvkxxpkqtnhesivhsam','case-studies/__temp_emysnpbgfsbpcfufsgvkxxpkqtnhesivhsam',NULL,1,'2026-03-20 10:16:35','2026-03-20 10:16:35','80fef30c-30f4-40ed-a75d-6d0852e24048'),
(5241,5241,1,NULL,'__temp_xxrflzqrcknwesucunnmnavocolquwfvzhzz','case-studies/__temp_xxrflzqrcknwesucunnmnavocolquwfvzhzz',NULL,1,'2026-03-20 10:18:24','2026-03-20 10:18:24','08dbfe5a-0820-43b6-9242-623113e7f821'),
(5256,5256,1,'test','test',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"dassadsa\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"sdadsads\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"<p>dsasdasdaasdsda</p>\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-03-20 10:46:55','2026-03-20 10:46:55','58a2b6ae-8436-403f-8ef8-0f72d7eb0052'),
(5257,5257,1,'test1','test1','test1','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[757]}',1,'2026-03-20 10:46:55','2026-03-20 10:46:55','2ab015a7-ff9f-4b18-80da-e34503981d1e'),
(5258,5258,1,'test','test',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"dassadsa\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"sdadsads\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"<p>dsasdasdaasdsda</p>\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-03-20 10:46:55','2026-03-20 10:46:55','e9a9f87b-60f0-44dc-96b1-9568f6644978'),
(5263,5263,1,'sdasda','sdasda',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"asdsa\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"asdsda\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"<p>dsasdadsa</p>\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":3}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','7b1b1fd9-72c6-4192-99b2-65a6bc6f1376'),
(5264,5264,1,'dssadasdsdadsa','dssadasdsdadsa',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"dsaadsadssda\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"saddsadsasda\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>sdadsadsads</p>\"}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','2cd0e5d4-fc9c-4dbc-97f5-9adde30aede1'),
(5265,5265,1,'sdaadsasd','sdaadsasd',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"sdasdadsa\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>dsadsadsa</p>\"}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','78ee2a65-9e50-4580-8a97-8dc525f507fa'),
(5266,5266,1,'test1','test1','test1','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[757]}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','acf42f4d-d6d0-4268-bf0c-bac555e3fd96'),
(5267,5267,1,'sdasda','sdasda',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"asdsa\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"asdsda\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"<p>dsasdadsa</p>\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":3}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','c05e2ab4-d345-4c3c-a52a-e599583a2702'),
(5268,5268,1,'dssadasdsdadsa','dssadasdsdadsa',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"dsaadsadssda\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"saddsadsasda\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>sdadsadsads</p>\"}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','8abf788e-2a4d-4454-b5f5-38d4a0536ec6'),
(5269,5269,1,'sdaadsasd','sdaadsasd',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"sdasdadsa\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>dsadsadsa</p>\"}',1,'2026-03-20 10:50:16','2026-03-20 10:50:16','13934b8a-1b31-4dd3-8089-192738ffb717'),
(5364,5364,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-20 11:36:02','2026-03-20 11:36:02','5c9845c6-4990-49ab-8796-bb2210921886'),
(5365,5365,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-03-20 11:36:02','2026-03-20 11:36:02','1f947df7-6f3f-47e3-ab96-284839cd7661'),
(5366,5366,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>For exquisitely natural results</i></span></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2026-03-20 11:36:02','2026-03-20 11:36:02','3a15ebde-7648-4412-9919-8bdb1c142a4b'),
(5369,5369,1,'Contacts','contacts','contacts',NULL,1,'2026-03-20 12:05:01','2026-03-20 12:05:01','10f66a37-4562-437d-8ba3-697bf671f2e7'),
(5370,5370,1,'Contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Dr Rachel Aesthetics\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Contact Us\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:rgb(0,0,0);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:rgb(0,0,0);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-03-20 12:05:01','2026-03-20 12:05:01','9b613a4f-382d-4ac7-b68f-a2664e018901'),
(5372,5372,1,'Rectangle 80',NULL,NULL,NULL,1,'2026-03-20 12:54:18','2026-03-20 12:54:18','0b850b7f-89fa-4da2-a529-c91876abdff4'),
(5373,5373,1,'Rectangle 81',NULL,NULL,NULL,1,'2026-03-20 12:54:18','2026-03-20 12:54:18','fca19300-79fb-4bac-8e61-d81c0476542e'),
(5374,5374,1,'Rectangle 82',NULL,NULL,NULL,1,'2026-03-20 12:54:19','2026-03-20 12:54:19','759d67ea-63f3-4ded-a40f-5adbb8dfb698'),
(5389,5389,1,'2026-03-20 13:33:42',NULL,NULL,NULL,1,'2026-03-20 13:33:42','2026-03-20 13:33:42','eab17aa9-e2de-4352-9306-5a6d641f800f'),
(5390,5390,1,'2026-03-20 13:34:33',NULL,NULL,NULL,1,'2026-03-20 13:34:33','2026-03-20 13:34:33','9bb99d99-acf7-463c-9ba0-e10d959dcdd3'),
(5391,5391,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation','{\"46e8d394-7104-4044-85de-cc44d6cab29b\":[5373]}',1,'2026-03-20 17:15:42','2026-03-23 17:01:38','237e06e3-a8a0-42cd-9b7d-a8d94bb22695');
INSERT INTO `elements_sites` VALUES
(5392,5392,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 17:16:40','2026-03-20 17:16:40','ef15a3b8-3086-4a78-92f7-459781980c27'),
(5397,5397,1,'Sam\'s Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Aesthetics by Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Sam\'s Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Looking Less Tired, Feeling Like Myself Again</span></span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam, 60s – Wirral</span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"> When Sam first came to see me, she said something I hear often: “I just look tired all the time.” Even on good days, when she felt well and happy, her reflection did not match how she felt inside. She had also noticed her face looking a little less firm over the past couple of years. Sam is not someone who worries greatly about her appearance. What bothered her was feeling unlike herself. Being told she looked tired, when she was not, had started to chip away at her confidence. These changes are usually subtle. Small shifts in skin quality, hydration, and volume can quietly make someone look exhausted or sad without them realising why. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Sam Decided to Seek Treatment </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam had spent a difficult period caring for a close family member before they passed away. Afterwards, she wanted to do something gentle and positive for herself. With her 60th birthday approaching, it felt like the right moment to start looking after her own wellbeing again. Sam came to me because she knew me through my NHS work. She said simply, “I trust you.” That meant a great deal to me. She wanted reassurance that any treatment would look natural and never overdone, which is exactly how I approach every patient. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Sam’s consultation, we talked through what was contributing to her tired appearance. It was not one single issue, but a combination of skin texture changes, hydration loss, and very subtle volume changes. We created a gentle, personalised plan focused on improving skin quality and restoring a little softness and support where it had gradually been lost. Nothing dramatic, just small, thoughtful steps layered over time. Sam told me afterwards that the treatment was far easier than she had expected. She had mild swelling and redness for a short time, with no bruising, and felt reassured by the detailed discussion we had beforehand about risks, benefits, and realistic outcomes.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"The Results\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam’s results were subtle, but meaningful. She looked fresher and brighter, without anyone being able to say exactly why. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Friends and family commented that she looked well. Sam told me, <i><strong>“I looked tired all the time, even on days I wasn’t. Now I feel like me again… just on a really good day.”</strong></i> That is always the goal. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam described her time in the clinic as calm, welcoming, and reassuring. She felt able to ask questions and appreciated honest advice about what would help and what would not. She later told me she would happily recommend me to others because she felt cared for and listened to, which is something I never take for granted, and is always the biggest compliment. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Sam Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam is delighted with her results and feels more confident and comfortable in her skin as she celebrated her milestone birthday. She plans gentle maintenance treatments so that everything continues to look natural and consistent. This is an important part of the Radiance approach. Skin changes gradually, and thoughtful maintenance keeps results soft and natural. </span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Looking tired can affect confidence far more than people expect. With careful assessment and a layered, personalised approach, we can restore brightness and freshness without looking overdone or unnatural. For Sam, the goal was simple: to recognise herself again after a difficult time. Seeing her smile when she said she felt like herself again reminded me why I love this work.</span></p>\"}',1,'2026-03-20 17:24:58','2026-03-20 18:05:19','03e3d297-b1b0-40a7-ac10-65f77caf7ac8'),
(5398,5398,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 17:24:58','2026-03-20 17:24:58','20674630-cd71-4d11-ab0a-d1d6d3453468'),
(5399,5399,1,'Sam\'s Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Sam\'s Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Looking Less Tired, Feeling Like Myself Again</span></span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam, 60s – Wirral</span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>The Concern</strong></span></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">When Sam first came to see me, she said something I hear often: </span><i><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">“I just look tired all the time.”</span></i></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Even on good days, when she felt well and happy, her reflection did not match how she felt inside. She had also noticed her face looking a little less firm over the past couple of years.</span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam is not someone who worries greatly about her appearance. What bothered her was feeling unlike herself. Being told she looked tired, when she was not, had started to chip away at her confidence.</span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">These changes are usually subtle. Small shifts in skin quality, hydration, and volume can quietly make someone look exhausted or sad without them realising why.</span></span></p><p> </p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Why Sam Decided to Seek Treatment</strong></span></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam had spent a difficult period caring for a close family member before they passed away. Afterwards, she wanted to do something gentle and positive for herself. With her 60th birthday approaching, it felt like the right moment to start looking after her own wellbeing again.</span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam came to me because she knew me through my NHS work. She said simply, </span><i><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">“I trust you.”</span></i><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"> That meant a great deal to me. She wanted reassurance that any treatment would look natural and never overdone, which is exactly how I approach every patient.</span></span></p><p> </p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>My Approach</strong></span></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">At Sam’s consultation, we talked through what was contributing to her tired appearance. It was not one single issue, but a combination of skin texture changes, hydration loss, and very subtle volume changes.</span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">We created a gentle, personalised plan focused on improving skin quality and restoring a little softness and support where it had gradually been lost. Nothing dramatic, just small, thoughtful steps layered over time.</span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam told me afterwards that the treatment was far easier than she had expected. She had mild swelling and redness for a short time, with no bruising, and felt reassured by the detailed discussion we had beforehand about risks, benefits, and realistic outcomes.</span></span></p>\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-20 17:24:58','2026-03-20 17:24:58','77083c23-258f-4b74-be30-a203a17c9f4d'),
(5402,5402,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 17:49:51','2026-03-20 17:49:51','0c6499b2-0163-49c5-bdb4-b5225ace5e38'),
(5403,5403,1,'Sam\'s Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Sam\'s Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Looking Less Tired, Feeling Like Myself Again</span></span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam, 60s – Wirral</span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Concern</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> When Sam first came to see me, she said something I hear often: “I just look tired all the time.” Even on good days, when she felt well and happy, her reflection did not match how she felt inside. She had also noticed her face looking a little less firm over the past couple of years. Sam is not someone who worries greatly about her appearance. What bothered her was feeling unlike herself. Being told she looked tired, when she was not, had started to chip away at her confidence. These changes are usually subtle. Small shifts in skin quality, hydration, and volume can quietly make someone look exhausted or sad without them realising why. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Sam Decided to Seek Treatment </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam had spent a difficult period caring for a close family member before they passed away. Afterwards, she wanted to do something gentle and positive for herself. With her 60th birthday approaching, it felt like the right moment to start looking after her own wellbeing again. Sam came to me because she knew me through my NHS work. She said simply, “I trust you.” That meant a great deal to me. She wanted reassurance that any treatment would look natural and never overdone, which is exactly how I approach every patient. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Sam’s consultation, we talked through what was contributing to her tired appearance. It was not one single issue, but a combination of skin texture changes, hydration loss, and very subtle volume changes. We created a gentle, personalised plan focused on improving skin quality and restoring a little softness and support where it had gradually been lost. Nothing dramatic, just small, thoughtful steps layered over time. Sam told me afterwards that the treatment was far easier than she had expected. She had mild swelling and redness for a short time, with no bruising, and felt reassured by the detailed discussion we had beforehand about risks, benefits, and realistic outcomes.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Results </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam’s results were subtle, but meaningful. She looked fresher and brighter, without anyone being able to say exactly why. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Friends and family commented that she looked well. Sam told me, <i><strong>“I looked tired all the time, even on days I wasn’t. Now I feel like me again… just on a really good day.”</strong></i> That is always the goal. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam described her time in the clinic as calm, welcoming, and reassuring. She felt able to ask questions and appreciated honest advice about what would help and what would not. She later told me she would happily recommend me to others because she felt cared for and listened to, which is something I never take for granted, and is always the biggest compliment. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Sam Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam is delighted with her results and feels more confident and comfortable in her skin as she celebrated her milestone birthday. She plans gentle maintenance treatments so that everything continues to look natural and consistent. This is an important part of the Radiance approach. Skin changes gradually, and thoughtful maintenance keeps results soft and natural. </span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,30%);\\\">Looking tired can affect confidence far more than people expect. With careful assessment and a layered, personalised approach, we can restore brightness and freshness without looking overdone or unnatural. For Sam, the goal was simple: to recognise herself again after a difficult time. Seeing her smile when she said she felt like herself again reminded me why I love this work.</span></p>\"}',1,'2026-03-20 17:49:51','2026-03-20 17:49:51','6e78696c-6063-4f61-abf2-2c368312df55'),
(5404,5404,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 17:49:57','2026-03-20 17:49:57','70d5c340-c573-47e4-90d8-a3633a2d233b'),
(5405,5405,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation','{\"46e8d394-7104-4044-85de-cc44d6cab29b\":[4753]}',1,'2026-03-20 17:50:10','2026-03-23 17:02:10','51a3f6e7-45f5-49f2-aa1b-6505b3dbfdc8'),
(5406,5406,1,'Anitas Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Aesthetics by Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Anitas Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong> Brightening Dark Circles Naturally</strong></span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Anita, 50s - Chester</strong></span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">When Anita first came to see me, she had been struggling with dark circles and under-eye bags for several years. Like many patients, she had tried to manage things herself first. She relied heavily on makeup and began wearing glasses daily to hide her eye area, even in winter. Anita told me she felt she looked tired all the time, no matter how well she slept. This is something I hear often. The eye area is delicate and changes early, and it can quietly affect confidence in a big way. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Anita Decided to Seek Treatment</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita initially booked her first appointment before her daughter’s wedding. She wanted to look like herself again in the photographs and feel confident on such an important day. Anita came to me through a friend’s recommendation, which always means a great deal to me. Trust is everything in aesthetic medicine, especially when treating delicate areas like the under-eyes. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Anita’s consultation, we discussed what was causing her concerns. Dark circles can come from several factors – pigmentation, volume loss, shadowing, or skin quality changes - so careful assessment is essential. We designed a personalised treatment plan using a course of three polynucleotide treatments to improve the quality of the delicate under-eye skin. Polynucleotides work by supporting tissue repair, hydration, and collagen production, helping the skin gradually become brighter, stronger, and smoother. As Anita said afterwards, the treatment itself was almost painless, and she felt calm and reassured throughout. She had some mild redness and small bumps immediately after, which settled quickly, exactly as expected.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"The Results\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Under-eye treatments are not instant transformations. They improve gradually as the skin heals and regenerates. Over the following weeks, Anita noticed the dark circles softening. Friends began commenting that her eyes looked brighter and more refreshed, even without knowing she had treatment. She told me she no longer felt the need to hide behind glasses or heavy makeup, which was wonderful to hear. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong>“Before seeing Dr Rachel I felt old and tired. Now I feel fabulous.”</strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong> </strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita described her experience as calming and reassuring. She said she felt completely confident in my care, and that I explained everything clearly at each step. Anita said she would not hesitate to recommend me to others, and in fact both of her daughters have also come to see me after hearing about Anita’s experience. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Anita Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita is still over the moon with her results and is planning a maintenance treatment to keep the eye area looking fresh and supported long-term. This is an important part of the Radiance philosophy. Skin changes gradually, and gentle maintenance keeps results natural and consistent.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Dark circles can make people look far more tired than they feel. With careful diagnosis and a layered, personalised approach, we can often achieve beautiful, subtle improvement without looking “treated”. For Anita, the goal was simple: to look well-rested, confident, and like herself again. Seeing her smile at the end of her journey reminded me of why I love what I do.</span></p>\"}',1,'2026-03-20 17:50:10','2026-03-20 18:05:03','8ed7b8b7-4f68-4922-be08-559842f69a0c'),
(5407,5407,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation',NULL,1,'2026-03-20 17:50:25','2026-03-20 17:50:25','196cba3c-5ff5-4aee-9d03-cf6bacae1a7b'),
(5408,5408,1,'Sam\'s Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Sam\'s Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Looking Less Tired, Feeling Like Myself Again</span></span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam, 60s – Wirral</span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Concern</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> When Sam first came to see me, she said something I hear often: “I just look tired all the time.” Even on good days, when she felt well and happy, her reflection did not match how she felt inside. She had also noticed her face looking a little less firm over the past couple of years. Sam is not someone who worries greatly about her appearance. What bothered her was feeling unlike herself. Being told she looked tired, when she was not, had started to chip away at her confidence. These changes are usually subtle. Small shifts in skin quality, hydration, and volume can quietly make someone look exhausted or sad without them realising why. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Sam Decided to Seek Treatment </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam had spent a difficult period caring for a close family member before they passed away. Afterwards, she wanted to do something gentle and positive for herself. With her 60th birthday approaching, it felt like the right moment to start looking after her own wellbeing again. Sam came to me because she knew me through my NHS work. She said simply, “I trust you.” That meant a great deal to me. She wanted reassurance that any treatment would look natural and never overdone, which is exactly how I approach every patient. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Sam’s consultation, we talked through what was contributing to her tired appearance. It was not one single issue, but a combination of skin texture changes, hydration loss, and very subtle volume changes. We created a gentle, personalised plan focused on improving skin quality and restoring a little softness and support where it had gradually been lost. Nothing dramatic, just small, thoughtful steps layered over time. Sam told me afterwards that the treatment was far easier than she had expected. She had mild swelling and redness for a short time, with no bruising, and felt reassured by the detailed discussion we had beforehand about risks, benefits, and realistic outcomes.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Results </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam’s results were subtle, but meaningful. She looked fresher and brighter, without anyone being able to say exactly why. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Friends and family commented that she looked well. Sam told me, <i><strong>“I looked tired all the time, even on days I wasn’t. Now I feel like me again… just on a really good day.”</strong></i> That is always the goal. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam described her time in the clinic as calm, welcoming, and reassuring. She felt able to ask questions and appreciated honest advice about what would help and what would not. She later told me she would happily recommend me to others because she felt cared for and listened to, which is something I never take for granted, and is always the biggest compliment. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Sam Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam is delighted with her results and feels more confident and comfortable in her skin as she celebrated her milestone birthday. She plans gentle maintenance treatments so that everything continues to look natural and consistent. This is an important part of the Radiance approach. Skin changes gradually, and thoughtful maintenance keeps results soft and natural. </span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,30%);\\\">Looking tired can affect confidence far more than people expect. With careful assessment and a layered, personalised approach, we can restore brightness and freshness without looking overdone or unnatural. For Sam, the goal was simple: to recognise herself again after a difficult time. Seeing her smile when she said she felt like herself again reminded me why I love this work.</span></p>\"}',1,'2026-03-20 17:50:25','2026-03-20 17:50:25','a2ae18b9-89ce-42a4-a45d-751f4d7d5c99'),
(5412,5412,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation',NULL,1,'2026-03-20 17:55:59','2026-03-20 17:55:59','78addcb0-166b-4a70-af55-721173e22ad4'),
(5413,5413,1,'Anitas Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Anitas Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong> Brightening Dark Circles Naturally</strong></span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Anita, 50s - Chester</strong></span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Concern </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">When Anita first came to see me, she had been struggling with dark circles and under-eye bags for several years. Like many patients, she had tried to manage things herself first. She relied heavily on makeup and began wearing glasses daily to hide her eye area, even in winter. Anita told me she felt she looked tired all the time, no matter how well she slept. This is something I hear often. The eye area is delicate and changes early, and it can quietly affect confidence in a big way. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Anita Decided to Seek Treatment</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita initially booked her first appointment before her daughter’s wedding. She wanted to look like herself again in the photographs and feel confident on such an important day. Anita came to me through a friend’s recommendation, which always means a great deal to me. Trust is everything in aesthetic medicine, especially when treating delicate areas like the under-eyes. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Anita’s consultation, we discussed what was causing her concerns. Dark circles can come from several factors – pigmentation, volume loss, shadowing, or skin quality changes - so careful assessment is essential. We designed a personalised treatment plan using a course of three polynucleotide treatments to improve the quality of the delicate under-eye skin. Polynucleotides work by supporting tissue repair, hydration, and collagen production, helping the skin gradually become brighter, stronger, and smoother. As Anita said afterwards, the treatment itself was almost painless, and she felt calm and reassured throughout. She had some mild redness and small bumps immediately after, which settled quickly, exactly as expected.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Results </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Under-eye treatments are not instant transformations. They improve gradually as the skin heals and regenerates. Over the following weeks, Anita noticed the dark circles softening. Friends began commenting that her eyes looked brighter and more refreshed, even without knowing she had treatment. She told me she no longer felt the need to hide behind glasses or heavy makeup, which was wonderful to hear. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong>“Before seeing Dr Rachel I felt old and tired. Now I feel fabulous.”</strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong> </strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita described her experience as calming and reassuring. She said she felt completely confident in my care, and that I explained everything clearly at each step. Anita said she would not hesitate to recommend me to others, and in fact both of her daughters have also come to see me after hearing about Anita’s experience. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Anita Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita is still over the moon with her results and is planning a maintenance treatment to keep the eye area looking fresh and supported long-term. This is an important part of the Radiance philosophy. Skin changes gradually, and gentle maintenance keeps results natural and consistent.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Dark circles can make people look far more tired than they feel. With careful diagnosis and a layered, personalised approach, we can often achieve beautiful, subtle improvement without looking “treated”. For Anita, the goal was simple: to look well-rested, confident, and like herself again. Seeing her smile at the end of her journey reminded me of why I love what I do.</span></p>\"}',1,'2026-03-20 17:55:59','2026-03-20 17:55:59','ac92b8d7-cd25-470d-88f6-a894d44198b5'),
(5414,5414,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation',NULL,1,'2026-03-20 17:56:02','2026-03-20 17:56:02','01749b48-22e9-4d7b-9fd7-1811b2687742'),
(5418,5418,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 18:00:13','2026-03-20 18:00:13','87870a0b-5fc1-4184-8142-0519524cca80'),
(5419,5419,1,'Sam\'s Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Sam\'s Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Looking Less Tired, Feeling Like Myself Again</span></span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam, 60s – Wirral</span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"> When Sam first came to see me, she said something I hear often: “I just look tired all the time.” Even on good days, when she felt well and happy, her reflection did not match how she felt inside. She had also noticed her face looking a little less firm over the past couple of years. Sam is not someone who worries greatly about her appearance. What bothered her was feeling unlike herself. Being told she looked tired, when she was not, had started to chip away at her confidence. These changes are usually subtle. Small shifts in skin quality, hydration, and volume can quietly make someone look exhausted or sad without them realising why. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Sam Decided to Seek Treatment </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam had spent a difficult period caring for a close family member before they passed away. Afterwards, she wanted to do something gentle and positive for herself. With her 60th birthday approaching, it felt like the right moment to start looking after her own wellbeing again. Sam came to me because she knew me through my NHS work. She said simply, “I trust you.” That meant a great deal to me. She wanted reassurance that any treatment would look natural and never overdone, which is exactly how I approach every patient. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Sam’s consultation, we talked through what was contributing to her tired appearance. It was not one single issue, but a combination of skin texture changes, hydration loss, and very subtle volume changes. We created a gentle, personalised plan focused on improving skin quality and restoring a little softness and support where it had gradually been lost. Nothing dramatic, just small, thoughtful steps layered over time. Sam told me afterwards that the treatment was far easier than she had expected. She had mild swelling and redness for a short time, with no bruising, and felt reassured by the detailed discussion we had beforehand about risks, benefits, and realistic outcomes.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"The Results\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam’s results were subtle, but meaningful. She looked fresher and brighter, without anyone being able to say exactly why. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Friends and family commented that she looked well. Sam told me, <i><strong>“I looked tired all the time, even on days I wasn’t. Now I feel like me again… just on a really good day.”</strong></i> That is always the goal. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam described her time in the clinic as calm, welcoming, and reassuring. She felt able to ask questions and appreciated honest advice about what would help and what would not. She later told me she would happily recommend me to others because she felt cared for and listened to, which is something I never take for granted, and is always the biggest compliment. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Sam Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam is delighted with her results and feels more confident and comfortable in her skin as she celebrated her milestone birthday. She plans gentle maintenance treatments so that everything continues to look natural and consistent. This is an important part of the Radiance approach. Skin changes gradually, and thoughtful maintenance keeps results soft and natural. </span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Looking tired can affect confidence far more than people expect. With careful assessment and a layered, personalised approach, we can restore brightness and freshness without looking overdone or unnatural. For Sam, the goal was simple: to recognise herself again after a difficult time. Seeing her smile when she said she felt like herself again reminded me why I love this work.</span></p>\"}',1,'2026-03-20 18:00:13','2026-03-20 18:00:13','5ca44e9f-50fd-4f54-a5ef-cf6c3e59a373'),
(5420,5420,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 18:00:15','2026-03-20 18:00:15','930e3af6-0d7b-4f7e-8296-7ce7e8cb4634'),
(5423,5423,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation',NULL,1,'2026-03-20 18:00:39','2026-03-20 18:00:39','c99b2a41-fe05-45ca-ac2b-19e34dc2778d'),
(5424,5424,1,'Anitas Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Anitas Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong> Brightening Dark Circles Naturally</strong></span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Anita, 50s - Chester</strong></span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">When Anita first came to see me, she had been struggling with dark circles and under-eye bags for several years. Like many patients, she had tried to manage things herself first. She relied heavily on makeup and began wearing glasses daily to hide her eye area, even in winter. Anita told me she felt she looked tired all the time, no matter how well she slept. This is something I hear often. The eye area is delicate and changes early, and it can quietly affect confidence in a big way. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Anita Decided to Seek Treatment</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita initially booked her first appointment before her daughter’s wedding. She wanted to look like herself again in the photographs and feel confident on such an important day. Anita came to me through a friend’s recommendation, which always means a great deal to me. Trust is everything in aesthetic medicine, especially when treating delicate areas like the under-eyes. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Anita’s consultation, we discussed what was causing her concerns. Dark circles can come from several factors – pigmentation, volume loss, shadowing, or skin quality changes - so careful assessment is essential. We designed a personalised treatment plan using a course of three polynucleotide treatments to improve the quality of the delicate under-eye skin. Polynucleotides work by supporting tissue repair, hydration, and collagen production, helping the skin gradually become brighter, stronger, and smoother. As Anita said afterwards, the treatment itself was almost painless, and she felt calm and reassured throughout. She had some mild redness and small bumps immediately after, which settled quickly, exactly as expected.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"The Results\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Under-eye treatments are not instant transformations. They improve gradually as the skin heals and regenerates. Over the following weeks, Anita noticed the dark circles softening. Friends began commenting that her eyes looked brighter and more refreshed, even without knowing she had treatment. She told me she no longer felt the need to hide behind glasses or heavy makeup, which was wonderful to hear. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong>“Before seeing Dr Rachel I felt old and tired. Now I feel fabulous.”</strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong> </strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita described her experience as calming and reassuring. She said she felt completely confident in my care, and that I explained everything clearly at each step. Anita said she would not hesitate to recommend me to others, and in fact both of her daughters have also come to see me after hearing about Anita’s experience. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Anita Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita is still over the moon with her results and is planning a maintenance treatment to keep the eye area looking fresh and supported long-term. This is an important part of the Radiance philosophy. Skin changes gradually, and gentle maintenance keeps results natural and consistent.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Dark circles can make people look far more tired than they feel. With careful diagnosis and a layered, personalised approach, we can often achieve beautiful, subtle improvement without looking “treated”. For Anita, the goal was simple: to look well-rested, confident, and like herself again. Seeing her smile at the end of her journey reminded me of why I love what I do.</span></p>\"}',1,'2026-03-20 18:00:39','2026-03-20 18:00:39','d62ecdda-867c-4e86-86e1-b732595c0e1f'),
(5427,5427,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation',NULL,1,'2026-03-20 18:05:03','2026-03-20 18:05:03','13e11d24-f40a-4c39-aeda-130c52df35af'),
(5428,5428,1,'Anitas Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Aesthetics by Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Anitas Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong> Brightening Dark Circles Naturally</strong></span></span></p><p style=\\\"line-height:1.295;margin-bottom:8pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Anita, 50s - Chester</strong></span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">When Anita first came to see me, she had been struggling with dark circles and under-eye bags for several years. Like many patients, she had tried to manage things herself first. She relied heavily on makeup and began wearing glasses daily to hide her eye area, even in winter. Anita told me she felt she looked tired all the time, no matter how well she slept. This is something I hear often. The eye area is delicate and changes early, and it can quietly affect confidence in a big way. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Anita Decided to Seek Treatment</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita initially booked her first appointment before her daughter’s wedding. She wanted to look like herself again in the photographs and feel confident on such an important day. Anita came to me through a friend’s recommendation, which always means a great deal to me. Trust is everything in aesthetic medicine, especially when treating delicate areas like the under-eyes. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Anita’s consultation, we discussed what was causing her concerns. Dark circles can come from several factors – pigmentation, volume loss, shadowing, or skin quality changes - so careful assessment is essential. We designed a personalised treatment plan using a course of three polynucleotide treatments to improve the quality of the delicate under-eye skin. Polynucleotides work by supporting tissue repair, hydration, and collagen production, helping the skin gradually become brighter, stronger, and smoother. As Anita said afterwards, the treatment itself was almost painless, and she felt calm and reassured throughout. She had some mild redness and small bumps immediately after, which settled quickly, exactly as expected.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"The Results\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Under-eye treatments are not instant transformations. They improve gradually as the skin heals and regenerates. Over the following weeks, Anita noticed the dark circles softening. Friends began commenting that her eyes looked brighter and more refreshed, even without knowing she had treatment. She told me she no longer felt the need to hide behind glasses or heavy makeup, which was wonderful to hear. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong>“Before seeing Dr Rachel I felt old and tired. Now I feel fabulous.”</strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><i><strong> </strong></i></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita described her experience as calming and reassuring. She said she felt completely confident in my care, and that I explained everything clearly at each step. Anita said she would not hesitate to recommend me to others, and in fact both of her daughters have also come to see me after hearing about Anita’s experience. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Anita Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Anita is still over the moon with her results and is planning a maintenance treatment to keep the eye area looking fresh and supported long-term. This is an important part of the Radiance philosophy. Skin changes gradually, and gentle maintenance keeps results natural and consistent.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Dark circles can make people look far more tired than they feel. With careful diagnosis and a layered, personalised approach, we can often achieve beautiful, subtle improvement without looking “treated”. For Anita, the goal was simple: to look well-rested, confident, and like herself again. Seeing her smile at the end of her journey reminded me of why I love what I do.</span></p>\"}',1,'2026-03-20 18:05:03','2026-03-20 18:05:03','01b9c31d-d437-434e-b778-2ef6f28a4adc'),
(5429,5429,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation',NULL,1,'2026-03-20 18:05:06','2026-03-20 18:05:06','6a2f9dc6-2e27-48d6-a4f4-ed02e4d0afe9'),
(5432,5432,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation',NULL,1,'2026-03-20 18:05:19','2026-03-20 18:05:19','e631f6d8-9a22-4f75-a9e0-5461f527a81c'),
(5433,5433,1,'Sam\'s Transformation','sams-transformation',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Aesthetics by Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Sam\'s Transformation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Looking Less Tired, Feeling Like Myself Again</span></span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:13.999999999999998pt;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Sam, 60s – Wirral</span></span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"The Concern\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"> When Sam first came to see me, she said something I hear often: “I just look tired all the time.” Even on good days, when she felt well and happy, her reflection did not match how she felt inside. She had also noticed her face looking a little less firm over the past couple of years. Sam is not someone who worries greatly about her appearance. What bothered her was feeling unlike herself. Being told she looked tired, when she was not, had started to chip away at her confidence. These changes are usually subtle. Small shifts in skin quality, hydration, and volume can quietly make someone look exhausted or sad without them realising why. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Why Sam Decided to Seek Treatment </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam had spent a difficult period caring for a close family member before they passed away. Afterwards, she wanted to do something gentle and positive for herself. With her 60th birthday approaching, it felt like the right moment to start looking after her own wellbeing again. Sam came to me because she knew me through my NHS work. She said simply, “I trust you.” That meant a great deal to me. She wanted reassurance that any treatment would look natural and never overdone, which is exactly how I approach every patient. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>My Approach </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">At Sam’s consultation, we talked through what was contributing to her tired appearance. It was not one single issue, but a combination of skin texture changes, hydration loss, and very subtle volume changes. We created a gentle, personalised plan focused on improving skin quality and restoring a little softness and support where it had gradually been lost. Nothing dramatic, just small, thoughtful steps layered over time. Sam told me afterwards that the treatment was far easier than she had expected. She had mild swelling and redness for a short time, with no bruising, and felt reassured by the detailed discussion we had beforehand about risks, benefits, and realistic outcomes.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"The Results\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam’s results were subtle, but meaningful. She looked fresher and brighter, without anyone being able to say exactly why. </span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Friends and family commented that she looked well. Sam told me, <i><strong>“I looked tired all the time, even on days I wasn’t. Now I feel like me again… just on a really good day.”</strong></i> That is always the goal. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Experience </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam described her time in the clinic as calm, welcoming, and reassuring. She felt able to ask questions and appreciated honest advice about what would help and what would not. She later told me she would happily recommend me to others because she felt cared for and listened to, which is something I never take for granted, and is always the biggest compliment. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Where Sam Is Now </strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Sam is delighted with her results and feels more confident and comfortable in her skin as she celebrated her milestone birthday. She plans gentle maintenance treatments so that everything continues to look natural and consistent. This is an important part of the Radiance approach. Skin changes gradually, and thoughtful maintenance keeps results soft and natural. </span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Dr Rachel’s Reflection\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Looking tired can affect confidence far more than people expect. With careful assessment and a layered, personalised approach, we can restore brightness and freshness without looking overdone or unnatural. For Sam, the goal was simple: to recognise herself again after a difficult time. Seeing her smile when she said she felt like herself again reminded me why I love this work.</span></p>\"}',1,'2026-03-20 18:05:19','2026-03-20 18:05:19','22f75772-5a63-4c77-8264-d86e8877aa1c'),
(5449,5449,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-20 18:16:59','2026-03-20 18:16:59','a2b8c42a-28c8-4dd0-ae39-22a75f97822f'),
(5450,5450,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><i>Who Should Consider Sunekos Eye Treatment?</i></h2><h2> </h2><p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Mild hollowing but concerns about puffiness, Tyndall effect or an unnatural appearance with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">A perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Considering preventative treatment in your 30s - 40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;color:#555555;\\\">You are not suitable for tear trough filler due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-20 18:16:59','2026-03-20 18:16:59','3dd10374-1086-46b6-a8f6-48e955b347cd'),
(5451,5451,1,'Frequently Asked Questions About Sinekos','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Sunekos under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-20 18:17:00','2026-03-20 18:17:00','67cf6300-269a-4f48-a8a1-8ce0b53201fc'),
(5462,5462,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-20 18:18:40','2026-03-20 18:18:40','9aff9801-b71a-4f32-8337-1350dd9181a3'),
(5476,5476,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','802803d0-8b2c-4c62-a705-f59cf4ab4b2c'),
(5477,5477,1,'Frequently Asked Questions About Skin Consultation with Dr Rachel','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Consultation with Dr Rachel\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Consultation answered by Dr Rachel.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','fb395390-24b6-4e1f-9f52-60b839339950'),
(5478,5478,1,'What happens during a consultation?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What happens during a consultation?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"We begin by discussing what is bothering you and how your skin makes you feel. I then use advanced skin analysis to assess each layer of your skin, followed by a pHformula SP Complex sensitivity facial to understand how your skin responds to different treatment strengths. From this, I create a personalised plan tailored to your skin, including clinically formulated skincare and in-clinic treatment recommendations - giving you complete clarity on what your skin needs and how to move forward.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','4ec86b12-f273-407e-a4ab-05bdf3339a14'),
(5479,5479,1,'How does a doctor-led skin consultation differ from retail skincare advice?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How does a doctor-led skin consultation differ from retail skincare advice?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This consultation is guided by clinical expertise rather than product sales. As a GMC-registered GP, I apply medical knowledge, risk assessment, and an understanding of skin physiology to assess your skin concerns safely. Advanced skin analysis allows me to look beneath the surface, while the SP Complex sensitivity test helps ensure any recommendations are appropriate for your individual skin tolerance. Every plan is personalised, evidence-led, and designed to work with how your skin functions - giving you clear direction and confidence rather than guesswork.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','3d56be51-40ad-4423-b1f4-0a25600b4785'),
(5480,5480,1,'What are my treatment options?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What are my treatment options?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Following your consultation, I create a personalised plan tailored specifically to your skin’s needs and goals. This includes a bespoke pHformula home skincare protocol designed to support your skin daily, alongside carefully selected in-clinic treatments where appropriate. Depending on your concerns and the level of support you would benefit from, this plan may include a structured Radiance Collection programme or ongoing care through the Skin Coach Club, ensuring your skin is guided, reviewed, and supported over time.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','3dff8d7b-c6dd-41ae-9252-de7462b3267f'),
(5481,5481,1,'How long until I see results?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long until I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Timeframes vary widely depending on your starting skin health, the concerns we are addressing, and how reactive your skin is. Some improvements, such as calmer skin or reduced breakouts, may be noticed within a few weeks, while changes like pigmentation or texture take longer to evolve. Skin transformation is rarely a straight line - it is normal to have good days and more challenging phases along the way. Most patients see meaningful, lasting improvement over 3-6 months with consistent skincare and regular review, and I guide you through each stage as your skin responds.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','0c576cf7-7f44-49f7-940e-db448dec6e54'),
(5482,5482,1,'Is it safe for darker skin?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is it safe for darker skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Safety across all skin tones is central to how I practise. As a GP, I understand Fitzpatrick skin types and the risks associated with post-inflammatory hyperpigmentation, so treatments are carefully calibrated using conservative strength selection, modified protocols, and close monitoring. I work with pHformula because they are equally committed to treating all skin types safely, with formulations and protocols designed to respect melanin-rich skin and support barrier health throughout treatment.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','3788bd3e-0ad9-4946-a8e8-20360ecc12a7'),
(5483,5483,1,'What is the SP Complex sensitivity test?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the SP Complex sensitivity test?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The SP Complex sensitivity test is a pHformula facial carried out during your consultation to assess how your skin responds to active ingredients. It helps me evaluate your skin’s sensitivity on a scale of 1-10, allowing treatment strengths and protocols to be carefully selected for your individual tolerance. This step ensures treatments are both safe and effective, and helps reduce the risk of unnecessary irritation.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','eb246ce2-9b0b-484e-9961-0698b54f982b'),
(5484,5484,1,'How much does consultation cost?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much does consultation cost?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The comprehensive skin consultation is £60. This includes advanced skin analysis, the pHformula SP Complex sensitivity facial, and creation of a personalised treatment and skincare plan. Clear, transparent pricing is discussed during your consultation, based on the recommendations most appropriate for your skin.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','e5ed4b1c-4b43-46a6-82bd-c876e98a460d'),
(5485,5485,1,'Can I combine with other treatments?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Many patients benefit from combining skin resurfacing with other treatments for a more comprehensive approach to skin rejuvenation. During your consultation, I create an integrated plan that may include <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">pHformula chemical resurfacing</a>, <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">microneedling</a>, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>, or <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">collagen-stimulating treatments such as JULÄINE™</a>, sequenced carefully for safety and optimal results. For those seeking structured, longer-term support, this approach can also be delivered through a Radiance Collection programme.</p>\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','2f36d988-3bc6-4bf2-99a1-1c10c4babd3d'),
(5486,5486,1,'What is the Radiance Collection?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the Radiance Collection?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The Radiance Collection is a series of long-term skin treatment programmes designed to support meaningful, sustainable skin transformation under expert medical guidance. Designed over 9, 12, or 18 months, each programme is tailored specifically to your skin and works in harmony with your skin’s natural processes rather than chasing short-term fixes.\\nEach tier combines carefully selected in-clinic treatments with clinically formulated pHformula skincare, alongside complementary extras and regular review appointments to support consistency and progress over time. These programmes are ideal for patients ready to invest in their skin and commit to gradual, visible improvement, with measurable changes in tone, texture, hydration, and elasticity. The Radiance Collection removes guesswork, providing structure, continuity, and a clear pathway to healthier, more resilient, luminous skin - guided throughout by doctor-led care.\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','2920d0df-dd75-45cb-afa3-f551095e564c'),
(5487,5487,1,'What is the Skin Coach Club?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the Skin Coach Club?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The Skin Coach Club is a structured 8 or 12 month membership programme designed to support long-term skin health through expert guidance, education, and personalised care. It is ideal for anyone ready to step away from trial-and-error skincare and invest in a professional, science-led plan that evolves as their skin changes. Each programme includes a bespoke strategy tailored to your skin, combining clinically formulated pHformula skincare with carefully selected in-clinic treatments and regular review appointments. Using advanced skin analysis, I monitor your skin’s progress over time, adjusting your plan to ensure we are always moving in the right direction. </p><p> </p><p>The Skin Coach Club supports a wide range of concerns, including acne, rosacea and inflammatory skin conditions, pigmentation disorders, textural irregularities, visible ageing changes, and skin that feels persistently dull, dry, or fatigued. Throughout your journey, you will receive ongoing professional support - whether that is a review, a question, or reassurance - so you are never left guessing. This is not a quick fix. The Skin Coach Club is about rebuilding skin confidence from the inside out, delivering meaningful, long-lasting results through consistency, expertise, and care. Patients typically see improvements in skin strength, tone, texture, and overall resilience - often reaching a point where makeup feels optional rather than essential.</p>\"}',1,'2026-03-20 18:23:57','2026-03-20 18:23:57','de1577a9-790c-4836-82d5-194194a33367'),
(5501,5501,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','471ad86e-21d0-40d4-9e90-d107c46df821'),
(5502,5502,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','73296a1e-a851-4086-87d6-fa46cac20466'),
(5503,5503,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results vary from person to person, but most treatments last up to around 3 months, sometimes longer. Rather than suddenly wearing off, the effect fades gradually - a bit like a dimmer switch slowly turning back on - as muscle movement gently returns over that time. </p><p> </p><p>For many patients, this gradual return of movement feels very natural. Follow-up and maintenance timing can be discussed during your consultation, depending on how your face responds to treatment.</p>\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','04620f9d-a697-47dd-95e9-546353bf3272'),
(5504,5504,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Anti-wrinkle injections are not permanent. The effects gradually wear off over time as muscle movement slowly returns, and you will need repeated treatments to maintain your results. How often treatment is repeated varies from person to person and depends on how your muscles respond. Some patients choose to repeat treatment regularly every 3-4 months, while others prefer occasional top-ups. This is always discussed on an individual basis, rather than following a fixed schedule.</p>\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','646c0ee9-5d42-4eab-8335-6edf360c20a0'),
(5505,5505,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Anti-wrinkle injections are temporary by design. For most people, results last up to around 3 months and fade gradually as muscle movement slowly returns.\\nThis is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent, non-surgical solutions for expression lines caused by muscle movement.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','db2ae868-3e3e-48f2-a140-5a0f8b57174c'),
(5506,5506,1,'Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"When administered by a qualified medical professional using UK-licensed products, anti-wrinkle injections have an excellent safety profile. Botulinum toxin has been used in medical and aesthetic practice for several decades and is one of the most well-researched cosmetic treatments available.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, product handling, administration, and aftercare. Serious side effects are rare, and any risks are fully discussed with you during your consultation so you can make an informed decision.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','f53d5974-8173-490f-905e-b4967bc9b76f'),
(5507,5507,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find treatment much more comfortable than they expect. I use very fine needles and precise techniques to minimise discomfort. The sensation is usually described as a quick scratch or brief pressure, and is generally very well tolerated.\\nTreatment itself is quick, with the whole process typically taking around 20–30 minutes. Your skin is cleansed, injection points are carefully planned, and small, controlled amounts of botulinum toxin are placed into specific muscles. You can return to normal activities straight afterwards.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','7532da68-1bdf-4c29-98f9-061a565f6e71'),
(5508,5508,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. My approach is focused on achieving natural, balanced results that suit you and your preferences. Treatment is planned conservatively, with careful attention to both medical judgement and aesthetic restraint.\\nBy softening overactive muscle activity rather than over-treating, results look relaxed and refreshed rather than stiff or unnatural. Every treatment is personalised, so the level of movement preserved is guided by what feels right for you.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','216e7dca-77d9-4bf0-8d20-740c0aae9ed1'),
(5509,5509,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is little to no downtime. You may notice mild redness or tiny marks at the injection sites, which usually settle within an hour. Occasionally, small areas of bruising can occur, particularly around delicate areas, but this is generally minor and can be covered with makeup.\\nMost patients return to work and normal daily activities straight away. To help minimise the risk of bruising, it is advised to avoid strenuous exercise for 24 hours. Facial treatments and massages should be avoided for around 2 weeks following treatment.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','c3dcecab-cbef-480e-8a78-e69afacd0a17'),
(5510,5510,1,'When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most people begin to notice subtle changes from around 48 hours after treatment, as muscle activity starts to soften. Results continue to develop gradually over the following days, with the full effect usually seen by around 2 weeks.\\nThis is why a follow-up assessment is offered at the 2-week mark, it allows time to see the full result and, if needed, make any small adjustments.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','706d8b6f-3190-4712-9116-77ff8762697a'),
(5511,5511,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels. Anti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. </p><p> </p><p>Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">bio-stimulators like JULAINE™</a> or <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> to boost collagen production and improve skin laxity, and subtle <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> to artfully restore lost volume. Many of my Wirral patients support their treatment outcomes with tailored pharmaceutical-strength skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.</p>\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','436a4f5d-0676-471a-a691-652cfed0c993'),
(5512,5512,1,'Are there any side effects or risks?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most side effects of anti-wrinkle injections, if they occur, are mild and temporary. These may include slight redness at the injection sites, minor bruising, or a temporary headache. Less commonly, small areas of asymmetry or mild eyelid drooping can occur; these effects usually settle naturally over time and can be reviewed and adjusted at your follow-up appointment.\\nAs a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, administration, and aftercare. I am always available to my patients after treatment, and if you have any concerns at all, you can contact me directly and I will respond promptly. All potential risks are discussed in advance so you can feel informed, supported, and reassured throughout your treatment journey.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','f94a8fae-8e8c-45ae-8075-7792af30816a'),
(5513,5513,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Not unless you tell them. The hallmark of exceptional anti-wrinkle treatment is that people notice you look refreshed, rested, or “really well” without being able to pinpoint why. They may comment that you look less tired or ask if you have been on holiday. When performed with medical precision and aesthetic restraint, anti-wrinkle injections are virtually undetectable. You will simply look like the best version of yourself.\"}',1,'2026-03-20 18:29:19','2026-03-20 18:29:19','1c8c1038-ffdf-460a-8297-b3ac96e58af1'),
(5525,5525,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','ca567718-1932-4d2c-b415-f038351b054b'),
(5526,5526,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about JULÄINE™ Bio - Stimulator answered by Dr Rachel.\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','a2c31d55-e511-4e0b-947a-8215e51c0d3c'),
(5528,5528,1,'Is JULÄINE™ treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find JULÄINE™ treatment very comfortable. The product itself does not sting, and it is placed into the deeper layers of the skin using a soft, flexible cannula rather than multiple sharp needle injections. This helps minimise discomfort during the procedure.\\nYou may feel some pressure as the product is carefully placed, but this is generally well tolerated. Any tenderness afterwards is usually mild and, if it occurs, settles within 12-24 hours.\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','67681f06-6e5d-4f1d-aca2-c3be958e3038'),
(5529,5529,1,'How many JULÄINE™ sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many JULÄINE™ sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"For most patients, I recommend a course of 3-4 treatments, spaced around 4-6 weeks apart. This allows results to build gradually and evenly, giving your skin time to respond and produce new collagen between sessions.\\nSome patients, particularly those with more advanced skin laxity, may benefit from additional treatments. The exact number needed varies from person to person and depends on how your skin responds.\\nDuring your consultation, I will assess your skin carefully and create a personalised treatment plan tailored to your individual concerns and goals.\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','0f380de0-cdfd-4d43-8d6b-e4f127040c15'),
(5531,5531,1,'How long do JULÄINE™ results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do JULÄINE™ results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results typically last around 18-24 months following a complete treatment course of 3 sessions. This incredible longevity is because JULÄINE™ works by stimulating your skin to produce its own collagen, rather than relying on a temporary product to create change.\\nOver time, the PLLA treatment material is naturally and evenly broken down by the body, while the collagen your skin has produced continues to support firmness, texture, and structure. For many patients, a single maintenance treatment every 18-24 months is enough to help sustain results long-term.\\nThis makes JULÄINE™ a cost-effective, long-term approach to skin health, with benefits that continue well beyond the treatment period itself.\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','086681d7-239f-4c70-b84a-24adb8b3ce20'),
(5532,5532,1,'Is there downtime after JULÄINE™?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there downtime after JULÄINE™?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is minimal. You may notice small marks where the cannula was inserted, along with mild swelling for 24-48 hours. Occasionally, slight bruising can occur, but this is usually minor and settles on its own.\\nMost patients return to work and normal daily activities immediately. I advise avoiding strenuous exercise for 24 hours to reduce the risk of bruising. One of the advantages of JULÄINE™ is that aftercare is straightforward, with no intensive massage or complicated routines required.\\nAs a general guide, I recommend avoiding aesthetic treatments in the week leading up to important events, and allowing a 48-hour buffer for any visible marks to settle.\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','5e886910-5cb4-4c60-ada6-383c63c4d21a'),
(5533,5533,1,'Can JULÄINE™ be combined with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can JULÄINE™ be combined with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, JULÄINE™ works beautifully alongside other aesthetic treatments for comprehensive facial rejuvenation. It can be combined with <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">anti-wrinkle injections </a>(regeneration plus wrinkle prevention), <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> (long-term regeneration plus immediate volume where needed), <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> (collagen stimulation plus hydration), and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> (bio-stimulation plus cellular repair). I will discuss the optimal combination approach during your consultation based on your specific concerns.</p>\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','78ed9687-b9d7-4941-95b8-e1b7f6495ab5'),
(5534,5534,1,'Is JULÄINE™ safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes - when administered by a qualified medical professional, JULÄINE™ has an excellent safety profile. Poly-L-lactic acid (PLLA) has been used safely in medicine for decades, including in dissolvable sutures and orthopaedic applications. JULÄINE™ LASYNPRO™ technology represents the latest advancement in PLLA bio-stimulation, working through a low-inflammatory pathway for superior safety compared to older-generation products. </p><p> </p><p>Over time, the treatment material is naturally broken down by the body, while the collagen your skin produces remains. This allows results to develop gradually and integrate naturally with your own tissue. As a GMC-registered doctor and a member of CMAC (the Complications in Medical Aesthetics Collaborative), I follow strict medical standards for assessment, treatment planning, injection technique, and aftercare. While complications are uncommon when treatment is carried out appropriately, this medical oversight ensures that safety is prioritised at every stage.</p>\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','d73450e7-2852-4f0c-a242-b80d983d7684'),
(5535,5535,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology. </p><p> </p><p>In clinical practice, this more controlled behaviour in the tissue is associated with a more predictable treatment experience, improved comfort, and a reduced likelihood of uneven collagen stimulation or unwanted nodules. These factors are particularly important when treating delicate areas and when planning results that develop gradually and look natural. For me as a doctor, this combination of innovative formulation, strong scientific underpinning, and reliable performance in the skin is why JULÄINE™ is the collagen-stimulating treatment I have chosen to use in my clinic.</p>\"}',1,'2026-03-20 18:34:52','2026-03-20 18:34:52','f6d4e42f-532b-4c9e-9ef0-7c7b779141a8'),
(5549,5549,1,'When will I see results from chemical peels?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from chemical peels?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients notice a lovely, healthy glow within a few days as the skin surface refreshes, but the greater improvements in pigmentation, texture, acne, or fine lines usually develop over 6-12 weeks as your skin renews itself. Results are cumulative, so each treatment in your course builds on the last, which is why I usually recommend a structured series of treatments for the best, most natural-looking improvement.</p>\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','07f1775c-390f-4980-a5b4-1d8aa97dd705'),
(5550,5550,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','c0a4bdce-7ade-4197-bb39-c5413669dd37'),
(5551,5551,1,'Frequently Asked Questions About Chemical Peel','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Chemical Peel\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Chemical Peel answered by Dr Rachel.\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','5737922c-c36e-4dc9-ae2a-ae636f63fe79'),
(5552,5552,1,'How much downtime do chemical peels require?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much downtime do chemical peels require?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most of the resurfacing treatments I offer use the pHformula dermatological controlled skin resurfacing approach, which is designed to work with your skin rather than aggressively stripping it. This means more reliable results with far less irritation or downtime than traditional peels. If you prepare your skin with the recommended homecare first, most patients experience minimal downtime - usually just mild dryness, light flaking, or occasional breakouts as congestion clears. You can normally return to normal activities straight away. </p><p> </p><p>For patients who need deeper resurfacing, I also offer carefully selected TCA treatments, but even then the aim is controlled, medically supervised improvement with only mild peeling rather than dramatic shedding. I will always talk you through what to expect for your specific treatment and skin type, and we can plan this carefully within your personalised Radiance Collection journey so results are gradual, safe, and natural-looking.</p>\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','9ea356d1-5787-4396-bab2-536903cb4a41'),
(5553,5553,1,'Do chemical peels hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do chemical peels hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>No - the resurfacing treatments I offer are not painful. With pHformula dermatological controlled skin resurfacing, most patients feel only a gentle warmth or light tingling for a few minutes, because the treatment is designed to work with your skin barrier rather than aggressively stripping it. </p><p> </p><p>If your skin has been prepared with the recommended homecare, treatments are usually very comfortable, and afterwards the skin may feel slightly warm or tight for a short time, similar to mild sun exposure. There are very deep peels that can be uncomfortable, but I do not offer these in the clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.</p>\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','a40d632a-9dda-4bb4-975b-bcc8e81aba18'),
(5554,5554,1,'How many chemical peel sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many chemical peel sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This depends on your skin concerns and what we are trying to improve. With pHformula dermatological controlled skin resurfacing, I usually recommend a course of 6 treatments, spaced 4-6 weeks apart, to allow gradual and safe improvement. For targeted TCA resurfacing, most patients need 2-3 treatments, again spaced 4-6 weeks apart. I will assess your skin carefully during consultation and tailor the plan to your goals, skin type, and how your skin responds.\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','c19e84b8-1a4b-414a-bd42-ce5ff4467030'),
(5555,5555,1,'When will I see results from chemical peels?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from chemical peels?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients notice a lovely, healthy glow within a few days as the skin surface refreshes, but the greater improvements in pigmentation, texture, acne, or fine lines usually develop over 6-12 weeks as your skin renews itself. Results are cumulative, so each treatment in your course builds on the last, which is why I usually recommend a structured series of treatments for the best, most natural-looking improvement.</p>\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','d7a6ed37-2404-4817-b30c-dbe6adc6d83b'),
(5556,5556,1,'Are chemical peels safe for dark skin?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are chemical peels safe for dark skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes - the resurfacing treatments I offer are designed to be suitable for all skin types and tones. I use the pHformula dermatological controlled skin resurfacing approach, which works with the skin barrier rather than aggressively stripping it, making it much safer and more predictable across different Fitzpatrick types. As a GP, I still assess your skin carefully first and prepare it with the right homecare so we minimise any risk of post-inflammatory pigmentation. With the correct protocols and doctor-led treatment, chemical resurfacing can safely improve pigmentation, acne, and texture in every skin tone.\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','af0b3ff5-b12c-40fb-9a89-879223a5ef77'),
(5557,5557,1,'What is the difference between glycolic, salicylic, and TCA peels?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between glycolic, salicylic, and TCA peels?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Traditional peels use a single acid - glycolic acid helps with dullness and fine texture, salicylic acid targets oily or acne-prone skin, and TCA (trichloroacetic acid) works more deeply for pigmentation and ageing changes.\\nIn my clinic, most treatments use pHformula advanced controlled skin resurfacing, which combines multiple acids in a science-led formulation so I can tailor treatment precisely to your skin concerns while keeping irritation low and results more predictable.\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','31b2376e-3d92-427c-8ce9-841e52044c31'),
(5558,5558,1,'Can I combine chemical peels with other treatments?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine chemical peels with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Combining treatments often gives the most natural, effective results when each one targets a different layer of the skin. Chemical resurfacing improves the surface, <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">microneedling </a>supports deeper collagen, <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> improve hydration and skin quality, and treatments like <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a> or carefully placed <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> restore structural support where needed. We approach this step by step over time, not all at once. I plan your treatments in the right sequence and pace, allowing your skin to recover and respond properly, so the final result looks natural, balanced, and truly healthy.</p>\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','c941a489-db19-415b-9527-fe71d3e7beb2'),
(5559,5559,1,'What skincare should I use after a chemical peel?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after a chemical peel?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"After resurfacing, your skin needs gentle, supportive care. I usually recommend a simple routine with a mild cleanser, soothing moisturiser, and strict daily SPF 50 while the skin settles, and we pause stronger actives until your barrier has recovered. If you are having pHformula resurfacing or TCA treatments, you will already be on the appropriate clinical-grade pHformula homecare, which I tailor to support healing, protect your results, and prepare your skin safely for the next stage of treatment.\\nThis is all discussed in detail during your skin consultation, so you know exactly what to use and when.\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','e863a045-f6dd-419e-87c2-f2100af9ae24'),
(5560,5560,1,'How do I prevent pigmentation after a peel?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How do I prevent pigmentation after a peel?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The most important step is protecting your skin from sun exposure while it heals. I recommend daily broad-spectrum SPF 50, reapplying regularly, and avoiding strong sun or heat for the first few weeks after treatment. I also minimise risk by preparing your skin properly beforehand with the right homecare and choosing the safest resurfacing approach for your skin type. If you are having pHformula resurfacing or TCA treatments, you will already be on the appropriate clinical-grade pHformula homecare to support healing and reduce pigmentation risk.\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','ed2ea59d-80da-4621-82d9-d0731b24969b'),
(5561,5561,1,'Can chemical peels treat acne?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can chemical peels treat acne?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes - chemical peels can be very helpful for acne and breakouts. pHformula dermatological controlled skin resurfacing, and in particular carefully selected TCA treatments, work to clear congestion, calm inflammation, and support healthier cell turnover so skin becomes clearer over time. Acne almost always responds best to a structured course of treatments alongside the right homecare, and I will assess your skin carefully to create a plan that treats both active breakouts and any marks or scarring safely and effectively.</p>\"}',1,'2026-03-20 18:41:36','2026-03-20 18:41:36','d06c294c-244e-4d6d-918b-c32fc1d6978c'),
(5567,5567,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-20 18:51:27','2026-03-20 18:51:27','bdbca4be-0550-477f-a5f8-37a466f0fb84'),
(5568,5568,1,'Frequently Asked Questions About Microneedling','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Microneedling\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Microneedling Treatment answered by Dr Rachel.\"}',1,'2026-03-20 18:51:27','2026-03-20 18:51:27','4c5b7f40-0493-4f3d-b558-5485be064301'),
(5570,5570,1,'Does microneedling hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does microneedling hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe microneedling as mildly uncomfortable rather than painful. During treatment, you feel pressure and a light scratching sensation as the device passes over the skin. Sensation varies depending on individual sensitivity and the area being treated, with finer areas such as the upper lip feeling slightly more intense. Treatment is very well tolerated and the discomfort is brief. Afterwards, the skin typically feels warm and tight, similar to mild sunburn, and this settles quickly.\"}',1,'2026-03-20 18:51:27','2026-03-20 18:51:27','72df0a97-c9d6-4278-9087-abd2a2d53749'),
(5571,5571,1,'When will I see results from microneedling?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"You may notice an early improvement in radiance once initial redness settles, but the most meaningful results develop gradually over time. Microneedling works by stimulating your skin’s natural collagen production, which is a slow, regenerative process. Around 12 weeks is when results become most noticeable, as newly formed collagen has had time to mature and strengthen the skin. Improvements in texture, firmness and overall skin quality continue to develop for several months after treatment, creating results that look natural, refreshed and long-lasting rather than instant or artificial.\"}',1,'2026-03-20 18:51:27','2026-03-20 18:51:27','538eb193-3f69-4021-aa53-4c082ba8f77d'),
(5576,5576,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-20 18:57:13','2026-03-20 18:57:13','bc91eb27-300b-4009-b907-55243150017c'),
(5577,5577,1,'Frequently Asked Questions About Microneedling','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Microneedling\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Microneedling Treatment answered by Dr Rachel.\"}',1,'2026-03-20 18:57:13','2026-03-20 18:57:13','e514fb69-66de-44f6-9f1c-96e5fe6a64ab'),
(5578,5578,1,'When will I see results from microneedling?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"You may notice an early improvement in radiance once initial redness settles, but the most meaningful results develop gradually over time. Microneedling works by stimulating your skin’s natural collagen production, which is a slow, regenerative process. Around 12 weeks is when results become most noticeable, as newly formed collagen has had time to mature and strengthen the skin. Improvements in texture, firmness and overall skin quality continue to develop for several months after treatment, creating results that look natural, refreshed and long-lasting rather than instant or artificial.\"}',1,'2026-03-20 18:57:13','2026-03-20 18:57:13','7f51f7ff-63d5-4e9f-ac4b-5f941e8c1c3d'),
(5580,5580,1,'What is the downtime after microneedling?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime after microneedling is usually minimal, but this can vary from person to person. Most patients experience redness for 24-48 hours, with the skin feeling warm, tight or slightly flushed. Any swelling is typically mild and short-lived. Between days 3–5, you may notice light flaking or dryness as the skin renews. Many patients feel comfortable returning to work straight away, and makeup can usually be applied after 12-24 hours if needed. I recommend avoiding strenuous exercise for 24 hours and swimming, saunas or steam rooms for 48 hours to support optimal healing. Compared with more intensive resurfacing treatments, recovery is generally quick and well-tolerated.\"}',1,'2026-03-20 18:57:33','2026-03-20 18:59:52','f126f54b-81be-4a66-bb32-283427d0d805'),
(5594,5594,1,'Is microneedling safe for dark skin?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is microneedling safe for dark skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, microneedling is considered one of the safest skin treatments for darker skin tones, including Fitzpatrick types IV–VI. Unlike some heat-based treatments, microneedling works by creating controlled micro-channels in the skin without using heat or causing surface damage. This significantly reduces the risk of post-inflammatory hyperpigmentation when performed correctly. Treatment is carefully tailored, including needle depth, technique and aftercare, to suit your skin type and individual needs. When planned and delivered appropriately, microneedling can be a safe and effective option for improving skin texture, scarring and overall skin quality in darker skin tones.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','5657e33e-7f0d-4529-b869-f9059dfc3301'),
(5598,5598,1,'Can microneedling help with hair loss?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can microneedling help with hair loss?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Scalp microneedling can support hair growth by stimulating hair follicles, improving circulation and encouraging a healthier scalp environment. It is most effective for androgenetic (male-pattern or female-pattern) hair loss and general hair thinning where follicles are still present. Results are often enhanced when microneedling is combined with regenerative treatments such as polynucleotides or biostimulators like JULAINE™, which help support follicle health and improve the quality of the surrounding tissue. A course of treatments is usually recommended, typically monthly sessions followed by maintenance, with improvements developing gradually over 4-6 months as the hair growth cycle responds. Microneedling is not suitable for areas where hair follicles are no longer active.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','b793e0e7-6a90-4a3f-b6e6-3f22668fe5d6'),
(5600,5600,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','b0a2eaac-5636-4e5c-9409-3e21809590d5'),
(5601,5601,1,'Frequently Asked Questions About Microneedling','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Microneedling\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Microneedling Treatment answered by Dr Rachel.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','afe13128-3195-4861-aebd-dc308bdd251d'),
(5603,5603,1,'Does microneedling hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does microneedling hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe microneedling as mildly uncomfortable rather than painful. During treatment, you feel pressure and a light scratching sensation as the device passes over the skin. Sensation varies depending on individual sensitivity and the area being treated, with finer areas such as the upper lip feeling slightly more intense. Treatment is very well tolerated and the discomfort is brief. Afterwards, the skin typically feels warm and tight, similar to mild sunburn, and this settles quickly.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','b91d03a8-6b64-4263-a8e9-66c3c3629d73'),
(5604,5604,1,'When will I see results from microneedling?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"You may notice an early improvement in radiance once initial redness settles, but the most meaningful results develop gradually over time. Microneedling works by stimulating your skin’s natural collagen production, which is a slow, regenerative process. Around 12 weeks is when results become most noticeable, as newly formed collagen has had time to mature and strengthen the skin. Improvements in texture, firmness and overall skin quality continue to develop for several months after treatment, creating results that look natural, refreshed and long-lasting rather than instant or artificial.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','9fa3b002-5afc-40f3-b8d7-531fb8b641ff'),
(5605,5605,1,'What is the downtime after microneedling?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime after microneedling is usually minimal, but this can vary from person to person. Most patients experience redness for 24-48 hours, with the skin feeling warm, tight or slightly flushed. Any swelling is typically mild and short-lived. Between days 3–5, you may notice light flaking or dryness as the skin renews. Many patients feel comfortable returning to work straight away, and makeup can usually be applied after 12-24 hours if needed. I recommend avoiding strenuous exercise for 24 hours and swimming, saunas or steam rooms for 48 hours to support optimal healing. Compared with more intensive resurfacing treatments, recovery is generally quick and well-tolerated.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','106fb3a8-be4e-4690-ab46-d96e4884ff45'),
(5606,5606,1,'Is microneedling safe for dark skin?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is microneedling safe for dark skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, microneedling is considered one of the safest skin treatments for darker skin tones, including Fitzpatrick types IV–VI. Unlike some heat-based treatments, microneedling works by creating controlled micro-channels in the skin without using heat or causing surface damage. This significantly reduces the risk of post-inflammatory hyperpigmentation when performed correctly. Treatment is carefully tailored, including needle depth, technique and aftercare, to suit your skin type and individual needs. When planned and delivered appropriately, microneedling can be a safe and effective option for improving skin texture, scarring and overall skin quality in darker skin tones.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','3a561ecd-6b67-4198-ba8d-75cc8a7a1209'),
(5610,5610,1,'Can microneedling help with hair loss?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can microneedling help with hair loss?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Scalp microneedling can support hair growth by stimulating hair follicles, improving circulation and encouraging a healthier scalp environment. It is most effective for androgenetic (male-pattern or female-pattern) hair loss and general hair thinning where follicles are still present. Results are often enhanced when microneedling is combined with regenerative treatments such as polynucleotides or biostimulators like JULAINE™, which help support follicle health and improve the quality of the surrounding tissue. A course of treatments is usually recommended, typically monthly sessions followed by maintenance, with improvements developing gradually over 4-6 months as the hair growth cycle responds. Microneedling is not suitable for areas where hair follicles are no longer active.\"}',1,'2026-03-20 19:03:00','2026-03-20 19:03:00','81f078ab-dd7c-4477-9ea5-b2fef2f0dbae'),
(5617,5617,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-20 19:05:26','2026-03-20 19:05:26','8ceb013a-e6ec-4ee2-b602-d4f88568b3d3'),
(5618,5618,1,'Frequently Asked Questions About Skin Booster Injectable Treatments','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Booster Injectable Treatments\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Booster Injectable Treatments answered by Dr Rachel.\"}',1,'2026-03-20 19:05:26','2026-03-20 19:05:26','a32a7b07-dbdb-44eb-b0c6-347dd07d0aa6'),
(5619,5619,1,'Do skin boosters hurt?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do skin boosters hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find skin booster treatment very comfortable. You may feel gentle pressure and occasional pinching as the micro-injections are delivered using either ultra-fine needles or a cannula, depending on the area being treated. Any discomfort is brief and well tolerated. Ice packs can be used before and after treatment to further enhance comfort, and many patients are pleasantly surprised by how easy the treatment feels.\"}',1,'2026-03-20 19:05:26','2026-03-20 19:05:26','cfbce8b1-1de3-4707-ac7d-20fbf17316fd'),
(5620,5620,1,'When will I see results from skin boosters?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from skin boosters?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Improvements develop gradually as the skin responds to treatment. You may notice increased hydration and luminosity once any minor swelling settles over the first 24–48 hours. More meaningful changes develop over the following weeks as hyaluronic acid supports fibroblast activity and collagen production. Peak results are typically seen around 12 weeks, particularly when treatments are delivered as a 3-session course spaced monthly, allowing improvements in skin quality to build progressively and naturally over time.\"}',1,'2026-03-20 19:05:26','2026-03-20 19:05:26','6d36ff6e-b119-4384-af18-868059858f7e'),
(5621,5621,1,'Are skin boosters safe?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are skin boosters safe?\"}',1,'2026-03-20 19:05:26','2026-03-20 19:05:26','83aff59f-944c-46e9-882a-ace71e3005f5'),
(5633,5633,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','7ff61363-f164-443d-a87e-94aca56bc039'),
(5634,5634,1,'Frequently Asked Questions About Skin Booster Injectable Treatments','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Booster Injectable Treatments\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Booster Injectable Treatments answered by Dr Rachel.\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','9bd54de7-1675-423d-9215-cf28664275b3'),
(5635,5635,1,'Are skin boosters safe?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are skin boosters safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, when administered by a qualified medical professional, skin boosters have an excellent safety profile. Hyaluronic acid is a naturally occurring substance within the body, which makes allergic reactions very rare. The products I use, including Profhilo® and Neauvia Hydro Deluxe, are clinical-grade and manufactured to strict medical standards, with strong clinical evidence supporting their safety. As a GMC-registered GP and member of CMAC (Complications in Medical Aesthetic Collaborative), I follow comprehensive safety protocols and carry emergency equipment to manage any adverse events promptly, although serious complications are exceptionally uncommon.\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','ed222668-9184-4aae-8e68-089e8945ff4c'),
(5636,5636,1,'What is the downtime after skin boosters?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after skin boosters?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is usually minimal. Immediately after treatment, you may notice small injection marks with mild swelling or redness. These typically settle within 24-72 hours. Some patients experience light bruising, particularly in more delicate areas such as under the eyes. Most people feel comfortable returning to work and normal daily activities straight away. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','1319a7b9-2cc8-4748-96af-5486a4087524'),
(5637,5637,1,'How long do skin booster results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do skin booster results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results typically last between 6-12 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolic rate. Patients with good underlying skin health may find results last closer to 12 months, while those with more advanced skin ageing or sun damage may notice results gradually fading around 6-9 months. Maintenance treatments every 6 months help sustain optimal skin quality, and some patients find they require less frequent maintenance over time as overall skin health improves.\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','8dc90e48-60ec-48cb-9bfa-8d3db9a4bbcd'),
(5638,5638,1,'How many treatments will I need?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I usually recommend an initial course of 3 treatments spaced 4 weeks apart to achieve optimal, cumulative improvement. This allows hydration and bio-remodelling to build progressively with each session. After completing the initial course, maintenance treatments every 6 months help sustain results. Some patients with more significantly dehydrated or sun-damaged skin may benefit from additional treatments during the initial phase, which can be discussed during your consultation.\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','d68cfb52-5d43-4fdd-ac61-979030f8b38b'),
(5639,5639,1,'What is the difference between skin boosters and Profhilo?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between skin boosters and Profhilo?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Both are injectable hyaluronic acid treatments used to improve skin quality, but they work in slightly different ways. Neauvia Hydro Deluxe uses non-cross-linked hyaluronic acid combined with calcium hydroxyapatite. It is delivered in a grid pattern of micro-injections across the treatment area to deeply hydrate the dermis and support collagen stimulation. This approach focuses on improving hydration, resilience and overall skin quality, especially in areas prone to dehydration and texture loss. Profhilo® is a high-concentration hyaluronic acid formulation that is injected at fewer strategic points (typically 5-10 per side). Once placed, it spreads naturally through the tissue, promoting bio-remodelling by stimulating multiple types of collagen and elastin. This leads to improved tissue firmness and a subtle lifting effect alongside enhanced hydration. Many patients benefit from a strategic combination of both, tailored to their individual skin goals and skin quality.</p>\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','d2fb4a2c-2d41-4e81-a99e-a6228c196d14'),
(5640,5640,1,'Can I combine skin boosters with other treatments?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine skin boosters with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely, and this is often how the best results are achieved. Skin boosters sit beautifully within my Radiance Collection programmes, where treatments are layered and timed strategically to address skin quality, structure and long-term skin health. They can be combined with anti-wrinkle injections to support hydration alongside wrinkle prevention, dermal fillers where volume restoration is needed, and <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™ to stimulate collagen</a> and improve firmness over time. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> can further enhance collagen production and skin renewal, while pharmaceutical-grade skincare such as pHformula supports the skin barrier and helps maintain results at home. Your treatment plan and timeline will always be personalised following consultation.</p>\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','3605f443-09b8-4352-85fa-fa6040602289'),
(5641,5641,1,'How can I extend my skin booster results?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How can I extend my skin booster results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Several factors influence how long your results last, and small daily habits can make a meaningful difference: </p><p> </p><ul><li><strong>Daily SPF 50: </strong>UV exposure accelerates collagen loss, so consistent sun protection is essential. </li></ul><p> </p><ul><li><strong>High-grade pHformula skincare: </strong>Targeted actives delivered through advanced formulations, including retinoids, vitamin C and peptides, help support collagen production, optimise skin renewal and maintain results between treatments. </li></ul><p> </p><ul><li><strong>Hydration:</strong> Drinking adequate water each day supports hyaluronic acid function, as it binds water within the skin. </li></ul><p> </p><ul><li><strong>Lifestyle factors: </strong>Smoking and excessive alcohol intake both impair collagen production and dehydrate the skin, shortening result longevity. </li></ul><p> </p><ul><li><strong>Complementary treatments:</strong> Collagen-stimulating options such as JULAINE™ and medical microneedling can further enhance and extend results when layered strategically within my Radiance Collection, where treatments are planned and timed to support long-term skin health and optimal outcomes. </li></ul><p> </p><p>I provide detailed aftercare and skin guidance following treatment to help you maintain and maximise your results over time.</p>\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','9f54f792-ec8f-4cfb-a08b-5943d5943478'),
(5642,5642,1,'Will skin boosters help my acne scars?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will skin boosters help my acne scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Skin boosters can help improve mild, superficial atrophic (indented) acne scars by hydrating the tissue and supporting collagen production. However, they are not the primary treatment for more established or deeper scarring. For moderate to severe acne scars, I often recommend more targeted options such as biostimulators like <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a> to improve collagen quality and firmness, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> to support cellular repair, <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">medical microneedling</a> to stimulate collagen production, or <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">chemical resurfacing</a> to improve skin texture and turnover. In some cases, I may also recommend referral for laser-based treatments where appropriate. During your consultation, I will assess your scarring in detail and recommend the most effective, personalised treatment plan.</p>\"}',1,'2026-03-20 19:14:32','2026-03-20 19:14:32','d0320c6e-be78-4c4b-ae1e-9e9acf51418d'),
(5655,5655,1,'How many treatments will I need?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients benefit from an initial course of 3-4 treatments spaced 2-3 weeks apart, which helps build a strong regenerative foundation within the skin. The exact number of sessions depends on your skin quality and the indication for treatment. Concerns such as more significant scarring or hair loss often require a longer course. After completing the initial programme, 1 maintenance treatment every 6 months helps sustain cellular activation and continue improving skin quality over time. Your treatment plan will always be tailored following a detailed consultation.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','4c5e6854-81db-4330-8266-43c9d91b0b5d'),
(5656,5656,1,'Are they suitable for menopausal skin?','are-they-suitable-for-menopausal-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are they suitable for menopausal skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, polynucleotides can be particularly helpful for skin changes associated with menopause. Declining oestrogen levels contribute to skin thinning, dryness, reduced elasticity and lower collagen production. Polynucleotides support fibroblast activity and the cellular processes that are normally influenced by oestrogen, helping to improve skin resilience and overall quality over time. Many of my Wirral patients in their 40s, 50s and 60s find this a valuable option for addressing menopausal skin changes as part of a wider, personalised skin plan.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','c816194e-dd3d-4369-8d8c-9f4a4dd7ec86'),
(5657,5657,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','1d433c57-4178-4dfd-b26d-e63bf25fd4b9'),
(5658,5658,1,'Frequently Asked Questions About Polynucleotides Treatment','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Polynucleotides Treatment\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Polynucleotides Treatment answered by Dr Rachel.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','e9bfb84f-ea39-4f9c-b3d5-680c27f73acd'),
(5659,5659,1,'Are polynucleotides safe?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are polynucleotides safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, when administered by a qualified medical professional, polynucleotides have an excellent safety profile. They have been used in regenerative medicine for many years and are supported by extensive clinical research. The DNA fragments are highly purified and biocompatible, meaning the body recognises and integrates them naturally. Allergic reactions are very rare. In my clinic, I use clinical-grade products such as Plinest and follow strict medical protocols, with full emergency equipment in place. Safety, careful assessment and appropriate patient selection are always my priority.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','0d3c0bd1-74a7-474a-af43-b86b923a6a7f'),
(5660,5660,1,'How long before I see results?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long before I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results develop gradually as the skin responds and new collagen, elastin and hyaluronic acid are produced. Subtle improvements in hydration and skin quality are often noticed within the first few weeks. More visible changes develop progressively over 8-12 weeks, with results typically most noticeable at around the 3-month mark, once new collagen has matured. This gradual process supports natural-looking regeneration rather than sudden change. Results can last 9-12 months or longer, with maintenance treatments helping to prolong the benefits.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','bc2a782f-7a27-4f92-bd2d-4d881b474313'),
(5661,5661,1,'Is there any downtime?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is usually minimal. You may notice small injection marks and mild swelling for 24-48 hours as the product settles into the skin. Some patients experience temporary under-eye puffiness for a day or two, and occasional bruising can occur. Most people feel comfortable returning to normal activities straight away. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12-24 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','fbcca90e-35a9-4d1f-a913-41962b380729'),
(5662,5662,1,'Does it hurt?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe the sensation as mild discomfort with some brief stinging during the injections. For comfort, I can apply a topical anaesthetic cream beforehand, which helps reduce sensation. Ultra-fine needles are used to minimise tissue trauma, and the treatment is generally very well tolerated.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','521ce798-e157-4cd9-af67-d6bc4ee58fde'),
(5663,5663,1,'How many treatments will I need?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients benefit from an initial course of 3-4 treatments spaced 2-3 weeks apart, which helps build a strong regenerative foundation within the skin. The exact number of sessions depends on your skin quality and the indication for treatment. Concerns such as more significant scarring or hair loss often require a longer course. After completing the initial programme, 1 maintenance treatment every 6 months helps sustain cellular activation and continue improving skin quality over time. Your treatment plan will always be tailored following a detailed consultation.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','322734e7-d1ff-49d5-8c31-64e13a0ae58f'),
(5664,5664,1,'What\'s the difference between polynucleotides and Profhilo®?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What\'s the difference between polynucleotides and Profhilo®?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Polynucleotides are highly purified DNA fragments derived from salmon that work by stimulating fibroblasts to support collagen, elastin and hyaluronic acid production. They focus on cellular repair and tissue regeneration, making them particularly helpful for delicate areas such as the under-eyes, crepey skin and acne scarring. Results typically develop gradually and can last 9-12 months or longer.\\nProfhilo® is a high-concentration hyaluronic acid treatment designed to improve hydration and skin laxity through bio-remodelling. It focuses on enhancing skin hydration and firmness, with results usually lasting around 6-9 months.\\nThese treatments work in different but complementary ways, and many patients benefit from a combined or staged approach when used strategically as part of a personalised treatment plan.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','f9bc3091-f7ea-4b42-887f-c837faa2e695'),
(5665,5665,1,'Can polynucleotides treat my dark circles?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can polynucleotides treat my dark circles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This depends on the underlying cause of the dark circles. Polynucleotides are particularly effective for structural or vascular dark circles, where thin under-eye skin allows underlying blood vessels to show through. In these cases, they help improve skin thickness and support microcirculation, gradually softening the appearance of darkness. Polynucleotides are not designed to treat pigment-related dark circles caused by melanin, which are usually better managed with treatments such as chemical peels or lasers. During your consultation, I will carefully assess your under-eye area to identify the cause and recommend the most appropriate treatment approach for you.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','53b64d07-9782-41e0-9160-eff1b8f7cc2e'),
(5666,5666,1,'Can I combine polynucleotides with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine polynucleotides with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely, and this is often where results are really elevated. Polynucleotides work very well alongside other aesthetic treatments, supporting skin quality while complementary treatments address other specific concerns. They can be combined with anti-wrinkle injections to improve skin quality while softening lines, dermal fillers to support tissue health alongside volume restoration, and <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a> to stimulate even more collagen and improve skin firmness over time. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> can further enhance collagen production, while pharmaceutical-grade skincare such as <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">pHformula</a> supports surface renewal and long-term skin health. Many patients choose to incorporate polynucleotides as part of my Radiance Collection programmes, where treatments are layered and timed strategically. I will always create a bespoke treatment plan and timeline during your consultation.</p>\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','f6880eb9-5d95-4777-8ed6-647cf90f3bfa'),
(5667,5667,1,'Are they suitable for menopausal skin?','are-they-suitable-for-menopausal-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are they suitable for menopausal skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, polynucleotides can be particularly helpful for skin changes associated with menopause. Declining oestrogen levels contribute to skin thinning, dryness, reduced elasticity and lower collagen production. Polynucleotides support fibroblast activity and the cellular processes that are normally influenced by oestrogen, helping to improve skin resilience and overall quality over time. Many of my Wirral patients in their 40s, 50s and 60s find this a valuable option for addressing menopausal skin changes as part of a wider, personalised skin plan.\"}',1,'2026-03-20 19:57:20','2026-03-20 19:57:20','2bfb4a2a-33dc-4e46-864d-7049fd2d7a71'),
(5680,5680,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-20 20:04:02','2026-03-20 20:04:02','5491f58f-6b26-4176-90fc-3a5edf82240e'),
(5681,5681,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-03-20 20:04:02','2026-03-20 20:04:02','b2d4a26d-cf44-4168-a80d-4e83199bc7d8'),
(5683,5683,1,'How long do dermal fillers last?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do dermal fillers last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The results from fillers generally last between 6 and 18 months. But, as with all treatments, results vary between individual metabolisms, products used and the area(s) injected. </p><p> </p><p>As a general guide: </p><p><strong>Lips:</strong> 6-9 months (higher movement area metabolises filler faster) </p><p><strong>Cheeks: </strong>12-18 months (lower movement area, deeper placement) </p><p><strong>Jawline/Chin:</strong> 12-18 months </p><p><strong>Nasolabial Folds:</strong> 9-12 months </p><p> </p><p>Your body gradually metabolises hyaluronic acid over time, so results fade naturally and gracefully. With regular, well-planned treatments, many patients find they require less filler over time as skin quality and underlying support improve. When dermal fillers are combined with treatments that target other layers of the skin - such as collagen stimulation or skin-quality therapies - results are often enhanced further, creating a more balanced, longer-lasting rejuvenation rather than relying on volume alone.</p>\"}',1,'2026-03-20 20:04:02','2026-03-20 20:04:02','11098134-daa5-4389-888f-37237206d3fd'),
(5684,5684,1,'What is the aftercare for dermal fillers?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the aftercare for dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"After dermal filler treatment, aftercare is simple, and most patients return to normal activities straight away. You will be provided with clear, written aftercare instructions, and I remain available should you have any concerns during the healing process.\\nAs a general guide, it is advised to avoid strenuous exercise, alcohol, and excessive heat (such as saunas or steam rooms) for 24-48 hours, and to avoid massaging or applying pressure to the treated areas unless advised. Mild swelling, tenderness, or bruising can occur and usually settle within a few days.\\nYou are encouraged to attend your complimentary 4-week review appointment so we can review your results and make sure you are happy with how everything has settled. If you have any concerns at any point, you are encouraged to get in touch - ongoing support and reassurance are an important part of doctor-led care.\"}',1,'2026-03-20 20:04:02','2026-03-20 20:04:02','7fe4bf0d-f6d9-48d9-a2f2-94afb3b3081b'),
(5686,5686,1,'Can dermal fillers look natural?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers look natural?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely - when you go to the right practitioner. Natural-looking results rely on precise placement, a deep understanding of facial anatomy, and a conservative approach where less really is more. When people think about dermal fillers, they often picture the obvious, overdone results they have seen in the media. What is less often noticed are the many people you pass every day who have had filler and look simply well rested and refreshed - because good treatment should not be detectable. </p><p> </p><p>My philosophy is <i><strong>“refreshed, never changed”</strong></i>. I am passionate about creating natural, subtle, and balanced results that respect your individual anatomy and enhance your unique features. I use carefully measured amounts of filler, placed strategically to restore youthful proportions rather than add unnecessary volume.</p>\"}',1,'2026-03-20 20:04:02','2026-03-20 20:04:02','1c00ce3e-95bc-482e-9055-f78d5bbfc100'),
(5687,5687,1,'What is the difference between dermal fillers and anti-wrinkle injections?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between dermal fillers and anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>These treatments work in different ways and are often used together for the most natural, balanced results. </p><p> </p><p><strong>Dermal fillers:</strong></p><ul><li>Restore volume and structural support </li><li>Improve facial contours and balance </li><li>Help hydrate the skin from within </li><li>Treat areas of hollowing, thinning, and volume loss </li><li>Provide immediate results that typically last 6–18 months </li><li> </li></ul><p><strong>Anti-wrinkle injections (botulinum toxin):</strong></p><ul><li>Gently relax overactive muscles </li><li>Help prevent and soften expression lines </li><li>Treat dynamic wrinkles such as frown lines, forehead lines, and crow’s feet </li><li>Results develop gradually over around two weeks and usually last 3–4 months </li></ul><p> </p><p>Many patients benefit from a combined approach, using dermal fillers to restore volume and contour, alongside anti-wrinkle injections to soften movement-related lines. If appropriate, I will talk this through with you during your consultation and advise on what will best suit your face and goals.</p>\"}',1,'2026-03-20 20:04:02','2026-03-20 20:04:02','17ec0780-706d-4349-8b4d-271790cd53d3'),
(5689,5689,1,'Can dermal fillers be reversed?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers be reversed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Hyaluronic acid fillers can be dissolved using an enzyme called hyaluronidase if needed. This may be used if you are unhappy with the result, if asymmetry develops, or in the unlikely event of a complication. When required, the filler can usually be broken down within 24-48 hours.\\nThis reversibility is one of the key safety advantages of hyaluronic acid fillers compared with permanent or semi-permanent products, meaning you are never committed to a result that does not feel right for you.\\nIn practice, dissolving filler is rarely needed. With careful assessment, precise placement, and a conservative approach, most concerns are prevented from the outset.\"}',1,'2026-03-20 20:04:03','2026-03-20 20:04:03','b493fe95-086d-4ecc-9b99-e43907963562'),
(5690,5690,1,'How much do dermal fillers cost?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much do dermal fillers cost?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p><a href=\\\"https://hermeswp.xyz/rachel/web/prices\\\">Pricing</a> varies depending on the area treated and the amount of product required. I will always discuss clear, transparent pricing during your consultation once I have assessed your facial anatomy and what is likely to achieve a balanced, natural result. I take a conservative approach and often use less filler than patients expect, focusing on precise placement rather than volume. That said, I will also be honest and realistic if achieving your goals is likely to require a certain amount of product, or if a phased approach would be more appropriate. My role is to guide you with clarity and integrity, without pressure or upselling, so you can make an informed decision that feels right for you.</p>\"}',1,'2026-03-20 20:04:03','2026-03-20 20:04:03','fd7ada53-2978-45c6-925f-3dd53d2896b2'),
(5691,5691,1,'Can men have dermal fillers?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can men have dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in the clinic seeking subtle, natural-looking facial enhancement. Men often look to improve jawline definition, enhance chin projection, and restore facial balance, while maintaining a strong, masculine appearance. Male facial anatomy differs from female anatomy, with thicker skin, stronger musculature, and different fat distribution patterns. Treatment techniques and product placement, therefore, need to be carefully adapted. I tailor each treatment to respect these anatomical differences, focusing on proportion, structure, and natural results. Male aesthetics is a growing area of practice, and I welcome male patients looking for discreet, professional, doctor-led facial rejuvenation.</p>\"}',1,'2026-03-20 20:04:03','2026-03-20 20:04:03','ebc8e8a0-8e1d-472e-aae1-3d6feb80a589'),
(5708,5708,1,'Is cryotherapy safe for children?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is cryotherapy safe for children?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, cryotherapy is safe and effective for children from age 5+ for suitable lesions like warts, verrucae, and molluscum contagiosum. The quick freeze time and minimal discomfort make it well-tolerated by most children. I will assess each child individually and ensure they are comfortable proceeding.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','31d68f5c-2280-4551-83aa-193437aea3f1'),
(5709,5709,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','d9ddca51-5cb6-4536-a1e9-87babd317cc5'),
(5710,5710,1,'Frequently Asked Questions About Cryotherapy','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Cryotherapy\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Cryotherapy answered by Dr Rachel.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','58ec0e0d-d04f-445e-b1fc-21d8fd7dde97'),
(5711,5711,1,'How long does the treatment take?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does the treatment take?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Each individual lesion takes just 5-10 seconds to freeze. A typical appointment lasts 15 minutes, including consultation, treatment of multiple lesions if needed, and aftercare discussion. You can have as many lesions treated as you wish in one session.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','cccddba3-04d9-4ebf-8fc8-61c74f0cdcb8'),
(5712,5712,1,'Does cryotherapy hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does cryotherapy hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe a sharp sting or elastic band snap sensation during the freeze. It is a quick and well-tolerated treatment and the discomfort lasts only for the 5-10 second freeze time. Local anaesthetic is not usually required. Children from age 5+ can typically tolerate the procedure well.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','e2d679da-530e-4eaf-9703-922b6dd9a6c6'),
(5713,5713,1,'What happens immediately after treatment?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What happens immediately after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The treated area will appear white (frosted) during the freeze, then return to normal colour within a few minutes. You may notice redness and slight swelling for a few hours. Within 24-48 hours, a blister often forms (either clear fluid or blood-filled). This is normal and shows the treatment is working. Do not pop the blister; let it resolve naturally.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','e286787e-cb1f-4138-923a-b7d91268da4e'),
(5714,5714,1,'How long does it take to heal?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to heal?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The healing timeline varies by lesion depth: </p><p>Days 1-3: Redness and possible blister formation </p><p>Days 3-7: Scab forms as blister dries </p><p>Days 7-14: Scab lifts away naturally, revealing fresh pink skin </p><p>Weeks 2-8: Treated area gradually blends with surrounding skin</p><p> </p><p>Most lesions heal completely within 2-4 weeks. Deeper lesions may take longer.</p>\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','678f4e90-d30f-41ce-b668-cbaf57bd8af0'),
(5715,5715,1,'Will I have a scar?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I have a scar?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"When cryotherapy is performed correctly with proper aftercare, scarring is rare. The most common cause of scarring is picking the scab or blister before it is ready to fall off naturally. Letting the scab lift away on its own minimises scarring risk significantly. The CryoIQ pen’s precision reduces scarring significantly compared to older liquid nitrogen methods.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','a2d88f77-6dbd-4431-8a39-95db98256d82'),
(5716,5716,1,'Will the treated area look lighter than my skin?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will the treated area look lighter than my skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is a risk of temporary or permanent hypopigmentation (lightening), particularly in patients with darker skin tones. The extreme cold can affect melanocytes (pigment-producing cells), making the treated area appear lighter. I use the precise CryoIQ pen to minimise this risk, but I will always discuss this possibility during your consultation so you can make an informed decision about whether to proceed.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','dc3d771d-6a95-443a-858f-9a55ec5dc679'),
(5717,5717,1,'Is there any downtime?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. You can return to work, exercise, and all normal activities immediately after treatment. The main aftercare requirements are: keep the area clean and dry for 48 hours, do not pick the scab, apply petroleum jelly if the area feels dry or sore, and use SPF 50 sunscreen on the treated area for at least 8 weeks to prevent abnormal pigmentation.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','2fb38d90-77a6-4569-a80f-ccfde59bf9fa'),
(5718,5718,1,'Will the lesion come back?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will the lesion come back?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>It depends on the lesion type. Skin tags, milia, cherry angiomas, and age spots do not typically recur once successfully treated, though new lesions may develop elsewhere over time. Viral lesions (warts, verrucae, molluscum contagiosum) have a small risk of recurrence if the virus remains in surrounding tissue. I will discuss recurrence risk for your specific lesion type during <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">your consultation</a>.</p>\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','8de68617-c472-4174-94cc-f7a963dba8e9'),
(5719,5719,1,'Can I have multiple lesions treated at once?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I have multiple lesions treated at once?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, absolutely. In fact, treating multiple lesions in one session is more cost-effective. There is no limit to how many can be treated in one appointment, though I will advise on what is practical and comfortable for you.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','100902ef-3f15-4562-86eb-cd32b4073b75'),
(5720,5720,1,'What is the difference between the CryoIQ pen and liquid nitrogen?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between the CryoIQ pen and liquid nitrogen?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Traditional liquid nitrogen is sprayed onto the lesion using a gun-like device. This method is less precise and risks freezing too much of the surrounding healthy tissue, increasing the risk of permanent scarring and pigmentation changes. The CryoIQ pen delivers controlled nitrous oxide through a fine-tip applicator with millimetre precision, freezing only the target lesion while protecting surrounding skin. This results in faster healing, less scarring, and better cosmetic outcomes.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','6e5d052a-f7e9-4414-ba1f-3eff32c4ade0'),
(5721,5721,1,'Is cryotherapy safe for children?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is cryotherapy safe for children?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, cryotherapy is safe and effective for children from age 5+ for suitable lesions like warts, verrucae, and molluscum contagiosum. The quick freeze time and minimal discomfort make it well-tolerated by most children. I will assess each child individually and ensure they are comfortable proceeding.\"}',1,'2026-03-20 20:12:09','2026-03-20 20:12:09','aac7ab3a-787e-40cf-b772-79c0083c25ec'),
(5722,5722,1,'Polynucleotides','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:17:19','2026-03-20 20:17:24','35a0f629-53ea-4167-89c3-25c8b3756f17'),
(5723,5723,1,'Dermal Fillers','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:17:19','2026-03-20 20:17:27','47c15f26-0856-4a2b-a0da-cd00dd650e72'),
(5724,5724,1,'Skin Boosters','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:17:19','2026-03-20 20:17:42','ec8d7570-d306-4b5a-9843-12d7db9054c7'),
(5725,5725,1,'Microneedling','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:17:19','2026-03-20 20:17:32','fafa1d5a-452c-4fc8-9e86-07be918f4bc1'),
(5726,5726,1,'Cryotherapy','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:17:19','2026-03-20 20:17:35','bfe3db1a-1698-4b36-9c88-54ca1eb34524'),
(5727,5727,1,'Skin Consultation','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:17:19','2026-03-20 20:17:39','c7e2c8da-a8e4-4b60-b60f-cb9bf948d869'),
(5728,5728,1,'sdasda','sdasda',NULL,'{\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"<p>cynotex.net<br />Notes &amp; Links: <br />Please note that while risk assessment is my main product, I also can do Strategy Development and Implementation, Operational Efficiency, and Grant Writing (Public Health and Education focus). Case studies on those are forthcoming.<br />Example: https://changinghighered.com/higher-education-consulting/risk-management/<br />Home wireframe<br />About wireframe<br />Images Needed</p><p> </p>\",\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"asdsa\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"asdsda\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":3}',1,'2026-03-20 20:19:34','2026-03-20 20:21:10','80a33ad7-e069-48d0-854a-41a24f40d288'),
(5732,5732,1,'About','about','about',NULL,1,'2026-03-20 20:22:43','2026-03-20 20:22:43','1654e5d6-7f73-4254-a941-9d8c279a2ac3'),
(5733,5733,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Drrachelsinton\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/dr.rachel.aesthetics/\",\"type\":\"url\",\"target\":\"_blank\"},\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\":[5372,5373,5374]}',1,'2026-03-20 20:22:43','2026-03-20 20:22:43','10881e7b-8278-4dc4-b6a1-48c364008ebd'),
(5734,5734,1,'About','about','about',NULL,1,'2026-03-20 20:22:45','2026-03-20 20:22:45','b217a71d-b49a-4c0c-a9a7-bed9fcadc0a9'),
(5741,5741,1,'Case Studies',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-20 20:26:38','2026-03-20 20:26:45','75c04f91-f3aa-4e20-99e3-0e8ac91360df'),
(5743,5743,1,NULL,'__temp_tbmdwgejoxpmwxcxppcuamgtqytsbfcxscld',NULL,NULL,1,'2026-03-23 12:33:22','2026-03-23 12:33:22','f87ace4f-2994-4249-8a55-de8ef38f6175'),
(5746,5746,1,'Featured Showcase 1','featured-showcase-1',NULL,'{\"9f2ce07b-8d36-41a1-b7fe-29b615c2ba65\":[5405,5391],\"8df94f7e-f0c5-428c-8f81-cc6ba16d377f\":\"Showcases 1\",\"409e9b77-c808-42a3-88a1-ee3c1ab263b2\":\"top label for case studies\",\"833ae5d2-84c5-44b6-b45d-eb054ea65443\":\"<p>top label for case studies dsaasdasd dasadssad asdadsasd</p>\",\"46976c59-a4eb-4cd7-8297-2d2cbfae5fb7\":\"dassaddas asddasasd asdasdasd asdasdads adsasdasd\"}',1,'2026-03-23 16:54:29','2026-03-23 16:54:29','05405ee3-ffd9-4077-b8cb-dffb54e0b378'),
(5747,5747,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-23 16:54:29','2026-03-23 16:54:29','af79b172-1144-4f84-8d84-19f82374d3db'),
(5748,5748,1,'Featured Showcase 1','featured-showcase-1',NULL,'{\"9f2ce07b-8d36-41a1-b7fe-29b615c2ba65\":[5405,5391],\"8df94f7e-f0c5-428c-8f81-cc6ba16d377f\":\"Showcases 1\",\"409e9b77-c808-42a3-88a1-ee3c1ab263b2\":\"top label for case studies\",\"833ae5d2-84c5-44b6-b45d-eb054ea65443\":\"<p>top label for case studies dsaasdasd dasadssad asdadsasd</p>\",\"46976c59-a4eb-4cd7-8297-2d2cbfae5fb7\":\"dassaddas asddasasd asdasdasd asdasdads adsasdasd\"}',1,'2026-03-23 16:54:29','2026-03-23 16:54:29','d755bb52-2816-4485-91e5-c0371439a287'),
(5750,5750,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation','{\"46e8d394-7104-4044-85de-cc44d6cab29b\":[5374]}',1,'2026-03-23 16:57:55','2026-03-23 16:57:55','b29f951b-2793-4516-b6c0-101f91479fc5'),
(5752,5752,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation','{\"46e8d394-7104-4044-85de-cc44d6cab29b\":[5372]}',1,'2026-03-23 16:58:03','2026-03-23 16:58:03','8b03e102-4c3e-4d74-b6c9-5a87627d165a'),
(5754,5754,1,'Sams Transformation','sams-transformation','case-studies/sams-transformation','{\"46e8d394-7104-4044-85de-cc44d6cab29b\":[5373]}',1,'2026-03-23 17:01:38','2026-03-23 17:01:38','3e5495f0-1684-4aaf-aed4-316365451af2'),
(5756,5756,1,'Anitas Transformation','anitas-transformation','case-studies/anitas-transformation','{\"46e8d394-7104-4044-85de-cc44d6cab29b\":[4753]}',1,'2026-03-23 17:02:10','2026-03-23 17:02:10','f0a43c36-c81a-4cd7-80d6-19f6f43070db'),
(5760,5760,1,'Aptos Thread Lifts','aptos-thread-lifts',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4203]}',1,'2026-03-24 15:26:21','2026-03-24 15:26:21','00372045-318e-42e5-983a-1afc995fc469'),
(5762,5762,1,'Aptos Thread Lifts','aptos-thread-lifts',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-03-24 15:27:00','2026-03-25 12:53:10','62829031-6d1a-4d14-bf60-8ecab2fcae86'),
(5763,5763,1,NULL,'__temp_fzpeonaihozuxnenlyvanudfunjkfflckjct',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-03-25 11:33:47','2026-03-25 12:53:10','15e7bbe3-775c-478b-a18d-9d08a500c171'),
(5765,5765,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-25 11:41:07','2026-03-25 11:41:07','88f294d1-7a59-4c0d-aea9-84a74e29b7be'),
(5766,5766,1,NULL,'__temp_zsqvbmcclvpacujzmyiyhitbgyxkldsjpnnk',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-03-25 11:54:30','2026-03-25 12:53:10','14795072-17b8-483b-bc77-ab786f1d57ef'),
(5767,5767,1,NULL,'__temp_grlmfyenpfwpeaklnohqpilldonlepvqdump',NULL,'{\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[]}',1,'2026-03-25 11:56:03','2026-03-25 11:57:02','2ce98218-3cec-48e6-96a9-6c5149b57cd6'),
(5768,5768,1,NULL,'__temp_lzrfvftbewltmaghqgvzwfuvjptvoilgtron','case-studies/__temp_lzrfvftbewltmaghqgvzwfuvjptvoilgtron',NULL,1,'2026-03-25 11:57:35','2026-03-25 11:57:35','5b4159ce-cce3-43e4-9560-769c461c3239'),
(5769,5769,1,NULL,'__temp_lcemxlvknmsrgklypuaggpxfzbqmqipoagnh',NULL,NULL,1,'2026-03-25 11:57:45','2026-03-25 11:57:45','75c75900-45ba-44f6-9254-0f98901eb867'),
(5770,5770,1,'Custom Group','custom-group',NULL,'{\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1128,1118,1108],\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Custom Group\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>custom group test</p>\"}',1,'2026-03-25 11:57:56','2026-03-25 17:00:57','4b2c8222-5cac-4995-9612-888ef8fcc011'),
(5771,5771,1,'Custom Group','custom-group',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Custom Group\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>custom group test</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1128,1118,1108]}',1,'2026-03-25 11:58:34','2026-03-25 11:58:34','46733abb-edc8-4d2f-8e51-520cf52e99c7'),
(5772,5772,1,'Custom group 2','custom-group-2',NULL,'{\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132,1118,1108,1098],\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"custom group 2\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>sdsaddas sadsdaads sadsaads</p>\"}',1,'2026-03-25 11:58:44','2026-03-25 17:39:51','fef32205-5691-4d31-8d10-967c136a11e2'),
(5773,5773,1,'Custom group 2','custom-group-2',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"custom group 2\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>sdsaddas sadsdaads sadsaads</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132,1118,1108,1098]}',1,'2026-03-25 11:59:10','2026-03-25 11:59:10','d30d0932-1db3-40a5-a5ed-50d50fcdaa11'),
(5776,5776,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-25 17:07:07','2026-03-25 17:07:07','e2f7d5be-2323-4a79-a1a5-d8c46c984a5f'),
(5777,5777,1,'What Areas Can Dermal Fillers Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can Dermal Fillers Treat</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Ideal Candidates Include Those With:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Lip Fillers - </strong>Lip fillers can be used to gently enhance volume, improve definition, address asymmetry, and restore the natural fullness that gradually reduces with age. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration) - </strong>Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring - </strong>Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-03-25 17:07:07','2026-03-25 17:07:07','b36c0c44-70a6-421d-8509-6013ef069c91'),
(5778,5778,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-25 17:09:02','2026-03-25 17:09:02','8465b070-1af2-4317-b642-e0f919dd23fc'),
(5779,5779,1,'Christmas Special Package','third-section',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Christmas Special Package\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>asdadsdsa adasaasddsa s</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1098,1108,1118,1128,1132]}',1,'2026-03-25 17:38:15','2026-03-25 17:46:41','789fd6f6-3257-4af8-ba95-faaa0a8c652d'),
(5780,5780,1,'Third section','third-section',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Third section title\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>asdadsdsa adasaasddsa s</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1098,1108,1118,1128,1132,5770,5772]}',1,'2026-03-25 17:38:44','2026-03-25 17:38:44','8f9c184b-e6a8-4392-a3ec-77b02a1909d2'),
(5781,5781,1,'Dermalux LED phototherapy INSIDE','dermalux-led-phototherapy',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Dermalux LED phototherapy INSIDE\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\"}',1,'2026-03-25 17:42:59','2026-03-25 17:42:59','eb5340a1-2f24-462b-aed6-2d738dbbb3ec'),
(5782,5782,1,'Custom group 2','custom-group-2',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"custom group 2\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>sdsaddas sadsdaads sadsaads</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132,1118,1108,1098]}',1,'2026-03-25 17:43:01','2026-03-25 17:43:01','c976e417-3660-4e62-b650-2c811908bb5d'),
(5784,5784,1,'Aptos Thread Lifts 2','aptos-thread-lifts',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation. 2\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\"}',1,'2026-03-25 17:43:34','2026-03-25 17:43:34','bd64c20e-d82a-4636-8297-833f8fe26bff'),
(5785,5785,1,'Custom group 2','custom-group-2',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"custom group 2\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>sdsaddas sadsdaads sadsaads</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132,1118,1108,1098]}',1,'2026-03-25 17:43:37','2026-03-25 17:43:37','92cdf728-8956-4a84-ab1e-f6c4ae939066'),
(5787,5787,1,'Third section','third-section',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Third section title\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>asdadsdsa adasaasddsa s</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1098,1108,1118,1128,1132]}',1,'2026-03-25 17:44:06','2026-03-25 17:44:06','cc2b0174-5566-4524-a2e9-4b69b2f67aa7'),
(5788,5788,1,'Aptos Thread Lifts 2','aptos-thread-lifts',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation. 2\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\"}',1,'2026-03-25 17:45:23','2026-03-25 17:45:23','2ffc8a10-e649-4f77-b23f-2130fe66642f'),
(5790,5790,1,'Christmas Special Package','third-section',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Christmas Special Package\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>asdadsdsa adasaasddsa s</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1098,1108,1118,1128,1132]}',1,'2026-03-25 17:46:42','2026-03-25 17:46:42','db4d0ce8-ce27-43f5-b5ae-b30a400041e2'),
(5792,5792,1,'Botox™ anti wrinkle injections','botox-anti-wrinkle-injections',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"This well-known and popular treatment is highly effective at softening fine lines and wrinkles in the upper part of the face, lips, jawline and neck.\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4303]}',1,'2026-03-25 17:48:36','2026-03-25 17:48:36','515e2096-0a73-4cee-b0c1-91c4ebb5ebf6'),
(5793,5793,1,'Christmas Special Package','third-section',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Christmas Special Package\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p>asdadsdsa adasaasddsa s</p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1098,1108,1118,1128,1132]}',1,'2026-03-25 17:48:38','2026-03-25 17:48:38','ec9fa4d7-5dbe-4d2e-8416-73956f5e69d7'),
(5794,5794,1,NULL,'__temp_bhlmjvwicttnqetxislqvdlzhrjholmlpius',NULL,'{\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[]}',1,'2026-03-25 17:53:24','2026-03-25 17:53:27','b59a66df-bd09-49a7-b572-848a1dbfdf46'),
(5795,5795,1,'Consultation','grupa-1',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Consultation\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><i>Redeemable against treatments if booked within 4 weeks of your consultation (excluding skincare).</i><br /><i>Non-refundable if you decide not to proceed.</i></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132]}',1,'2026-03-25 17:54:16','2026-03-31 09:25:43','45a4151e-b2b5-4a4c-9070-00f2b6171c0e'),
(5796,5796,1,'Grupa 1','grupa-1',NULL,'{\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132]}',1,'2026-03-25 17:54:46','2026-03-25 17:54:46','08da7499-499c-4f3d-ad17-655b7f24970d'),
(5819,5819,1,'Book Consultation','book-consultation-works',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-03-26 08:31:58','2026-03-26 08:31:58','00aecac0-5ccd-4bf2-bb0d-1c9da2fbacd9'),
(5823,5823,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h5><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"><strong>MBChB (Hons) MRCGP (2022) BSc (Hons)</strong></span></h5><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\"><span style=\\\"background-color:transparent;color:hsl(16,54%,64%);\\\">GMC-registered medical doctor</span><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"> </span></a><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a member of the Aesthetics Complications Expert Group (ACE Group), trained in advanced complication management, and regularly undertakes CPD through leading aesthetic training bodies. She operates from a CQC-compliant clinical environment where patient safety is never compromised.</span></p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[4994],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-26 08:32:42','2026-03-26 08:32:42','0fed7c9c-0624-4362-92c9-9acdf7bdf508'),
(5843,5843,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find Our Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel (within Danielle Louise), 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-03-26 08:36:40','2026-03-26 08:36:40','81eea58e-5aaa-4fbb-8b00-31aade6bf52d'),
(5846,5846,1,'Contacts','contacts','contacts',NULL,1,'2026-03-26 08:36:59','2026-03-26 08:36:59','2e84377c-3cc0-4b5d-a5b9-123926a2b726'),
(5847,5847,1,'Contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Dr Rachel Aesthetics\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Contact Us\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);\\\">Aesthetics by Dr. Rachel (within Danielle Louise), 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:rgb(0,0,0);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:rgb(0,0,0);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-03-26 08:36:59','2026-03-26 08:36:59','a5d1e218-b8aa-4983-86e2-44d63c0b6182'),
(5850,5850,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-26 08:39:27','2026-03-26 08:39:27','4d246942-9af9-4e1a-9101-3326697f5624'),
(5851,5851,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:39:27','2026-03-26 08:39:27','db2ed609-c4af-4fb3-b692-17b2bb6e29a7'),
(5854,5854,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-26 08:39:36','2026-03-26 08:39:36','f083a3b8-f79a-4942-92c7-09d5a654e5cf'),
(5855,5855,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:39:36','2026-03-26 08:39:36','bf27ba50-6397-4ed0-9ffa-7e92ec66393a'),
(5858,5858,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-26 08:39:47','2026-03-26 08:39:47','9f7b5034-6829-4cf3-9213-b06e5e25379f'),
(5859,5859,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:39:47','2026-03-26 08:39:47','e93b184b-f345-4eb9-8723-9a8c62cff32a'),
(5862,5862,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 08:39:57','2026-03-26 08:39:57','382a8066-38e7-4299-8121-29e1e6df1ee7'),
(5863,5863,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:39:57','2026-03-26 08:39:57','b0453ad7-8bf7-4d6f-b1a4-aff49271c872'),
(5866,5866,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 08:40:08','2026-03-26 08:40:08','8f7fad20-f546-41e5-b837-173f6f7b7a3a'),
(5867,5867,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:40:08','2026-03-26 08:40:08','abfad96c-ceb2-4d53-a3a2-05984bc8890f'),
(5870,5870,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-26 08:40:16','2026-03-26 08:40:16','d2b54621-016f-4dd3-8e67-c86b9513ba94'),
(5871,5871,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:40:16','2026-03-26 08:40:16','04d93a34-a0f5-43c4-9f7a-a12cf5c8f324'),
(5874,5874,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-26 08:40:25','2026-03-26 08:40:25','06e43cf3-4728-40ed-aae1-2d7dab01d814'),
(5875,5875,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:40:26','2026-03-26 08:40:26','4b411ca6-2606-4b02-bbfe-fc213f39d85a'),
(5878,5878,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-26 08:40:34','2026-03-26 08:40:34','25a4efcc-4f42-4d29-a70f-8dab74d2586f'),
(5879,5879,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:40:34','2026-03-26 08:40:34','eef83545-dbf2-4eda-805a-bd5f165068e6'),
(5881,5881,1,'Treatment 2','anti-wrinkle-injections-2','treatments/anti-wrinkle-injections-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','837d846b-ee94-43c8-8322-2cf4209bdea1'),
(5882,5882,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>Expert medical aesthetics, face, and skin</span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span> treatments. Precision artistry for results that </span></span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\"><span>look authentically you.</span></span></p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','c5cf589c-e5d1-4b3d-84cf-cf7c08b59024'),
(5883,5883,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','f5c6daa5-1f65-4637-9233-b81996ee5e0d'),
(5884,5884,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £145\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','aaeaa287-7d9b-4e7e-bd47-929c81e9d8fd'),
(5885,5885,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"45 Minutes\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Efficient treatment\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','56636093-ca84-4173-bfd8-e5800f9f6222'),
(5886,5886,1,'Recovery Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-hourglass text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Recovery Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"24 Hours\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Quick recovery\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','f18785b5-5039-4b5e-ae1e-ab87e1675e13'),
(5887,5887,1,'Duration','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-calendar text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Duration\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"24 Hours\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Long-lasting effects\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','6106cc18-0412-40b6-b3a6-fa72322676e9'),
(5888,5888,1,'One Session','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','7be786ed-b2a2-4c85-a900-7bf8971dd756'),
(5889,5889,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','c5b74a90-86b5-443c-a681-b62d41b2ec4c'),
(5890,5890,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','4fe77063-7316-4022-bf30-0904182f3c52'),
(5891,5891,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','27d57f72-c22d-486c-a0cb-04f995049fb6'),
(5892,5892,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span>Experience the difference of expert care, advanced technology, and personalised </span></p><p><span>treatment plans designed to deliver exceptional results.</span></p>\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','98fc43e0-282b-4d66-b6ab-a7883aa004e8'),
(5893,5893,1,'Understand What Bothers You','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>Precision technology and personalized treatment plans ensure optimal outcomes tailored to your unique skin concerns.</span></p><p> </p>\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','9041d7a1-dc64-4af1-ab14-8aa1423c5a6e'),
(5894,5894,1,'Subtle & Safe','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Safety First\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>All treatments are FDA approved and backed by extensive clinical research, ensuring the highest standards of safety and efficacy. Our rigorous protocols prioritise your well-being above all else.</span></p><p> </p>\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','b5b33282-3031-4f50-bddf-c1b7b97cd628'),
(5895,5895,1,'Expert Care','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Expert Care\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>Qualified practitioners with years of experience deliver exceptional personalized care.</span><br /> </p>\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','bfc7cf44-ed9f-400d-9ead-4557c54a1279'),
(5896,5896,1,'Proven Excellence','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Excellence\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span>Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.</span><br /> </p>\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','8f125914-22a1-4091-8dd4-16f321501f09'),
(5897,5897,1,'What is Treatment 2','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Lorem ipsum\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Treatment 2\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span>Swipe to reveal the transformation. See the remarkable results our </span></p><p><span>patients have achieved.</span></p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Treatment 2 is a revolutionary non-surgical cosmetic treatment designed to rejuvenate and enhance your skin\'s natural appearance. This advanced procedure combines cutting-edge technology with expert clinical care to address a wide range of aesthetic concerns, from fine lines and wrinkles to uneven skin tone and texture.</span></span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel – the woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\"><span>Unlike invasive surgical procedures, treatment 2 requires minimal downtime and offers gradual, natural-looking improvements. The treatment is suitable for individuals seeking to address signs of aging, improve skin quality, or enhance their overall complexion without the commitment and recovery time associated with surgical interventions.</span></span><br /><br /><span style=\\\"color:hsl(0,0%,100%);\\\"><span>The science behind treatment 2 is backed by years of clinical research and proven results. Our practitioners stay at the forefront of aesthetic medicine, continuously updating their techniques and knowledge to provide you with the most effective and advanced treatments available.</span></span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"The results exceeded my expectations. Dr. Rachel took time to understand exactly what I wanted and delivered natural-looking results that made me feel like myself again.\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Anti Wrinkle Injections\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S.M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','24e114b0-691e-4ac8-8283-04c32de9d2c7'),
(5898,5898,1,'Who Should Consider This Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"color:hsl(208,29%,19%);\\\"><i>Who Should Consider This Treatment?</i></span></h2><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and address various aesthetic concerns without undergoing invasive surgical procedures. This treatment is particularly well-suited for those who want to enhance their natural beauty while maintaining their unique facial characteristics.</span></span></p><p> </p><h4><span style=\\\"color:hsl(208,29%,19%);\\\"><span>Ideal Candidates Include Those With:</span></span></h4><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Fine lines and wrinkles that have begun to appear on the face and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Uneven skin tone or texture, including hyperpigmentation and age spots</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Loss of skin elasticity and firmness, particularly around the jawline and neck</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Acne scars or other textural irregularities that affect skin smoothness</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Dull or lackluster complexion that needs revitalization</span></span></p><p> </p><p><span style=\\\"color:hsl(208,29%,19%);\\\"><span class=\\\"marker\\\">Desire for a non-surgical approach to skin rejuvenation with minimal downtime</span></span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','46ffe544-5710-4b80-ad89-07cb953adc76'),
(5899,5899,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','a315aa62-d84d-43e2-a779-e89ba88ff5d9'),
(5900,5900,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your Questions Answered\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','3920da85-f77d-4cd2-9710-21f59a127138'),
(5901,5901,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','86e0d99d-0e28-4f3f-b396-f7221f9eff63'),
(5902,5902,1,'How many treatments will I need? Is it a one-off treatment or ongoing?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need? Is it a one-off treatment or ongoing?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','954b984b-0f0e-4b9b-8584-864fcf67b5c4'),
(5903,5903,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','b9865e0c-2f18-4a24-920a-c1cb6f75d30a'),
(5904,5904,1,'Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment safe?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','0f8d071e-3303-46d4-9786-1c716321372e'),
(5905,5905,1,'Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does it hurt? How is the procedure done?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','8dbd1a0e-3809-415f-8733-eca3271f4964'),
(5906,5906,1,'Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look \\\"frozen\\\" or expressionless?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','fbe2c0d9-3b88-4936-af6d-a72e7d453cfe'),
(5907,5907,1,'Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','44d55e3c-8c35-45b8-84eb-153a62564065'),
(5908,5908,1,'When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','9b40e8a3-12ec-422d-9e0d-7466839ac8a9'),
(5909,5909,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','b59217fc-52e8-4cbe-a63b-7048c19110f4'),
(5910,5910,1,'Are there any side effects or risks?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','130c7918-bea7-49c8-a32c-911fbe5f5be9'),
(5911,5911,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\"}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','bec3ee81-40aa-411a-9399-18f2b8ea76b9'),
(5912,5912,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:40:46','2026-03-26 08:40:46','a440fd06-231d-4a99-a67f-cece5fa229f7'),
(5915,5915,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-26 08:40:56','2026-03-26 08:40:56','1d1045d9-eaa5-441d-8c46-ef1fa06ae1eb'),
(5916,5916,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:40:56','2026-03-26 08:40:56','0c20cc49-6b24-490f-a061-ad77603d63d9'),
(5919,5919,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:41:04','2026-03-26 08:41:04','3402fef9-5880-4bab-9f32-04e236b1d274'),
(5920,5920,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:41:04','2026-03-26 08:41:04','08f8f7bb-9456-4a11-8498-9ea9ac4fcbcb'),
(5923,5923,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:41:22','2026-03-26 08:41:22','afa37670-ad17-45b0-b195-903e19cd1a45'),
(5924,5924,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"Call 07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:41:22','2026-03-26 08:41:22','7ea1614e-990c-4c42-8546-f2a03f5ff574'),
(5927,5927,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-26 08:41:34','2026-03-26 08:41:34','1accbd09-76bd-49c7-ba34-c4d5e99e448a'),
(5928,5928,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:41:34','2026-03-26 08:41:34','7d45108e-ea2a-400f-8d04-d1086ed9cf9c'),
(5931,5931,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-26 08:41:42','2026-03-26 08:41:42','fe79647a-77b0-40cf-a9e9-01b57f0ebde7'),
(5932,5932,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-26 08:41:42','2026-03-26 08:41:42','89c8b9d9-9d90-4e96-9478-d96ba3c5bf99'),
(5935,5935,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-26 08:43:19','2026-03-26 08:43:19','e50c3ec8-eca8-4da4-b160-4ba0e717980f'),
(5936,5936,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:43:19','2026-03-26 08:43:19','66c006ee-3b76-41e8-b3ef-02750bb699ab'),
(5939,5939,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-26 08:43:54','2026-03-26 08:43:54','890cbdde-6f7c-4b06-928c-7de2c2986e98'),
(5940,5940,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:43:54','2026-03-26 08:43:54','2cabfbe6-ea3b-4ff2-94fc-390beedcdedd'),
(5943,5943,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:44:23','2026-03-26 08:52:55','8416b178-1c1a-46da-b41a-dff9a59cd466'),
(5944,5944,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-26 08:44:23','2026-03-26 08:44:23','f84e476d-147b-469d-a9ea-7fa846e93b7d'),
(5945,5945,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:44:23','2026-03-26 08:44:23','dd1dc929-0ec6-4bfd-9704-9398874e1d0b'),
(5946,5946,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-26 08:44:28','2026-03-26 08:44:28','b858c81b-96da-433f-8fbf-dd43d33addfe'),
(5949,5949,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-26 08:45:01','2026-03-26 08:45:01','d4d35f38-18a9-4660-a3cd-cfe3a9eb5f97'),
(5950,5950,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:45:01','2026-03-26 08:45:01','1e04182b-2067-4b2f-a329-25e1cfbb5965'),
(5953,5953,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-26 08:45:27','2026-03-26 08:45:27','f6f7b612-f164-4cfe-9f04-2486ba033ecb'),
(5954,5954,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:45:27','2026-03-26 08:45:27','b982b649-b6f2-4ca2-a3c6-99dd7fa340ea'),
(5957,5957,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-26 08:46:03','2026-03-26 08:46:03','9c27ab1d-8ae7-4f24-862c-1861999a5c91'),
(5958,5958,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:46:03','2026-03-26 08:46:03','7856d6e6-9894-418b-9c6e-f4a707165522'),
(5961,5961,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:46:27','2026-03-26 08:46:27','4bc3b4d8-7378-4e3f-8d34-662288dfb0c9'),
(5962,5962,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:46:27','2026-03-26 08:46:27','764abff1-c084-4a44-b061-791dc9d6aff6'),
(5965,5965,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 08:46:49','2026-03-26 08:46:49','93060811-db04-4b02-bba7-3e2f07fdef11'),
(5966,5966,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:46:49','2026-03-26 08:46:49','f4f2b63b-fbd3-4ee9-8a7d-555ab773ef05'),
(5969,5969,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:47:54','2026-03-26 08:47:54','8c7e71c0-4479-40de-8c3b-fc7cd5d950f5'),
(5970,5970,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:47:54','2026-03-26 08:47:54','f5237b55-b290-4e85-93a4-0348df6522bf'),
(5973,5973,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-26 08:49:51','2026-03-26 08:49:51','56335d6b-092a-4e4a-b7bc-ccc85976279a'),
(5974,5974,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:49:51','2026-03-26 08:49:51','8bb9f6b0-a7f1-4f57-84c2-2dbcb679df07'),
(5977,5977,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:50:21','2026-03-26 08:50:21','94663a67-9f60-4ce3-b658-92558b088c77'),
(5978,5978,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:50:21','2026-03-26 08:50:21','e3ab4166-f54d-45a1-a8c3-f6ceadcc3153'),
(5981,5981,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:51:05','2026-03-26 08:51:05','22645b5a-4a9f-4a3d-9147-7b41b144c971'),
(5982,5982,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p>Swipe to reveal the remarkable results my patients have achieved.</p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:51:05','2026-03-26 08:51:05','83fa4877-e09b-46b6-812c-6037ab4228ca'),
(5985,5985,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:51:18','2026-03-26 08:51:18','ed0421bc-af2b-46ec-81f1-243a2dadfdf4'),
(5986,5986,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:51:18','2026-03-26 08:51:18','70dcee6c-6255-4a19-9abd-784673bc287a'),
(5989,5989,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 08:51:41','2026-03-26 08:51:41','af17cf3a-7a35-42c5-9378-dd0689769112'),
(5990,5990,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:51:41','2026-03-26 08:51:41','3d93234a-25d7-4d6a-a43f-cde261bfdb72'),
(5993,5993,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-03-26 08:51:52','2026-03-26 08:51:52','647efd14-1ca1-49cd-8ecb-41ef32d24502'),
(5994,5994,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:51:52','2026-03-26 08:51:52','b308df18-d87a-4f84-b170-2b928896755e'),
(5997,5997,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-26 08:52:03','2026-03-26 08:52:03','4d409478-9746-4111-a50b-7bdb5e524fa1'),
(5998,5998,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:52:03','2026-03-26 08:52:03','df246827-7d72-4bc1-9a07-b5b7b0796499'),
(6001,6001,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:52:14','2026-03-26 08:52:14','c0e45f0a-c833-494b-a8bd-da02094ec205'),
(6002,6002,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:52:14','2026-03-26 08:52:14','1b9ee01b-4936-4c4f-b4df-097daabc17c3'),
(6005,6005,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-26 08:52:24','2026-03-26 08:52:24','18f57eb1-dd4d-4293-8d03-9e53b4a69ec1'),
(6006,6006,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:52:24','2026-03-26 08:52:24','30c51d6d-1908-4d52-826d-6aad42a32ab1'),
(6009,6009,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-26 08:52:34','2026-03-26 08:52:34','e0929313-d4ce-48d8-b4f1-b84d3e58b2cb'),
(6010,6010,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:52:34','2026-03-26 08:52:34','1fa2376e-3933-43fe-ab56-6f9aad38cde8'),
(6013,6013,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-26 08:52:45','2026-03-26 08:52:45','6fdf2f6b-d096-420c-9883-8492ae9e64cf'),
(6014,6014,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:52:45','2026-03-26 08:52:45','7782e3c9-61d2-4296-a24c-1ce27f4f6f7b'),
(6017,6017,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-03-26 08:52:56','2026-03-26 08:52:56','ebfa3f24-7df9-4d87-b338-5ff39d6d8ae2'),
(6018,6018,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:52:56','2026-03-26 08:52:56','4e44d0f8-f2ad-4044-8691-d36a5eca962d'),
(6021,6021,1,'Sunekos','sunekos','treatments/sunekos','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-26 08:53:08','2026-03-26 08:53:08','ea186ac1-e957-4d92-9cc5-3f3b35fd06d4'),
(6022,6022,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:53:08','2026-03-26 08:53:08','2a1c7851-237b-40ad-a854-e072a7907d44'),
(6025,6025,1,'Treatment 2','anti-wrinkle-injections-2','treatments/anti-wrinkle-injections-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-26 08:53:37','2026-03-26 08:53:37','3db336a8-96a3-49ad-8d38-310680b5b53d'),
(6026,6026,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the transformation. See the remarkable results our patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:53:37','2026-03-26 08:53:37','462dafb8-4075-4a36-aa7b-3172d806f7e2'),
(6030,6030,1,'Patient Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Patient Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Swipe to reveal the remarkable results my patients have achieved.</span></p>\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-03-26 08:54:11','2026-03-26 08:54:11','34048193-99b8-42b1-8fe6-8609165f6b47'),
(6031,6031,1,'Skin Consultation',NULL,NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-26 08:56:03','2026-03-26 08:56:07','5791b950-0950-4867-9063-2aeb62d1076c'),
(6034,6034,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 08:58:14','2026-03-26 08:58:14','65f2883c-7e15-48f0-b5b2-a09825cf1ce2'),
(6035,6035,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Anti-Wrinkle Injections\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-03-26 08:58:14','2026-03-26 08:58:14','0f739837-2191-410c-8ca0-7b33039f03fe'),
(6043,6043,1,'Explore My Services','explore-our-services',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore My Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What are you looking for today?\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"selected\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":8,\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\":[4593,4702,4502,4203,4303,4418,4026,1951]}',1,'2026-03-26 09:58:08','2026-03-26 09:58:08','c67c9be5-f3b3-4bc3-a24d-62e747ba3a85'),
(6048,6048,1,'How It Works','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"How It Works\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"From consultation to results, I make every step seamless and stress-free\"}',1,'2026-03-26 09:59:19','2026-03-26 09:59:19','a61204a5-dc30-4529-840f-b7bd80471453'),
(6053,6053,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\":[5372,5373,5374]}',1,'2026-03-26 10:00:30','2026-03-26 10:00:30','b2fce20e-c143-4ddd-af13-e542e7262dce'),
(6056,6056,1,'About','about','about',NULL,1,'2026-03-26 10:00:59','2026-03-26 10:00:59','6978ac98-eef5-4ba1-8c24-07fe6179d78b'),
(6057,6057,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\",\"target\":\"_blank\"},\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\":[5372,5373,5374]}',1,'2026-03-26 10:00:59','2026-03-26 10:00:59','5d31602b-115c-4d24-8d4c-e2207d84e7b3'),
(6060,6060,1,'Homepage','homepage','__home__',NULL,1,'2026-03-26 10:01:24','2026-03-26 10:01:24','e1c1bcb4-3ac3-47e6-b496-5b75397233ea'),
(6061,6061,1,'Blog Posts','blog-posts',NULL,'{\"33ee3a3d-d49b-4235-989e-7b6f0c31f998\":\"Latest from My Blog\",\"6fcbabcf-457e-47c2-873c-dc1bab02fd18\":\"Blog Posts\",\"7a8d453a-db94-47f8-8c2b-ebf52865b100\":\"<p>The latest news, updates and patient stories</p>\",\"01b1237d-1cd3-4827-875c-d66daeca276e\":\"all\"}',1,'2026-03-26 10:01:24','2026-03-26 10:01:24','159df291-5e87-474b-ac74-c0de66cb21f7'),
(6063,6063,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 10:22:10','2026-03-26 10:22:10','51d6d668-5fe6-4e82-931e-747cd675dade'),
(6065,6065,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- To resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 10:23:33','2026-03-26 10:23:33','3b1faded-d238-4ff1-af49-526f3a308216'),
(6067,6067,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4355]}',1,'2026-03-26 10:23:52','2026-03-26 10:23:52','38bfaad4-3602-413c-9588-cab548b25b28'),
(6069,6069,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-03-26 10:24:07','2026-03-26 10:24:07','ee5fabd0-57ec-4b9f-b911-4cb976788f9f'),
(6071,6071,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-03-26 10:24:32','2026-03-26 10:24:32','37e03c36-1ded-4dad-8225-ccfc7d0f8f56'),
(6073,6073,1,'Anti-Wrinkle Injection','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 10:24:56','2026-03-26 10:24:56','6fb60afe-133e-46cf-8300-58e9d7cf954d'),
(6075,6075,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-03-26 10:25:19','2026-03-26 10:25:19','99d456b5-80bb-4840-9ee0-1cd17d2d950b'),
(6077,6077,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4627]}',1,'2026-03-26 10:25:39','2026-03-26 10:25:39','c6606783-bdb2-422b-904c-f78c2fe8f422'),
(6078,6078,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4980]}',1,'2026-03-26 10:26:08','2026-03-26 10:26:08','c727417b-cf93-4645-a7ab-28adc3416b79'),
(6080,6080,1,'JULÄINE™ Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 10:26:23','2026-03-26 10:26:23','2e522c83-43ab-43de-ae8a-b1956e82d827'),
(6081,6081,1,'JULAINE™','1',NULL,NULL,1,'2026-03-26 10:31:52','2026-04-13 12:46:27','8d580308-9629-4c0b-b4d8-6cc0a8e2c8e8'),
(6082,6082,1,'Chemical Peels','1',NULL,NULL,1,'2026-03-26 10:31:52','2026-03-26 10:31:59','ced2ac5f-b2b5-4a16-891b-025e01f284d1'),
(6083,6083,1,'Microneedling','1',NULL,NULL,1,'2026-03-26 10:31:52','2026-03-26 10:31:59','6915faa3-2549-4f58-be2d-ac22eb5e76ce'),
(6084,6084,1,'Dermal Fillers','1',NULL,NULL,1,'2026-03-26 10:31:52','2026-03-26 10:31:59','5bee23fd-9af2-4667-b9e3-0ec8068a7788'),
(6089,6089,1,'Homepage','homepage','__home__',NULL,1,'2026-03-26 10:35:57','2026-03-26 10:35:57','19e2e6dc-6cac-4dd6-b7bf-66e4d46da66f'),
(6090,6090,1,'How It Works','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"How It Works\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"From consultation to results, I make every step seamless and stress-free\"}',1,'2026-03-26 10:35:57','2026-03-26 10:35:57','281b292c-810a-4f66-af97-cd8c1037b85a'),
(6095,6095,1,'Homepage','homepage','__home__',NULL,1,'2026-03-26 10:36:18','2026-03-26 10:36:18','07a0ff78-950b-41a4-9de7-cf398f877030'),
(6096,6096,1,'How It Works','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"How It Works\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"From consultation to results, I make every step seamless and stress-free\"}',1,'2026-03-26 10:36:18','2026-03-26 10:36:18','118ee3fa-c8e4-4b13-aa7b-dd599b93f140'),
(6099,6099,1,'Kirsty Partington','sarah-mitchell',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Kirsty Partington\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\"}',1,'2026-03-26 10:40:38','2026-03-26 10:40:38','0d43837b-00be-4582-a08b-79d657c6b281'),
(6101,6101,1,'Emma Dunne','emily-johnson',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Emma Dunne\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Lip Enhancement\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>Dr Rachel is very knowledgeable and thorough and my skin is already looking much better. I’m looking forward to carrying on my skin journey with her. I also thought it was great that she gave me a really detailed breakdown of the treatments that would benefit me but absolutely no pressure or rush to book them. Would recommend.</span><br /><span>I see Rachel regularly now and have a treatment plan. I cannot believe the improvement in my skin in a short period of time. Rachel is lovely and friendly and I always enjoy our sessions :)</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2026-03-26 10:41:15','2026-03-26 10:41:15','54688d6a-6abc-4a6a-90c0-9a0571660aef'),
(6103,6103,1,'Rasmeet Kainth','amanda-brown',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Rasmeet Kainth\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>I can’t say enough wonderful things about Dr Rachel! I came to her struggling with pigmentation and scarring after surgery, and she has transformed my skin and my confidence. From the very first appointment, she made me feel so comfortable and truly cared about my concerns. Her expertise, gentle approach, and genuine compassion made every visit a pleasure. The improvement in my skin has been incredible. I’m so grateful for her kindness and skill! She’s absolutely amazing and I can’t recommend her highly enough!</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2026-03-26 10:41:54','2026-03-26 10:41:54','d4f6b574-ddd1-475a-be0f-c3033dfa1766'),
(6105,6105,1,'Hannah Ainsworth','jessica-williams',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Hannah Ainsworth\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>I\'m absolutely delighted with the results of my ongoing treatment with Rachel. I wanted to achieve a very natural look to help me feel more confident as I approach 40 and Rachel absolutely achieved this. I get so many comments on how fresh my skin looks. Thanks Rachel for giving me really great advice, a wonderful service and outstanding aftercare.</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2026-03-26 10:42:34','2026-03-26 10:42:34','876b990d-f851-46c7-bb77-cff973870cfe'),
(6107,6107,1,'Kirsty Partington','sarah-mitchell',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Kirsty Partington\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\"}',1,'2026-03-26 10:43:06','2026-03-26 10:43:06','64e5c037-ed2a-4fb8-970f-f2b97ade3bc3'),
(6109,6109,1,'Eleanor Crane','amanda-brown',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Eleanor Crane\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>The best aesthetic experience I\'ve had! Dr Rachel is professional, friendly and an absolute expert at what she does. My results are subtle and perfect. Would highly recommend!</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2026-03-26 10:44:18','2026-03-26 10:44:18','8d1848c2-2b67-47b3-891f-9d547ec0528e'),
(6111,6111,1,'Faye Klavas','emily-johnson',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Faye Klavas\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Lip Enhancement\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you Dr Rachel ❤️</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2026-03-26 10:45:00','2026-03-26 10:45:00','8a0b03fd-f5aa-4285-ac0f-bc703d459aee'),
(6113,6113,1,'Faye Klavas','emily-johnson',NULL,'{\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Faye Klavas\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Personal Treatment Plan\",\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"<p><span>Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you Dr Rachel ❤️</span></p>\",\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320]}',1,'2026-03-26 10:46:59','2026-03-26 10:46:59','bfd2dd6f-dc9f-4f21-b952-b1a91edfb817'),
(6115,6115,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-26 10:47:41','2026-03-26 10:47:41','a81bb485-a51d-48fd-bb51-57acb4f5a4c9'),
(6120,6120,1,'Homepage','homepage','__home__',NULL,1,'2026-03-27 11:41:20','2026-03-27 11:41:20','d32f04d3-1904-410d-8e75-53a380ae8db7'),
(6121,6121,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-27 11:41:20','2026-03-27 11:41:20','6dafde27-f9f8-4355-bd44-16592b283a09'),
(6122,6122,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-03-27 11:41:20','2026-03-27 11:41:20','610d9ed3-5947-4de2-b9c7-5996a8e52faf'),
(6123,6123,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2026-03-27 11:41:20','2026-03-27 11:41:20','f32153ef-2ca1-4482-b2c5-796d312e68a8'),
(6128,6128,1,'Homepage','homepage','__home__',NULL,1,'2026-03-27 11:42:35','2026-03-27 11:42:35','0b577151-c599-4180-b009-bbaedaee5069'),
(6129,6129,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-27 11:42:35','2026-03-27 11:42:35','07c8b92a-7f5d-4a01-a7c0-98b14d3fa40c'),
(6130,6130,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-03-27 11:42:35','2026-03-27 11:42:35','e2fbf88b-739f-45cf-97f1-609456e8e340'),
(6131,6131,1,'Specialised in the subtle magic of clinically advanced treatments','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Specialised in the subtle magic of clinically advanced treatments\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2026-03-27 11:42:35','2026-03-27 11:42:35','de11f73e-2cc2-448e-9504-8ec1011348fc'),
(6134,6134,1,'Homepage','homepage','__home__',NULL,1,'2026-03-27 11:44:14','2026-03-27 11:44:14','bdcd5d53-7b0e-492c-8fdd-11709464f328'),
(6135,6135,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"><strong>MBChB (Hons) MRCGP (2022) BSc (Hons)</strong></span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\"><span style=\\\"background-color:transparent;color:hsl(16,54%,64%);\\\">GMC-registered medical doctor</span><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"> </span></a><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a member of the Aesthetics Complications Expert Group (ACE Group), trained in advanced complication management, and regularly undertakes CPD through leading aesthetic training bodies. She operates from a CQC-compliant clinical environment where patient safety is never compromised.</span></p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[4994],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-27 11:44:14','2026-03-27 11:44:14','f83815d5-9f66-4119-969b-856afd8f53e3'),
(6138,6138,1,'Homepage','homepage','__home__',NULL,1,'2026-03-27 11:44:36','2026-03-27 11:44:36','9a301401-c648-425f-8292-e494e796f29a'),
(6139,6139,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\"><span style=\\\"background-color:transparent;color:hsl(16,54%,64%);\\\">GMC-registered medical doctor</span><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"> </span></a><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a member of the Aesthetics Complications Expert Group (ACE Group), trained in advanced complication management, and regularly undertakes CPD through leading aesthetic training bodies. She operates from a CQC-compliant clinical environment where patient safety is never compromised.</span></p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[4994],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-27 11:44:36','2026-03-27 11:44:36','426e4cee-2f6e-45c0-b1ef-3bed6d0479dd'),
(6143,6143,1,'Homepage','homepage','__home__',NULL,1,'2026-03-27 11:52:22','2026-03-27 11:52:22','94e61ad6-0617-4126-a812-3037a7b9e769'),
(6144,6144,1,'How It Works','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"How It Works\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"From consultation to results, I make every step seamless and stress - free\"}',1,'2026-03-27 11:52:22','2026-03-27 11:52:22','4b15660b-36ad-47e1-bab3-d05528bb09f0'),
(6149,6149,1,'Treatment Consultation','dermalux-led-phototherapy',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Treatment Consultation\",\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\"}',1,'2026-03-27 13:23:57','2026-03-27 13:23:57','a1c2fb61-cd86-4499-bfd9-2b030a546f72'),
(6150,6150,1,'Treatment Consultation','dermalux-single-treatment',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Treatment Consultation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£50\"}',1,'2026-03-27 13:23:57','2026-03-27 13:23:57','66bf4982-61e6-489f-a6a5-a9295b7e091d'),
(6151,6151,1,'Consultation','grupa-1',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Consultation\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Redeemable against treatment booked within four weeks (excluding skincare).</strong></span></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\"><strong>Non-refundable if you decide not to proceed.</strong></span></span></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132]}',1,'2026-03-27 13:24:03','2026-03-27 13:24:03','a9a3a6ea-66b7-47e7-8f45-14f167020125'),
(6153,6153,1,'Treatment Consultation','dermalux-led-phototherapy',NULL,'{\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\"}',1,'2026-03-27 13:24:23','2026-03-27 13:24:23','d2d76fee-d376-4726-b74d-429bd581b02d'),
(6155,6155,1,'Consultation','grupa-1',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Consultation\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Redeemable against treatment booked within four weeks (excluding skincare).</span></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-style:normal;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Non-refundable if you decide not to proceed.</span></span></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132]}',1,'2026-03-27 13:24:42','2026-03-27 13:24:42','34a4331b-eb36-4528-bf95-543b1b196b82'),
(6156,6156,1,'Injectable Treatments','injectable-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Injectable Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p><i>All injectable treatments include follow-up review where appropriate.</i></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6157,6166,6174,6179,6196]}',1,'2026-03-27 13:25:02','2026-03-31 09:26:35','4b6a719c-878c-498c-8251-c9cf7cea9610'),
(6157,6157,1,'Upper Face Anti-Wrinkle Injections','upper-face-anti-wrinkle-injections',NULL,'{\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4026]}',1,'2026-03-27 13:25:20','2026-03-27 13:28:43','b1ec59cc-90a5-483e-82af-7cc98b7de2e5'),
(6158,6158,1,'One area','one-area',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£145\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"One area\"}',1,'2026-03-27 13:25:31','2026-03-27 13:25:45','2e6376f8-0184-4aef-a7d4-9f8dcda76e42'),
(6159,6159,1,'Two areas','two-areas',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£195\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Two areas\"}',1,'2026-03-27 13:25:47','2026-03-27 13:26:00','50b4b117-17ae-49ef-a459-2e8626f2181a'),
(6160,6160,1,'Three areas','three-areas',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£250\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Three areas\"}',1,'2026-03-27 13:26:02','2026-03-27 13:26:10','3b331f82-18bc-4978-9886-44d67fc780ea'),
(6161,6161,1,NULL,'__temp_gxdavnikdakdczydldnhwfqesesgaqbbtork',NULL,NULL,1,'2026-03-27 13:26:12','2026-03-27 13:26:12','e3cc68ed-d010-426d-beab-1a03185ea402'),
(6162,6162,1,'Upper Face Anti-Wrinkle Injections','upper-face-anti-wrinkle-injections',NULL,'{\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4026]}',1,'2026-03-27 13:26:29','2026-03-27 13:26:29','2933a0d8-cdae-473d-8372-53b8d72a6f47'),
(6163,6163,1,'One area','one-area',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"One area\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£145\"}',1,'2026-03-27 13:26:29','2026-03-27 13:26:29','de5477c7-2b54-410a-bd6f-f671f12b8f97'),
(6164,6164,1,'Two areas','two-areas',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Two areas\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£195\"}',1,'2026-03-27 13:26:29','2026-03-27 13:26:29','1567c158-81f6-49bb-ad70-131b9f6a2028'),
(6165,6165,1,'Three areas','three-areas',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Three areas\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£250\"}',1,'2026-03-27 13:26:29','2026-03-27 13:26:29','7ddadd33-14a6-40f9-b863-7c9fe4836e6d'),
(6166,6166,1,'Lower Face Rejuvenation (Toxin)','lower-face-rejuvenation-toxin',NULL,'{\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4026]}',1,'2026-03-27 13:26:47','2026-03-27 13:28:43','91d74079-6203-4053-bcb8-a1d40dfeb209'),
(6167,6167,1,'Lower Face Radiance Lift','lower-face-radiance-lift',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £295\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Lower Face Radiance Lift\"}',1,'2026-03-27 13:27:23','2026-03-27 13:27:32','de57be42-4388-434f-adfa-733e439dcae2'),
(6168,6168,1,'Masseter reduction / jaw slimming','masseter-reduction-jaw-slimming',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £285\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Masseter reduction / jaw slimming\"}',1,'2026-03-27 13:27:39','2026-03-27 13:27:46','ba06e959-ac3a-4621-87e7-148712f03f43'),
(6169,6169,1,'Excessive Sweating Treatments','__temp_oxaqekjsegeqedzpvkbpwehbvzbihpfwfxfj',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Excessive Sweating Treatments\"}',1,'2026-03-27 13:27:54','2026-03-27 13:27:56','4edf62df-5454-4b1d-95ae-4e69c2375174'),
(6170,6170,1,'Lower Face Rejuvenation (Toxin)','lower-face-rejuvenation-toxin',NULL,'{\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4026]}',1,'2026-03-27 13:28:30','2026-03-27 13:28:30','ee798725-7654-4ad5-bc61-1c438ed0cc7a'),
(6171,6171,1,'Lower Face Radiance Lift','lower-face-radiance-lift',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Lower Face Radiance Lift\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £295\"}',1,'2026-03-27 13:28:30','2026-03-27 13:28:30','efe39633-c2d5-4ee1-be3b-b808bf284202'),
(6172,6172,1,'Masseter reduction / jaw slimming','masseter-reduction-jaw-slimming',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Masseter reduction / jaw slimming\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £285\"}',1,'2026-03-27 13:28:30','2026-03-27 13:28:30','ff152c21-1b2c-444d-9bff-2fa9845695c3'),
(6173,6173,1,'Injectable Treatments','injectable-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Injectable Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><i><span style=\\\"font-family:Calibri, sans-serif;font-size:12pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">All injectable treatments include follow-up review where appropriate.</span></i></span><br /> </p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6157,6166]}',1,'2026-03-27 13:28:42','2026-03-27 13:28:42','72462dcb-f906-454a-9262-f2b4e8ee7d6b'),
(6174,6174,1,'Excessive Sweating Treatments','excessive-sweating-treatments',NULL,NULL,1,'2026-03-27 13:57:18','2026-03-27 14:02:43','fc18644e-dda5-4c5b-a496-b0b63e6e171a'),
(6175,6175,1,'Under Arm','under-arm',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £365\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Arm\"}',1,'2026-03-27 13:57:23','2026-03-27 13:57:31','dc6dcc1b-56d9-42af-9156-4f48e06bf46b'),
(6176,6176,1,'Excessive Sweating Treatments','excessive-sweating-treatments',NULL,NULL,1,'2026-03-27 13:57:32','2026-03-27 13:57:32','3860674b-a4ee-442c-ab56-18ec17143cb5'),
(6177,6177,1,'Under Arm','under-arm',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Arm\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £365\"}',1,'2026-03-27 13:57:32','2026-03-27 13:57:32','64f89ec5-f776-4dbc-93f6-0c7fb88e47f4'),
(6179,6179,1,'Dermal Filler','dermal-filler',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"All dermal filler treatments require a consultation beforehand to provide a personalised treatment plan and accurate pricing.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-27 13:57:43','2026-03-31 09:18:49','d3e223d0-ec8d-42da-8a52-6051f60f5ce7'),
(6180,6180,1,'Structural Rejuvenation','structural-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Structural Rejuvenation\"}',1,'2026-03-27 13:58:37','2026-03-27 13:58:49','daad2a56-d4d2-4226-8992-3e969431f71a'),
(6181,6181,1,'Mid-Face Rejuvenation','mid-face-rejuvenation',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £590 – £1180\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Mid-Face Rejuvenation\"}',1,'2026-03-27 13:59:02','2026-03-27 13:59:20','ed98d31a-2aed-4af3-a164-9b28168daa01'),
(6182,6182,1,'Lower Face Rejuvenation','lower-face-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Lower Face Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £590 – £1475\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Option to combine with lower face toxin treatment\"}',1,'2026-03-27 13:59:27','2026-03-27 14:16:53','bd130df9-236b-4a47-a2d8-d37938aa7a08'),
(6183,6183,1,'Full Face Rejuvenation','full-face-rejuvenation',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £1180\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Full Face Rejuvenation\"}',1,'2026-03-27 14:00:28','2026-03-27 14:00:38','99c68cd2-86de-4ea3-ac62-908da991a27b'),
(6184,6184,1,'Dermal Filler','dermal-filler',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"All dermal filler treatments require a consultation beforehand to provide a personalised treatment plan and accurate pricing.\"}',1,'2026-03-27 14:00:40','2026-03-27 14:00:40','3603900c-0706-4115-8786-b72da586801c'),
(6185,6185,1,'Structural Rejuvenation','structural-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Structural Rejuvenation\"}',1,'2026-03-27 14:00:40','2026-03-27 14:00:40','ffb01b07-9932-4ea0-b153-7f86aca3a679'),
(6186,6186,1,'Mid-Face Rejuvenation','mid-face-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Mid-Face Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £590 – £1180\"}',1,'2026-03-27 14:00:40','2026-03-27 14:00:40','8d39776b-78be-4c11-86f8-9ecbce8972fb'),
(6187,6187,1,'Lower Face Rejuvenation','lower-face-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Lower Face Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £590 – £1475\"}',1,'2026-03-27 14:00:40','2026-03-27 14:00:40','a844b671-1d32-4f60-bfb9-11fc05ddab6c'),
(6188,6188,1,'Full Face Rejuvenation','full-face-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Full Face Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £1180\"}',1,'2026-03-27 14:00:40','2026-03-27 14:00:40','75abb30a-31a9-416c-ad3e-5dc4eb5091c9'),
(6189,6189,1,'Injectable Treatments','injectable-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Injectable Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><i><span style=\\\"font-family:Calibri, sans-serif;font-size:12pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">All injectable treatments include follow-up review where appropriate.</span></i></span><br /> </p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6157,6166,6174,6179]}',1,'2026-03-27 14:02:42','2026-03-27 14:02:42','8ad993ff-3535-4e8f-856a-650f4b5fa7ce'),
(6192,6192,1,'Dermal Filler','dermal-filler',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"All dermal filler treatments require a consultation beforehand to provide a personalised treatment plan and accurate pricing.\"}',1,'2026-03-27 14:16:53','2026-03-27 14:16:53','b742b9bb-56ca-4727-b495-11c67e5d4fed'),
(6193,6193,1,'Lower Face Rejuvenation','lower-face-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Lower Face Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £590 – £1475\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Option to combine with lower face toxin treatment\"}',1,'2026-03-27 14:16:53','2026-03-27 14:16:53','f6b1853f-763c-40e9-ba9c-009512ea9f50'),
(6195,6195,1,NULL,'__temp_naijbgxpujdqyiylwpykdtwrtsxsdywlymbk',NULL,NULL,1,'2026-03-27 14:18:05','2026-03-27 14:18:05','fb2fef85-8512-4bc5-a467-5288a3ccb83e'),
(6196,6196,1,'Signature Combination Treatments','signature-combination-treatments',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-27 14:18:41','2026-03-31 09:25:13','30aa0ce8-4bb8-4d4b-bab2-8baee3d74d38'),
(6197,6197,1,'Signature Radiance Lift','signature-radiance-lift',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Signature Radiance Lift\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £320 – £995\"}',1,'2026-03-27 14:18:52','2026-03-31 09:34:32','1c9bd19b-fca0-4d88-bbc8-12f67d700ffa'),
(6198,6198,1,'Structural filler treatment','structural-filler-treatment',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £320\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Structural filler treatment\"}',1,'2026-03-27 14:19:19','2026-03-27 14:19:27','c007d9ca-3cc7-4f49-af15-345297265ade'),
(6199,6199,1,'Complete Radiance programme (includes 3 skin boosters)','complete-radiance-programme-includes-3-skin-boosters',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £995\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Complete Radiance programme (includes 3 skin boosters)\"}',1,'2026-03-27 14:19:32','2026-03-27 14:19:45','6192bcb4-3b1e-4d14-b2f8-f18d81c6cb28'),
(6200,6200,1,'Signature Combination Treatments','signature-combination-treatments',NULL,NULL,1,'2026-03-27 14:19:56','2026-03-27 14:19:56','b4f426ec-5488-43c5-9dab-641c756e55f5'),
(6201,6201,1,'Signature Radiance Lift','signature-radiance-lift',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Signature Radiance Lift\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £320 – £995\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"A bespoke treatment using strategic dermal filler placement to restore facial support and create a subtle, natural lift.\"}',1,'2026-03-27 14:19:56','2026-03-27 14:19:56','c2bffa1f-42c7-483e-b11c-ac4178229512'),
(6202,6202,1,'Structural filler treatment','structural-filler-treatment',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Structural filler treatment\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £320\"}',1,'2026-03-27 14:19:56','2026-03-27 14:19:56','aa138aac-a9d6-4825-b62d-4b864ceb5229'),
(6203,6203,1,'Complete Radiance programme (includes 3 skin boosters)','complete-radiance-programme-includes-3-skin-boosters',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Complete Radiance programme (includes 3 skin boosters)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £995\"}',1,'2026-03-27 14:19:56','2026-03-27 14:19:56','dceeb8eb-5b2b-4a5e-a787-c2bfcdc2f486'),
(6207,6207,1,'Perioral Rejuvenation','perioral-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Perioral Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £520\"}',1,'2026-03-27 14:20:36','2026-03-31 09:25:13','889097ab-ab19-454d-b296-2b6cc4d82549'),
(6208,6208,1,'Signature Combination Treatments','signature-combination-treatments',NULL,NULL,1,'2026-03-27 14:20:36','2026-03-27 14:20:36','70098bd2-49fd-490d-af76-0319b7f39d67'),
(6209,6209,1,'Perioral Rejuvenation','perioral-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Perioral Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £520\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"A bespoke combination of dermal filler and skin quality treatments to soften lines, restore hydration and preserve natural expression.\"}',1,'2026-03-27 14:20:36','2026-03-27 14:20:36','8939458a-0ab8-4a42-9d6f-bbbc4b682aaf'),
(6210,6210,1,'Injectable Treatments','injectable-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Injectable Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><i><span style=\\\"font-family:Calibri, sans-serif;font-size:12pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">All injectable treatments include follow-up review where appropriate.</span></i></span><br /> </p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6157,6166,6174,6179,6196]}',1,'2026-03-27 14:20:48','2026-03-27 14:20:48','8e366fa5-9af5-4ed4-907b-44ffcea3f867'),
(6211,6211,1,'Skin Health & Regenerative Treatments','skin-health-regenerative-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Skin Health & Regenerative Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p><i>Treatments designed to improve skin quality, stimulate collagen and support long-term skin health.</i></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6212,6216,6224,6232]}',1,'2026-03-27 14:20:52','2026-03-31 09:26:59','32869635-af4f-4bb3-9745-a8a6f6f1df1c'),
(6212,6212,1,'Skin Consultation & Analysis','skin-consultation-analysis',NULL,NULL,1,'2026-03-27 14:21:27','2026-03-27 14:33:19','5415a2a1-e09e-4304-91bb-a4cdee2bf33e'),
(6213,6213,1,'Comprehensive Skin Consultation (60 mins)','comprehensive-skin-consultation-60-mins',NULL,'{\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Includes full assessment, treatment planning and professional skin analysis\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£75\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Comprehensive Skin Consultation (60 mins)\"}',1,'2026-03-27 14:21:31','2026-03-27 14:21:49','9a033eb2-58ea-4168-9481-e24e182cfe09'),
(6214,6214,1,'Skin Consultation & Analysis','skin-consultation-analysis',NULL,NULL,1,'2026-03-27 14:21:58','2026-03-27 14:21:58','8abd9567-2eb9-4a2e-80ed-ee21162b6d86'),
(6215,6215,1,'Comprehensive Skin Consultation (60 mins)','comprehensive-skin-consultation-60-mins',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Comprehensive Skin Consultation (60 mins)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£75\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Includes full assessment, treatment planning and professional skin analysis\"}',1,'2026-03-27 14:21:58','2026-03-27 14:21:58','7456acf0-db2a-47cb-9367-f8786f735fb8'),
(6216,6216,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-03-27 14:22:02','2026-03-31 09:23:36','44a1fdc2-4e8f-4f4a-99ed-20f27be2fe8e'),
(6217,6217,1,'pHformula Skin Resurfacing','phformula-skin-resurfacing-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"pHformula Skin Resurfacing\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £540\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-27 14:22:09','2026-03-31 09:40:07','94ed1570-6a6c-4622-b7b2-91a9766ba12f'),
(6218,6218,1,'Advanced TCA Touch','advanced-tca-touch',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Advanced TCA Touch\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £350\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-27 14:22:29','2026-03-31 09:39:18','4542c6d5-292b-45cb-804a-3c704e762a2c'),
(6219,6219,1,'BioRePeel + Medical Microneedling','biorepeel-medical-microneedling-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"BioRePeel + Medical Microneedling\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £1060\"}',1,'2026-03-27 14:22:46','2026-03-31 09:38:35','c7f9de57-6d66-46e0-8f2e-00886d7c30e9'),
(6220,6220,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-27 14:23:11','2026-03-27 14:23:11','a3c8b3a1-6236-4598-88c0-368ff0751eb9'),
(6221,6221,1,'pHformula Skin Resurfacing (course of 4 treatments)','phformula-skin-resurfacing-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"pHformula Skin Resurfacing (course of 4 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£540\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Targeted resurfacing for acne, pigmentation, redness and ageing. Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-27 14:23:11','2026-03-27 14:23:11','b4fa3563-77ee-47bc-9f98-4d1f0bdb4a28'),
(6222,6222,1,'Advanced TCA Touch','advanced-tca-touch',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Advanced TCA Touch\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £350\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Course of 2–3 treatments typically recommended. Requires pHformula homecare preparation.\"}',1,'2026-03-27 14:23:11','2026-03-27 14:23:11','f7ff8559-6374-4f88-bdfa-2c0135a4a5c4'),
(6223,6223,1,'BioRePeel + Medical Microneedling (course of 4 treatments)','biorepeel-medical-microneedling-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"BioRePeel + Medical Microneedling (course of 4 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£1060\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Corrective course of 4 treatments combining resurfacing with collagen stimulation to improve acne, texture and uneven tone.\"}',1,'2026-03-27 14:23:11','2026-03-27 14:23:11','2157d7c5-8ee5-4cd6-ac7a-b18e889457be'),
(6224,6224,1,'Advanced Regenerative Microneedling','advanced-regenerative-microneedling',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, but longer treatment courses may be required.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4418]}',1,'2026-03-27 14:25:17','2026-03-31 09:36:10','99d0fd54-6eb1-455a-8b1c-78a438f5c8f0'),
(6225,6225,1,'Skin Boost Microneedling (NCTF)','skin-boost-microneedling-nctf',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £510\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Skin Boost Microneedling (NCTF)\"}',1,'2026-03-27 14:25:38','2026-03-27 14:25:45','0cc24f18-c716-4aa1-a1df-41380d7c67f8'),
(6226,6226,1,'Regenerative Microneedling (PDRN) (most popular)','regenerative-microneedling-pdrn-most-popular',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £660\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Regenerative Microneedling (PDRN) (most popular)\"}',1,'2026-03-27 14:25:47','2026-03-27 14:25:59','7fec53fe-97cc-4a33-927e-16335aad8e8a'),
(6227,6227,1,'Exosome Microneedling (Purasomes)','exosome-microneedling-purasomes',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Exosome Microneedling (Purasomes)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £780\"}',1,'2026-03-27 14:26:06','2026-03-31 09:36:10','f47b6959-9a4f-490e-b895-c60e5d292287'),
(6228,6228,1,'Advanced Regenerative Microneedling','advanced-regenerative-microneedling',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4418]}',1,'2026-03-27 14:26:44','2026-03-27 14:26:44','d6f17061-2789-4a52-8107-702f841154e7'),
(6229,6229,1,'Skin Boost Microneedling (NCTF)','skin-boost-microneedling-nctf',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Skin Boost Microneedling (NCTF)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £510\"}',1,'2026-03-27 14:26:44','2026-03-27 14:26:44','49eb521c-822e-4e66-92ab-b2b9f1e8a436'),
(6230,6230,1,'Regenerative Microneedling (PDRN) (most popular)','regenerative-microneedling-pdrn-most-popular',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Regenerative Microneedling (PDRN) (most popular)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £660\"}',1,'2026-03-27 14:26:44','2026-03-27 14:26:44','ba2717c4-3b94-4440-967e-fe5d1756642d'),
(6231,6231,1,'Exosome Microneedling (Purasomes)','exosome-microneedling-purasomes',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Exosome Microneedling (Purasomes)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £780\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Longer treatment courses may be recommended where appropriate.\"}',1,'2026-03-27 14:26:44','2026-03-27 14:26:44','6364c18d-b3cd-4869-920f-22c1a5a0d146'),
(6232,6232,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, but longer treatment courses may be required.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-03-27 14:26:51','2026-04-02 08:56:55','3fcc6565-d29f-43aa-a55f-3d0cdb2aa14c'),
(6233,6233,1,'Skin Boosters','skin-boosters-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Skin Boosters\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £675\"}',1,'2026-03-27 14:26:57','2026-03-31 09:33:06','89172a33-7972-4423-b7bd-3568e3a621eb'),
(6234,6234,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended. Prices shown reflect a course of treatment.\"}',1,'2026-03-27 14:33:15','2026-03-27 14:33:15','32a7ce4f-2f6d-4e29-8335-a31106f70af9'),
(6235,6235,1,'Skin Boosters (course of 3)','skin-boosters-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Skin Boosters (course of 3)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £675\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Designed to improve hydration, skin texture and overall skin quality.\"}',1,'2026-03-27 14:33:15','2026-03-27 14:33:15','44be246b-ab10-4f9a-885b-e3e1b9fdca53'),
(6236,6236,1,'Skin Health & Regenerative Treatments','skin-health-regenerative-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Skin Health & Regenerative Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><i><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Treatments designed to improve skin quality, stimulate collagen and support long-term skin health.</span></i></span></p><p><br /> </p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6212,6216,6224,6232]}',1,'2026-03-27 14:33:18','2026-03-27 14:33:18','1e6c8c80-59c5-465d-aa5e-828e70ddd911'),
(6242,6242,1,'Polynucleotide Treatments','polynucleotide-treatments-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Polynucleotide Treatments\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £720\"}',1,'2026-03-27 14:48:19','2026-03-31 09:30:41','797b22f8-e609-4d2e-8724-d74707483e76'),
(6243,6243,1,'Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)','under-eye-radiance-renewal-sunekos-most-popular-for-under-eye-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £720\"}',1,'2026-03-27 14:48:19','2026-03-31 09:30:41','9861af36-5c36-4a9d-a3f8-5b96453e863b'),
(6244,6244,1,'Under Eye Radiance Repair (Polynucleotides)','under-eye-radiance-repair-polynucleotides',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Repair (Polynucleotides)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £720\"}',1,'2026-03-27 14:48:19','2026-03-31 09:35:14','26b93112-0388-418a-a6d4-e6fa801ef6a6'),
(6245,6245,1,'JULAINE™','julaine',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"JULAINE™\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £2250\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Advanced collagen stimulation treatment designed to gradually restore firmness and structural support. Often recommended where deeper collagen support is needed.  Results develop gradually and can last up to 2 years.\"}',1,'2026-03-27 14:48:19','2026-03-27 14:48:19','ba14fd32-8b61-47a0-8624-149aff7f82cd'),
(6246,6246,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended. Prices shown reflect a course of treatment.\"}',1,'2026-03-27 14:48:19','2026-03-27 14:48:19','d257f920-6fe1-4610-a26b-a9df764b28f1'),
(6247,6247,1,'Polynucleotide Treatments (course of 3)','polynucleotide-treatments-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Polynucleotide Treatments (course of 3)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £720\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Regenerative treatment supporting skin repair, inflammation control and collagen stimulation.\"}',1,'2026-03-27 14:48:19','2026-03-27 14:48:19','c1cd1f2b-7114-43ac-b3b0-169695865b45'),
(6248,6248,1,'Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)','under-eye-radiance-renewal-sunekos-most-popular-for-under-eye-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£720 (course of 3)\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Improves fine lines, crepey skin and hydration.\"}',1,'2026-03-27 14:48:19','2026-03-27 14:48:19','d0ca544d-17ee-4118-a45a-176fd5ea17a2'),
(6249,6249,1,'Under Eye Radiance Repair (Polynucleotides)','under-eye-radiance-repair-polynucleotides',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Repair (Polynucleotides)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£720 (course of 3)\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Supports skin repair and improves dark circles.\"}',1,'2026-03-27 14:48:19','2026-03-27 14:48:19','81f1bf98-f2ff-4d3a-b75d-3b21ec518c27'),
(6250,6250,1,'JULAINE™','julaine',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"JULAINE™\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £2250\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Advanced collagen stimulation treatment designed to gradually restore firmness and structural support. Often recommended where deeper collagen support is needed.  Results develop gradually and can last up to 2 years.\"}',1,'2026-03-27 14:48:19','2026-03-27 14:48:19','b4ed064c-c460-40e4-9a5d-c14e50cd87ad'),
(6251,6251,1,'Skin Health & Regenerative Treatments','skin-health-regenerative-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Skin Health & Regenerative Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><span style=\\\"background-color:transparent;color:#000000;\\\"><i><span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;font-variant:normal;font-weight:400;text-decoration:none;vertical-align:baseline;white-space:pre-wrap;\\\">Treatments designed to improve skin quality, stimulate collagen and support long-term skin health.</span></i></span></p><p><br /> </p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6212,6216,6224,6232]}',1,'2026-03-27 14:48:23','2026-03-27 14:48:23','1d757e69-5b22-4cf0-86df-fcc25e63d829'),
(6252,6252,1,'Skin Lesion Removal','lesion-removal',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Skin Lesion Removal\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6253,6265]}',1,'2026-03-27 14:48:25','2026-03-31 09:33:52','49c72f48-47d2-400f-aa0c-12b3f4c80e43'),
(6253,6253,1,'Cryotherapy','cryotherapy',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[]}',1,'2026-03-27 14:48:42','2026-03-31 09:22:14','69b598e7-d144-4b37-befc-3d3cf8b3b3ba'),
(6254,6254,1,'Consultation','consultation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£30\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Consultation fee deductible from treatment cost, if treatment proceeds within 4 weeks. Final treatment cost depends on the size, type and number of lesions.\"}',1,'2026-03-27 14:48:51','2026-03-31 09:22:14','245910bc-34c5-4425-bc63-7d566b7da85e'),
(6255,6255,1,'Single lesion removal','single-lesion-removal',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £70\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Single lesion removal\"}',1,'2026-03-27 14:49:10','2026-03-27 14:49:18','76d39b81-9ffe-4c93-826b-c6005c0508f3'),
(6256,6256,1,'Additional lesion (same session)','additional-lesion-same-session',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £40\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Additional lesion (same session)\"}',1,'2026-03-27 14:49:19','2026-03-27 14:49:30','8d60e9b8-e56c-4f76-890e-0cb28c7f8673'),
(6257,6257,1,'Follow-up retreatment (if required)','follow-up-retreatment-if-required',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £50\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Follow-up retreatment (if required)\"}',1,'2026-03-27 14:49:31','2026-03-27 14:49:41','6270436c-6179-480a-bf7b-be61bb12dbe3'),
(6258,6258,1,'Verrucae removal (2 treatments)','verrucae-removal-2-treatments',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £250\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Verrucae removal (2 treatments)\"}',1,'2026-03-27 14:49:45','2026-03-27 14:49:52','a57ee42d-4c3b-4fff-95c6-34d276308a90'),
(6259,6259,1,'Cryotherapy','cryotherapy',NULL,NULL,1,'2026-03-27 14:49:54','2026-03-27 14:49:54','858be32c-2057-4539-9e0e-cef984f3666c'),
(6260,6260,1,'Consultation','consultation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£30\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Consultation fee deductible from treatment cost if treatment proceeds within 4 weeks Final treatment cost depends on the size, type and number of lesions\"}',1,'2026-03-27 14:49:54','2026-03-27 14:49:54','bee13539-61ba-42ff-a7ac-92390c48f31a'),
(6261,6261,1,'Single lesion removal','single-lesion-removal',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Single lesion removal\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £70\"}',1,'2026-03-27 14:49:54','2026-03-27 14:49:54','6ea91be3-abdc-4083-a50f-c55a9bc0472f'),
(6262,6262,1,'Additional lesion (same session)','additional-lesion-same-session',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Additional lesion (same session)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £40\"}',1,'2026-03-27 14:49:54','2026-03-27 14:49:54','922c8b22-77e5-4782-88be-96d02d7719a9'),
(6263,6263,1,'Follow-up retreatment (if required)','follow-up-retreatment-if-required',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Follow-up retreatment (if required)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £50\"}',1,'2026-03-27 14:49:55','2026-03-27 14:49:55','3c74b156-e180-4786-9e31-f45fedc8671c'),
(6264,6264,1,'Verrucae removal (2 treatments)','verrucae-removal-2-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Verrucae removal (2 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £250\"}',1,'2026-03-27 14:49:55','2026-03-27 14:49:55','4c9a36ce-aaf1-4b8d-904e-d3ac2db14b38'),
(6265,6265,1,'Mole Mapping','mole-mapping',NULL,NULL,1,'2026-03-27 14:50:02','2026-03-27 14:50:26','35193259-9cdf-4f26-a5bb-40eebd399db4'),
(6266,6266,1,'Up to 3 moles (with dermatologist report)','up-to-3-moles-with-dermatologist-report',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£125\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Up to 3 moles (with dermatologist report)\"}',1,'2026-03-27 14:50:04','2026-03-27 14:50:12','5883772d-cf1f-48c9-bfc2-47897c867298'),
(6267,6267,1,'Up to 6 moles (with dermatologist report)','up-to-6-moles-with-dermatologist-report',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£225\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Up to 6 moles (with dermatologist report)\"}',1,'2026-03-27 14:50:13','2026-03-27 14:50:21','b3ba66ee-39be-4104-8b24-0a996c4424ab'),
(6268,6268,1,'Mole Mapping','mole-mapping',NULL,NULL,1,'2026-03-27 14:50:22','2026-03-27 14:50:22','b37f3b40-ed2a-430d-9fb7-80f1e0f607b6'),
(6269,6269,1,'Up to 3 moles (with dermatologist report)','up-to-3-moles-with-dermatologist-report',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Up to 3 moles (with dermatologist report)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£125\"}',1,'2026-03-27 14:50:22','2026-03-27 14:50:22','9eba70cd-113a-4957-9065-5672fa7b981f'),
(6270,6270,1,'Up to 6 moles (with dermatologist report)','up-to-6-moles-with-dermatologist-report',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Up to 6 moles (with dermatologist report)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£225\"}',1,'2026-03-27 14:50:22','2026-03-27 14:50:22','40285c60-96e1-42c6-ae1a-a558ad546ced'),
(6271,6271,1,'Lesion Removal','lesion-removal',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Lesion Removal\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6253,6265]}',1,'2026-03-27 14:50:26','2026-03-27 14:50:26','2598e40d-8a97-4641-a800-348097017c60'),
(6274,6274,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 10:07:47','2026-03-29 10:07:47','edbb581b-fa01-4a5d-a829-b150450b6c5b'),
(6275,6275,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Expert aesthetic treatments delivered by a qualified medical doctor with over 10 years of clinical experience. Dr Rachel combines medical precision with an artist’s eye to enhance your natural features - never mask them.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-29 10:07:47','2026-03-29 10:07:47','e8c2fc56-c43c-4e3e-9cfe-0cab73ae40bf'),
(6278,6278,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"a1fc5688-356a-440e-bb6d-d1b273378a1f\":\"<script src=\\\"https://cdn.commoninja.com/sdk/latest/commonninja.js\\\" defer></script>\\n<div class=\\\"commonninja_component pid-4fa0fb45-7d57-4abd-b639-98d68a21a6a1\\\"></div>\"}',1,'2026-03-29 10:42:40','2026-04-01 14:59:54','52e9bf97-2371-46f8-ba23-f297687b588b'),
(6279,6279,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 10:42:40','2026-03-29 10:42:40','cf6c1932-53cb-48b7-8ceb-1f6fb0ef05ee'),
(6280,6280,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\"}',1,'2026-03-29 10:42:40','2026-03-29 10:42:40','2632d30e-fca8-4417-9de3-9fd017b0fc4c'),
(6283,6283,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 10:49:24','2026-03-29 10:49:24','0657a653-f001-4b11-ae19-033129043abe'),
(6284,6284,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"9c835490-2f52-4f52-a0af-140bfe0f66b8\":\"<iframe frameborder=\\\"0\\\" width=\\\"100%\\\" height=\\\"1000\\\"></iframe>\"}',1,'2026-03-29 10:49:24','2026-03-29 10:49:24','a5699c53-546d-4c9f-a21c-40e2d3247a0e'),
(6287,6287,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 10:52:16','2026-03-29 10:52:16','75dc0955-7235-4372-98d7-fe5f222cd65c'),
(6288,6288,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"a1fc5688-356a-440e-bb6d-d1b273378a1f\":\"<div class=\\\"sk-ww-google-reviews\\\" data-embed-id=\\\"25667851\\\"></div><script src=\\\"https://widgets.sociablekit.com/google-reviews/widget.js\\\" defer></script>\"}',1,'2026-03-29 10:52:16','2026-03-29 10:52:16','520a9433-dd18-4ffd-9b6c-b45e93704afe'),
(6291,6291,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 10:53:27','2026-03-29 10:53:27','0f041cbc-6226-4fee-b9ad-08409b8f8679'),
(6292,6292,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"a1fc5688-356a-440e-bb6d-d1b273378a1f\":\"<div class=\\\"sk-ww-google-reviews\\\" data-embed-id=\\\"25667851\\\"></div><script src=\\\"https://widgets.sociablekit.com/google-reviews/widget.js\\\" defer></script>\"}',1,'2026-03-29 10:53:27','2026-03-29 10:53:27','c968b704-4c9b-4c44-a2bb-309bb4bc91df'),
(6295,6295,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 10:53:43','2026-03-29 10:53:43','28b092b3-7ed9-4787-9d35-577a9681cfad'),
(6296,6296,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Expert aesthetic treatments delivered by a qualified medical doctor with over 10 years of clinical experience. Dr Rachel combines medical precision with an artist’s eye to enhance your natural features - never mask them.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":false,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-29 10:53:43','2026-03-29 10:53:43','e1532b7c-e338-47cf-8360-4c6236f71fa2'),
(6299,6299,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 11:46:49','2026-03-29 11:46:49','d9170593-c9f1-407f-a11b-18da4153522e'),
(6300,6300,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<!-- Elfsight Instagram Feed | Untitled Instagram Feed -->\\n<script src=\\\"https://elfsightcdn.com/platform.js\\\" async></script>\\n<div class=\\\"elfsight-app-13fef86c-e4da-47fe-8492-1ca528f06c2c\\\" data-elfsight-app-lazy></div>\"}',1,'2026-03-29 11:46:49','2026-03-29 11:46:49','e423672b-87ce-4bb8-a154-bdc5657ece91'),
(6303,6303,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 11:55:05','2026-03-29 11:55:05','330730bd-66ab-4082-b8cb-31c08b2cc427'),
(6304,6304,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<!-- Elfsight Instagram Feed | Untitled Instagram Feed -->\\n<script src=\\\"https://elfsightcdn.com/platform.js\\\" async></script>\\n<div class=\\\"elfsight-app-13fef86c-e4da-47fe-8492-1ca528f06c2c\\\" data-elfsight-app-lazy></div>\"}',1,'2026-03-29 11:55:05','2026-03-29 11:55:05','70dcb8db-731c-4ddd-8a27-bb9628a854ad'),
(6307,6307,1,'Homepage','homepage','__home__',NULL,1,'2026-03-29 11:55:36','2026-03-29 11:55:36','90851004-df3e-4853-bca4-ae53c71f3011'),
(6308,6308,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"}}',1,'2026-03-29 11:55:36','2026-03-29 11:55:36','226732b9-dcaf-421c-969d-6157cac03090'),
(6311,6311,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 10:18:17','2026-03-30 10:18:17','427945f1-084a-4b9a-92ea-cd3249b719e8'),
(6312,6312,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Expert aesthetic treatments delivered by a qualified medical doctor with over 10 years of clinical experience. Dr Rachel combines medical precision with an artist’s eye to enhance your natural features - never mask them.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-30 10:18:17','2026-03-30 10:18:17','3e622228-3d8a-46fa-b7df-49a3f62fc682'),
(6315,6315,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 10:56:54','2026-03-30 10:56:54','d454345f-de30-4acc-a871-7667577fc532'),
(6316,6316,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Refreshed. Natural\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Confidence Restored.\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Expert aesthetic treatments delivered by a qualified medical doctor with over 10 years of clinical experience. Dr Rachel combines medical precision with an artist’s eye to enhance your natural features - never mask them.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-30 10:56:54','2026-03-30 10:56:54','9e6e1d61-be33-40f9-b64c-10e9bb2d6769'),
(6320,6320,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 10:57:29','2026-03-30 10:57:29','eab1bc4b-6d59-4fe8-b786-d646f6c7cdd4'),
(6321,6321,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Refreshed. Natural.\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Confidence. Restored.\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Expert aesthetic treatments delivered by a qualified medical doctor with over 10 years of clinical experience. Dr Rachel combines medical precision with an artist’s eye to enhance your natural features - never mask them.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-30 10:57:29','2026-03-30 10:57:29','488d8022-5003-4ce3-88ca-2697c4a0437f'),
(6327,6327,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 10:57:52','2026-03-30 10:57:52','6495d2e8-6580-4c8c-9026-a098ca520d12'),
(6328,6328,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 10:58:01','2026-03-30 10:58:01','3463224e-ea8f-407c-8e02-a40e6b3f3301'),
(6332,6332,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 16:48:43','2026-03-30 16:48:43','2e6c86b7-d321-4123-9d2c-e03d8545d393'),
(6333,6333,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for inspiration and exclusive offers</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<!-- Elfsight Instagram Feed | Untitled Instagram Feed -->\\n<script src=\\\"https://elfsightcdn.com/platform.js\\\" async></script>\\n<div class=\\\"elfsight-app-13fef86c-e4da-47fe-8492-1ca528f06c2c\\\" data-elfsight-app-lazy></div>\"}',1,'2026-03-30 16:48:43','2026-03-30 16:48:43','83ec791e-0093-42eb-919b-7acc0d75f0d1'),
(6334,6334,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"a1fc5688-356a-440e-bb6d-d1b273378a1f\":\"<div class=\\\"sk-ww-google-reviews\\\" data-embed-id=\\\"25667851\\\"></div><script src=\\\"https://widgets.sociablekit.com/google-reviews/widget.js\\\" defer></script>\"}',1,'2026-03-30 16:48:43','2026-03-30 16:48:43','f3eb7d95-c7f9-4478-984c-2159dee66439'),
(6336,6336,1,'Homepage','homepage','__home__',NULL,1,'2026-03-30 16:49:56','2026-03-30 16:49:56','d6194847-0462-4192-8dd3-2d4522cc3c79'),
(6337,6337,1,'Polynucleotides treatment wirral',NULL,NULL,NULL,1,'2026-03-30 18:01:06','2026-03-30 18:01:06','279c3c09-02c3-4cf0-85d6-90d4cbc0cc32'),
(6338,6338,1,'Sunekos treatment wirral',NULL,NULL,NULL,1,'2026-03-30 18:01:07','2026-03-30 18:01:07','e9c32c4a-3008-4e3c-bafb-398897e972a1'),
(6340,6340,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-03-30 18:01:13','2026-03-30 18:01:13','1815ab97-2de3-4395-909e-b86e4c94d597'),
(6342,6342,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-03-30 18:01:34','2026-03-30 18:01:34','278baf45-39d0-445b-9f5d-282d59165b01'),
(6343,6343,1,'Bio-Stimulators','juläine-bio-stimulators','treatments/juläine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-03-30 18:02:28','2026-03-30 18:02:28','c5a0ef2c-2098-47ae-93fa-5cc67ef77c6d'),
(6344,6344,1,'Chemicla peel in the wirral',NULL,NULL,NULL,1,'2026-03-30 18:30:49','2026-03-30 18:30:49','2785fe19-2402-4da3-925a-9fe6f43f51ee'),
(6346,6346,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-03-30 18:31:48','2026-03-30 18:31:48','6c8dec86-9217-4c11-802c-255016342402'),
(6347,6347,1,'Home rachel1',NULL,NULL,NULL,1,'2026-03-31 09:16:56','2026-03-31 09:16:56','ec5841f9-1a33-450a-b940-60fcf032dc38'),
(6350,6350,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:17:00','2026-03-31 09:17:00','4943298e-4dab-4420-afda-e459f72da6f6'),
(6351,6351,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\"><span style=\\\"background-color:transparent;color:hsl(16,54%,64%);\\\">GMC-registered medical doctor</span><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"> </span></a><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a member of the Aesthetics Complications Expert Group (ACE Group), trained in advanced complication management, and regularly undertakes CPD through leading aesthetic training bodies. She operates from a CQC-compliant clinical environment where patient safety is never compromised.</span></p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-31 09:17:01','2026-03-31 09:17:01','2dd785ef-74c0-4bf3-97eb-236ba5f45227'),
(6352,6352,1,'Dermal Filler','dermal-filler',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"All dermal filler treatments require a consultation beforehand to provide a personalised treatment plan and accurate pricing.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-31 09:18:49','2026-03-31 09:18:49','74cc80b0-a4be-47dc-9656-49f7ab703c17'),
(6355,6355,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended. Prices shown reflect a course of treatment.\"}',1,'2026-03-31 09:20:18','2026-03-31 09:20:18','fb657346-cdbf-433e-a1d5-07a4eabbf9a5'),
(6356,6356,1,'Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)','under-eye-radiance-renewal-sunekos-most-popular-for-under-eye-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £720\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Improves fine lines, crepey skin and hydration.\"}',1,'2026-03-31 09:20:18','2026-03-31 09:20:18','1ef06d72-8690-4b57-ae39-092a32d90c8e'),
(6359,6359,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended. Prices shown reflect a course of treatment.\"}',1,'2026-03-31 09:21:10','2026-03-31 09:21:10','43d14982-b4b0-465a-9562-c370c819159c'),
(6360,6360,1,'Polynucleotide Treatments','polynucleotide-treatments-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Polynucleotide Treatments\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £720\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Regenerative treatment supporting skin repair, inflammation control and collagen stimulation.\"}',1,'2026-03-31 09:21:10','2026-03-31 09:21:10','12801136-034f-4716-b0e9-9e451b6aec27'),
(6363,6363,1,'Cryotherapy','cryotherapy',NULL,NULL,1,'2026-03-31 09:22:14','2026-03-31 09:22:14','f90481b5-4e27-46e8-a4bc-28e9dedf4961'),
(6364,6364,1,'Consultation','consultation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Consultation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£30\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Consultation fee deductible from treatment cost, if treatment proceeds within 4 weeks. Final treatment cost depends on the size, type and number of lesions.\"}',1,'2026-03-31 09:22:14','2026-03-31 09:22:14','42865909-f249-4af8-89c6-c4f88f412e52'),
(6365,6365,1,'Lesion Removal','lesion-removal',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Lesion Removal\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6253,6265]}',1,'2026-03-31 09:22:16','2026-03-31 09:22:16','36386495-52cd-43a6-80ed-0c9b62f339e1'),
(6367,6367,1,'Dermal Filler','dermal-filler',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"All dermal filler treatments require a consultation beforehand to provide a personalised treatment plan and accurate pricing.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-31 09:22:48','2026-03-31 09:22:48','5158e1f5-fc79-4b83-a58e-f0c4f0b5edda'),
(6370,6370,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:23:36','2026-03-31 09:23:36','8946997e-1eba-46c1-83f1-f2f4043eee8d'),
(6371,6371,1,'pHformula Skin Resurfacing (course of 4 treatments)','phformula-skin-resurfacing-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"pHformula Skin Resurfacing (course of 4 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £540\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Targeted resurfacing for acne, pigmentation, redness and ageing. Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-31 09:23:36','2026-03-31 09:23:36','1afcaed2-443f-4dff-9229-446d811e4fdc'),
(6374,6374,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:24:13','2026-03-31 09:24:13','42083902-41b3-41fa-afd7-6faa83a105ab'),
(6375,6375,1,'BioRePeel + Medical Microneedling (course of 4 treatments)','biorepeel-medical-microneedling-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"BioRePeel + Medical Microneedling (course of 4 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £1060\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Corrective course of 4 treatments combining resurfacing with collagen stimulation to improve acne, texture and uneven tone.\"}',1,'2026-03-31 09:24:13','2026-03-31 09:24:13','086e262d-3549-4cff-a024-bcb313b9b809'),
(6378,6378,1,'Signature Combination Treatments','signature-combination-treatments',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-31 09:25:13','2026-03-31 09:25:13','ab667bb7-61f0-4afa-ad66-5c5b21df71b0'),
(6379,6379,1,'Perioral Rejuvenation','perioral-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Perioral Rejuvenation\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £520\"}',1,'2026-03-31 09:25:13','2026-03-31 09:25:13','5ec678f0-86f9-4bc2-bd46-07c3f77c2a57'),
(6381,6381,1,'Consultation','grupa-1',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Consultation\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p style=\\\"line-height:1.2;margin-bottom:0pt;margin-top:0pt;\\\" dir=\\\"ltr\\\"><i>Redeemable against treatments if booked within 4 weeks of your consultation (excluding skincare).</i><br /><i>Non-refundable if you decide not to proceed.</i></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[1132]}',1,'2026-03-31 09:25:43','2026-03-31 09:25:43','8935cde3-f90e-4618-a2c0-0cd771fcc7de'),
(6383,6383,1,'Injectable Treatments','injectable-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Injectable Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p><i>All injectable treatments include follow-up review where appropriate.</i></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6157,6166,6174,6179,6196]}',1,'2026-03-31 09:26:35','2026-03-31 09:26:35','a1157a93-4636-4701-8331-5b7667bb8876'),
(6385,6385,1,'Skin Health & Regenerative Treatments','skin-health-regenerative-treatments',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Skin Health & Regenerative Treatments\",\"299c38c6-3179-443f-bc02-f3198c3b9b23\":\"<p><i>Treatments designed to improve skin quality, stimulate collagen and support long-term skin health.</i></p>\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6212,6216,6224,6232]}',1,'2026-03-31 09:26:59','2026-03-31 09:26:59','81f25bfa-10de-4638-bd39-c178cce03181'),
(6387,6387,1,'Signature Combination Treatments','signature-combination-treatments',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-31 09:28:32','2026-03-31 09:28:32','a380fd32-f760-42e1-b862-eea15c6aee10'),
(6389,6389,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, reflected in the prices shown below.\"}',1,'2026-03-31 09:29:27','2026-03-31 09:29:27','639cbf3b-8d45-4768-802e-e9eb40231f12'),
(6392,6392,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:29:58','2026-03-31 09:29:58','5438599d-9eb4-4dd9-ae0a-fe443e55d117'),
(6393,6393,1,'BioRePeel + Medical Microneedling (course of 4 treatments)','biorepeel-medical-microneedling-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"BioRePeel + Medical Microneedling (course of 4 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £1060\"}',1,'2026-03-31 09:29:58','2026-03-31 09:29:58','e88f628d-b030-43d2-af2b-d49c55cf4872'),
(6400,6400,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, reflected in the prices shown below.\"}',1,'2026-03-31 09:30:41','2026-03-31 09:30:41','0442cd01-16c5-4ebd-97e2-67a85d3d22e3'),
(6401,6401,1,'Skin Boosters (course of 3)','skin-boosters-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Skin Boosters (course of 3)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £675\"}',1,'2026-03-31 09:30:41','2026-03-31 09:30:41','04192014-1d8d-4f99-8df8-86c244e5af45'),
(6402,6402,1,'Polynucleotide Treatments','polynucleotide-treatments-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Polynucleotide Treatments\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £720\"}',1,'2026-03-31 09:30:41','2026-03-31 09:30:41','a5ce54da-4295-4e31-8816-40606a6d56e8'),
(6403,6403,1,'Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)','under-eye-radiance-renewal-sunekos-most-popular-for-under-eye-rejuvenation',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Renewal (Sunekos) (most popular for under eye rejuvenation)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £720\"}',1,'2026-03-31 09:30:41','2026-03-31 09:30:41','899b5841-3f97-4045-8fea-02d010d9052d'),
(6404,6404,1,'Under Eye Radiance Repair (Polynucleotides)','under-eye-radiance-repair-polynucleotides',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Repair (Polynucleotides)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£720 (course of 3)\"}',1,'2026-03-31 09:30:41','2026-03-31 09:30:41','578e5cb6-cdf1-46ca-8c6f-0702798f6443'),
(6405,6405,1,'JULAINE™','julaine',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"JULAINE™\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £2250\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Advanced collagen stimulation treatment designed to gradually restore firmness and structural support. Often recommended where deeper collagen support is needed.  Results develop gradually and can last up to 2 years.\"}',1,'2026-03-31 09:30:41','2026-03-31 09:30:41','864c35a7-cf6c-4673-832c-e8557c20a265'),
(6408,6408,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, reflected in the prices shown below.\"}',1,'2026-03-31 09:33:06','2026-03-31 09:33:06','378f7795-696c-49b1-8ed3-744cc069d6ef'),
(6409,6409,1,'Skin Boosters','skin-boosters-course-of-3',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Skin Boosters\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £675\"}',1,'2026-03-31 09:33:06','2026-03-31 09:33:06','d6e7e875-fb0b-43b0-8e8e-7676e1245d82'),
(6411,6411,1,'Skin Lesion Removal','lesion-removal',NULL,'{\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\":\"Skin Lesion Removal\",\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\":[6253,6265]}',1,'2026-03-31 09:33:52','2026-03-31 09:33:52','3e1e6e6f-26df-4e7a-9e74-a8ce926d39a6'),
(6414,6414,1,'Signature Combination Treatments','signature-combination-treatments',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[4702]}',1,'2026-03-31 09:34:32','2026-03-31 09:34:32','053bd672-e858-40d8-b057-ba9f5993b031'),
(6415,6415,1,'Signature Radiance Lift','signature-radiance-lift',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Signature Radiance Lift\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £320 – £995\"}',1,'2026-03-31 09:34:32','2026-03-31 09:34:32','76e9e8d1-5f90-4267-881a-2f89c595004c'),
(6418,6418,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, reflected in the prices shown below.\"}',1,'2026-03-31 09:35:14','2026-03-31 09:35:14','fbffd245-0e7f-40b1-ba36-cb70a3e9c790'),
(6419,6419,1,'Under Eye Radiance Repair (Polynucleotides)','under-eye-radiance-repair-polynucleotides',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Under Eye Radiance Repair (Polynucleotides)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £720\"}',1,'2026-03-31 09:35:14','2026-03-31 09:35:14','ae97a92c-1baa-4b4d-aa23-32d62ff9951d'),
(6422,6422,1,'Advanced Regenerative Microneedling','advanced-regenerative-microneedling',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, but longer treatment courses may be required.\",\"714e1431-03c0-455c-8957-dd9d22173d46\":[4418]}',1,'2026-03-31 09:36:10','2026-03-31 09:36:10','9d4fec8c-e4f3-4603-8353-af3de18cbabb'),
(6423,6423,1,'Exosome Microneedling (Purasomes)','exosome-microneedling-purasomes',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Exosome Microneedling (Purasomes)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £780\"}',1,'2026-03-31 09:36:10','2026-03-31 09:36:10','1e151952-3714-42dc-b1bb-6caf2cef1d6d'),
(6426,6426,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:37:18','2026-03-31 09:37:18','49e6fc0c-52f9-40cd-938a-f4e8c04f2764'),
(6427,6427,1,'pHformula Skin Resurfacing (course of 4 treatments)','phformula-skin-resurfacing-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"pHformula Skin Resurfacing (course of 4 treatments)\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £540\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-31 09:37:18','2026-03-31 09:37:18','6a0fc461-e81f-4c27-a7ce-e06fd495b1b4'),
(6430,6430,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:38:35','2026-03-31 09:38:35','91d635db-e21d-4aa1-af19-2860821aa6bf'),
(6431,6431,1,'BioRePeel + Medical Microneedling','biorepeel-medical-microneedling-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"BioRePeel + Medical Microneedling\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £1060\"}',1,'2026-03-31 09:38:35','2026-03-31 09:38:35','78137122-87f5-4585-8b03-dda48ce6cea3'),
(6434,6434,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:39:18','2026-03-31 09:39:18','60f5ebd5-801a-455c-a00a-02be41a53839'),
(6435,6435,1,'Advanced TCA Touch','advanced-tca-touch',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Advanced TCA Touch\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"From £350\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-31 09:39:18','2026-03-31 09:39:18','dd3eb920-bcb4-42cc-be5e-c5994c3b8010'),
(6438,6438,1,'Skin Resurfacing Treatments','skin-resurfacing-treatments',NULL,NULL,1,'2026-03-31 09:40:07','2026-03-31 09:40:07','3537bb85-4dcc-4308-a47e-1b13d51f9688'),
(6439,6439,1,'pHformula Skin Resurfacing','phformula-skin-resurfacing-course-of-4-treatments',NULL,'{\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"pHformula Skin Resurfacing\",\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"from £540\",\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\":\"Requires pHformula homecare preparation prior to treatment.\"}',1,'2026-03-31 09:40:07','2026-03-31 09:40:07','51887d50-a271-48d0-b571-ad2a7caabd21'),
(6444,6444,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:41:19','2026-03-31 09:41:19','908102d6-dfc5-480f-8fdc-8c812077f1ac'),
(6445,6445,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-31 09:41:19','2026-03-31 09:41:19','01ce9c8a-f9ad-43dc-8c8f-c1e6999ef62b'),
(6446,6446,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-03-31 09:41:19','2026-03-31 09:41:19','0e781534-9c12-45a6-9b01-fb91f114c7cf'),
(6447,6447,1,'Helping you look and feel your best at every stage of life','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Helping you look and feel your best at every stage of life\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2026-03-31 09:41:19','2026-03-31 09:41:19','9583de6f-bfa2-43a7-8c20-21792f648bf0'),
(6448,6448,1,'Your Treatment Plan','personalised-treatment-plan',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Your Treatment Plan\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Together we create a plan that feels right for you, whether that involves a single treatment or a longer-term approach. Your face is unique, so your treatment plan should be too, with safety and long-term skin health always guiding my recommendations. I always take time to explain why you are noticing certain changes and how treatments can help address them in a natural and balanced way. You will always receive clear explanations, honest advice and realistic expectations, with no pressure to proceed. My role is to guide you with clarity and honesty so that you feel fully understood, well supported, and in control of every decision you make.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:43:42','2026-03-31 09:48:42','da691bc7-977e-4007-8170-02cca25de450'),
(6459,6459,1,'Your Personal Consultation','initial-consultation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Your Personal Consultation\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Your journey begins with a detailed consultation in a calm, private setting, where you can talk openly about your concerns and ask any questions you may have. I take time to understand what is bothering you, what you hope to achieve, and what really matters to you. During this appointment, I will carry out a thorough assessment and review your medical and aesthetic history. Where appropriate, I also use advanced skin analysis to better understand the deeper causes of your concerns and guide your treatment plan.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":true}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','3a8358c1-b5db-439a-b553-94bcfd009579'),
(6460,6460,1,'Preparing For Your Treatment','informed-consent-and-preparation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Preparing For Your Treatment\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Before any treatment, you will receive clear pre-treatment guidance so you know exactly how to prepare and what to expect. At your appointment, I will talk everything through again in straightforward language, including how the treatment works, possible after-effects, and how to care for your skin afterwards. Nothing is ever rushed. You will always have time to ask questions, discuss any concerns, and feel completely comfortable before deciding to proceed. My aim is for you to feel informed, prepared and confident throughout your treatment journey.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','1b20cce2-5691-4dd6-9c2a-9684ef9cd972'),
(6461,6461,1,'Your Treatment Appointment','treatment-aftercare',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Your Treatment Appointment\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Your comfort and safety are always my priority. I will explain each step clearly so you know what to expect, and I check in regularly to make sure you feel at ease. You will never feel rushed, and your comfort always comes first. All treatments are carried out personally by me using evidence-based techniques and high-quality products in a calm clinical environment. I always adapt the pace and approach to suit you. Most treatments involve minimal downtime, so you can usually return to your day with only mild temporary redness or swelling. My aim is for you to leave feeling reassured, well looked after, and excited to see your results.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','fce3980a-c4ec-4932-bc75-7d2d59246d3d'),
(6462,6462,1,'Aftercare & Support','section-four',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Aftercare & Support\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">My care does not end when you leave the clinic. You will leave with personalised aftercare guidance to help your skin recover well and achieve the best possible results. I explain everything before you leave, provide written instructions, and send a copy by email so you can refer back to it whenever needed. Where appropriate, I may recommend specialist skincare to support healing, protect your skin and help maintain your results. If you have any questions or need reassurance, you can always get in touch. Follow-up is built into your treatment journey so you always feel supported, well looked after, and never on your own in your treatment journey.</span>\\n</p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":true}',1,'2026-03-31 09:53:06','2026-04-16 14:35:29','fb81fbd4-7aef-4319-b151-b92323cafb8e'),
(6463,6463,1,'Review and Ongoing Care','section-five',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Review and Ongoing Care\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">A follow-up review is always built into your plan so we can assess your results, check how your skin is responding, and make any small adjustments if needed. This is also your opportunity to ask questions once you have had time to settle into your results. I take these reviews seriously because they help ensure you feel happy, supported and confident at every stage of your journey. Many patients choose to continue with ongoing treatments to maintain their results and support long-term skin health. Whatever your goals, you will always leave with a clear plan for caring for your skin both in clinic and at home, because truly great skin is always a journey, not a one-off treatment.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','8ae8918d-ac27-461d-9c18-e4ee2d6f5616'),
(6464,6464,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:53:06','2026-03-31 09:53:06','1d44c5bd-4e21-4b94-bd1b-a8af4f80f196'),
(6465,6465,1,'What To Expect','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"What To Expect\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"Clear advice, careful planning, and personalised care.\"}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','d17a4dd5-5170-4324-af45-3d8dadabd1ea'),
(6466,6466,1,'Your Personal Consultation','initial-consultation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Your Personal Consultation\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Your journey begins with a detailed consultation in a calm, private setting, where you can talk openly about your concerns and ask any questions you may have. I take time to understand what is bothering you, what you hope to achieve, and what really matters to you. During this appointment, I will carry out a thorough assessment and review your medical and aesthetic history. Where appropriate, I also use advanced skin analysis to better understand the deeper causes of your concerns and guide your treatment plan.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":true}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','48b890de-f3c9-4f0f-af54-b17e86ba4f45'),
(6467,6467,1,'Your Treatment Plan','personalised-treatment-plan',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Your Treatment Plan\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Together we create a plan that feels right for you, whether that involves a single treatment or a longer-term approach. Your face is unique, so your treatment plan should be too, with safety and long-term skin health always guiding my recommendations. I always take time to explain why you are noticing certain changes and how treatments can help address them in a natural and balanced way. You will always receive clear explanations, honest advice and realistic expectations, with no pressure to proceed. My role is to guide you with clarity and honesty so that you feel fully understood, well supported, and in control of every decision you make.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','82e2154b-2603-47cc-856a-ac1855e3cec2'),
(6468,6468,1,'Preparing For Your Treatment','informed-consent-and-preparation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Preparing For Your Treatment\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Before any treatment, you will receive clear pre-treatment guidance so you know exactly how to prepare and what to expect. At your appointment, I will talk everything through again in straightforward language, including how the treatment works, possible after-effects, and how to care for your skin afterwards. Nothing is ever rushed. You will always have time to ask questions, discuss any concerns, and feel completely comfortable before deciding to proceed. My aim is for you to feel informed, prepared and confident throughout your treatment journey.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','6ec38483-cefc-4d83-900e-0ca678a2d4f7'),
(6469,6469,1,'Your Treatment Appointment','treatment-aftercare',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Your Treatment Appointment\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Your comfort and safety are always my priority. I will explain each step clearly so you know what to expect, and I check in regularly to make sure you feel at ease. You will never feel rushed, and your comfort always comes first. All treatments are carried out personally by me using evidence-based techniques and high-quality products in a calm clinical environment. I always adapt the pace and approach to suit you. Most treatments involve minimal downtime, so you can usually return to your day with only mild temporary redness or swelling. My aim is for you to leave feeling reassured, well looked after, and excited to see your results.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','3ee64d6b-d421-4e1f-afe3-456ccd35b918'),
(6470,6470,1,'Aftercare & Support','section-four',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Aftercare & Support\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">You will leave with personalised aftercare guidance to help your skin recover well and achieve the best possible results. I explain everything before you leave, provide written instructions, and send a copy by email so you can refer back to it whenever needed. Where appropriate, I may recommend specialist skincare to support healing, protect your skin and help maintain your results. My care does not end when you leave the clinic. If you have any questions or need reassurance, you can always get in touch. Follow-up is built into your treatment journey so you always feel supported, well looked after, and never on your own in your treatment journey.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":true}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','d2fe4b27-67ec-45a7-afbf-3828331e8899'),
(6471,6471,1,'Review and Ongoing Care','section-five',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Review and Ongoing Care\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">A follow-up review is always built into your plan so we can assess your results, check how your skin is responding, and make any small adjustments if needed. This is also your opportunity to ask questions once you have had time to settle into your results. I take these reviews seriously because they help ensure you feel happy, supported and confident at every stage of your journey. Many patients choose to continue with ongoing treatments to maintain their results and support long-term skin health. Whatever your goals, you will always leave with a clear plan for caring for your skin both in clinic and at home, because truly great skin is always a journey, not a one-off treatment.</span></p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-03-31 09:53:06','2026-03-31 09:53:06','9ec3973e-d9fd-45aa-842c-a049f5bb164e'),
(6472,6472,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:53:10','2026-03-31 09:53:10','97dc304d-b1ea-4d45-a16c-bd96df78de21'),
(6475,6475,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:54:30','2026-03-31 09:54:30','c88d4501-86ad-4b72-90e6-04bf32e57369'),
(6476,6476,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for education and inspiration</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<!-- Elfsight Instagram Feed | Untitled Instagram Feed -->\\n<script src=\\\"https://elfsightcdn.com/platform.js\\\" async></script>\\n<div class=\\\"elfsight-app-13fef86c-e4da-47fe-8492-1ca528f06c2c\\\" data-elfsight-app-lazy></div>\"}',1,'2026-03-31 09:54:30','2026-03-31 09:54:30','7e7a7530-c661-45db-a95f-b9c48eafecf4'),
(6480,6480,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:55:41','2026-03-31 09:55:41','915f40f4-430c-436a-b59a-51eda6a61aac'),
(6481,6481,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics By Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\"><span style=\\\"background-color:transparent;color:hsl(16,54%,64%);\\\">GMC-registered medical doctor</span><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\"> </span></a><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Dr Rachel is a member of the Aesthetics Complications Expert Group (ACE Group), trained in advanced complication management, and regularly undertakes CPD through leading aesthetic training bodies. She operates from a CQC-compliant clinical environment where patient safety is never compromised.</span></p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-31 09:55:41','2026-03-31 09:55:41','ddcd77c3-2703-41ac-b6d3-b56b9f76596a'),
(6484,6484,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:58:11','2026-03-31 09:58:11','8f401f4b-bb47-489e-b60a-9e1f461d1d3f'),
(6485,6485,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel (within Danielle Louise), 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-03-31 09:58:11','2026-03-31 09:58:11','e2d2f1b8-7f7c-4e54-9207-5c91dadece80'),
(6487,6487,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 09:58:47','2026-03-31 09:58:47','89478889-e585-4988-b980-25dedd2477af'),
(6488,6488,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Refreshed. Natural.\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Confidence. Restored.\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">My name is Dr Rachel. With over 10 years of clinical experience as a doctor, I strongly believe aesthetic medicine should enhance how you look, never change who you are. The best results are always subtle, balanced and completely natural.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-03-31 09:58:47','2026-03-31 09:58:47','e95798c4-2f86-44ba-a311-d6c6e6a52ce7'),
(6496,6496,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 10:00:26','2026-03-31 10:00:26','f8c820cf-b60f-4231-b256-e61ac692ae45'),
(6497,6497,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-31 10:00:26','2026-03-31 10:00:26','98bad366-a863-4cd9-802a-fec501557453'),
(6498,6498,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-03-31 10:00:26','2026-03-31 10:00:26','2f30ec69-c6b9-4a5f-a016-adad2455eae6'),
(6499,6499,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>Achieving natural, graceful results</i></span></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2026-03-31 10:00:26','2026-03-31 10:00:26','3987296c-8b14-4854-81da-c1fc5e28237e'),
(6500,6500,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-03-31 10:00:26','2026-03-31 10:00:26','62ba0e31-4efb-4d5b-98a7-f0393a617074'),
(6501,6501,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-03-31 10:00:26','2026-03-31 10:00:26','878b9403-9eec-43df-8d31-38f27fc67f65'),
(6502,6502,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>Achieving natural, graceful results</i></span></p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2026-03-31 10:00:26','2026-03-31 10:00:26','3b1c079d-657d-4268-b086-70a216e6fc98'),
(6507,6507,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 10:11:57','2026-03-31 10:11:57','715cd6f3-ce14-4931-af62-8a722245cb54'),
(6508,6508,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p>I am Dr Rachel, a self-confessed skincare enthusiast and a <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">fully qualified, GMC-registered doctor </a>with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself. </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options. </p><p>Every face and every skin journey is different. Taking the time to assess you properly allows treatments to be carefully tailored, achieving results that are subtle, balanced and completely natural. I am a member of the Complications in Medical Aesthetics Collaborative (CMAC) and regularly undertake further training to ensure my practice remains safe, evidence-based and always centred around patient care. </p><p>Because aesthetic medicine should enhance how you look, never change who you are.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-31 10:11:57','2026-03-31 10:11:57','6d220603-cd67-4a3f-b7ff-89803661d5e5'),
(6511,6511,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 10:12:25','2026-03-31 10:12:25','00550d76-3aa4-4426-97bc-74b9d57ddb87'),
(6512,6512,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p>I am Dr Rachel, a self-confessed skincare enthusiast and a <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">fully qualified, GMC-registered doctor </a>with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself. </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options. </p><p>Every face and every skin journey is different. Taking the time to assess you properly allows treatments to be carefully tailored, achieving results that are subtle, balanced and completely natural. I am a member of the Complications in Medical Aesthetics Collaborative (CMAC) and regularly undertake further training to ensure my practice remains safe, evidence-based and always centred around patient care. </p><p>Because aesthetic medicine should enhance how you look, never change who you are.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-31 10:12:25','2026-03-31 10:12:25','7064ba89-0a01-46e6-a4b1-a39fab16aa24'),
(6515,6515,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 10:12:55','2026-03-31 10:12:55','71f3340a-daaa-4d55-a39d-853bb3fe950e'),
(6516,6516,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p>I am Dr Rachel, a self-confessed skincare enthusiast and a <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(0,0%,0%);\\\">fully qualified, GMC-registered doctor</span> </a>with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself. </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options. </p><p>Every face and every skin journey is different. Taking the time to assess you properly allows treatments to be carefully tailored, achieving results that are subtle, balanced and completely natural. I am a member of the Complications in Medical Aesthetics Collaborative (CMAC) and regularly undertake further training to ensure my practice remains safe, evidence-based and always centred around patient care. </p><p>Because aesthetic medicine should enhance how you look, never change who you are.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-31 10:12:55','2026-03-31 10:12:55','cbb60063-cdd2-4d2b-b613-ad1be7c25727'),
(6519,6519,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 10:14:31','2026-03-31 10:14:31','a9f29acb-6427-44af-82ec-0fb109c37429'),
(6520,6520,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span></h3><p>I am Dr Rachel, a self-confessed skincare enthusiast and a <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">fully qualified, GMC-registered doctor</span> </a>with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself. </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options. </p><p>Every face and every skin journey is different. Taking the time to assess you properly allows treatments to be carefully tailored, achieving results that are subtle, balanced and completely natural. I am a member of the Complications in Medical Aesthetics Collaborative (CMAC) and regularly undertake further training to ensure my practice remains safe, evidence-based and always centred around patient care. </p><p>Because aesthetic medicine should enhance how you look, never change who you are.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-03-31 10:14:31','2026-03-31 10:14:31','8a356007-8671-4a13-a811-f1fa6fafaff1'),
(6523,6523,1,'Homepage','homepage','__home__',NULL,1,'2026-03-31 17:20:17','2026-03-31 17:20:17','5962a880-0976-4441-b523-f1e3abf73346'),
(6524,6524,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for education and inspiration</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<script src=\\\"https://cdn.commoninja.com/sdk/latest/commonninja.js\\\" defer></script>\\n<div class=\\\"commonninja_component pid-73e65143-2a86-40b1-97ff-81d69cdfb2e5\\\"></div>\"}',1,'2026-03-31 17:20:17','2026-03-31 17:20:17','ccf669d2-be54-4c38-b12a-789572aa7d59'),
(6528,6528,1,'Homepage','homepage','__home__',NULL,1,'2026-04-01 09:45:16','2026-04-01 09:45:16','f30864a0-1aa6-419d-b8a9-4c75159a9330'),
(6529,6529,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"a1fc5688-356a-440e-bb6d-d1b273378a1f\":\"<!-- Elfsight Google Reviews | Untitled Google Reviews -->\\n<script src=\\\"https://elfsightcdn.com/platform.js\\\" async></script>\\n<div class=\\\"elfsight-app-ad2133ec-7804-495d-a1f7-a2f6779103d1\\\" data-elfsight-app-lazy></div>\"}',1,'2026-04-01 09:45:16','2026-04-01 09:45:16','1ef2d691-3707-4e57-a168-5f3c7ce0d8cc'),
(6530,6530,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for education and inspiration</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<!-- Elfsight Instagram Feed | Untitled Instagram Feed -->\\n<script src=\\\"https://elfsightcdn.com/platform.js\\\" async></script>\\n<div class=\\\"elfsight-app-13fef86c-e4da-47fe-8492-1ca528f06c2c\\\" data-elfsight-app-lazy></div>\"}',1,'2026-04-01 09:45:16','2026-04-01 09:45:16','ee324a93-096b-4be8-806e-af256274f25b'),
(6531,6531,1,'Neck lines condition 1',NULL,NULL,NULL,1,'2026-04-01 10:03:41','2026-04-01 10:03:41','5dd782a3-27e7-49f3-9a53-cfb0e39d117d'),
(6532,6532,1,'Neck lines condition 3',NULL,NULL,NULL,1,'2026-04-01 10:03:42','2026-04-01 10:03:42','363a57ed-98c1-4373-b61f-3039f60819f1'),
(6533,6533,1,'Neck lines condition2',NULL,NULL,NULL,1,'2026-04-01 10:03:48','2026-04-01 10:03:48','790fd552-461e-4d6f-95d8-433d8128de04'),
(6537,6537,1,'Neck lines condition 1',NULL,NULL,NULL,1,'2026-04-01 10:06:33','2026-04-01 10:06:33','22ad166b-49f5-4825-9f67-e79aac1b9577'),
(6538,6538,1,'Neck lines condition 3',NULL,NULL,NULL,1,'2026-04-01 10:06:34','2026-04-01 10:06:34','d90abc19-f61d-4e32-a9ab-25a9030b5e05'),
(6539,6539,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-04-01 10:07:09','2026-04-01 10:07:09','a4df980a-434a-433e-89c2-f63556f62557'),
(6540,6540,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in the clinic. Neck lines, sometimes called tech neck or necklace lines, are one of the most common yet most overlooked signs of ageing.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Neck Lines: What They Are and Why They Appear</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Neck lines are the horizontal creases and wrinkles that form across the front and sides of the neck. You may know them as necklace lines, because they sit in the same place a necklace would. Some people also notice vertical bands caused by the platysma muscle tightening beneath the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck is one of the thinnest and most exposed areas of the body. It has fewer oil glands than the face, less fat cushioning underneath, and it is constantly moving throughout the day. Because of this, the neck often shows ageing earlier than expected.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">It is very common to focus skincare and treatments only on the face, but for natural results, the neck should never be an afterthought. When the neck is included in a gentle, layered plan alongside the face, supported by consistent homecare, the whole area ages in harmony and results stay subtle and natural.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6533]}',1,'2026-04-01 10:07:09','2026-04-01 10:07:09','eb389eb5-44da-46a2-8cfd-d0cd7c835830'),
(6541,6541,1,'What Causes Neck Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Neck Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slow. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span>\\t</span><strong>Genetics</strong>, which influences how early and how deeply lines form</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 10:07:09','2026-04-01 10:07:09','ee8bb5fc-6ed1-464a-be69-2a4303169636'),
(6542,6542,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-04-01 10:07:12','2026-04-01 10:07:12','d9e4ed4c-c356-4991-bc9f-fcd81ec30c9c'),
(6546,6546,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-04-01 10:08:29','2026-04-01 10:08:29','a21677b6-1387-452a-a99b-e9b50064cdd6'),
(6547,6547,1,'What Causes Neck Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Neck Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slow. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span>\\t</span><strong>Genetics</strong>, which influences how early and how deeply lines form</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6538],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 10:08:29','2026-04-01 10:08:29','1ad3ba61-716c-49f1-83f8-cebf83903758'),
(6548,6548,1,'How We Treat Neck Lines at Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How We Treat Neck Lines at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck needs a different approach from the face. The skin is thinner, movement is constant, and treatments that work well on facial wrinkles do not always translate directly. I tailor every neck treatment plan based on the type of lines you have, the quality of your skin, your medical history, and the results you are hoping to see.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">My aim is always safe, natural improvement that stays balanced with your face. I usually take a gentle, layered approach, improving skin quality first and then addressing deeper lines if needed. Many patients include neck treatments within a longer-term Radiance Collection programme, so results build gradually and harmoniously.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What treatment options are available for Neck Lines?</i></span></h2><p> </p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Profhilo®</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Profhilo® is one of my favourite treatments for neck rejuvenation because it improves skin quality rather than adding volume. It contains a high concentration of hyaluronic acid that spreads gently like honey beneath the skin, deeply hydrating and stimulating collagen and elastin production. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Polynucleotides</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Polynucleotides are regenerative treatments that work at a cellular level to repair and strengthen damaged skin. They are made from highly purified DNA fragments that support your skin’s natural healing processes, improve collagen production and help calm inflammation.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Microneedling</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Microneedling creates tiny, controlled micro-injuries in the skin, which trigger your body’s natural healing response and stimulate new collagen production. On the neck, this can gradually improve texture, soften fine lines and help tighten lax, crepey skin over a course of treatments. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 10:08:29','2026-04-01 10:08:29','9d923afa-85e7-4045-a79e-fd1d982bb512'),
(6549,6549,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-04-01 10:08:33','2026-04-01 10:08:33','a4d31aee-6bf5-4527-a8cf-e1d6c52caac2'),
(6550,6550,1,'Ageing Skin','ageing-skin','conditions/ageing-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 10:09:16','2026-04-15 17:06:15','b6a872a2-0296-4ea5-8c0b-c49725cc013c'),
(6551,6551,1,'Ageing Skin','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Ageing Skin\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Yes, and in many cases a combined approach delivers the most natural and effective results. Ageing affects every layer of the face, from skin quality and collagen, to volume, structure and muscle movement. This is why different treatments often work best when used together, as each addresses a different layer. My approach focuses on treating these changes in a balanced way, for example improving skin quality, restoring subtle structural support, stimulating collagen and softening lines where appropriate. Rather than treating one concern in isolation, I look at how everything works together to keep results natural and harmonious.</p><p> </p><p>I will always design a personalised treatment plan with careful timing and no pressure to do everything at once. Treatments can be phased gradually, focusing first on what will make the biggest difference while keeping your results subtle and natural.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Happens When Skin Ages?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Skin ageing is a gradual, layered process that affects every level of the skin and the structures beneath it. It often begins earlier than most people realise, commonly from the mid-20s, and becomes more visible over time. The changes you see on the surface reflect deeper shifts happening below. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Collagen, the protein responsible for skin strength and support, decreases by around 1% every year after your mid-20s. Elastin, which allows skin to stretch and recoil, also declines. Levels of hyaluronic acid reduce, meaning the skin holds less moisture and appears less plump and radiant. Together, these changes lead to thinner skin, fine lines, and increased skin laxity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Ageing also affects the deeper framework of the face. Facial fat pads gradually lose volume and descend, reducing soft tissue support. Over time, the facial skeleton undergoes slow, subtle reshaping as bone is gradually broken down and rebuilt in different areas. This leads to a gentle loss of overall facial bone volume and changes in contour, which reduces the support available for the soft tissues above. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6567]}',1,'2026-04-01 10:09:16','2026-04-15 17:06:15','dbeb4e7e-1c62-46a2-9123-ad180c93d41a'),
(6552,6552,1,'What Causes Skin to Age?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Skin to Age?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Skin ageing is influenced by two main processes. <strong>Intrinsic ageing</strong> is the natural, unavoidable process that happens to all of us over time, due to genetics and internal biology. <strong>Extrinsic ageing</strong> is caused by external factors such as sun exposure and lifestyle. Many of the changes associated with ageing are strongly influenced by external factors, especially sun exposure, which means there is often more we can do to protect and support your skin than you might realise.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Ageing (Internal Factors)</span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Genetics</strong> - influence your skin type and how quickly ageing changes become visible</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Hormonal changes</strong> - particularly around menopause, which can accelerate collagen loss and skin thinning</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Collagen, elastin and hyaluronic acid decline</strong> - natural reductions over time lead to less firmness, elasticity and hydration</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Slower cell turnover</strong> - the skin takes longer to renew and repair itself, which can reduce brightness and smoothness</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6565],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-01 10:09:16','2026-04-13 10:30:04','99fc2a4d-1f2c-4d24-a8eb-d69cfda285b5'),
(6553,6553,1,'What causes skin to age 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><strong>Extrinsic Ageing (External Factors)  </strong></h3><p> </p><p><strong>- Sun exposure</strong> – the single biggest cause of premature skin ageing. UV radiation breaks down collagen and elastin, damages DNA, and contributes to wrinkles, pigmentation and loss of firmness</p><p> </p><p><strong>-Smoking</strong> – reduces blood flow to the skin, impairs oxygen delivery and increases free radical damage, accelerating visible ageing</p><p> </p><p><strong>-Pollution</strong> – increases oxidative stress and inflammation, weakening the skin barrier and contributing to collagen breakdown</p><p> </p><p><strong>-Lifestyle factors</strong> – including poor sleep, chronic stress, dehydration and diets lacking key nutrients, all of which can impair skin repair and regeneration</p><p> </p><p><strong>-Repetitive facial movement</strong> – over time, expression lines can become more permanent as skin elasticity and resilience decline</p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Living on the Wirral peninsula also means your skin is regularly exposed to coastal wind, salt air and strong reflected sunlight. These environmental factors can increase dehydration and weaken the skin barrier if skin is not properly protected. The good news is that with the right daily protection, barrier support and carefully chosen treatments, these effects can be managed, helping your skin remain healthy and resilient over time.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6566],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>The Visible Signs of Ageing Skin</i></span></h2><p> </p><p>Ageing shows up differently for everyone. Understanding which changes are most noticeable for you allows me to select treatments that are targeted, appropriate, and suited to your skin’s needs.</p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Fine Lines and Wrinkles</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines and wrinkles often appear first around the eyes (crow’s feet), forehead, and mouth. Dynamic lines form with facial movement and, over time, can become static lines that remain visible even when the face is at rest. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Volume Loss</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Facial fat pads play an important role in maintaining youthful facial shape and balance. When they are full and well supported, they help create the natural “triangle of youth”, with fullness through the mid-face and gentle tapering towards the jaw.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Skin Laxity and Sagging</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">As collagen and elastin levels decline, the skin loses its ability to remain firm and resilient. Over time, it begins to loosen and descend, particularly around the lower face, jawline, and neck. This can soften facial definition, contribute to jowling, and deepen folds, often making the face appear heavier or more tired.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 10:09:16','2026-04-13 10:30:04','deee9223-66bc-48ef-84a7-86d73a25e91e'),
(6554,6554,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 10:09:16','2026-04-01 10:09:16','47b192cd-8773-4168-8841-2ffab73b8113'),
(6555,6555,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about the changes of ageing\"}',1,'2026-04-01 10:09:16','2026-04-13 10:30:04','212a7048-de92-478e-bb24-040e1963cad6'),
(6556,6556,1,'At what age should I start anti-ageing treatments?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no set age, and no expectation or pressure to have any treatment at all. Anti-ageing is not about a specific number, but about how your skin is changing and how those changes make you feel. Some people choose to focus on prevention in their late twenties or early thirties with good skincare, sun protection and treatments such as skin boosters, while others seek more corrective options later on. I always start by understanding what is bothering you, assessing the underlying changes in your skin, and only then suggesting treatments that directly and appropriately address those concerns. The right time is simply when you feel ready and want advice, not when you feel you should do something.\"}',1,'2026-04-01 10:09:16','2026-04-01 15:20:20','f7382ff3-bd1a-497f-8a77-9e50f41c2f09'),
(6557,6557,1,'Will I still look like myself after treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still look like myself after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My approach is always subtle, measured and focused on enhancing rather than changing your features. The aim is to help you look refreshed, well-rested and healthier, not different or overdone. Patients often tell me that friends and family comment on how well they look, without being able to pinpoint exactly what has changed.\"}',1,'2026-04-01 10:09:16','2026-04-01 15:20:20','a9570f57-c305-4952-b673-168ea7463531'),
(6558,6558,1,'How many treatments will I need?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends entirely on your concerns, goals and the underlying changes in your skin. Some treatments, such as Profhilo®, follow a set course, typically 2 sessions spaced 4 weeks apart. Others, including <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a>, may involve a single treatment with maintenance only when required. I will always outline a clear, personalised plan during your <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">consultation</a>, with no pressure to proceed and a focus on achieving the most appropriate, natural result for you.</p>\"}',1,'2026-04-01 10:09:16','2026-04-01 15:20:20','06a6253e-286b-48f5-8aa3-cdcc9d174012'),
(6559,6559,1,'Is there any downtime?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most anti-ageing treatments involve minimal downtime. You may experience some temporary redness, swelling or occasional bruising for a day or two, depending on the treatment performed. Many patients are able to return to their normal daily activities the same day, and I will always talk you through expected recovery time and aftercare in advance so you can plan confidently.\"}',1,'2026-04-01 10:09:16','2026-04-01 15:20:20','6b07bbc0-f38a-47aa-8c87-fdb155de742f'),
(6560,6560,1,'How long do results last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This varies depending on the treatment and how your skin responds. Skin boosters typically last around 6 to 9 months, while dermal fillers can last 12 to 18 months depending on the area treated and the product used. Anti-wrinkle injections usually last around 3 months on average. Regenerative collagen-stimulating treatments such as JULÄINE™ can last up to 2 years as they work by supporting your skin’s own collagen production over time. Maintenance treatments are recommended to help preserve results. The aim is always to maintain results gradually rather than waiting for them to fully wear off. I will always talk you through expected longevity and maintenance options during your consultation so you can make informed decisions.</p>\"}',1,'2026-04-01 10:09:16','2026-04-15 17:06:15','5e2461a9-3b34-4963-9dd4-804dd6162685'),
(6561,6561,1,'Can I combine different anti-ageing treatments?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine different anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and in many cases a combined approach delivers the most natural and effective results. Ageing affects every layer of the face, from skin quality and collagen, to volume, structure and muscle movement. This is why different treatments often work best when used together, as each addresses a different layer. My approach focuses on treating these changes in a balanced way, for example improving skin quality, restoring subtle structural support, stimulating collagen and softening lines where appropriate. Rather than treating one concern in isolation, I look at how everything works together to keep results natural and harmonious. I will always design a personalised treatment plan with careful timing and no pressure to do everything at once. Treatments can be phased gradually, focusing first on what will make the biggest difference while keeping your results subtle and natural.</p>\"}',1,'2026-04-01 10:09:16','2026-04-16 13:27:28','14389ed7-39f7-4751-905c-a628ede08534'),
(6563,6563,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\"}',1,'2026-04-01 10:09:16','2026-04-01 10:09:16','78aadf49-9ecb-4f0d-93f2-7c318ab5cb81'),
(6564,6564,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 10:09:16','2026-04-20 19:14:16','042f3e20-7bb1-4270-95ae-29ef9b26a8a9'),
(6565,6565,1,'Aging skin condition wirral 1',NULL,NULL,NULL,1,'2026-04-01 10:11:33','2026-04-01 10:11:33','b0e696fe-a72a-4afc-88b3-60341746bde9'),
(6566,6566,1,'Aging skin condition wirral 3',NULL,NULL,NULL,1,'2026-04-01 10:11:39','2026-04-01 10:11:39','d6dbcbdf-f851-4020-87e6-cb37cb2bc4c6'),
(6567,6567,1,'Aging skin condition wirral',NULL,NULL,NULL,1,'2026-04-01 10:11:41','2026-04-01 10:11:41','872cf911-45b8-4349-91a7-fbb81f704572'),
(6568,6568,1,'Aging','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','492ca38b-9f09-4986-83d4-3282e3185862'),
(6569,6569,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in the clinic. Neck lines, sometimes called tech neck or necklace lines, are one of the most common yet most overlooked signs of ageing.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Neck Lines: What They Are and Why They Appear</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Neck lines are the horizontal creases and wrinkles that form across the front and sides of the neck. You may know them as necklace lines, because they sit in the same place a necklace would. Some people also notice vertical bands caused by the platysma muscle tightening beneath the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck is one of the thinnest and most exposed areas of the body. It has fewer oil glands than the face, less fat cushioning underneath, and it is constantly moving throughout the day. Because of this, the neck often shows ageing earlier than expected.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">It is very common to focus skincare and treatments only on the face, but for natural results, the neck should never be an afterthought. When the neck is included in a gentle, layered plan alongside the face, supported by consistent homecare, the whole area ages in harmony and results stay subtle and natural.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6533]}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','8d543384-9eaf-49f1-9fc0-043a36a282ac'),
(6570,6570,1,'What Causes Neck Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Neck Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slow. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span>\\t</span><strong>Genetics</strong>, which influences how early and how deeply lines form</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6538],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','a87a2a5e-5e92-4062-8829-1cc526199ade'),
(6571,6571,1,'How We Treat Neck Lines at Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How We Treat Neck Lines at Aesthetics by Dr Rachel</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The neck needs a different approach from the face. The skin is thinner, movement is constant, and treatments that work well on facial wrinkles do not always translate directly. I tailor every neck treatment plan based on the type of lines you have, the quality of your skin, your medical history, and the results you are hoping to see.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">My aim is always safe, natural improvement that stays balanced with your face. I usually take a gentle, layered approach, improving skin quality first and then addressing deeper lines if needed. Many patients include neck treatments within a longer-term Radiance Collection programme, so results build gradually and harmoniously.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What treatment options are available for Neck Lines?</i></span></h2><p> </p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Profhilo®</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Profhilo® is one of my favourite treatments for neck rejuvenation because it improves skin quality rather than adding volume. It contains a high concentration of hyaluronic acid that spreads gently like honey beneath the skin, deeply hydrating and stimulating collagen and elastin production. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Polynucleotides</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Polynucleotides are regenerative treatments that work at a cellular level to repair and strengthen damaged skin. They are made from highly purified DNA fragments that support your skin’s natural healing processes, improve collagen production and help calm inflammation.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Microneedling</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Microneedling creates tiny, controlled micro-injuries in the skin, which trigger your body’s natural healing response and stimulate new collagen production. On the neck, this can gradually improve texture, soften fine lines and help tighten lax, crepey skin over a course of treatments. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','7b11c841-6cf5-48ce-9d65-c8261ceef577'),
(6572,6572,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','331122b2-a1b5-4b6d-bcb7-0ed3a1ada1d9'),
(6573,6573,1,'Frequently Asked Questions About Rosacea Condition','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Rosacea Condition\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about rosacea condition\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','b5bd93ed-c94f-48fd-a7e8-fe102867d734'),
(6574,6574,1,'Is rosacea treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment suitable for all skin types?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','45a44d72-8595-42c7-b33f-814c505ebc4f'),
(6575,6575,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','d2152602-a599-4cd0-aaeb-86acbe883efd'),
(6576,6576,1,'Is rosacea treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment painful?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','a0ada251-f945-4012-b339-f99b50d3bc22'),
(6577,6577,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','ac8f6f6d-14ce-41d6-b763-eff8ddba768f'),
(6578,6578,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','7cae72d3-f69f-4ad7-ad54-811741466e43'),
(6579,6579,1,'Are there any side effects or risks?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','d6dc33ba-b583-4d38-a036-6448c8235cf1'),
(6581,6581,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\"}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','919e428c-e3cc-4aa2-9adb-3dfad3a9654e'),
(6582,6582,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 10:12:10','2026-04-01 10:12:10','7f3fad61-5395-4662-a704-9b4ffb53615b'),
(6590,6590,1,'Homepage','homepage','__home__',NULL,1,'2026-04-01 10:45:35','2026-04-01 10:45:35','4818cdc3-9d22-4d14-b2f5-6c17ad208aff'),
(6591,6591,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for education and inspiration</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<script src=\\\"https://cdn.commoninja.com/sdk/latest/commonninja.js\\\" defer></script>\\n<div class=\\\"commonninja_component pid-73e65143-2a86-40b1-97ff-81d69cdfb2e5\\\"></div>\"}',1,'2026-04-01 10:45:35','2026-04-01 10:45:35','df75229b-835b-4e6f-ba90-bfbc870938bf'),
(6599,6599,1,'Homepage','homepage','__home__',NULL,1,'2026-04-01 14:52:28','2026-04-01 14:52:28','9c9fb4aa-1a0b-40d5-8585-db28dff7857a'),
(6600,6600,1,'Follow us for inspiration','follow-us-for-inspiration-exclusive-offers-2',NULL,'{\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\":\"Social Media\",\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\":\"Follow Dr. Rachel\",\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\":\"<p><span style=\\\"white-space:pre-wrap;\\\">for education and inspiration</span></p>\",\"014f7791-0f8d-4cf9-827e-dca775844565\":\"Dr.Rachel.Aesthetics\",\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\":{\"value\":\"https://www.instagram.com/Dr.Rachel.Aesthetics\",\"type\":\"url\"},\"893c100e-74db-4ce2-a4bc-b61c5e66812a\":\"<script src=\\\"https://cdn.commoninja.com/sdk/latest/commonninja.js\\\" defer></script>\\n<div class=\\\"commonninja_component pid-73e65143-2a86-40b1-97ff-81d69cdfb2e5\\\"></div>\"}',1,'2026-04-01 14:52:28','2026-04-01 14:52:28','47125575-a3fd-4dae-b113-0bb85d21aad5'),
(6606,6606,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-04-01 14:56:05','2026-04-01 14:56:05','6a832365-ef49-4cc7-aae0-15db0a443de9'),
(6607,6607,1,'Frequently Asked Questions About Neck Lines','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Neck Lines\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about neck lines\"}',1,'2026-04-01 14:56:06','2026-04-01 14:56:06','da47c68f-7a10-40b4-88ec-8c7905faf5d1'),
(6608,6608,1,'Is neck line treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is neck line treatment suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, I treat all skin types and tones. During your consultation, I assess your neck skin carefully, including pigmentation risk, sensitivity and healing capacity, so I can recommend the safest and most effective approach for you. Treatments are always tailored and adjusted gradually to keep results natural and safe.\"}',1,'2026-04-01 14:56:06','2026-04-01 14:56:06','658faeba-a583-44ae-ab36-5cdc5d322c81'),
(6611,6611,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments involve very little downtime. You may notice some redness, swelling or small marks for 24-48 hours after injections, and microneedling can leave the skin pink for a few days. Occasional bruising is possible. Most patients return to normal activities the same day, although I usually recommend avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-04-01 14:56:06','2026-04-01 14:56:06','307a8960-18e8-4618-a16d-13dfcc95c13d'),
(6612,6612,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments work gradually as collagen production increases and skin quality improves. You may notice early changes within a few weeks, with continued improvement over several months. Results are not instant, but they are worth the wait because they look natural and long-lasting. Maintenance treatments help keep your neck looking its best over time.\"}',1,'2026-04-01 14:56:06','2026-04-01 14:56:06','c4c052ad-d83e-40d4-a646-0ef8606ab416'),
(6613,6613,1,'Can I treat tech neck even if I am in my 20s or 30s?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat tech neck even if I am in my 20s or 30s?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, absolutely. I see tech neck more and more in younger patients because of long hours on phones and laptops. Starting early with gentle treatments, good posture habits and consistent skincare can slow the progression of neck lines and help prevent them from becoming deeper over time. Prevention is always easier, and often simpler, than correction later.\"}',1,'2026-04-01 14:56:06','2026-04-01 14:56:06','9b05fd18-2a5a-4db4-b466-7ad8e6fce2d7'),
(6614,6614,1,'Can I combine neck line treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine neck line treatment with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, and combining treatments often gives the best results. Different treatments improve different layers of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation, I assess your face and neck together and design a personalised plan that keeps everything balanced, often combining treatments gradually as part of a Radiance Collection programme.\"}',1,'2026-04-01 14:56:06','2026-04-01 14:56:06','b80a869a-0914-4fc2-ae8c-73cf80515a32'),
(6617,6617,1,'Homepage','homepage','__home__',NULL,1,'2026-04-01 14:59:54','2026-04-01 14:59:54','dbf64f2e-62d2-4416-bc34-24fc5245a85e'),
(6618,6618,1,'Reviews','reviews',NULL,'{\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\":\"Patient Stories\",\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\":\"What My Patients Say\",\"31620f43-2492-427c-9f97-a712da1d3271\":[320],\"072dcb8d-a55a-47b9-802d-e817056095ba\":\"<p><span>I had such a wonderful experience with Dr Rachel! She is incredibly knowledgeable and took the time to throughly explain everything in a clear and reassuring way. Her professionalism really stood out, yet she was also so warm and friendly that I immediately felt at ease.</span><br /><br /><span>I\'m genuinely excited to continue my skin care journey with Dr Rachel! Thank you so much.</span></p>\",\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\":\"Kirsty Partington\",\"234d8da9-a1aa-46f3-aa79-a2863797bca4\":\"Personal Treatment Plan\",\"a1fc5688-356a-440e-bb6d-d1b273378a1f\":\"<script src=\\\"https://cdn.commoninja.com/sdk/latest/commonninja.js\\\" defer></script>\\n<div class=\\\"commonninja_component pid-4fa0fb45-7d57-4abd-b639-98d68a21a6a1\\\"></div>\"}',1,'2026-04-01 14:59:54','2026-04-01 14:59:54','f33c291d-1363-4145-8dcd-ef4d6dfdddb0'),
(6621,6621,1,'test1','test1',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[757],\"d5803862-14af-411a-83a8-0734f3d68687\":[6347],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2026-04-01 15:06:48','2026-04-01 15:06:48','61020256-5bb3-4f3a-ad0f-d3bffca54ffa'),
(6623,6623,1,'Microneedling','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[90],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2026-04-01 15:07:49','2026-04-01 15:07:49','2b949f63-c1e5-4b7d-b515-e8169b75cbe7'),
(6634,6634,1,'Ageing','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','f7d745c3-3bca-4b11-ad80-53ae4ea20157'),
(6635,6635,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Ageing\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,20%);\\\">You look in the mirror, and the face looking back does not quite match how you feel inside. Fine lines have crept in. Your skin looks tired, less firm, less bright. These changes happen to all of us, and they are a natural part of life. My role is not to try to turn back the clock or make you look twenty-one again. It is about helping you look like yourself on a good day. Refreshed, well-rested, and confident in your own skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> At Aesthetics by Dr Rachel, my approach focuses on long-term skin health, subtle structural support, and carefully chosen treatments that work in harmony with your face. The aim is not transformation. It is confidence. Feeling comfortable in your skin again. Looking refreshed, natural, and like yourself, with your radiance gently restored.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Happens When Skin Ages?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Skin ageing is a gradual, layered process that affects every level of the skin and the structures beneath it. It often begins earlier than most people realise, commonly from the mid-20s, and becomes more visible over time. The changes you see on the surface reflect deeper shifts happening below. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Collagen, the protein responsible for skin strength and support, decreases by around 1% every year after your mid-20s. Elastin, which allows skin to stretch and recoil, also declines. Levels of hyaluronic acid reduce, meaning the skin holds less moisture and appears less plump and radiant. Together, these changes lead to thinner skin, fine lines, and increased skin laxity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Ageing also affects the deeper framework of the face. Facial fat pads gradually lose volume and descend, reducing soft tissue support. Over time, the facial skeleton undergoes slow, subtle reshaping as bone is gradually broken down and rebuilt in different areas. This leads to a gentle loss of overall facial bone volume and changes in contour, which reduces the support available for the soft tissues above. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6567]}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','b22f94c4-5631-4196-8c08-55456972df03'),
(6636,6636,1,'What Causes Skin to Age?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Skin to Age?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What Causes Skin to Age? There are 2 types of ageing at work. Intrinsic ageing is the natural, unavoidable process driven by genetics and internal biology. Extrinsic ageing is caused by external factors, many of which can be influenced or reduced. Most visible skin ageing results from a combination of both, which is why addressing ageing effectively requires a balanced, considered approach. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Ageing (Internal Factors)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Genetics, which influence your skin type and the rate at which ageing changes appear </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Hormonal changes, particularly around menopause, which accelerate collagen loss and skin thinning </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- The natural decline in collagen, elastin, and hyaluronic acid production over time </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Slower cell turnover, meaning the skin takes longer to renew and repair itself</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6565],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','899ebb92-0ccb-46d2-9a2f-4d8f2bf5e74e'),
(6637,6637,1,'What causes skin to age 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <strong>Extrinsic Ageing (External Factors)  </strong>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Sun exposure, the single biggest cause of premature skin ageing. UV radiation breaks down collagen and elastin, damages DNA, and drives wrinkles, pigmentation, and loss of firmness </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Smoking, which reduces blood flow to the skin, impairs oxygen delivery, and increases free radical damage, accelerating skin ageing </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Pollution, which increases oxidative stress and inflammation, weakening the skin barrier and accelerating collagen breakdown </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Lifestyle factors, including poor sleep, chronic stress, dehydration, and diets lacking key nutrients, all of which impair skin repair and regeneration </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Repetitive facial movement, which over time contributes to expression lines becoming more permanent as skin elasticity and resilience decline </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Living on the Wirral peninsula means your skin is regularly exposed to coastal wind, salt air, and strong sunlight reflected off the water. These environmental factors can increase dehydration, weaken the skin barrier, and accelerate collagen breakdown over time. The good news is that with the right daily protection, barrier support, and targeted treatments, these effects can be effectively managed, helping your skin remain healthy, resilient, and well supported as it ages.\\n</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6566],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>The Visible Signs of Ageing Skin</i></span></h2><p> </p><p>Ageing shows up and progresses differently for everyone. Understanding which changes are most noticeable for you allows me to select treatments that are targeted, appropriate, and tailored to your skin’s needs.</p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Fine Lines and Wrinkles</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines and wrinkles often appear first around the eyes (crow’s feet), forehead, and mouth. Dynamic lines form with facial movement and, over time, can become static lines that remain visible even when the face is at rest. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Volume Loss</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Facial fat pads play an important role in maintaining youthful facial shape and balance. When they are full and well supported, they help create the natural “triangle of youth”, with fullness through the mid-face and gentle tapering towards the jaw.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Skin Laxity and Sagging</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">As collagen and elastin levels decline, the skin loses its ability to remain firm and resilient. Over time, it begins to loosen and droop, particularly around the lower face, jawline, and neck. As the skin sags, it also contributes to deeper, heavier wrinkles and folds forming, softening facial definition and often making the face appear older. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','d9428938-00b8-47e1-ae01-421799ed6d89'),
(6638,6638,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about aging\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','9e50a00c-66a7-4205-8735-263ba2c78257'),
(6639,6639,1,'At what age should I start anti-ageing treatments?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no set age, and no expectation or pressure to have any treatment at all. Anti-ageing is not about a specific number, but about how your skin is changing and how those changes make you feel. Some people choose to focus on prevention in their late twenties or early thirties with good skincare, sun protection and treatments such as skin boosters, while others seek more corrective options later on. I always start by understanding what is bothering you, assessing the underlying changes in your skin, and only then suggesting treatments that directly and appropriately address those concerns. The right time is simply when you feel ready and want advice, not when you feel you should do something.\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','ec989eeb-112b-4e42-851e-4ef859d0ed2c'),
(6640,6640,1,'Will I still look like myself after treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still look like myself after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My approach is always subtle, measured and focused on enhancing rather than changing your features. The aim is to help you look refreshed, well-rested and healthier, not different or overdone. Patients often tell me that friends and family comment on how well they look, without being able to pinpoint exactly what has changed.\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','e474ffe7-6e4f-44c9-9c70-84d41539450e'),
(6641,6641,1,'How many treatments will I need?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends entirely on your concerns, goals and the underlying changes in your skin. Some treatments, such as Profhilo®, follow a set course, typically 2 sessions spaced 4 weeks apart. Others, including <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a>, may involve a single treatment with maintenance only when required. I will always outline a clear, personalised plan during your <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">consultation</a>, with no pressure to proceed and a focus on achieving the most appropriate, natural result for you.</p>\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','40d5e6b3-596f-4c1a-b3f9-bca0c203e4a6'),
(6642,6642,1,'Is there any downtime?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most anti-ageing treatments involve minimal downtime. You may experience some temporary redness, swelling or occasional bruising for a day or two, depending on the treatment performed. Many patients are able to return to their normal daily activities the same day, and I will always talk you through expected recovery time and aftercare in advance so you can plan confidently.\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','e3280069-062b-4e85-b49a-92b23896948c'),
(6643,6643,1,'How long do results last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This varies depending on the treatment and how your skin responds. Skin boosters typically last around 6 to 9 months, while dermal fillers can last 12 to 18 months, depending on the area treated and the product used. Anti-wrinkle injections usually last around 3 months on average. Maintenance treatments are recommended to keep your results looking their best, and I will always talk you through expected longevity and maintenance options during your consultation so you can make informed decisions.\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','bf7e4920-2369-4eb9-9338-32e57f802ffb'),
(6644,6644,1,'Can I combine different anti-ageing treatments?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine different anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and in many cases, a combined approach delivers the most natural and effective results. Different treatments address different aspects of ageing, for example, improving skin quality, restoring volume, stimulating collagen or softening lines. Combining treatments such as dermal fillers with <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> or other collagen-stimulating options allows me to address multiple concerns in a balanced way. I will always design a personalised treatment plan that targets your specific concerns safely and appropriately, with careful timing and no pressure to do everything at once.</p>\"}',1,'2026-04-01 15:20:20','2026-04-01 15:20:20','b8b4736c-31c7-4283-86a2-41394010f77b'),
(6646,6646,1,'Ageing','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 15:23:25','2026-04-01 15:23:25','7ec55bef-d43d-4232-8e97-6c9f7e6974ad'),
(6647,6647,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-01 15:23:43','2026-04-01 18:00:40','a07414e7-4949-40f0-97b2-f87aeaeae74d'),
(6648,6648,1,'Lines and Wrinkles','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Lines and Wrinkles\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,20%);\\\">Lines can appear quietly. A crease that lingers after you smile. Make-up catching in places it never used to. You start to notice lines that were not there before. They may sit between your brows, around your eyes, across your forehead, or around your mouth. Perhaps your concealer now highlights shadows instead of hiding them, and photographs seem harsher than they once were. These changes rarely happen overnight. They come from years of expression, sun exposure, stress, sleep patterns, and the gradual loss of collagen and hydration in the skin.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Lines and Wrinkles? </i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Lines and wrinkles are creases, folds, or ridges that develop in the skin over time. Fine lines are usually shallow and subtle, sometimes only visible in certain lighting or when your face moves. Wrinkles are deeper grooves that become more noticeable as the years pass. Both develop as a result of gradual changes in the structure of your skin, combined with years of facial expression and environmental exposure.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Your skin relies on collagen and elastin to stay firm, smooth, and resilient. From our mid-twenties, collagen production slowly declines, typically by around 1% each year. As this support reduces, the skin becomes thinner, less elastic, and slower to recover. Everyday expressions such as smiling, frowning, laughing, and squinting gently crease the skin thousands of times, and over time, those temporary lines can begin to settle.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Sun exposure, stress, sleep patterns, smoking, dehydration, and genetics all play a role as well. This is why lines appear at different times and in different areas for each person. Understanding why they form helps me guide you towards treatments that are safe, appropriate, and designed to give natural, balanced results.\\n </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6686]}',1,'2026-04-01 15:23:43','2026-04-16 13:20:33','dc550d6e-0419-40c3-92b1-6896c85836d4'),
(6649,6649,1,'What Causes Lines and Wrinkles?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Lines and Wrinkles?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Lines and wrinkles develop for a number of different reasons, and in most people there is a combination of factors involved. Over time, your skin naturally changes, but things like sun exposure, lifestyle, and everyday facial expressions also play a part. Understanding what is contributing to your lines allows me to recommend treatments that are safe, appropriate, and right for your skin.\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Factors (Natural Ageing)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">Intrinsic ageing refers to the natural changes that happen inside your skin over time. These are influenced by your genetics and hormones, and affect everyone to some degree.\\n\\nAs the skin gradually changes:</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Collagen and elastin reduce, so the skin becomes less firm and more prone to creasing\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Skin renewal slows down, which can make the surface look less smooth and more uneven\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Hormonal changes affect skin thickness, elasticity, and overall quality</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Natural hydration levels fall, including a reduction in hyaluronic acid</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Subtle changes in fat and bone structure alter how the face is supported</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Your individual skin type and genetics influence how and where lines develop</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6684],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-01 15:23:43','2026-04-16 13:20:33','3ea385d7-9bca-4fde-b45e-af700b11f515'),
(6650,6650,1,'What causes lines and wrinkles 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <strong>Extrinsic Ageing (External Factors)  </strong>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Sun exposure </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Repeated facial movement </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Smoking </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Pollution and environmental stress </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Lifestyle factors </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Local environmental exposure </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Living here on the Wirral, many of us spend time outdoors, whether that is walking along the coast or enjoying the seaside. Wind, salt air, and sunlight reflected off the water can all contribute to dryness and gradual collagen breakdown if the skin is not well protected with daily sunscreen and supportive skincare.\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6685],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Common Areas Affected</i></span></h2><p> </p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Forehead lines</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across the forehead that can give a tired or worried appearance   </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Frown lines</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Glabellar lines or “elevens” are vertical lines between the eyebrows that can make you look cross even when you are not. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Crow’s feet</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines radiating from the outer corners of the eyes, often more noticeable when smiling or in photographs, and where make-up can start to gather. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Nasolabial folds</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Lines running from the sides of the nose to the corners of the mouth that can create shadows beside the smile . </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 15:23:44','2026-04-16 13:20:33','2d373f8e-bc3a-40f7-8d29-d69ba5c2a137'),
(6651,6651,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 15:23:44','2026-04-01 15:23:44','d2c0e4e1-21c9-47a8-8487-797f1a2c2eb0'),
(6652,6652,1,'Frequently Asked Questions About Lines and Wrinkles','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Lines and Wrinkles\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about treating lines and wrinkles\"}',1,'2026-04-01 15:23:44','2026-04-16 13:20:33','34a8b8ac-b4ff-4be7-bb17-7383ce70f742'),
(6653,6653,1,'At what age should I start treating lines and wrinkles?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lines and wrinkles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no “right age.” I usually suggest thinking about treatment when lines start to stay visible at rest or when they begin to bother you. Early, gentle treatments can soften movement patterns and protect collagen, meaning we often need less intervention later.\"}',1,'2026-04-01 15:23:44','2026-04-01 18:00:22','65f1b6de-7e76-474a-96d4-7e12008584a8'),
(6654,6654,1,'Will I still be able to move my face naturally after anti-wrinkle injections?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to move my face naturally after anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always for natural, refreshed results. You should still look like yourself, just more rested. I use careful assessment, conservative dosing and precise placement so expression is softened in a balanced way rather than eliminated. The “frozen” look usually comes from overtreatment. I take a whole-face, layered approach and review results with you, making small adjustments only if needed. Many patients come to me because they want subtle, natural outcomes.\"}',1,'2026-04-01 15:23:44','2026-04-01 18:00:22','24d919fd-0ac1-4130-ab1f-98acf83049b6'),
(6657,6657,1,'Is there any downtime?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments involve very little downtime. You may have some mild redness, swelling or small marks for a few hours to a couple of days. With dermal fillers, bruising is possible and can occasionally take up to a week to settle. Most patients go straight back to normal activities, although I usually suggest avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-04-01 15:23:44','2026-04-01 18:00:22','14108c48-5be5-4a16-97e0-5164ee479a95'),
(6660,6660,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 15:23:44','2026-04-20 19:05:34','3bb86704-e6fa-491a-abc8-da32fcc25f26'),
(6661,6661,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 16:58:02','2026-04-01 16:58:02','554a8cd3-7d8b-4f37-a372-06739e92a179'),
(6662,6662,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Ageing\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,20%);\\\">You look in the mirror, and the face looking back does not quite match how you feel inside. Fine lines have crept in. Your skin looks tired, less firm, less bright. These changes happen to all of us, and they are a natural part of life. My role is not to try to turn back the clock or make you look twenty-one again. It is about helping you look like yourself on a good day. Refreshed, well-rested, and confident in your own skin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"> At Aesthetics by Dr Rachel, my approach focuses on long-term skin health, subtle structural support, and carefully chosen treatments that work in harmony with your face. The aim is not transformation. It is confidence. Feeling comfortable in your skin again. Looking refreshed, natural, and like yourself, with your radiance gently restored.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Happens When Skin Ages?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Skin ageing is a gradual, layered process that affects every level of the skin and the structures beneath it. It often begins earlier than most people realise, commonly from the mid-20s, and becomes more visible over time. The changes you see on the surface reflect deeper shifts happening below. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Collagen, the protein responsible for skin strength and support, decreases by around 1% every year after your mid-20s. Elastin, which allows skin to stretch and recoil, also declines. Levels of hyaluronic acid reduce, meaning the skin holds less moisture and appears less plump and radiant. Together, these changes lead to thinner skin, fine lines, and increased skin laxity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Ageing also affects the deeper framework of the face. Facial fat pads gradually lose volume and descend, reducing soft tissue support. Over time, the facial skeleton undergoes slow, subtle reshaping as bone is gradually broken down and rebuilt in different areas. This leads to a gentle loss of overall facial bone volume and changes in contour, which reduces the support available for the soft tissues above. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6567]}',1,'2026-04-01 16:58:02','2026-04-01 16:58:02','b7166c1d-2b26-4714-9d44-e07a47694381'),
(6663,6663,1,'What Causes Skin to Age?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Skin to Age?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What Causes Skin to Age? There are 2 types of ageing at work. Intrinsic ageing is the natural, unavoidable process driven by genetics and internal biology. Extrinsic ageing is caused by external factors, many of which can be influenced or reduced. Most visible skin ageing results from a combination of both, which is why addressing ageing effectively requires a balanced, considered approach. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Ageing (Internal Factors)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Genetics, which influence your skin type and the rate at which ageing changes appear </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Hormonal changes, particularly around menopause, which accelerate collagen loss and skin thinning </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- The natural decline in collagen, elastin, and hyaluronic acid production over time </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Slower cell turnover, meaning the skin takes longer to renew and repair itself</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6565],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','24007a30-6593-47b2-b66b-39c36cd08279'),
(6664,6664,1,'What causes skin to age 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <strong>Extrinsic Ageing (External Factors)  </strong>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Sun exposure, the single biggest cause of premature skin ageing. UV radiation breaks down collagen and elastin, damages DNA, and drives wrinkles, pigmentation, and loss of firmness </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Smoking, which reduces blood flow to the skin, impairs oxygen delivery, and increases free radical damage, accelerating skin ageing </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Pollution, which increases oxidative stress and inflammation, weakening the skin barrier and accelerating collagen breakdown </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Lifestyle factors, including poor sleep, chronic stress, dehydration, and diets lacking key nutrients, all of which impair skin repair and regeneration </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Repetitive facial movement, which over time contributes to expression lines becoming more permanent as skin elasticity and resilience decline </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Living on the Wirral peninsula means your skin is regularly exposed to coastal wind, salt air, and strong sunlight reflected off the water. These environmental factors can increase dehydration, weaken the skin barrier, and accelerate collagen breakdown over time. The good news is that with the right daily protection, barrier support, and targeted treatments, these effects can be effectively managed, helping your skin remain healthy, resilient, and well supported as it ages.\\n</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6566],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>The Visible Signs of Ageing Skin</i></span></h2><p> </p><p>Ageing shows up and progresses differently for everyone. Understanding which changes are most noticeable for you allows me to select treatments that are targeted, appropriate, and tailored to your skin’s needs.</p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Fine Lines and Wrinkles</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines and wrinkles often appear first around the eyes (crow’s feet), forehead, and mouth. Dynamic lines form with facial movement and, over time, can become static lines that remain visible even when the face is at rest. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Volume Loss</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Facial fat pads play an important role in maintaining youthful facial shape and balance. When they are full and well supported, they help create the natural “triangle of youth”, with fullness through the mid-face and gentle tapering towards the jaw.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Skin Laxity and Sagging</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">As collagen and elastin levels decline, the skin loses its ability to remain firm and resilient. Over time, it begins to loosen and droop, particularly around the lower face, jawline, and neck. As the skin sags, it also contributes to deeper, heavier wrinkles and folds forming, softening facial definition and often making the face appear older. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','3a2f9d8f-70f2-4c41-b968-7bbc24e472dd'),
(6665,6665,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','6da600df-4c3f-4dd3-9d23-5f29458b186f'),
(6666,6666,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about aging\"}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','82440d52-cfa2-4c37-ac1a-adc9586ffb9b'),
(6667,6667,1,'At what age should I start anti-ageing treatments?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no set age, and no expectation or pressure to have any treatment at all. Anti-ageing is not about a specific number, but about how your skin is changing and how those changes make you feel. Some people choose to focus on prevention in their late twenties or early thirties with good skincare, sun protection and treatments such as skin boosters, while others seek more corrective options later on. I always start by understanding what is bothering you, assessing the underlying changes in your skin, and only then suggesting treatments that directly and appropriately address those concerns. The right time is simply when you feel ready and want advice, not when you feel you should do something.\"}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','2bc6cff6-c67c-4d02-95be-7480acebae4a'),
(6668,6668,1,'Will I still look like myself after treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still look like myself after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My approach is always subtle, measured and focused on enhancing rather than changing your features. The aim is to help you look refreshed, well-rested and healthier, not different or overdone. Patients often tell me that friends and family comment on how well they look, without being able to pinpoint exactly what has changed.\"}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','7447f688-0d8b-4357-9ab5-6f9abb4f0c15'),
(6671,6671,1,'How long do results last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This varies depending on the treatment and how your skin responds. Skin boosters typically last around 6 to 9 months, while dermal fillers can last 12 to 18 months, depending on the area treated and the product used. Anti-wrinkle injections usually last around 3 months on average. Maintenance treatments are recommended to keep your results looking their best, and I will always talk you through expected longevity and maintenance options during your consultation so you can make informed decisions.\"}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','a13f8de2-045c-42c6-bd0f-a42a1eae9c77'),
(6674,6674,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 16:58:03','2026-04-01 16:58:03','c09adcac-f507-4f85-af6f-21288f8506ab'),
(6679,6679,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 17:11:07','2026-04-01 17:11:07','fe13f9b5-6911-4edb-93ed-9ed8884f2e48'),
(6680,6680,1,'Lines and Wrinkles','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Lines and Wrinkles\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,20%);\\\">Lines can appear quietly. A crease that lingers after you smile. Make-up catching in places it never used to. You start to notice lines that were not there before. They may sit between your brows, around your eyes, across your forehead, or around your mouth. Perhaps your concealer now highlights shadows instead of hiding them, and photographs seem harsher than they once were. These changes rarely happen overnight. They come from years of expression, sun exposure, stress, sleep patterns, and the gradual loss of collagen and hydration in the skin.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Lines and Wrinkles?\\n</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Lines and wrinkles are creases, folds, or ridges that develop in the skin over time. Fine lines are usually shallow and subtle, sometimes only visible in certain lighting or when your face moves. Wrinkles are deeper grooves that become more noticeable as the years pass. Both happen because of gradual changes in the structure of your skin, combined with years of facial expression and environmental exposure. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Your skin relies on collagen and elastin to stay firm, smooth, and resilient. From our mid-twenties, collagen production slowly declines, typically by around 1% each year. As this support reduces, the skin becomes thinner, less elastic, and slower to recover. Every day expressions such as smiling, frowning, laughing, and squinting gently crease the skin thousands of times, and over time, those temporary lines can become permanent. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Sun exposure, stress, sleep patterns, smoking, dehydration, and genetics all play a role, too. This is why lines appear at different times and in different places for each person. Understanding why they form helps me choose treatments that are thoughtful, safe, and tailored to your skin rather than simply chasing quick fixes. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6567]}',1,'2026-04-01 17:11:07','2026-04-01 17:11:07','fd1e55e6-2222-4e45-8f10-400f29a9a033'),
(6681,6681,1,'What Causes Lines and Wrinkles?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Lines and Wrinkles?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Lines and wrinkles develop through a combination of intrinsic ageing and external influences. Understanding what contributes to your lines helps me choose the most effective and appropriate treatment approach for your skin.\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Factors (Natural Ageing)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Genetics, which influence your skin type and the rate at which ageing changes appear </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Hormonal changes, particularly around menopause, which accelerate collagen loss and skin thinning </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- The natural decline in collagen, elastin, and hyaluronic acid production over time </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Slower cell turnover, meaning the skin takes longer to renew and repair itself</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6565],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 17:11:07','2026-04-01 17:11:07','a61d05f2-181e-4dd4-8f56-5e4ef7b3f051'),
(6684,6684,1,'Lines and wrinkles condition 2',NULL,NULL,NULL,1,'2026-04-01 17:43:13','2026-04-01 17:43:13','f98044eb-c10f-473d-b6b1-f8af94f8e771'),
(6685,6685,1,'Lines and wrinkles condition 3',NULL,NULL,NULL,1,'2026-04-01 17:43:14','2026-04-01 17:43:14','69995bbf-9b99-4f53-a48e-f2b3f007e7a9'),
(6686,6686,1,'Lines and wrinkles condition',NULL,NULL,NULL,1,'2026-04-01 17:43:17','2026-04-01 17:43:17','f07b3af4-5b92-4974-9a65-9f8366c58f1b'),
(6698,6698,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','37d63ac0-8d7d-4c01-95b0-1777c7eece96'),
(6699,6699,1,'Lines and Wrinkles','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Lines and Wrinkles\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,20%);\\\">Lines can appear quietly. A crease that lingers after you smile. Make-up catching in places it never used to. You start to notice lines that were not there before. They may sit between your brows, around your eyes, across your forehead, or around your mouth. Perhaps your concealer now highlights shadows instead of hiding them, and photographs seem harsher than they once were. These changes rarely happen overnight. They come from years of expression, sun exposure, stress, sleep patterns, and the gradual loss of collagen and hydration in the skin.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Lines and Wrinkles?\\n</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Lines and wrinkles are creases, folds, or ridges that develop in the skin over time. Fine lines are usually shallow and subtle, sometimes only visible in certain lighting or when your face moves. Wrinkles are deeper grooves that become more noticeable as the years pass. Both happen because of gradual changes in the structure of your skin, combined with years of facial expression and environmental exposure. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Your skin relies on collagen and elastin to stay firm, smooth, and resilient. From our mid-twenties, collagen production slowly declines, typically by around 1% each year. As this support reduces, the skin becomes thinner, less elastic, and slower to recover. Every day expressions such as smiling, frowning, laughing, and squinting gently crease the skin thousands of times, and over time, those temporary lines can become permanent. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Sun exposure, stress, sleep patterns, smoking, dehydration, and genetics all play a role, too. This is why lines appear at different times and in different places for each person. Understanding why they form helps me choose treatments that are thoughtful, safe, and tailored to your skin rather than simply chasing quick fixes. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6686]}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','6a608149-55ab-43d8-b2b1-d76ae5f1d017'),
(6700,6700,1,'What Causes Lines and Wrinkles?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Lines and Wrinkles?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Lines and wrinkles develop through a combination of intrinsic ageing and external influences. Understanding what contributes to your lines helps me choose the most effective and appropriate treatment approach for your skin.\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Factors (Natural Ageing)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">Intrinsic ageing refers to the natural changes that happen inside your skin over time. These are influenced by your genetics, biology, and hormones rather than lifestyle or environmental exposure, and they affect everyone to some degree.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Gradual loss of collagen and elastin </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Slower cell turnover </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Hormonal changes</span>\\n</p>\\n\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Reduced hydration and hyaluronic acid</span>\\n</p>\\n\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Changes in fat and bone structure</span>\\n</p>\\n\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Genetic skin characteristics</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6684],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','6ea5d198-a190-4a97-b23d-8a4df98fd8c1'),
(6701,6701,1,'What causes lines and wrinkles 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <strong>Extrinsic Ageing (External Factors)  </strong>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Sun exposure </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Repeated facial movement </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Smoking </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Pollution and environmental stress </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Lifestyle factors </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Local environmental exposure </span>\\n</p>\\n<p>\\n     \\n</p>\\n\\n<p>\\nLiving here on the Wirral, many of us spend time walking along the coast or enjoying windy seaside weather. Wind, salt air, and sunlight reflected off the water can dry the skin and accelerate collagen breakdown if the skin is not properly protected with sunscreen and barrier-supporting skincare.\\n\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6685],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Common Areas Affected</i></span></h2><p> </p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Forehead lines</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across the forehead that can give a tired or worried appearance   </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Frown lines</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Glabellar lines or “elevens” are vertical lines between the eyebrows that can make you look cross even when you are not. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Crow’s feet</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines radiating from the outer corners of the eyes, often more noticeable when smiling or in photographs, and where make-up can start to gather. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Nasolabial folds</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Lines running from the sides of the nose to the corners of the mouth that can create shadows beside the smile . </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','dc65bc9e-7898-49c6-808a-638ba5803ebc'),
(6702,6702,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about aging\"}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','6bf5bc6f-a400-4676-94bf-2c435a94a954'),
(6703,6703,1,'At what age should I start treating lines and wrinkles?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lines and wrinkles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no “right age.” I usually suggest thinking about treatment when lines start to stay visible at rest or when they begin to bother you. Early, gentle treatments can soften movement patterns and protect collagen, meaning we often need less intervention later.\"}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','712b3c1e-e16a-4b2f-8619-830ce835bc6f'),
(6704,6704,1,'Will I still be able to move my face naturally after anti-wrinkle injections?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to move my face naturally after anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always for natural, refreshed results. You should still look like yourself, just more rested. I use careful assessment, conservative dosing and precise placement so expression is softened in a balanced way rather than eliminated. The “frozen” look usually comes from overtreatment. I take a whole-face, layered approach and review results with you, making small adjustments only if needed. Many patients come to me because they want subtle, natural outcomes.\"}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','32b70584-6f2f-499a-8ca3-188efb6dd645'),
(6707,6707,1,'Is there any downtime?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments involve very little downtime. You may have some mild redness, swelling or small marks for a few hours to a couple of days. With dermal fillers, bruising is possible and can occasionally take up to a week to settle. Most patients go straight back to normal activities, although I usually suggest avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-04-01 18:00:22','2026-04-01 18:00:22','fc3dbb5c-5b2d-4909-a8bf-d968c5fdbcb9'),
(6711,6711,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-01 18:00:41','2026-04-01 18:00:41','fce47d6c-22cc-4b7f-b7c7-e3bf93638cfc'),
(6712,6712,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-01 18:04:12','2026-04-01 18:17:15','489d3b71-51dc-4bfc-949c-e043d7da7200'),
(6713,6713,1,'Dark Circles Under the Eyes','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dark Circles Under the Eyes\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Those shadows under your eyes can be so frustrating. You try to cover your under-eyes with concealer every morning, only to find the dark circles still showing through. Perhaps people keep asking if you are tired when you actually feel fine. Dark circles are one of the most common concerns I see in the clinic here on the Wirral, and they can affect anyone, at any age.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The important thing to know is that “dark circles” are not all the same. Once I understand why yours have appeared, I can create a safe, tailored plan to brighten and refresh the eye area so you look as well-rested as you really feel.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Dark Circles Under the Eyes?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Dark circles refer to the darker or shadowed appearance beneath the eyes. Medically, they may be described as periorbital hyperpigmentation, but in clinic I tend to explain them more simply as changes in colour or contour in this delicate area. The skin under the eyes is one of the thinnest on the face, which means it reveals underlying changes more easily.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Pigment, circulation, and subtle shifts in structure can all become visible here in a way they would not elsewhere. They are not simply a sign of tiredness, although poor sleep can make them more noticeable. Dark circles can be caused by increased pigmentation in the skin, the way light interacts with the area due to underlying circulation, or shadowing from volume loss and structural changes. Most people have a combination of these factors. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">When I assess your under-eye area, I look carefully at each of these elements. Once we understand what is truly driving the appearance, we can choose treatments that are appropriate, natural-looking, and designed to give meaningful, long-term improvement. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6727]}',1,'2026-04-01 18:04:12','2026-04-16 12:36:18','789dbc79-e183-47f7-81ba-ca8e24ff8832'),
(6714,6714,1,'What Causes Dark Circles Under the Eyes?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Dark Circles Under the Eyes?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dark circles can develop for lots of different reasons, and most people have more than one factor involved. That is why they can be so stubborn, and why a single cream or quick fix rarely works. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Structural Causes (Volume Loss and Shadows)</strong></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes dark circles are not really about colour at all, but about shadowing created by changes in the underlying facial structure. This is something I see very often in clinic, particularly as we move through our 30s and 40s.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Over time, the support beneath the eyes gradually changes. Collagen reduces, fat pads shift, and the transition between the lower eyelid and cheek becomes more defined. Rather than the area appearing darker, it is the way light falls into these contours that creates the appearance of a shadow. This type of dark circle is often influenced by:</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Gradual loss of collagen and soft tissue beneath the eyes, leading to a hollow or sunken appearance </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- A more visible tear trough between the lower eyelid and cheek </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural bone structure or genetics, resulting in deeper-set eyes </span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6726],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-01 18:04:12','2026-04-16 12:41:20','9f2c9002-03db-4040-a4e0-c4842b9c5342'),
(6715,6715,1,'What Causes Dark Circles Under the Eyes 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vascular Causes (Blood Vessels Showing Through)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    In some people, dark circles are not caused by pigmentation but by the way light interacts with the skin under the eyes. The skin in this area is naturally very thin, so underlying blood vessels can show through, creating a bluish or purple tone. This can become more noticeable when you are tired or run down. This type of dark circle is often influenced by:\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Naturally thin, delicate under-eye skin\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sluggish circulation or pooling of blood in the small vessels beneath the eyes\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Lack of sleep, which can make the area appear darker and more shadowed\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Allergies or nasal congestion, which increase pressure in the surrounding vessels\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    Pigmentation Causes (Excess Melanin)\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    For some people, the darkness under the eyes is due to true pigmentation within the skin rather than shadowing. This tends to appear more brown in tone and can be particularly persistent without the right approach.\\n\\nThis type of dark circle is often influenced by:\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - A genetic tendency to increased pigmentation in the under-eye area, which is more common in darker skin tones\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sun exposure, which stimulates melanin production in this delicate skin\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Post-inflammatory pigmentation, often triggered by rubbing the eyes, eczema, or allergic reactions\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 18:04:12','2026-04-16 12:49:02','e4553524-c1d3-486d-8043-d624b98c0e23'),
(6716,6716,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 18:04:12','2026-04-01 18:04:12','edcbbf2c-2e14-445a-bcc4-5386478b9f04'),
(6717,6717,1,'Frequently Asked Questions About Dark Circles Under the Eyes','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dark Circles Under the Eyes\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about dark circles under the eyes\"}',1,'2026-04-01 18:04:12','2026-04-16 12:36:18','f0d1a842-6a54-4cb1-8e5b-dd0d3a5a11f0'),
(6718,6718,1,'Can dark circles be treated with non-surgical aesthetic treatment?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be treated with non-surgical aesthetic treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Depending on the underlying cause, dark circles can often be improved significantly with a tailored, non-surgical approach. Treatments may include options such as <a href=\\\"{entry:1951@1:url||https://hermeswp.xyz/rachel/web/treatments/sunekos}\\\">Sunekos</a>, which is specifically designed for the delicate under-eye area to improve skin quality and reduce crepiness, as well as other advanced <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> and regenerative treatments that support collagen production and tissue health, such as <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>. In selected cases, <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> may be considered to restore lost volume and reduce shadowing, but this is not suitable for everyone and requires careful assessment. During your consultation, I will assess what is contributing to your dark circles and recommend the safest, most appropriate approach for you.</p>\"}',1,'2026-04-01 18:04:12','2026-04-16 12:36:18','c3a4f5c2-48c0-48e3-9925-1e9a2d4e4996'),
(6719,6719,1,'Am I a suitable candidate for under-eye treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Am I a suitable candidate for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Many people with concerns such as hollowing, volume loss, or thinning skin under the eyes can benefit from treatment.\\n\\nHowever, if your dark circles are mainly related to pigmentation or lifestyle factors, a different approach, or a combination of treatments, may be more appropriate.\\n\\nThe most important step is understanding what is causing the change in your individual case. A face-to-face consultation allows me to assess this in detail and guide you towards the safest, most natural-looking option for you.\"}',1,'2026-04-01 18:04:12','2026-04-16 12:49:02','11d17778-5d9e-4129-a004-10d576ebb5dc'),
(6720,6720,1,'Can dark circles be permanently removed?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be permanently removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"In most cases, dark circles cannot be removed permanently, but they can often be improved significantly with the right approach. This is because factors such as ageing, genetics, and lifestyle continue to influence the under-eye area over time. As a result, maintenance treatments are usually needed to keep results looking their best.\\n\\nSimple measures also play an important role. Good quality sleep, staying well hydrated, managing allergies, and wearing daily sun protection can all help to maintain improvement and slow further change.\\n\\nThe aim is not to completely erase the area, but to create a softer, brighter, and more refreshed appearance in a way that still looks natural.\"}',1,'2026-04-01 18:04:12','2026-04-16 12:49:02','f6573675-cc94-4b33-88f5-684f2c51f98d'),
(6721,6721,1,'What makes Aesthetics by Dr Rachel different for under-eye treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As a practising GP with specialist training in aesthetic medicine, I approach dark circles in the same way I would any medical concern - by understanding the cause first. I take time to assess your skin, facial structure, medical history, and lifestyle in detail before recommending any treatment. The under-eye area is delicate and complex, and it requires careful judgement as well as precise technique.\\n\\nYou will see me at every appointment, and you will never feel rushed or pressured. If a treatment is not right for you, I will always be honest and guide you towards the safest and most appropriate option. My focus is on achieving subtle, balanced results that look natural, and feel right for you.\"}',1,'2026-04-01 18:04:12','2026-04-16 12:49:02','b6b738b7-d3b4-48de-a5b9-67e20756fca8'),
(6722,6722,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments work gradually as collagen production increases and skin quality improves. You may notice early changes within a few weeks, with continued improvement over several months. Results are not instant, but they are worth the wait because they look natural and long-lasting. Maintenance treatments help keep your neck looking its best over time.\"}',1,'2026-04-01 18:04:12','2026-04-01 18:04:12','0b77a49b-93e2-4ee1-84e6-4828a1c7153c'),
(6723,6723,1,'Can I treat tech neck even if I am in my 20s or 30s?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat tech neck even if I am in my 20s or 30s?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, absolutely. I see tech neck more and more in younger patients because of long hours on phones and laptops. Starting early with gentle treatments, good posture habits and consistent skincare can slow the progression of neck lines and help prevent them from becoming deeper over time. Prevention is always easier, and often simpler, than correction later.\"}',1,'2026-04-01 18:04:12','2026-04-01 18:04:12','d1a15238-7dd4-42a2-86cf-d67c792c430a'),
(6724,6724,1,'Can I combine neck line treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine neck line treatment with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, and combining treatments often gives the best results. Different treatments improve different layers of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation, I assess your face and neck together and design a personalised plan that keeps everything balanced, often combining treatments gradually as part of a Radiance Collection programme.\"}',1,'2026-04-01 18:04:12','2026-04-01 18:04:12','cd0b9fa8-ddba-404a-90d1-9146971c4bb8'),
(6725,6725,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 18:04:12','2026-04-20 19:05:48','922db292-11fd-4d89-aa36-c0e21fb17deb'),
(6726,6726,1,'Dar circles aroung the eyes 2',NULL,NULL,NULL,1,'2026-04-01 18:17:05','2026-04-01 18:17:05','ba5a6b32-3976-4f3f-9bea-97a089181681'),
(6727,6727,1,'Dar circles aroung the eyes',NULL,NULL,NULL,1,'2026-04-01 18:17:06','2026-04-01 18:17:06','93a7ebb8-8516-4a84-81ce-19292cc50d13'),
(6743,6743,1,'Does under-eye treatment hurt?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does under-eye treatment hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>\\n    The under-eye area is naturally sensitive, but discomfort is usually minimal. A topical numbing cream is applied beforehand to keep the area as comfortable as possible.\\n\\nMost patients describe the sensation as a feeling of mild pressure rather than pain.\\n</p>\"}',1,'2026-04-01 18:42:04','2026-04-16 12:49:02','72655996-5ffe-4233-9134-7a47094df91b'),
(6744,6744,1,'Are there any risks or side effects?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any risks or side effects?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As with any injectable treatment, there is a small risk of bruising, swelling, or tenderness at the injection site. The under-eye area is particularly delicate, which is why careful assessment and precise technique are essential. Serious complications are rare when treatment is performed by a suitably qualified and experienced medical professional.\"}',1,'2026-04-01 18:42:04','2026-04-16 12:49:02','d7632383-4520-4f52-8773-17164a9c39b4'),
(6745,6745,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-01 18:42:07','2026-04-01 18:42:07','2f273594-0166-4ab8-b0c7-a8ffc87f2270'),
(6746,6746,1,'Dark Circles Under the Eyes','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dark Circles Under the Eyes\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Those shadows under your eyes can be so frustrating. You try to cover your under-eyes with concealer every morning, only to find the dark circles still showing through. Perhaps people keep asking if you are tired when you actually feel fine. Dark circles are one of the most common concerns I see in the clinic here on the Wirral, and they can affect anyone, at any age.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The important thing to know is that “dark circles” are not all the same. Once I understand why yours have appeared, I can create a safe, tailored plan to brighten and refresh the eye area so you look as well-rested as you really feel.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Dark Circles Under the Eyes?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Dark circles are the darker or shadowed appearance beneath the eyes. Medically, they may be called periorbital hyperpigmentation, but in the clinic, I usually explain them more simply as changes in colour or contour in this delicate area. The skin under the eyes is one of the thinnest and most delicate areas of skin on the face, so it shows pigment, blood vessels, and hollowing much more easily than anywhere else.\\n</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">They are not just a sign of tiredness, although poor sleep can certainly make them look worse. Dark circles can be caused by true pigmentation in the skin, visible blood vessels showing through thin skin, loss of volume creating shadows, or a combination of all three.\\n</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">When I assess your under-eye area, I am looking carefully at each of these factors. Once we understand the real cause of your dark circles, we can choose treatments that are safe, natural-looking, and genuinely effective for you.\\n</span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6727]}',1,'2026-04-01 18:42:07','2026-04-01 18:42:07','7c18428a-2385-438c-a68c-4650b8eee41f'),
(6747,6747,1,'What Causes Dark Circles Under the Eyes?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Dark Circles Under the Eyes?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dark circles can develop for lots of different reasons, and most people have more than one factor involved. That is why they can be so stubborn, and why a single cream or quick fix rarely works. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Structural Causes (Volume Loss and Shadows)</strong></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes dark circles are not really about colour at all, but about shadowing from changes in facial structure. I see this very often in the clinic, especially as we move through our 30s and 40s.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural loss of collagen and fat beneath the eyes, creating a hollow or sunken look </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- A tear trough groove between the lower eyelid and cheek that casts a shadow </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Genetics or bone structure giving deeper-set eyes or a naturally prominent tear trough </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Midface volume loss or fat pad descent with age, which reduces support under the eye </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6726],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 18:42:07','2026-04-01 18:42:07','463e37bc-bdac-4ef9-b463-22f4f51dd1d3'),
(6748,6748,1,'What Causes Dark Circles Under the Eyes 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vascular Causes (Blood Vessels Showing Through)</span></h3><p> </p><p>In some people, dark circles are caused by tiny blood vessels showing through thin under-eye skin rather than true pigmentation. This often gives a bluish or purple tone that looks worse when you are tired or run down.</p><p> </p><p>- Very thin, translucent under-eye skin allowing underlying vessels to show through </p><p> </p><p>- Sluggish circulation or blood pooling in the delicate capillaries beneath the eyes </p><p> </p><p>- Lack of sleep, which can make vessels dilate and look darker </p><p> </p><p>- Allergies or nasal congestion, which increase pressure in the vessels around the eyes</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Pigmentation Causes (Excess Melanin)</h3><p> </p><p>For some people, the darkness is true pigmentation in the skin rather than shadowing. This often looks more brown than blue and can be quite stubborn without the right approach.</p><p> </p><p>- Genetic tendency to periorbital hyperpigmentation, which is more common in darker skin tones</p><p> </p><p>- Sun exposure stimulates melanin production in the delicate under-eye area </p><p> </p><p>- Post-inflammatory pigmentation from rubbing the eyes, eczema, or allergic reactions</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','f0541741-c4f0-4693-b8e5-f2e84eebb790'),
(6749,6749,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','1b19ba4e-4753-4571-9de8-12c63bc179f9'),
(6750,6750,1,'Frequently Asked Questions About Dark Circles Under the Eyes','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dark Circles Under the Eyes\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about dark circles under the eyes\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','d270079b-4ea4-42fd-a061-565b92a641aa'),
(6751,6751,1,'Can dark circles be treated with non-surgical aesthetics?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be treated with non-surgical aesthetics?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Depending on the cause, dark circles can be significantly improved with treatments such as <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> to restore lost volume in the tear trough area, <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> to improve skin quality, or <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotide therapy</a> to rejuvenate the delicate under-eye skin. I will assess the underlying cause during your consultation to recommend the most effective approach.</p>\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','b32061e3-a1d2-4a12-81f9-281b2f77072f'),
(6752,6752,1,'Am I a suitable candidate for under-eye treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Am I a suitable candidate for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most people with volume loss, hollowing, or skin thinning under the eyes are good candidates. However, if your dark circles are primarily caused by pigmentation or lifestyle factors, alternative treatments or a combined approach may be more appropriate. A face-to-face consultation with me is the best way to find out what will work for you.</p>\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','a8402a99-63a3-4c94-b019-eedcaae624cf'),
(6753,6753,1,'Can dark circles be permanently removed?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be permanently removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"In most cases, dark circles cannot be removed permanently, but they can often be improved significantly. Because ageing, genetics, and lifestyle factors all play a role, maintenance treatments are usually needed to keep results looking their best over time. Good sleep, hydration, allergy control, and daily sun protection also make a real difference in maintaining improvement and slowing further change.\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','5da9e93c-40ab-4501-8434-a980865d7fa6'),
(6754,6754,1,'What makes Aesthetics by Dr Rachel different for under-eye treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I am a practising GP with specialist training in aesthetic medicine, so I approach dark circles in the same way I would any medical concern - by understanding the cause first. I take time to assess your skin, facial structure, medical history, and lifestyle factors before recommending anything, because the under-eye area needs careful judgment as well as precise technique. You will always see me at every appointment, you will never feel rushed or pressured, and if a treatment is not right for you, I will say so and guide you towards the safest option.\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','302cf5ab-37b5-412e-8ad1-929bb5fb9d1e'),
(6755,6755,1,'Does under-eye treatment hurt?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does under-eye treatment hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The under-eye area is sensitive, but discomfort is kept to a minimum. A topical numbing cream is applied before treatment, and most dermal fillers contain a built-in anaesthetic. Most patients describe the sensation as mild pressure rather than pain.</p>\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','679ca300-7fca-47b3-bed2-9b253e8560f0'),
(6756,6756,1,'Are there any risks or side effects?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any risks or side effects?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>As with any injectable treatment, there is a small risk of bruising, swelling, or tenderness at the injection site. The under-eye area is particularly delicate, which is why it\'s essential to choose a qualified and experienced practitioner like me. Serious complications are rare when the treatment is performed by a trained medical professional.</p>\"}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','755092f1-1a8a-4b87-b3cc-95633f25d5f9'),
(6757,6757,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 18:42:08','2026-04-01 18:42:08','7f1767bc-a82d-4afc-ad3e-464e34580fb2'),
(6758,6758,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-01 18:42:12','2026-04-01 18:42:12','3031ae22-50ca-439a-a48b-1954924a81f7'),
(6759,6759,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','9e8fedb9-7cf4-491a-ac9e-231f74fba086'),
(6760,6760,1,'Crepey Skin','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Crepey Skin\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    You may start to notice that your skin no longer feels as firm or springy as it once did. It may look thinner, slightly looser, or develop fine lines that seem to crumple rather than smooth out. When you gently pinch the skin, it may stay creased for a moment before slowly returning. Crepey skin often develops gradually and can make the skin appear more delicate, finely wrinkled or tired, particularly on areas where the skin is naturally thinner such as around the eyes, the neck and the décolletage.\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Crepey Skin?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Crepey skin describes skin that has become thin, finely wrinkled and loose, often compared to the texture of crepe paper or tissue paper. Unlike deeper wrinkles that form in specific areas due to repeated muscle movement, crepey skin tends to affect broader areas and has a fragile, papery appearance. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The key difference between crepey skin and other signs of ageing is that it reflects a decline in skin quality and structure rather than volume loss or muscle activity. Over time, the skin loses collagen and elastin, the proteins responsible for strength, thickness and elasticity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">As a result, the skin becomes thinner, less resilient and slower to recoil when stretched. This is why treatments that focus purely on lifting or tightening often do not fully address crepey skin, and why approaches that improve skin quality and stimulate collagen regeneration are so important.  </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6785]}',1,'2026-04-01 18:42:39','2026-04-16 13:28:51','999778d6-787f-47a2-b926-504cc7f3e5a4'),
(6761,6761,1,'What Causes Crepey Skin?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Crepey Skin?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">Crepey skin develops as collagen and elastin levels within the skin gradually decline. These proteins are essential for skin strength, thickness and elasticity. As their production slows, the skin becomes thinner, less resilient and slower to bounce back when stretched. This loss of collagen and elastin is influenced by a combination of internal factors, such as natural ageing and hormonal changes, and external factors, including sun exposure and environmental stress.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Ageing (Natural Decline)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Collagen production gradually decreases with age, estimated at around 1% per year from early adulthood, leading to thinner skin with reduced structural support  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Elastin fibres lose their ability to stretch and recoil effectively, meaning the skin is slower to snap back and more likely to remain creased </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural oil production slows over time, weakening the skin’s protective barrier and reducing moisture retention  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Cell turnover becomes less efficient, so damaged or ageing skin cells are replaced more slowly, contributing to a fragile, dull skin appearance </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6786],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','b8eef9f4-82bc-47c2-aa2e-115145529b97'),
(6762,6762,1,'What Causes Crepey Skin? 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Sun Damage (Photoageing)</span></h3><p> </p><p> </p><p>- Ultraviolet radiation is responsible for the majority of visible skin ageing, accelerating the breakdown of collagen and elastin within the skin </p><p> </p><p>- The effects of sun exposure are cumulative, with damage building up over decades and often becoming more noticeable later in life  </p><p> </p><p>- Areas that are regularly exposed to sunlight, such as the face, neck, décolletage and arms, are often the first to develop crepey changes in skin texture and quality </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Changes</span></h3><p> </p><p>- Declining oestrogen levels during perimenopause and menopause significantly accelerate collagen loss, with studies showing that women can lose up to 30% of their skin’s collagen within the first 5 years after menopause  </p><p> </p><p>- Reduced hormone levels affect skin hydration, thickness and the skin’s natural ability to repair and regenerate, contributing to increased fragility and crepey texture  </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6787],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Lifestyle and External Factors</h3><p> </p><p>- Significant or rapid weight loss can leave the skin loose and thinner, having lost the underlying structural support that maintains firmness</p><p> </p><p>- Smoking accelerates the breakdown of collagen and elastin while also reducing blood flow and oxygen delivery to the skin</p><p> </p><p>- Chronic dehydration can make the skin appear dull, thinner and more fragile, exaggerating crepey texture</p><p> </p><p>- Poor nutrition, particularly diets low in protein, vitamins and antioxidants, reduces the skin’s ability to repair, regenerate and maintain healthy structure</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','e07bbd94-b447-43d6-ad00-6cba9b553a4f'),
(6763,6763,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 18:42:39','2026-04-01 18:42:39','5c0bfd77-dbc3-4001-b8f4-f35fe389f0e1'),
(6764,6764,1,'Frequently Asked Questions About Crepey Skin','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Crepey Skin\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about crepey skin\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','93cd4c4d-33fb-484a-8774-2262b8218ba1'),
(6765,6765,1,'Can crepey skin actually be improved?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can crepey skin actually be improved?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, crepey skin can be significantly improved with the right approach. While it cannot be completely reversed, modern regenerative treatments such as <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a>, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> and <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> like Profhilo® can genuinely rebuild skin quality. These treatments work by improving hydration and stimulating collagen and elastin production, helping the skin become smoother, more supple and better supported. Results develop gradually and look natural, with improvements continuing over time.</p>\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','a956bd39-3d6b-4ecb-9643-450d2e7cfdb8'),
(6766,6766,1,'What is the difference between crepey skin and wrinkles?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between crepey skin and wrinkles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Wrinkles are lines that tend to form due to repeated muscle movement or volume loss and usually appear in specific areas, such as around the eyes or mouth. Crepey skin, on the other hand, relates to a change in overall skin quality. The skin becomes thinner, more fragile and finely wrinkled across larger areas, giving it a papery texture. Because the underlying causes are different, crepey skin and <a href=\\\"{entry:6647@1:url||https://hermeswp.xyz/rachel/web/conditions/lines-and-wrinkles}\\\">wrinkles</a> often require different treatment approaches, with crepey skin responding best to treatments that improve skin quality and stimulate collagen and elastin production.</p>\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','d0a530f7-b54e-48bb-826e-a7befd2259e9'),
(6767,6767,1,'At what age does crepey skin typically appear?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age does crepey skin typically appear?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Crepey skin most commonly begins to appear in our 40s, but it can develop earlier in some individuals. Factors such as significant sun exposure, weight loss and hormonal changes can accelerate these changes, and genetics also play an important role. As a result, the timing and severity of crepey skin can vary considerably from person to person.\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','d89389d4-2362-4077-917e-2bbe0110e6ce'),
(6768,6768,1,'How many treatments will I need?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This varies depending on the treatment chosen, your baseline skin quality and how your skin responds. Most patients benefit from a planned course of treatment rather than a single session, followed by maintenance to support ongoing skin health. I will always create a personalised plan based on your specific concerns, skin condition and goals, and talk you through expected treatment stages and maintenance options so you can make informed decisions at your own pace.\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','74598701-7ab9-4e06-84e8-98ad8e64b8c4'),
(6769,6769,1,'Is there any downtime after treatment?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used and how sensitive your skin is. Most treatments for crepey skin involve minimal disruption, with some patients experiencing temporary redness, mild swelling or small injection marks for a short period. Many people are able to return to normal daily activities straight away. I will always explain what to expect for your specific treatment in advance, so you can plan confidently and feel fully informed.\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','3e4da254-8744-4ec7-af62-b1d48963bb93'),
(6770,6770,1,'Can you treat crepey skin on the body as well as the face?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can you treat crepey skin on the body as well as the face?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Regenerative treatments can be used on a range of areas beyond the face, including the neck, décolletage, hands and arms. The treatment approach is always adapted to the specific area and the quality of the skin being treated. I will discuss all suitable options with you during your consultation and tailor a plan that feels appropriate for you and your goals.\"}',1,'2026-04-01 18:42:39','2026-04-01 19:10:02','9904d95b-c02d-4c7c-9000-a4fdd608a430'),
(6771,6771,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 18:42:39','2026-04-20 19:08:02','f8748b36-da86-4229-9eac-8fe222084256'),
(6772,6772,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','7a347288-0178-44c3-aeac-b0e5fdb5cfa5'),
(6773,6773,1,'Dark Circles Under the Eyes','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dark Circles Under the Eyes\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Those shadows under your eyes can be so frustrating. You try to cover your under-eyes with concealer every morning, only to find the dark circles still showing through. Perhaps people keep asking if you are tired when you actually feel fine. Dark circles are one of the most common concerns I see in the clinic here on the Wirral, and they can affect anyone, at any age.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The important thing to know is that “dark circles” are not all the same. Once I understand why yours have appeared, I can create a safe, tailored plan to brighten and refresh the eye area so you look as well-rested as you really feel.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Dark Circles Under the Eyes?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Dark circles are the darker or shadowed appearance beneath the eyes. Medically, they may be called periorbital hyperpigmentation, but in the clinic, I usually explain them more simply as changes in colour or contour in this delicate area. The skin under the eyes is one of the thinnest and most delicate areas of skin on the face, so it shows pigment, blood vessels, and hollowing much more easily than anywhere else.\\n</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">They are not just a sign of tiredness, although poor sleep can certainly make them look worse. Dark circles can be caused by true pigmentation in the skin, visible blood vessels showing through thin skin, loss of volume creating shadows, or a combination of all three.\\n</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">When I assess your under-eye area, I am looking carefully at each of these factors. Once we understand the real cause of your dark circles, we can choose treatments that are safe, natural-looking, and genuinely effective for you.\\n</span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6727]}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','ff9afa93-2043-4fbc-bbb1-aef96f134f51'),
(6774,6774,1,'What Causes Dark Circles Under the Eyes?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Dark Circles Under the Eyes?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dark circles can develop for lots of different reasons, and most people have more than one factor involved. That is why they can be so stubborn, and why a single cream or quick fix rarely works. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Structural Causes (Volume Loss and Shadows)</strong></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes dark circles are not really about colour at all, but about shadowing from changes in facial structure. I see this very often in the clinic, especially as we move through our 30s and 40s.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural loss of collagen and fat beneath the eyes, creating a hollow or sunken look </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- A tear trough groove between the lower eyelid and cheek that casts a shadow </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Genetics or bone structure giving deeper-set eyes or a naturally prominent tear trough </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Midface volume loss or fat pad descent with age, which reduces support under the eye </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6726],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','495e4c1b-5bde-47e4-aaf4-d4b139ce7ba1'),
(6775,6775,1,'What Causes Dark Circles Under the Eyes 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vascular Causes (Blood Vessels Showing Through)</span></h3><p> </p><p>In some people, dark circles are caused by tiny blood vessels showing through thin under-eye skin rather than true pigmentation. This often gives a bluish or purple tone that looks worse when you are tired or run down.</p><p> </p><p>- Very thin, translucent under-eye skin allowing underlying vessels to show through </p><p> </p><p>- Sluggish circulation or blood pooling in the delicate capillaries beneath the eyes </p><p> </p><p>- Lack of sleep, which can make vessels dilate and look darker </p><p> </p><p>- Allergies or nasal congestion, which increase pressure in the vessels around the eyes</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Pigmentation Causes (Excess Melanin)</h3><p> </p><p>For some people, the darkness is true pigmentation in the skin rather than shadowing. This often looks more brown than blue and can be quite stubborn without the right approach.</p><p> </p><p>- Genetic tendency to periorbital hyperpigmentation, which is more common in darker skin tones</p><p> </p><p>- Sun exposure stimulates melanin production in the delicate under-eye area </p><p> </p><p>- Post-inflammatory pigmentation from rubbing the eyes, eczema, or allergic reactions</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','22910b0a-a280-4dca-9975-8082242ec605'),
(6776,6776,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','f6ca590e-d1ff-483b-93ae-b230f5f876bf'),
(6777,6777,1,'Frequently Asked Questions About Dark Circles Under the Eyes','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dark Circles Under the Eyes\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about dark circles under the eyes\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','7df3d803-88aa-4ac8-b5ac-8f8cc888dca0'),
(6778,6778,1,'Can dark circles be treated with non-surgical aesthetics?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be treated with non-surgical aesthetics?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Depending on the cause, dark circles can be significantly improved with treatments such as <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> to restore lost volume in the tear trough area, <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> to improve skin quality, or <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotide therapy</a> to rejuvenate the delicate under-eye skin. I will assess the underlying cause during your consultation to recommend the most effective approach.</p>\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','15bab816-d47d-4246-955d-db965a2c9035'),
(6779,6779,1,'Am I a suitable candidate for under-eye treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Am I a suitable candidate for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most people with volume loss, hollowing, or skin thinning under the eyes are good candidates. However, if your dark circles are primarily caused by pigmentation or lifestyle factors, alternative treatments or a combined approach may be more appropriate. A face-to-face consultation with me is the best way to find out what will work for you.</p>\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','1a2eb4ce-5b1e-4766-9ad0-63513c028f4e'),
(6780,6780,1,'Can dark circles be permanently removed?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be permanently removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"In most cases, dark circles cannot be removed permanently, but they can often be improved significantly. Because ageing, genetics, and lifestyle factors all play a role, maintenance treatments are usually needed to keep results looking their best over time. Good sleep, hydration, allergy control, and daily sun protection also make a real difference in maintaining improvement and slowing further change.\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','5d2f9674-686e-4878-ae15-16fa827542ac'),
(6781,6781,1,'What makes Aesthetics by Dr Rachel different for under-eye treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I am a practising GP with specialist training in aesthetic medicine, so I approach dark circles in the same way I would any medical concern - by understanding the cause first. I take time to assess your skin, facial structure, medical history, and lifestyle factors before recommending anything, because the under-eye area needs careful judgment as well as precise technique. You will always see me at every appointment, you will never feel rushed or pressured, and if a treatment is not right for you, I will say so and guide you towards the safest option.\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','369c8b1a-6b59-4e2b-812c-c076656fb473'),
(6782,6782,1,'Does under-eye treatment hurt?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does under-eye treatment hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The under-eye area is sensitive, but discomfort is kept to a minimum. A topical numbing cream is applied before treatment, and most dermal fillers contain a built-in anaesthetic. Most patients describe the sensation as mild pressure rather than pain.</p>\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','acd94411-a8c0-4e9a-b5bc-a4715ce1385d'),
(6783,6783,1,'Are there any risks or side effects?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any risks or side effects?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>As with any injectable treatment, there is a small risk of bruising, swelling, or tenderness at the injection site. The under-eye area is particularly delicate, which is why it\'s essential to choose a qualified and experienced practitioner like me. Serious complications are rare when the treatment is performed by a trained medical professional.</p>\"}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','faf8d317-7e62-43ca-b609-25cc6cf66206'),
(6784,6784,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 18:43:00','2026-04-01 18:43:00','75215559-0ddc-4ad8-84d2-6b53348eefa5'),
(6785,6785,1,'Creepy skin condition 1',NULL,NULL,NULL,1,'2026-04-01 18:46:33','2026-04-01 18:46:33','69190e1c-4e65-40fc-bce6-c8e2ac12ce8c'),
(6786,6786,1,'Creepy skin condition 2',NULL,NULL,NULL,1,'2026-04-01 18:46:36','2026-04-01 18:46:36','477435ca-00f0-46f1-94c3-bc58d795aabf'),
(6787,6787,1,'Creepy skin condition 3',NULL,NULL,NULL,1,'2026-04-01 18:46:41','2026-04-01 18:46:41','06f56eda-a6dc-47f1-85c2-767670c7058b'),
(6804,6804,1,'Why should I choose a medical professional for these treatments?','why-should-i-choose-a-medical-professional-for-these-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why should I choose a medical professional for these treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I am a practising GP with specialist training in aesthetic medicine, which means every treatment is guided by medical knowledge, facial anatomy and safety. I take a medical approach to understanding why your skin has changed, not just how it looks, so treatments are chosen to address the underlying cause rather than applied generically. Many of the techniques used require precision and expertise, and you will always receive clear, thorough aftercare advice, with continuity of care throughout your treatment journey.\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','6507b2b7-9e52-453d-8638-26d5f9e786fa'),
(6805,6805,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','d502a88a-c153-4c84-8a7b-944b788ddf20'),
(6806,6806,1,'Crepey Skin','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Crepey Skin\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Your skin no longer feels firm or springy. When you pinch it, it stays creased before slowly returning, and fine lines seem to crumple rather than smooth out. The skin can look thinner, looser and more finely wrinkled, often catching the light in a way that makes it appear aged or tired, particularly on the face, neck, décolletage and around the eyes.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Crepey Skin?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Crepey skin describes skin that has become thin, finely wrinkled and loose, often compared to the texture of crepe paper or tissue paper. Unlike deeper wrinkles that form in specific areas due to repeated muscle movement, crepey skin tends to affect broader areas and has a fragile, papery appearance. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The key difference between crepey skin and other signs of ageing is that it reflects a decline in skin quality and structure rather than volume loss or muscle activity. Over time, the skin loses collagen and elastin, the proteins responsible for strength, thickness and elasticity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">As a result, the skin becomes thinner, less resilient and slower to recoil when stretched. This is why treatments that focus purely on lifting or tightening often do not fully address crepey skin, and why approaches that improve skin quality and stimulate collagen regeneration are so important.  </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6785]}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','b85b7596-e9c9-421c-8513-9ae9787d9044'),
(6807,6807,1,'What Causes Crepey Skin?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Crepey Skin?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">Crepey skin develops as collagen and elastin levels within the skin gradually decline. These proteins are essential for skin strength, thickness and elasticity. As their production slows, the skin becomes thinner, less resilient and slower to bounce back when stretched. This loss of collagen and elastin is influenced by a combination of internal factors, such as natural ageing and hormonal changes, and external factors, including sun exposure and environmental stress.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Ageing (Natural Decline)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Collagen production gradually decreases with age, estimated at around 1% per year from early adulthood, leading to thinner skin with reduced structural support  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Elastin fibres lose their ability to stretch and recoil effectively, meaning the skin is slower to snap back and more likely to remain creased </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural oil production slows over time, weakening the skin’s protective barrier and reducing moisture retention  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Cell turnover becomes less efficient, so damaged or ageing skin cells are replaced more slowly, contributing to a fragile, dull skin appearance </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6786],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','5755bfc3-7c58-4513-b1f1-63ad7ad02a5b'),
(6808,6808,1,'What Causes Crepey Skin? 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Sun Damage (Photoageing)</span></h3><p> </p><p> </p><p>- Ultraviolet radiation is responsible for the majority of visible skin ageing, accelerating the breakdown of collagen and elastin within the skin </p><p> </p><p>- The effects of sun exposure are cumulative, with damage building up over decades and often becoming more noticeable later in life  </p><p> </p><p>- Areas that are regularly exposed to sunlight, such as the face, neck, décolletage and arms, are often the first to develop crepey changes in skin texture and quality </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Changes</span></h3><p> </p><p>- Declining oestrogen levels during perimenopause and menopause significantly accelerate collagen loss, with studies showing that women can lose up to 30% of their skin’s collagen within the first 5 years after menopause  </p><p> </p><p>- Reduced hormone levels affect skin hydration, thickness and the skin’s natural ability to repair and regenerate, contributing to increased fragility and crepey texture  </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6787],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Lifestyle and External Factors</h3><p> </p><p>- Significant or rapid weight loss can leave the skin loose and thinner, having lost the underlying structural support that maintains firmness</p><p> </p><p>- Smoking accelerates the breakdown of collagen and elastin while also reducing blood flow and oxygen delivery to the skin</p><p> </p><p>- Chronic dehydration can make the skin appear dull, thinner and more fragile, exaggerating crepey texture</p><p> </p><p>- Poor nutrition, particularly diets low in protein, vitamins and antioxidants, reduces the skin’s ability to repair, regenerate and maintain healthy structure</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','439abec5-d6de-42d1-a3b0-5d68153beaf7'),
(6809,6809,1,'Frequently Asked Questions About Crepey Skin','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Crepey Skin\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about crepey skin\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','c251f599-f9e2-404d-abc0-f6e4efb25f6c'),
(6810,6810,1,'Can crepey skin actually be improved?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can crepey skin actually be improved?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, crepey skin can be significantly improved with the right approach. While it cannot be completely reversed, modern regenerative treatments such as <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/jul%C3%A4ine-bio-stimulators}\\\">JULAINE™</a>, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> and <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> like Profhilo® can genuinely rebuild skin quality. These treatments work by improving hydration and stimulating collagen and elastin production, helping the skin become smoother, more supple and better supported. Results develop gradually and look natural, with improvements continuing over time.</p>\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','2c0942d9-3135-4a33-ad7d-b10e7f0b4907'),
(6811,6811,1,'What is the difference between crepey skin and wrinkles?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between crepey skin and wrinkles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Wrinkles are lines that tend to form due to repeated muscle movement or volume loss and usually appear in specific areas, such as around the eyes or mouth. Crepey skin, on the other hand, relates to a change in overall skin quality. The skin becomes thinner, more fragile and finely wrinkled across larger areas, giving it a papery texture. Because the underlying causes are different, crepey skin and <a href=\\\"{entry:6647@1:url||https://hermeswp.xyz/rachel/web/conditions/lines-and-wrinkles}\\\">wrinkles</a> often require different treatment approaches, with crepey skin responding best to treatments that improve skin quality and stimulate collagen and elastin production.</p>\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','cf4c2a06-a561-47b3-b90f-0fe6743a1c3f'),
(6812,6812,1,'At what age does crepey skin typically appear?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age does crepey skin typically appear?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Crepey skin most commonly begins to appear in our 40s, but it can develop earlier in some individuals. Factors such as significant sun exposure, weight loss and hormonal changes can accelerate these changes, and genetics also play an important role. As a result, the timing and severity of crepey skin can vary considerably from person to person.\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','1b0a790d-5774-47b8-a1b4-d863cc41c79c'),
(6813,6813,1,'How many treatments will I need?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This varies depending on the treatment chosen, your baseline skin quality and how your skin responds. Most patients benefit from a planned course of treatment rather than a single session, followed by maintenance to support ongoing skin health. I will always create a personalised plan based on your specific concerns, skin condition and goals, and talk you through expected treatment stages and maintenance options so you can make informed decisions at your own pace.\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','cc30d742-cdaa-416e-9710-aeae136d3880'),
(6814,6814,1,'Is there any downtime after treatment?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used and how sensitive your skin is. Most treatments for crepey skin involve minimal disruption, with some patients experiencing temporary redness, mild swelling or small injection marks for a short period. Many people are able to return to normal daily activities straight away. I will always explain what to expect for your specific treatment in advance, so you can plan confidently and feel fully informed.\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','00dd172d-9a0b-4ea1-8214-a27ac776114e'),
(6815,6815,1,'Can you treat crepey skin on the body as well as the face?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can you treat crepey skin on the body as well as the face?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Regenerative treatments can be used on a range of areas beyond the face, including the neck, décolletage, hands and arms. The treatment approach is always adapted to the specific area and the quality of the skin being treated. I will discuss all suitable options with you during your consultation and tailor a plan that feels appropriate for you and your goals.\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','c7d15a2f-4551-4974-bc91-7d0b1f4bf278'),
(6816,6816,1,'Why should I choose a medical professional for these treatments?','why-should-i-choose-a-medical-professional-for-these-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why should I choose a medical professional for these treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I am a practising GP with specialist training in aesthetic medicine, which means every treatment is guided by medical knowledge, facial anatomy and safety. I take a medical approach to understanding why your skin has changed, not just how it looks, so treatments are chosen to address the underlying cause rather than applied generically. Many of the techniques used require precision and expertise, and you will always receive clear, thorough aftercare advice, with continuity of care throughout your treatment journey.\"}',1,'2026-04-01 19:10:02','2026-04-01 19:10:02','87fe67a3-ff3f-45c6-94e1-aa4933847320'),
(6817,6817,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-01 19:18:01','2026-04-01 19:18:01','b6f9787f-c779-4819-9fbe-e07c8ffa3aa8'),
(6818,6818,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-01 19:19:05','2026-04-01 19:44:58','a65fd9f4-f30f-448d-bcbe-90331282599b'),
(6819,6819,1,'Hyperpigmentation and Age Spots','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Hyperpigmentation and Age Spots\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"These areas of uneven pigmentation can often seem to appear suddenly. You may begin to notice darker patches on the cheeks or forehead, or a general unevenness in skin tone that leaves the skin looking duller or older than you feel.\\n\\nEven with a good skincare routine now, factors such as past sun exposure, hormonal changes, and inflammation can take time to surface, becoming more visible over the years. Understanding why this happens is the first step in treating pigmentation effectively.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Hyperpigmentation?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation refers to areas of skin that appear darker than the surrounding skin. It happens when cells called melanocytes produce excess melanin, the pigment that gives your skin its colour. You might notice this as small dark spots, larger patches, or a more general unevenness in tone, ranging from light tan to deeper brown.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Although it is not harmful, it can really affect your confidence. Many people find themselves relying more on makeup or feeling that their skin looks dull, uneven, or older than they feel.\\n\\nWhen I assess your skin, I look carefully at the pattern and type of pigmentation you have. This is important, as not all pigmentation behaves in the same way. Once we understand what is driving it, we can choose treatments that are safe, effective, and designed to reduce the risk of it returning.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Whether your pigmentation is related to sun exposure, hormonal changes, inflammation, or a combination of factors, a personalised approach makes all the difference. With the right plan, it is often possible to gradually fade darker areas and restore a clearer, more even complexion over time.\\n </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6847]}',1,'2026-04-01 19:19:05','2026-04-16 13:51:08','a9de8cb2-c958-4bc9-af61-54846b7a4daf'),
(6820,6820,1,'Understanding the Different Types of Hyperpigmentation','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Understanding the Different Types of Hyperpigmentation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Not all dark spots are the same. Identifying the type of pigmentation you have is an important first step, as it allows me to choose the safest and most effective treatment approach for your skin.  </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Age Spots (Solar Lentigines) </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Also called sun spots or liver spots, these are flat brown marks that appear on areas that have had the most sun exposure over your lifetime, such as the face, hands, shoulders, and chest.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma appears as larger, patchy areas of discolouration, usually in a symmetrical pattern across the cheeks, forehead, upper lip, and chin. The colour can range from light brown to grey-brown or even slightly bluish-brown, depending on how deep the pigment sits in the skin. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Post-Inflammatory Hyperpigmentation </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This type of pigmentation appears after the skin has been irritated or inflamed. Acne, cuts, burns, eczema, insect bites, or even overly aggressive skin treatments can leave behind darker marks once the skin has healed. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles are small, flat spots that darken with sun exposure and tend to fade in winter. They are most common in people with fair skin and red or blonde hair. Some people also ask about treating freckles. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6846],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-01 19:19:05','2026-04-16 13:51:08','405222dc-b3f7-4502-8cb1-94a504c4e6ff'),
(6821,6821,1,'What Causes Hyperpigmentation and Age Spots?','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">What Causes Hyperpigmentation and Age Spots?</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sun exposure, which is the most common cause. Each time your skin is exposed to UV light without adequate protection, it produces extra melanin as a defence. Over time, this damage builds up and becomes visible as dark spots and uneven tone.  \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Hormonal changes, which can stimulate melanin production. This is why pigmentation such as melasma often appears during pregnancy, when taking hormonal contraception, or around perimenopause and menopause.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Inflammation or irritation, which can trigger excess pigment during the healing process. This may follow acne, injuries, burns, or certain skin conditions.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Your natural skin type and genetic background, which influence how your skin responds to these triggers and how likely you are to develop pigmentation.\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6848],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    Where Does Hyperpigmentation Appear?\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n\\n<p>\\nHyperpigmentation can develop anywhere on the body, but it most commonly appears in areas that have had the greatest exposure to the sun over time.\\n\\nCommon areas include:</p>\\n<p>\\n    - The face, particularly the cheeks, forehead, upper lip, and temples, where pigmentation often appears as patches or uneven tone.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - The backs of the hands, which are frequently exposed to sunlight and are one of the most common areas for age spots to develop.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - The chest, where the skin is more delicate and often exposed during warmer months.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - The shoulders and forearms, which receive significant sun exposure over the years and are prone to developing pigmentation changes.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 19:19:05','2026-04-16 13:51:08','16ee8d2f-6501-463a-bded-c70cfe864b2e'),
(6822,6822,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 19:19:05','2026-04-01 19:19:05','6682da31-eb2d-44e5-bfca-bf3ae84be379'),
(6823,6823,1,'Frequently Asked Questions About Hyperpigmentation','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Hyperpigmentation\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about hyperpigmentation\"}',1,'2026-04-01 19:19:06','2026-04-16 13:51:08','d625f986-aed1-4f63-bd94-99516207eb5b'),
(6824,6824,1,'Can hyperpigmentation be completely removed?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can hyperpigmentation be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>In many cases, hyperpigmentation can be improved very significantly, and sometimes cleared completely, but it depends on the type of pigmentation, how deep it sits, and how long it has been present. Some types, such as age spots and other superficial pigmentation, respond very well to treatment, while others, like melasma, are more prone to recurrence and need ongoing maintenance. During <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">your consultation</a>, I will assess your skin carefully and give you honest, realistic expectations based on your specific situation.</p>\"}',1,'2026-04-01 19:19:06','2026-04-01 19:44:58','3f141440-13c3-466b-80ec-c625f1a73325'),
(6825,6825,1,'How long does it take to see results?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treating hyperpigmentation does take patience. Many patients start to notice early improvement within 4 to 6 weeks, but more visible, meaningful change usually takes 3 to 6 months, depending on the type and depth of pigmentation. Stubborn or long-standing marks can take longer. Staying consistent with your skincare and daily sun protection makes a huge difference to how quickly and consistently you see results.\"}',1,'2026-04-01 19:19:06','2026-04-01 19:44:58','6ff495bb-265b-4872-b87d-c2b9a6b38e7d'),
(6830,6830,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 19:19:06','2026-04-20 19:13:53','bbc9ec79-81c3-46bc-a634-0c61300553e1'),
(6831,6831,1,'Hyperpigmentation and Age Spots','hyperpigmentation-and-age-spots','conditions/hyperpigmentation-and-age-spots','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','652f0eb9-0e20-49c0-b454-32fbb88d95e9'),
(6832,6832,1,'Dark Circles Under the Eyes','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dark Circles Under the Eyes\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Those shadows under your eyes can be so frustrating. You try to cover your under-eyes with concealer every morning, only to find the dark circles still showing through. Perhaps people keep asking if you are tired when you actually feel fine. Dark circles are one of the most common concerns I see in the clinic here on the Wirral, and they can affect anyone, at any age.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The important thing to know is that “dark circles” are not all the same. Once I understand why yours have appeared, I can create a safe, tailored plan to brighten and refresh the eye area so you look as well-rested as you really feel.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Dark Circles Under the Eyes?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Dark circles are the darker or shadowed appearance beneath the eyes. Medically, they may be called periorbital hyperpigmentation, but in the clinic, I usually explain them more simply as changes in colour or contour in this delicate area. The skin under the eyes is one of the thinnest and most delicate areas of skin on the face, so it shows pigment, blood vessels, and hollowing much more easily than anywhere else.\\n</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">They are not just a sign of tiredness, although poor sleep can certainly make them look worse. Dark circles can be caused by true pigmentation in the skin, visible blood vessels showing through thin skin, loss of volume creating shadows, or a combination of all three.\\n</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">When I assess your under-eye area, I am looking carefully at each of these factors. Once we understand the real cause of your dark circles, we can choose treatments that are safe, natural-looking, and genuinely effective for you.\\n</span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6727]}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','debff2d1-be9c-43dd-97a5-19c04abc266d'),
(6833,6833,1,'What Causes Dark Circles Under the Eyes?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Dark Circles Under the Eyes?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dark circles can develop for lots of different reasons, and most people have more than one factor involved. That is why they can be so stubborn, and why a single cream or quick fix rarely works. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Structural Causes (Volume Loss and Shadows)</strong></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes dark circles are not really about colour at all, but about shadowing from changes in facial structure. I see this very often in the clinic, especially as we move through our 30s and 40s.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural loss of collagen and fat beneath the eyes, creating a hollow or sunken look </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- A tear trough groove between the lower eyelid and cheek that casts a shadow </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Genetics or bone structure giving deeper-set eyes or a naturally prominent tear trough </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Midface volume loss or fat pad descent with age, which reduces support under the eye </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6726],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','c85c37f1-80a1-449b-8a7e-87420820d895'),
(6834,6834,1,'What Causes Dark Circles Under the Eyes 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vascular Causes (Blood Vessels Showing Through)</span></h3><p> </p><p>In some people, dark circles are caused by tiny blood vessels showing through thin under-eye skin rather than true pigmentation. This often gives a bluish or purple tone that looks worse when you are tired or run down.</p><p> </p><p>- Very thin, translucent under-eye skin allowing underlying vessels to show through </p><p> </p><p>- Sluggish circulation or blood pooling in the delicate capillaries beneath the eyes </p><p> </p><p>- Lack of sleep, which can make vessels dilate and look darker </p><p> </p><p>- Allergies or nasal congestion, which increase pressure in the vessels around the eyes</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Pigmentation Causes (Excess Melanin)</h3><p> </p><p>For some people, the darkness is true pigmentation in the skin rather than shadowing. This often looks more brown than blue and can be quite stubborn without the right approach.</p><p> </p><p>- Genetic tendency to periorbital hyperpigmentation, which is more common in darker skin tones</p><p> </p><p>- Sun exposure stimulates melanin production in the delicate under-eye area </p><p> </p><p>- Post-inflammatory pigmentation from rubbing the eyes, eczema, or allergic reactions</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','18c47287-c85a-4e65-b634-bfd8b6a3334b'),
(6835,6835,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','67d92844-e10c-45ae-8e5f-da33b74d251c'),
(6836,6836,1,'Frequently Asked Questions About Dark Circles Under the Eyes','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dark Circles Under the Eyes\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about dark circles under the eyes\"}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','aaffefce-e1d9-4fc0-938f-ddf013d3bb90'),
(6837,6837,1,'Can dark circles be treated with non-surgical aesthetics?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be treated with non-surgical aesthetics?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Depending on the cause, dark circles can be significantly improved with treatments such as <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> to restore lost volume in the tear trough area, <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> to improve skin quality, or <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotide therapy</a> to rejuvenate the delicate under-eye skin. I will assess the underlying cause during your consultation to recommend the most effective approach.</p>\"}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','61ba0c3f-5647-4b66-ab9b-94ed2670fb14'),
(6838,6838,1,'Am I a suitable candidate for under-eye treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Am I a suitable candidate for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most people with volume loss, hollowing, or skin thinning under the eyes are good candidates. However, if your dark circles are primarily caused by pigmentation or lifestyle factors, alternative treatments or a combined approach may be more appropriate. A face-to-face consultation with me is the best way to find out what will work for you.</p>\"}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','ebae7fea-9bb3-46bc-8825-c9beac5f7f79'),
(6843,6843,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-01 19:19:31','2026-04-01 19:19:31','2ebbd795-aa31-4417-91f8-db54789d5182'),
(6845,6845,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-01 19:22:42','2026-04-01 19:22:42','a480768c-1bc3-4e4d-a27e-4453a1ef6d6e'),
(6846,6846,1,'Hyperpigmentaion condition 1',NULL,NULL,NULL,1,'2026-04-01 19:24:02','2026-04-01 19:24:02','5cc757bf-98ac-426b-afbf-6323f785035c'),
(6847,6847,1,'Hyperpigmentaion condition 2',NULL,NULL,NULL,1,'2026-04-01 19:24:04','2026-04-01 19:24:04','d540d92e-5433-41f6-b845-1be1889021a0'),
(6848,6848,1,'Hyperpigmentaion condition 3',NULL,NULL,NULL,1,'2026-04-01 19:24:06','2026-04-01 19:24:06','bd295243-d5db-4c46-89a7-1a1f7932286a'),
(6849,6849,1,'Hyperpigmentaion condition',NULL,NULL,NULL,1,'2026-04-01 19:24:14','2026-04-01 19:24:14','0c5d1b6c-f3ca-4cb3-909e-13426bffec72'),
(6864,6864,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','7ee4eeff-ee0f-4a50-94f5-cf077f302782'),
(6865,6865,1,'Hyperpigmentation and Age Spots','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Hyperpigmentation and Age Spots\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Those little brown patches can feel as though they appear overnight. You start to notice uneven tone on your cheeks or forehead, darker marks that will not fade, and skin that looks older or duller than you feel inside. Even with good skincare and sunscreen now, past sun exposure, hormones, and inflammation can show up years later. </span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Hyperpigmentation?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation simply means an area of skin that has become darker than the surrounding skin. This happens when cells called melanocytes produce extra melanin, the pigment that gives skin its colour. The result can be small dark spots, larger patches, or an overall uneven tone that ranges from light tan to deeper brown. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation is not harmful to your health, but it can really affect your confidence. Many patients tell me they feel self-conscious without makeup, or that the patches make their skin look tired, dull, or older than they feel. During your consultation, I look carefully at the pattern and type of pigmentation you have, because understanding the cause is the key to choosing safe, effective treatment and preventing it from coming back.  </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation affects many of my patients coming to the clinic on the Wirral, and it affects people of all ages and skin types. The important thing to know is that pigmentation is not all the same. Once I understand what is causing yours - whether that be sun damage, hormonal changes, post-inflammatory marks, or a combination - I can create a safe, personalised plan to gradually fade the patches and restore a clearer, more even complexion. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6847]}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','8544e86e-1708-4494-9c14-6ec1c0f12d9f'),
(6866,6866,1,'Understanding the Different Types','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Understanding the Different Types\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Not all dark spots are the same. Identifying which type of pigmentation you have helps me choose the safest and most effective treatment approach for your skin. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Age Spots (Solar Lentigines) </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Also called sun spots or liver spots, these are flat brown marks that appear on areas that have had the most sun exposure over your lifetime, such as the face, hands, shoulders, and chest.</span></p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma appears as larger, patchy areas of discolouration, usually in a symmetrical pattern across the cheeks, forehead, upper lip, and chin. The colour can range from light brown to grey-brown or even slightly bluish-brown, depending on how deep the pigment sits in the skin. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Post-Inflammatory Hyperpigmentation </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This type of pigmentation appears after the skin has been irritated or inflamed. Acne, cuts, burns, eczema, insect bites, or even overly aggressive skin treatments can leave behind darker marks once the skin has healed. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles are small, flat spots that darken with sun exposure and tend to fade in winter. They are most common in people with fair skin and red or blonde hair. Some people also ask about treating freckles. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6846],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','60c65e9a-6b74-4b9f-8636-ff6661365a11'),
(6867,6867,1,'What Causes Hyperpigmentation and Age Spots?','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">What Causes Hyperpigmentation and Age Spots?</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sun-related UV exposure is the most common cause of hyperpigmentation I see in my clinic. Each time skin is exposed to the sun without enough protection, it produces extra melanin as a defence, and that damage builds up slowly over the years\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Hormonal changes can stimulate extra melanin production, which is why melasma often appears during pregnancy, while taking hormonal contraception, or around perimenopause and menopause \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - When the skin becomes inflamed or irritated, the healing process can sometimes leave behind extra pigment. This can happen after acne, injuries, burns, or certain skin conditions \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Your natural skin type and genetic background play a big role in how your skin responds to triggers and how likely you are to develop certain kinds of pigmentation\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6848],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Where Does Hyperpigmentation Appear?</h3><p> </p><p> </p><p>- The face is the most common area for all types of hyperpigmentation, with the cheeks, forehead, upper lip, and temples especially prone to developing dark patches</p><p> </p><p>- The backs of the hands are frequently exposed to sunlight and are one of the most common places for age spots to appear </p><p> </p><p>- The chest area is often exposed to the sun, especially during the summer months, and the skin here is quite delicate</p><p> </p><p>- The tops of the shoulders and forearms receive a great deal of sun exposure over the years, so pigmentation changes often develop here</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','f0622947-a7b1-4054-b08b-6ab72acdb86b'),
(6868,6868,1,'Frequently Asked Questions About Hyperpigmentation','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Hyperpigmentation\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about hyperpigmentation\"}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','7dc22cad-52ec-47bd-9704-ed22f1f83773'),
(6869,6869,1,'Can hyperpigmentation be completely removed?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can hyperpigmentation be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>In many cases, hyperpigmentation can be improved very significantly, and sometimes cleared completely, but it depends on the type of pigmentation, how deep it sits, and how long it has been present. Some types, such as age spots and other superficial pigmentation, respond very well to treatment, while others, like melasma, are more prone to recurrence and need ongoing maintenance. During <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">your consultation</a>, I will assess your skin carefully and give you honest, realistic expectations based on your specific situation.</p>\"}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','c073f216-3bf7-40b8-b96b-0f28ddb7d5ee'),
(6870,6870,1,'How long does it take to see results?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treating hyperpigmentation does take patience. Many patients start to notice early improvement within 4 to 6 weeks, but more visible, meaningful change usually takes 3 to 6 months, depending on the type and depth of pigmentation. Stubborn or long-standing marks can take longer. Staying consistent with your skincare and daily sun protection makes a huge difference to how quickly and consistently you see results.\"}',1,'2026-04-01 19:44:58','2026-04-01 19:44:58','eefde8ee-2623-4f88-a389-6f87393611fe'),
(6875,6875,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-01 19:45:02','2026-04-01 19:45:02','b3e4b5a9-8b3b-417d-a2af-8a84461939d8'),
(6878,6878,1,'About','about','about',NULL,1,'2026-04-02 08:42:06','2026-04-02 08:42:06','9568e442-bdaa-4466-9bd8-7698c0245cf9'),
(6879,6879,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Who is Dr Rachel\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">Dr Rachel is a GMC-registered medical doctor who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#555555;\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:42:06','2026-04-02 08:42:06','d7684042-1049-4233-b412-7b7be8f8e798'),
(6882,6882,1,'About','about','about',NULL,1,'2026-04-02 08:42:34','2026-04-02 08:42:34','7a32c83a-332c-431b-a409-8152400505d7'),
(6883,6883,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Who is Dr Rachel\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>MBChB (Hons) MRCGP (2022) BSc (Hons)</h3><p><span style=\\\"background-color:transparent;color:#555555;\\\">Dr Rachel is a GMC-registered medical doctor who has dedicated her career to the art and science of non-surgical aesthetics. With a foundation in emergency medicine and general practice, she brings a depth of medical knowledge that most aesthetic practitioners simply cannot match. Every treatment she delivers is underpinned by a thorough understanding of facial anatomy, skin physiology, and the pharmacology of every product she uses.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#555555;\\\">Having personally performed over 3,000 treatments across dermal fillers, anti-wrinkle injections, skin boosters, polynucleotides, and advanced skin rejuvenation, Dr Rachel has developed an instinctive understanding of facial harmony and proportion. She doesn’t follow trends, she follows the science and the unique anatomy of each patient. The result is a look that is refreshed, natural, and unmistakably you.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:42:34','2026-04-02 08:42:34','2c8ea6ac-c706-4a40-b67a-24d22b4e7ced'),
(6892,6892,1,'My philosophy','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"My philosophy\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p>My aim is simple: to help you feel comfortable and confident in your own skin again - refreshed, never changed.</p><p> </p><p>I believe great results rarely come from a single treatment. Instead, I focus on a layered approach, improving skin quality, restoring structure where needed, and maintaining balance across the face. This allows results to look natural, age well, and feel like <i>you</i>, just more rested and confident.</p><p> </p><p><strong>Visiting the clinic</strong></p><p> </p><p>I hold clinics in Bebington on the Wirral, providing a calm, discreet environment where you can feel comfortable discussing your concerns.</p><p> </p><p>If you are considering treatment but want honest advice first, a consultation is always the best place to start. Your skin is unique, and your treatment plan should be too.</p><p> </p><p>I look forward to welcoming you to the clinic.</p><p> </p><p><strong>Dr Rachel</strong></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:49:29','2026-04-03 14:09:43','91030084-7282-4ea2-906f-9308b79ad412'),
(6893,6893,1,'About','about','about',NULL,1,'2026-04-02 08:49:29','2026-04-02 08:49:29','ebf8ea7b-837a-449e-b6e4-356aa84192ed'),
(6894,6894,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Who is Dr Rachel\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong></p><p>I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, GMC-registered doctor with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.</p><p> </p><p>I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.</p><p> </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.</p><p> </p><p>Because aesthetic medicine should enhance how you look, never change who you are — the goal is always for you to look refreshed, not different.</p><p> </p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:49:29','2026-04-02 08:49:29','3d78d13e-ea02-4a24-9e4d-51d0ceb1b84a'),
(6895,6895,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span></p><ul><li><span style=\\\"color:hsl(0,0%,100%);\\\">A natural, subtle approach focused on helping you look refreshed and well, never overdone</span></li><li><span style=\\\"color:hsl(0,0%,100%);\\\">Evidence-based treatments chosen for safety and long-term skin health</span></li><li><span style=\\\"color:hsl(0,0%,100%);\\\">Clear, honest advice, including when a treatment is not the right choice</span></li><li><span style=\\\"color:hsl(0,0%,100%);\\\">Continuity of care, seeing the same doctor from consultation through to review</span></li><li><span style=\\\"color:hsl(0,0%,100%);\\\">A personalised plan designed around your face, your skin and your goals</span></li></ul>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-02 08:49:29','2026-04-02 08:49:29','d67d03d6-de49-4a50-90e5-6a1496863b5f'),
(6896,6896,1,'My philosophy','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"My philosophy\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p>My aim is simple: to help you feel comfortable and confident in your own skin again — refreshed, never changed.</p><p> </p><p>I believe great results rarely come from a single treatment. Instead, I focus on a layered approach, improving skin quality, restoring structure where needed, and maintaining balance across the face. This allows results to look natural, age well, and feel like <i>you</i>, just more rested and confident.</p><p> </p><p><strong>Visiting the clinic</strong></p><p>I hold clinics in Bebington on the Wirral, providing a calm, discreet environment where you can feel comfortable discussing your concerns.</p><p> </p><p>If you are considering treatment but want honest advice first, a consultation is always the best place to start. Your skin is unique, and your treatment plan should be too.</p><p> </p><p>I look forward to welcoming you to clinic.</p><p> </p><p><strong>Dr Rachel</strong></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:49:29','2026-04-02 08:49:29','73e14249-7ba2-416b-8277-bfe4a9c7cedf'),
(6897,6897,1,'About','about','about',NULL,1,'2026-04-02 08:49:31','2026-04-02 08:49:31','b4aab674-e1e4-4934-8296-3e30efbc07ff'),
(6900,6900,1,'About','about','about',NULL,1,'2026-04-02 08:51:27','2026-04-02 08:51:27','cbf33ea3-f061-4c1d-a87b-4194e9161b36'),
(6901,6901,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">• A natural, subtle approach focused on helping you look refreshed and well, never overdone</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">• Evidence-based treatments chosen for safety and long-term skin health</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">• Clear, honest advice, including when a treatment is not the right choice</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">• Continuity of care, seeing the same doctor from consultation through to review</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">• A personalised plan designed around your face, your skin and your goals</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-02 08:51:27','2026-04-02 08:51:27','27fce187-5ccd-4331-ab42-bebcfd9e8b68'),
(6904,6904,1,'About','about','about',NULL,1,'2026-04-02 08:52:45','2026-04-02 08:52:45','934d76fc-ab0f-4fd5-aa1d-fae6e90c1784'),
(6905,6905,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ A natural, subtle approach focused on helping you look refreshed and well, never overdone</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ Evidence-based treatments chosen for safety and long-term skin health</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ Clear, honest advice, including when a treatment is not the right choice</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ Continuity of care, seeing the same doctor from consultation through to review</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ A personalised plan designed around your face, your skin and your goals</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-02 08:52:45','2026-04-02 08:52:45','ac207ff0-b26a-42de-a24e-21fabbfd938b'),
(6908,6908,1,'About','about','about',NULL,1,'2026-04-02 08:53:13','2026-04-02 08:53:13','4d9f6ca7-6077-49b3-af2b-838c57392e80'),
(6909,6909,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ A natural, subtle approach focused on helping you look refreshed and well, never overdone</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ Evidence-based treatments chosen for safety and long-term skin health</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ Clear, honest advice, including when a treatment is not the right choice</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ Continuity of care, seeing the same doctor from consultation through to review</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">◉ A personalised plan designed around your face, your skin and your goals</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-02 08:53:13','2026-04-02 08:53:13','b5425e1b-bea4-4eae-a85e-ed0e95df7a73'),
(6912,6912,1,'About','about','about',NULL,1,'2026-04-02 08:53:37','2026-04-02 08:53:37','24bd95e3-c956-4b61-b3f3-8f35e8183e78'),
(6913,6913,1,'My philosophy','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"My philosophy\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p>My aim is simple: to help you feel comfortable and confident in your own skin again — refreshed, never changed.</p><p> </p><p>I believe great results rarely come from a single treatment. Instead, I focus on a layered approach, improving skin quality, restoring structure where needed, and maintaining balance across the face. This allows results to look natural, age well, and feel like <i>you</i>, just more rested and confident.</p><p> </p><p><strong>Visiting the clinic</strong></p><p> </p><p>I hold clinics in Bebington on the Wirral, providing a calm, discreet environment where you can feel comfortable discussing your concerns.</p><p> </p><p>If you are considering treatment but want honest advice first, a consultation is always the best place to start. Your skin is unique, and your treatment plan should be too.</p><p> </p><p>I look forward to welcoming you to clinic.</p><p> </p><p><strong>Dr Rachel</strong></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:53:37','2026-04-02 08:53:37','6fe9c362-f864-4619-ab6c-ab1a9e13b759'),
(6916,6916,1,'About','about','about',NULL,1,'2026-04-02 08:54:45','2026-04-02 08:54:45','85be1654-5560-41c3-a07c-10213688594b'),
(6917,6917,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Meet Your Doctor\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong></p><p>I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, GMC-registered doctor with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.</p><p> </p><p>I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.</p><p> </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.</p><p> </p><p>Because aesthetic medicine should enhance how you look, never change who you are — the goal is always for you to look refreshed, not different.</p><p> </p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-02 08:54:45','2026-04-02 08:54:45','7eb5b092-b7d2-4358-aaf5-5ef33532156f'),
(6919,6919,1,'Injectable Skin Regeneration','injectable-skin-regeneration',NULL,'{\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"A minimum course of 3 treatments is recommended, but longer treatment courses may be required.\"}',1,'2026-04-02 08:56:55','2026-04-02 08:56:55','a421ceae-b491-43bf-a0cd-60f17e4d5c6c'),
(6922,6922,1,'Contacts','contacts','contacts',NULL,1,'2026-04-02 08:57:51','2026-04-02 08:57:51','a8affdb7-8c85-4402-8e40-3639fd382a43'),
(6923,6923,1,'Contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Aesthetics By Dr Rachel\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Contact Us\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);\\\">Aesthetics by Dr. Rachel (within Danielle Louise), 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:rgb(0,0,0);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:rgb(0,0,0);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-02 08:57:51','2026-04-02 08:57:51','add5c2c9-a37b-4bc9-9f83-e182d637aa5c'),
(6926,6926,1,'Contacts','contacts','contacts',NULL,1,'2026-04-02 09:00:44','2026-04-02 09:00:44','5b900776-253c-447b-92e9-8d7323d1f545'),
(6927,6927,1,'Contact','hero-contact',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Aesthetics By Dr Rachel\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Contact Me\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);\\\">Aesthetics by Dr. Rachel (within Danielle Louise), 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:rgb(0,0,0);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:rgb(0,0,0);\\\">Sunday: Closed</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-02 09:00:45','2026-04-02 09:00:45','0f13a4de-37e3-45a2-84f8-28b32a450604'),
(6929,6929,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-02 09:10:40','2026-04-02 09:10:40','0244f75a-8d83-45b6-a6f0-4d85e3e49e7d'),
(6931,6931,1,NULL,'__temp_oesaxtnuemrztidylkmwdzxcngzekytfrpiv',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-02 09:16:49','2026-04-02 09:16:49','5cb0a652-5737-4297-a540-eddac95b5bca'),
(6932,6932,1,'Video','__temp_ojjxpretbvkvdrdfenljibriogyazdufbbpj',NULL,NULL,1,'2026-04-02 09:17:00','2026-04-02 09:17:06','3aa624c6-a78d-452b-9455-66285c26cd24'),
(6933,6933,1,NULL,'__temp_kgymzwqltbjhcpjynysfhckucwxbpqaazfjz',NULL,'{\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-02 09:17:07','2026-04-02 09:17:30','fc14cff5-0d86-4e14-a68c-1f0be3d82106'),
(6934,6934,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-03 10:33:52','2026-04-03 10:56:13','c2718f24-4879-49ae-b13e-9f4384f324ee'),
(6935,6935,1,'Acne Scarring','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne Scarring\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Your acne may have cleared years ago, but the scars it left behind can still feel very present. Uneven texture, pitted marks, or skin that never quite looks smooth can be a constant reminder of something you thought you had moved past. For many people, acne scarring affects far more than appearance. It can shape how confident you feel day to day, in ways that those who have never experienced it may not fully understand.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne Scarring?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scarring is a long-lasting change in skin texture that can develop after inflammatory acne has healed. When acne affects the deeper layers of the skin, it can disrupt the normal collagen support structure. As the skin repairs itself, this healing process does not always occur in a balanced way. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">If too little collagen is produced during healing, indented or pitted scars can form (atrophic scars). In other cases, the skin mounts an overactive repair response and produces excess collagen, leading to raised scars (hypertrophic scars). In both situations, the result is uneven skin texture that can remain long after active acne has settled.\\n  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scars are different from the temporary marks that often follow a breakout. Flat red or brown marks, known as post-inflammatory erythema or hyperpigmentation, are colour changes rather than true scars and often fade gradually with time and appropriate skincare. True acne scars involve a structural change within the skin and usually require targeted treatment to significantly improve texture. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6963]}',1,'2026-04-03 10:33:52','2026-04-03 10:56:14','e97e1fa2-4337-45b2-afa5-56dbf336020a'),
(6936,6936,1,'What Causes Acne Scarring?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne Scarring?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Acne scarring develops as part of the skin’s healing response to inflammation. Understanding why scars form helps explain why early acne treatment and appropriate scar management are so important.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Inflammatory Acne </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The more inflamed a breakout becomes, the higher the risk of scarring. Cystic and nodular acne develop deep within the skin and can cause significant damage to the surrounding tissue. As these lesions heal, the normal collagen framework is often disrupted.</span>\\n</p>\\n<h3>\\n     \\n</h3>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking and Squeezing </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking, squeezing, or repeatedly touching spots increases inflammation and can push bacteria deeper into the skin. This creates additional trauma and significantly raises the risk of scarring. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Delayed or Inadequate Treatment\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The longer acne remains active and untreated, the greater the chance of scarring. Ongoing inflammation over months or years causes cumulative damage to the skin’s support structures. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Some people are naturally more prone to acne scarring than others. A family history of acne scars can increase your own risk. Genetics also influence how your skin produces and remodels collagen during healing. </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6960],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-03 10:33:52','2026-04-03 10:56:14','631d1046-c400-424a-af3d-357a379ff7ca'),
(6937,6937,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Not all acne leaves scars, but when inflammation runs deeper in the skin it can sometimes leave lasting changes in texture. Understanding the type of acne scarring present is an important first step, as different scar patterns often need different treatment approaches.</p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>Atrophic Scars</h3><p> </p><p>These are the most common type of acne scars and appear as indentations in the skin caused by loss of collagen during healing. They are usually divided into three main types: ice pick, boxcar and rolling scars.</p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span></h3><p> </p><p>Ice pick scars are the most common type of atrophic acne scar. They appear as narrow, deep indentations that extend into the skin, often looking like enlarged pores or small puncture marks. Although usually less than 2 mm wide, their depth can make them more challenging to treat.</p><p> </p><p>They are often seen in areas where the skin is thinner, such as the forehead and upper cheeks, and tend to respond best to treatments that work deeper within the skin rather than surface resurfacing alone.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span></h3><p> </p><p>Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined edges and a relatively flat base, giving the skin a pitted appearance similar to chickenpox scarring. They are usually shallow to medium in depth and often respond well to collagen-stimulating treatments.</p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span></h3><p> </p><p>Rolling scars make up around 15–25% of atrophic acne scars. They appear as wider depressions with gently sloping edges, giving the skin an uneven or wave-like texture. They develop when fibrous bands form beneath the skin, pulling the surface downwards, and often respond best to treatments that help stimulate collagen and release this tethering.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span></h3><p> </p><p>Hypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars which appear as indentations. They develop when the skin produces excess collagen during healing, resulting in thicker areas of scar tissue. These scars are more common on the jawline, chest and back, and often require a different treatment approach from indented scars. </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span></h3><p> </p><p>Most people with acne scarring have a mixture of different scar types rather than just one. It is common to see ice pick, boxcar and rolling scars affecting different areas of the face at the same time. Because each type responds differently to treatment, careful assessment is essential when deciding the best approach.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-03 10:33:52','2026-04-07 09:18:17','2825093d-6e73-46bf-b20d-91313fb80ee0'),
(6938,6938,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-03 10:33:52','2026-04-03 10:33:52','6b9cd127-f903-4749-ad88-13d765e47400'),
(6939,6939,1,'Frequently Asked Questions About Acne Scarring','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne Scarring\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne scarring\"}',1,'2026-04-03 10:33:52','2026-04-13 08:55:16','c0ee2a3e-37a5-4992-b342-57d676f58268'),
(6944,6944,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-03 10:33:52','2026-04-03 10:56:14','6255d411-dee4-4987-9aaa-3f62c86f9123'),
(6945,6945,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-03 10:33:52','2026-04-03 10:56:14','ba296a1b-ebd4-4237-981a-5c81d484600e'),
(6946,6946,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-03 10:33:52','2026-04-20 19:03:57','342fe32a-d6c3-4dd9-a587-325b49365273'),
(6947,6947,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','9bf8d7eb-6c10-4009-ba99-d17644022ada'),
(6948,6948,1,'Hyperpigmentation and Age Spots','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Hyperpigmentation and Age Spots\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Those little brown patches can feel as though they appear overnight. You start to notice uneven tone on your cheeks or forehead, darker marks that will not fade, and skin that looks older or duller than you feel inside. Even with good skincare and sunscreen now, past sun exposure, hormones, and inflammation can show up years later. </span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Hyperpigmentation?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation simply means an area of skin that has become darker than the surrounding skin. This happens when cells called melanocytes produce extra melanin, the pigment that gives skin its colour. The result can be small dark spots, larger patches, or an overall uneven tone that ranges from light tan to deeper brown. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation is not harmful to your health, but it can really affect your confidence. Many patients tell me they feel self-conscious without makeup, or that the patches make their skin look tired, dull, or older than they feel. During your consultation, I look carefully at the pattern and type of pigmentation you have, because understanding the cause is the key to choosing safe, effective treatment and preventing it from coming back.  </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation affects many of my patients coming to the clinic on the Wirral, and it affects people of all ages and skin types. The important thing to know is that pigmentation is not all the same. Once I understand what is causing yours - whether that be sun damage, hormonal changes, post-inflammatory marks, or a combination - I can create a safe, personalised plan to gradually fade the patches and restore a clearer, more even complexion. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6847]}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','4c57d826-14bf-44a0-abd9-c941f1d03736'),
(6949,6949,1,'Understanding the Different Types','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Understanding the Different Types\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Not all dark spots are the same. Identifying which type of pigmentation you have helps me choose the safest and most effective treatment approach for your skin. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Age Spots (Solar Lentigines) </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Also called sun spots or liver spots, these are flat brown marks that appear on areas that have had the most sun exposure over your lifetime, such as the face, hands, shoulders, and chest.</span></p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma appears as larger, patchy areas of discolouration, usually in a symmetrical pattern across the cheeks, forehead, upper lip, and chin. The colour can range from light brown to grey-brown or even slightly bluish-brown, depending on how deep the pigment sits in the skin. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Post-Inflammatory Hyperpigmentation </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This type of pigmentation appears after the skin has been irritated or inflamed. Acne, cuts, burns, eczema, insect bites, or even overly aggressive skin treatments can leave behind darker marks once the skin has healed. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles are small, flat spots that darken with sun exposure and tend to fade in winter. They are most common in people with fair skin and red or blonde hair. Some people also ask about treating freckles. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6846],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','be038568-d22a-4edd-91c3-a3f4a6c116bc'),
(6950,6950,1,'What Causes Hyperpigmentation and Age Spots?','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">What Causes Hyperpigmentation and Age Spots?</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sun-related UV exposure is the most common cause of hyperpigmentation I see in my clinic. Each time skin is exposed to the sun without enough protection, it produces extra melanin as a defence, and that damage builds up slowly over the years\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Hormonal changes can stimulate extra melanin production, which is why melasma often appears during pregnancy, while taking hormonal contraception, or around perimenopause and menopause \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - When the skin becomes inflamed or irritated, the healing process can sometimes leave behind extra pigment. This can happen after acne, injuries, burns, or certain skin conditions \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Your natural skin type and genetic background play a big role in how your skin responds to triggers and how likely you are to develop certain kinds of pigmentation\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6848],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Where Does Hyperpigmentation Appear?</h3><p> </p><p> </p><p>- The face is the most common area for all types of hyperpigmentation, with the cheeks, forehead, upper lip, and temples especially prone to developing dark patches</p><p> </p><p>- The backs of the hands are frequently exposed to sunlight and are one of the most common places for age spots to appear </p><p> </p><p>- The chest area is often exposed to the sun, especially during the summer months, and the skin here is quite delicate</p><p> </p><p>- The tops of the shoulders and forearms receive a great deal of sun exposure over the years, so pigmentation changes often develop here</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','00622bd2-5644-400c-be64-c63a614d1243'),
(6951,6951,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','86c505f6-c3c9-4fdc-af47-5a03722dc939'),
(6952,6952,1,'Frequently Asked Questions About Hyperpigmentation','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Hyperpigmentation\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about hyperpigmentation\"}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','d1c380dc-5c93-4462-bf59-e657eab05c39'),
(6957,6957,1,'Can I treat hyperpigmentation at home?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat hyperpigmentation at home?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Home skincare is an important part of treating hyperpigmentation, but professional-strength products recommended after a proper skin assessment are usually more effective than high street alternatives. Ingredients such as retinoids, vitamin C, tranexamic acid and azelaic acid can make a real difference when used consistently. For more noticeable or stubborn pigmentation, combining good home care with in-clinic treatments usually gives faster and more reliable results.\"}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','16b73d08-bcb0-4ad1-abbb-943841e775a3'),
(6958,6958,1,'What makes Aesthetics by Dr Rachel different for pigmentation treatment?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for pigmentation treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"I am a qualified medical doctor and practising GP with extensive training in aesthetic medicine and skin health, so I am able to focus first on diagnosing the exact type of pigmentation you have before recommending anything. This allows me to choose treatments that are safe, appropriate, and genuinely effective for your skin, including professional-strength skincare when needed.\\nBecause you see me at every appointment, I can monitor your progress closely and adjust your plan as your skin changes. Many patients come to me after trying lots of products or treatments elsewhere, and find that a careful medical assessment and a personalised plan make all the difference to their results.\"}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','d95dd4f7-6773-4840-962c-041f507b0a72'),
(6959,6959,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-03 10:34:12','2026-04-03 10:34:12','ce426fa0-e00c-40b4-8ff5-47d677561505'),
(6960,6960,1,'Acne Scarring 2',NULL,NULL,NULL,1,'2026-04-03 10:34:36','2026-04-03 10:34:36','0bb9ce99-cf72-4032-a7a0-a4d0f54d1c3a'),
(6961,6961,1,'Acne Scarring 3',NULL,NULL,NULL,1,'2026-04-03 10:34:48','2026-04-03 10:34:48','369be9fd-be43-4044-9238-990015d5b277'),
(6962,6962,1,'Acne Scarring 4',NULL,NULL,NULL,1,'2026-04-03 10:34:52','2026-04-03 10:34:52','555b9611-eeba-4972-9980-9e041c58f199'),
(6963,6963,1,'Acne Scarring',NULL,NULL,NULL,1,'2026-04-03 10:35:03','2026-04-03 10:35:03','42efc2b8-5b15-4f3c-ba3a-b860b07977e3'),
(6979,6979,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','545254f4-2f2d-4ec6-8197-afb51d450009'),
(6980,6980,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','7c79519f-beba-4aa6-86b2-cb72f05fceb9'),
(6981,6981,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','c0d9eac3-3b20-4810-9ce7-0073f56eb02e'),
(6982,6982,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','c431b3ee-c26a-4ff9-b2fd-845a6e7cc99f'),
(6983,6983,1,'Acne Scarring','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne Scarring\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Your acne may have cleared years ago, but the scars it left behind can still feel very present. Uneven texture, pitted marks, or skin that never quite looks smooth can be a constant reminder of something you thought you had moved past. For many people, acne scarring affects far more than appearance. It can shape how confident you feel day to day, in ways that those who have never experienced it may not fully understand.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne Scarring?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scarring is a long-lasting change in skin texture that can develop after inflammatory acne has healed. When acne affects the deeper layers of the skin, it can disrupt the normal collagen support structure. As the skin repairs itself, this healing process does not always occur in a balanced way. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">If too little collagen is produced during healing, indented or pitted scars can form (atrophic scars). In other cases, the skin mounts an overactive repair response and produces excess collagen, leading to raised scars (hypertrophic scars). In both situations, the result is uneven skin texture that can remain long after active acne has settled.\\n  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scars are different from the temporary marks that often follow a breakout. Flat red or brown marks, known as post-inflammatory erythema or hyperpigmentation, are colour changes rather than true scars and often fade gradually with time and appropriate skincare. True acne scars involve a structural change within the skin and usually require targeted treatment to significantly improve texture. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6963]}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','aed7d42f-53ba-4e8c-8e5a-71f6e67401b4'),
(6984,6984,1,'What Causes Acne Scarring?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne Scarring?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Acne scarring develops as part of the skin’s healing response to inflammation. Understanding why scars form helps explain why early acne treatment and appropriate scar management are so important.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Inflammatory Acne </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The more inflamed a breakout becomes, the higher the risk of scarring. Cystic and nodular acne develop deep within the skin and can cause significant damage to the surrounding tissue. As these lesions heal, the normal collagen framework is often disrupted.</span>\\n</p>\\n<h3>\\n     \\n</h3>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking and Squeezing </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking, squeezing, or repeatedly touching spots increases inflammation and can push bacteria deeper into the skin. This creates additional trauma and significantly raises the risk of scarring. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Delayed or Inadequate Treatment\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The longer acne remains active and untreated, the greater the chance of scarring. Ongoing inflammation over months or years causes cumulative damage to the skin’s support structures. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Some people are naturally more prone to acne scarring than others. A family history of acne scars can increase your own risk. Genetics also influence how your skin produces and remodels collagen during healing. </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6960],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','b1b98d28-bc22-4892-b809-894c57510f10'),
(6985,6985,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are the most common type of atrophic acne scar, accounting for around 60-70% of cases. They appear as narrow, deep, V-shaped indentations that extend into the deeper layers of the skin. They often resemble enlarged pores or small puncture marks.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are usually less than 2 mm wide, but their depth makes them among the most challenging acne scars to treat. They are more common in areas of the face where the skin is thinner, such as the forehead and upper cheeks and tend to respond best to treatments that work deeper within the skin, rather than surface-level resurfacing alone. Ice pick scars are one of the more challenging types of acne scars to treat.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined, sharp edges and a relatively flat base. These scars typically sit 0.1–0.5 mm below the surrounding skin, giving a pitted appearance similar to chickenpox scarring.\\n \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nRolling scars make up around 15–25% of atrophic acne scars. They are wider than ice pick or boxcar scars, typically 4–5 mm or more across, with gently sloping edges that give the skin an uneven, wave-like appearance. Rolling scars develop when fibrous bands of scar tissue form beneath the skin, tethering the surface to deeper structures and pulling it downward.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars, which are depressed. They develop when the body mounts an overactive repair response during healing and produces excess collagen and fibrous tissue at the site of an acne lesion.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nMost people with acne scarring have a combination of different scar types rather than just one. It is common to see ice pick scars on the cheeks, boxcar scars on the temples, and rolling scars across the lower face. Because each scar type behaves differently and responds to different treatments, a thorough assessment is essential.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','92a7b67c-a663-4266-90f7-eced2e87eff1'),
(6986,6986,1,'Frequently Asked Questions About Acne Scarring','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne Scarring\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about acne scarring\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','12b8e2c8-f0af-4057-b6ca-dfec86929f00'),
(6991,6991,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','71fb2939-39c2-4e2d-bffb-41b201225b7e'),
(6992,6992,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','866c297a-e7aa-4aac-ac98-64160da52f6e'),
(6993,6993,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','70c1fd54-a8e4-44df-bd4f-ba91510a918b'),
(6994,6994,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','b3e8d9fb-5913-4d5a-85a0-2e5feaf6d76d'),
(6995,6995,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-03 10:56:14','2026-04-03 10:56:14','fea0504a-6533-4336-a2f5-fe67c5b2a399'),
(6996,6996,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-03 10:56:18','2026-04-03 10:56:18','059dcd30-4357-482e-bdbf-8fe096cc807c'),
(6997,6997,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-03 10:57:41','2026-04-03 10:58:38','4a4384ee-675d-4303-ab9c-e1ecca80257b'),
(6998,6998,1,'Acne','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>You have tried every cleanser, every serum, and every piece of advice the internet has to offer, yet the breakouts keep coming. They may flare around your chin before your period, or perhaps they have been with you since your teenage years and never truly gone away. Acne is one of the most common skin concerns I see at Aesthetics by Dr Rachel, affecting people well into their twenties, thirties, forties and beyond. Understanding why acne develops is the first step towards finally gaining control of it.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne?</i></span></h2><p> </p><p>Acne is a chronic inflammatory skin condition that develops when hair follicles become blocked with oil and dead skin cells. It is not just the occasional spot before a big event. For many people, it is a persistent medical condition that can last for months or even years, affecting not only your skin, but often your confidence and how you feel day to day.</p><p> </p><p>Acne can present in several different ways, and most people experience a mixture of these at the same time. You might notice blackheads, where blocked pores remain open at the surface and appear dark due to a reaction between oil and air, alongside whiteheads, where the blockage sits just beneath the skin as small flesh-coloured bumps. Some breakouts appear as papules, which are small red inflamed spots that can feel sore to touch, while others develop into pustules, the more familiar spots with a visible white or yellow centre caused by inflammation within the pore. In more persistent or severe cases, acne can also form nodules or cysts, which are deeper, more painful lumps beneath the skin that can last for weeks and may increase the risk of scarring if not properly managed.</p><p> </p><p>Acne most commonly affects the face, but it can also develop on the chest, back and shoulders. The location, pattern and type of breakouts you experience often provide important clues about what may be driving your acne. Understanding this is what allows me to recommend treatments that are not just effective, but also appropriate for your skin.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7014]}',1,'2026-04-03 10:57:41','2026-04-07 19:20:04','6c78dc65-1ecf-43e2-9b93-fc084946aeb8'),
(6999,6999,1,'What Causes Acne?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Acne is rarely caused by just one factor. Instead, it usually develops due to a combination of internal and external influences affecting oil production, inflammation, skin cell turnover and bacteria within the pores.</p>\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hormonal Fluctuations  </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hormones are one of the most common triggers of acne, which is why many women notice breakouts around their menstrual cycle, during pregnancy, when changing contraception, or during perimenopause. Androgens, the hormones that rise during puberty and fluctuate throughout adult life, can stimulate the sebaceous glands to produce more oil, increasing the likelihood of blocked pores and inflammation.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Stress </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Stress can also play a significant role. When you are under prolonged stress, your body produces higher levels of cortisol. This can increase oil production, worsen inflammation and slow skin healing, which is why many people notice their skin worsening during particularly busy or difficult periods.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics  </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">If your parents experienced acne, you may be more likely to develop it too. Your genes influence how much oil your skin produces, how your immune system responds to bacteria, how easily your pores become blocked, and how prone your skin is to inflammation.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skincare Products and Habits  </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skincare routine can also make a significant difference. Using products that are too heavy or occlusive can contribute to congestion and blocked pores, while overly harsh or stripping cleansers can damage your skin barrier. When this happens, the skin often tries to compensate by producing even more oil, which can unintentionally make breakouts worse rather than better.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7016],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-03 10:57:41','2026-04-07 19:20:04','b1a7c1ee-261f-455e-8c35-4cd21bdc65b0'),
(7000,7000,1,'Types of Acne','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Acne rarely looks the same from one person to another, and most people experience a mixture of different types. Understanding these patterns is why effective treatment needs to be personalised, and why a proper skin assessment is so important before deciding the best way forward.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Comedonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nComedonal acne is made up mainly of blackheads and whiteheads, with little inflammation. It often affects the forehead, nose and chin and can make the skin look uneven or congested.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Inflammatory Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nInflammatory acne includes papules, pustules, nodules and cysts. The redness and swelling you see are caused by your immune system reacting to bacteria within blocked pores.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHormonal acne typically appears on the lower face, particularly around the chin and jawline, and sometimes the neck. These breakouts are often deeper and more persistent, forming painful spots beneath the skin that can last for days or even weeks. \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7013],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Adult-Onset Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nAdult-onset acne is very common. Many people who had clear skin as teenagers find themselves developing acne for the first time in their twenties, thirties or later. Adult skin behaves differently from teenage skin, often being more sensitive and more prone to inflammation.\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Cystic Acne\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nCystic acne is a more severe form of inflammatory acne, where large, painful lumps form deep beneath the skin. These lesions can take weeks to fully settle and have a higher risk of leaving permanent scars.\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nMost people actually have mixed acne, meaning several of these types are present at the same time. For example, you might have blackheads across your nose, hormonal breakouts around your chin, and inflamed spots on your cheeks.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7015]}',1,'2026-04-03 10:57:41','2026-04-16 13:55:16','9193c9cf-fdd5-4e16-bf98-73fbad4df79c'),
(7001,7001,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','741266d2-29b1-40cb-8099-9d9c159b0b02'),
(7002,7002,1,'Frequently Asked Questions About Acne','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne\"}',1,'2026-04-03 10:57:41','2026-04-13 11:22:17','e9ea5a4c-263a-4f65-b558-191d13cbc72b'),
(7004,7004,1,'Can acne scars get worse over time if left untreated?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars get worse over time if left untreated?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scars do not spread, but their appearance can worsen with age. Natural collagen loss and reduced skin elasticity make existing scars look deeper and more prominent. Sun damage also darkens post-inflammatory pigmentation around scarring. Early intervention with collagen-stimulating treatments like microneedling or Sunekos can improve scarring while your skin still has strong regenerative capacity. Addressing any associated hyperpigmentation prevents discolouration from becoming more stubborn.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','b4c4bd96-2ecc-4965-b0d8-a1487037d294'),
(7005,7005,1,'Can I combine acne scar treatment with other aesthetic treatments?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine acne scar treatment with other aesthetic treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and a combination approach often delivers the best results. Microneedling can be combined with polynucleotide therapy to boost both collagen production and tissue repair at the same time. If scarring is accompanied by uneven skin tone, a course of chemical peels can address pigmentation while other treatments target texture. If you are also concerned about skin laxity around the scarring area, <a href=\\\"{entry:1951@1:url||https://hermeswp.xyz/rachel/web/treatments/sunekos}\\\">Sunekos Performa</a> can improve overall skin quality alongside scar-specific work. Dr Rachel builds personalised treatment plans that sequence and combine treatments safely.</p>\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','472db3e2-e06a-477e-9d2a-ce63d809f4e6'),
(7006,7006,1,'Will my acne scars come back after treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will my acne scars come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treated scars do not return. Once collagen has remodelled and scar tissue has been broken down, those improvements are lasting. However, new breakouts in the future can cause new scarring. That is why it is important to have active acne under control before starting scar treatment and to maintain a good skincare routine afterwards. Dr Rachel can advise on a long-term maintenance plan, which may include periodic chemical peels or skin health treatments like Sunekos to keep results looking their best.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','34971888-8a0b-4d83-8bdf-b718dc9422ce'),
(7007,7007,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','e15af5c4-7cbf-44fd-8bc7-7dc0d96b4ac4'),
(7008,7008,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','84f7be40-b12c-4c3f-a3ff-b0c5bdd35047'),
(7009,7009,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','995fa12b-fe81-4c41-a5a7-fde6bd119007'),
(7010,7010,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','5a128224-40db-4266-8ca4-23c6a78dcae9'),
(7011,7011,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-03 10:57:41','2026-04-03 10:57:41','20494f34-09ea-4250-88f9-5c9dd4153465'),
(7012,7012,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-03 10:57:41','2026-04-20 19:04:59','2cd682da-9f2d-419e-b719-920c289a1ad6'),
(7013,7013,1,'Acne 2',NULL,NULL,NULL,1,'2026-04-03 10:58:03','2026-04-03 10:58:03','07fb1f9e-d687-4da8-9731-9bc6613f1c67'),
(7014,7014,1,'Acne 3',NULL,NULL,NULL,1,'2026-04-03 10:58:12','2026-04-03 10:58:12','f3ebdc94-384b-44d8-9c2e-4788c9e11db4'),
(7015,7015,1,'Acne 4',NULL,NULL,NULL,1,'2026-04-03 10:58:17','2026-04-03 10:58:17','a1bf55ed-ed5c-4b0f-9cf1-876dbc6d18fa'),
(7016,7016,1,'Acne',NULL,NULL,NULL,1,'2026-04-03 10:58:20','2026-04-03 10:58:20','e11ad902-ff5d-4b79-afbd-02311d01b2bb'),
(7017,7017,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','1bb353d0-88d1-4569-9364-377cfbb211cf'),
(7018,7018,1,'Acne Scarring','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne Scarring\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Your acne may have cleared years ago, but the scars it left behind can still feel very present. Uneven texture, pitted marks, or skin that never quite looks smooth can be a constant reminder of something you thought you had moved past. For many people, acne scarring affects far more than appearance. It can shape how confident you feel day to day, in ways that those who have never experienced it may not fully understand.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne Scarring?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scarring is a long-lasting change in skin texture that can develop after inflammatory acne has healed. When acne affects the deeper layers of the skin, it can disrupt the normal collagen support structure. As the skin repairs itself, this healing process does not always occur in a balanced way. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">If too little collagen is produced during healing, indented or pitted scars can form (atrophic scars). In other cases, the skin mounts an overactive repair response and produces excess collagen, leading to raised scars (hypertrophic scars). In both situations, the result is uneven skin texture that can remain long after active acne has settled.\\n  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scars are different from the temporary marks that often follow a breakout. Flat red or brown marks, known as post-inflammatory erythema or hyperpigmentation, are colour changes rather than true scars and often fade gradually with time and appropriate skincare. True acne scars involve a structural change within the skin and usually require targeted treatment to significantly improve texture. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6963]}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','1a7ad9b3-4632-4412-afd4-e884128f7e2f'),
(7019,7019,1,'What Causes Acne Scarring?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne Scarring?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Acne scarring develops as part of the skin’s healing response to inflammation. Understanding why scars form helps explain why early acne treatment and appropriate scar management are so important.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Inflammatory Acne </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The more inflamed a breakout becomes, the higher the risk of scarring. Cystic and nodular acne develop deep within the skin and can cause significant damage to the surrounding tissue. As these lesions heal, the normal collagen framework is often disrupted.</span>\\n</p>\\n<h3>\\n     \\n</h3>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking and Squeezing </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking, squeezing, or repeatedly touching spots increases inflammation and can push bacteria deeper into the skin. This creates additional trauma and significantly raises the risk of scarring. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Delayed or Inadequate Treatment\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The longer acne remains active and untreated, the greater the chance of scarring. Ongoing inflammation over months or years causes cumulative damage to the skin’s support structures. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Some people are naturally more prone to acne scarring than others. A family history of acne scars can increase your own risk. Genetics also influence how your skin produces and remodels collagen during healing. </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6960],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','feb0938a-c5de-4143-8e81-aa2603b8a25d'),
(7020,7020,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are the most common type of atrophic acne scar, accounting for around 60-70% of cases. They appear as narrow, deep, V-shaped indentations that extend into the deeper layers of the skin. They often resemble enlarged pores or small puncture marks.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are usually less than 2 mm wide, but their depth makes them among the most challenging acne scars to treat. They are more common in areas of the face where the skin is thinner, such as the forehead and upper cheeks and tend to respond best to treatments that work deeper within the skin, rather than surface-level resurfacing alone. Ice pick scars are one of the more challenging types of acne scars to treat.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined, sharp edges and a relatively flat base. These scars typically sit 0.1–0.5 mm below the surrounding skin, giving a pitted appearance similar to chickenpox scarring.\\n \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nRolling scars make up around 15–25% of atrophic acne scars. They are wider than ice pick or boxcar scars, typically 4–5 mm or more across, with gently sloping edges that give the skin an uneven, wave-like appearance. Rolling scars develop when fibrous bands of scar tissue form beneath the skin, tethering the surface to deeper structures and pulling it downward.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars, which are depressed. They develop when the body mounts an overactive repair response during healing and produces excess collagen and fibrous tissue at the site of an acne lesion.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nMost people with acne scarring have a combination of different scar types rather than just one. It is common to see ice pick scars on the cheeks, boxcar scars on the temples, and rolling scars across the lower face. Because each scar type behaves differently and responds to different treatments, a thorough assessment is essential.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','8649d30c-a7cc-4690-800a-9ef51c9bcdf7'),
(7021,7021,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','488daf58-69ee-42c9-99f3-091ee0ca44f7'),
(7022,7022,1,'Frequently Asked Questions About Acne Scarring','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne Scarring\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about acne scarring\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','bbc309f5-7d55-45ad-abb1-826659bcc09c'),
(7024,7024,1,'Can acne scars get worse over time if left untreated?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars get worse over time if left untreated?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scars do not spread, but their appearance can worsen with age. Natural collagen loss and reduced skin elasticity make existing scars look deeper and more prominent. Sun damage also darkens post-inflammatory pigmentation around scarring. Early intervention with collagen-stimulating treatments like microneedling or Sunekos can improve scarring while your skin still has strong regenerative capacity. Addressing any associated hyperpigmentation prevents discolouration from becoming more stubborn.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','8cbd32cf-3580-4c21-b557-651c3e8eb9d9'),
(7025,7025,1,'Can I combine acne scar treatment with other aesthetic treatments?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine acne scar treatment with other aesthetic treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and a combination approach often delivers the best results. Microneedling can be combined with polynucleotide therapy to boost both collagen production and tissue repair at the same time. If scarring is accompanied by uneven skin tone, a course of chemical peels can address pigmentation while other treatments target texture. If you are also concerned about skin laxity around the scarring area, <a href=\\\"{entry:1951@1:url||https://hermeswp.xyz/rachel/web/treatments/sunekos}\\\">Sunekos Performa</a> can improve overall skin quality alongside scar-specific work. Dr Rachel builds personalised treatment plans that sequence and combine treatments safely.</p>\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','9fa917e6-90a3-40c0-8487-6d19535bba5f'),
(7026,7026,1,'Will my acne scars come back after treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will my acne scars come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treated scars do not return. Once collagen has remodelled and scar tissue has been broken down, those improvements are lasting. However, new breakouts in the future can cause new scarring. That is why it is important to have active acne under control before starting scar treatment and to maintain a good skincare routine afterwards. Dr Rachel can advise on a long-term maintenance plan, which may include periodic chemical peels or skin health treatments like Sunekos to keep results looking their best.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','c9224269-039d-4954-9bb8-c603b6a24292'),
(7027,7027,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','26c43820-452a-4e19-a6b7-004cd2dc6362'),
(7028,7028,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','8f4b1bf7-841d-46d7-9c9a-98e6752aef2c'),
(7029,7029,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','36d87a79-452e-4b85-9e5a-d6f908fd3737'),
(7030,7030,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','6949bb5d-38d8-4923-bae7-0ca15b664159'),
(7031,7031,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','e9db36e9-bb02-404e-a8c9-b40af1f6c7f2'),
(7032,7032,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-03 10:58:41','2026-04-03 10:58:41','9360a9ea-a74e-4f02-b71e-0b1b2c91ea50'),
(7053,7053,1,'Can professional treatments help if I have already tried everything from the pharmacy?','can-professional-treatments-help-if-i-have-already-tried-everything-from-the-pharmacy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can professional treatments help if I have already tried everything from the pharmacy?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Pharmacy products can be helpful, but they are limited to lower-strength ingredients designed for general use. Professional skin treatments work differently, focusing on improving skin function, reducing congestion and supporting long-term skin health. For example, <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>chemical resurfacing treatments</strong></a><strong> </strong>use carefully controlled acids to help clear blocked pores and improve skin renewal, while medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>microneedling</strong></a> can support skin repair and improve post-acne marks and texture. Alongside treatment, a structured skincare plan can often make a significant difference when you have been trying products without success. If you feel like you have been cycling through different products for months with little improvement, it often means you need a more personalised and structured approach rather than just another cleanser.</p>\"}',1,'2026-04-03 11:17:10','2026-04-13 12:26:24','8f3538b8-41f2-4430-a387-48e8578ecc91'),
(7058,7058,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-03 11:17:11','2026-04-03 11:17:11','d96c3dc6-f8ca-48b9-969b-19ffd1d86dcc'),
(7059,7059,1,'Acne','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"You have tried every cleanser, every serum, every piece of advice the internet has to offer. Yet the breakouts keep coming. Maybe they cluster around your chin before your period, or perhaps they have been with you since your teenage years and simply never left. Acne is one of the most common skin concerns we see at Aesthetics by Dr Rachel, affecting people well into their twenties, thirties, forties and beyond.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne is a chronic inflammatory skin condition that occurs when hair follicles become blocked with oil and dead skin cells. It is not just the occasional spot before a big event. It is a medical condition that can persist for months or years, affecting your skin, your confidence and your daily life. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The condition can take many forms. You might see blackheads, where blocked pores appear dark at the surface, or whiteheads, where the blockage sits beneath the skin. Papules are small red bumps that feel tender to the touch, while pustules are the classic spots with a visible white or yellow centre. In more severe cases, acne causes nodules and cysts, which are deep, painful lumps beneath the skin surface that can linger for weeks and often leave scars.\\n  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne most commonly appears on the face, but it can also affect the chest, back and shoulders. The pattern of your breakouts often gives clues about what is causing them and helps guide the most effective treatment approach.\\n </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7014]}',1,'2026-04-03 11:17:11','2026-04-03 11:17:11','ee42a80c-b51d-422d-8f02-14c54c7301fe'),
(7060,7060,1,'What Causes Acne?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hormonal Fluctuations\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hormones are one of the most common acne triggers, which is why many women notice breakouts around their menstrual cycle, during pregnancy, when changing contraception, or around perimenopause. Androgens, the hormones that increase during puberty, stimulate sebaceous glands to produce more oil.</span>\\n</p>\\n<h3>\\n     \\n</h3>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Stress </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When you are stressed, your body produces more cortisol, which can increase oil production and worsen inflammation. This is why many people notice their skin flares during difficult periods. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">If your parents had acne, you are more likely to experience it yourself. Genetics influence how much oil your skin produces, how your immune system responds to bacteria, and how prone you are to inflammation.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skincare Products and Habits  </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Using the wrong products can make acne worse. Heavy, occlusive moisturisers and makeup can clog pores. Harsh, stripping cleansers can damage your skin barrier, triggering more oil production as your skin tries to compensate.  </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7016],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 11:17:11','2026-04-03 11:17:11','10fd99e6-5e3e-4d52-b27c-466ed009c644'),
(7061,7061,1,'Types of Acne','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHormonal acne typically appears on the lower face, around the chin, jaw and neck. It tends to be deeper and more cystic than other types, with painful spots that sit beneath the skin surface for days or weeks.  \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Adult-Onset Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nIf you had clear skin as a teenager but started getting spots in your twenties or later, you have adult-onset acne. This is surprisingly common, affecting up to 54 percent of women over 25. Adult skin behaves differently from teenage skin.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Inflammatory Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThis includes papules, pustules, nodules and cysts. The redness and swelling you see are your immune system responding to bacteria in the blocked pore. Inflammatory acne is more likely to leave marks and scars than non-inflammatory types.  \\n</p>\\n<p>\\n     </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7013],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Comedonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThis is primarily blackheads and whiteheads without much inflammation. It often appears across the forehead, nose and chin. While less painful than inflammatory acne, it can still affect your skin texture and confidence.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Cystic Acne\\n</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nCystic acne is a severe form of inflammatory acne where large, painful, pus-filled lumps develop deep beneath the skin. These cysts can take weeks to heal and frequently leave permanent scars. Cystic acne is often linked to hormonal factors and can be emotionally distressing.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Acne\\n</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nyour nose, hormonal cysts around your chin, and inflammatory papules on your cheeks. A thorough assessment is essential to identify all the types present and develop a treatment plan that addresses each one appropriately.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7015]}',1,'2026-04-03 11:17:11','2026-04-03 11:17:11','7d061782-377f-4829-a463-7074821efa79'),
(7062,7062,1,'Frequently Asked Questions About Acne','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about acne\"}',1,'2026-04-03 11:17:11','2026-04-03 11:17:11','605d1724-6f3f-4be4-a76e-6bc54b260191'),
(7068,7068,1,'Can professional treatments help if I have already tried everything from the pharmacy?','can-professional-treatments-help-if-i-have-already-tried-everything-from-the-pharmacy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can professional treatments help if I have already tried everything from the pharmacy?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Pharmacy products are limited to low-strength active ingredients that sit on the skin surface. Professional treatments work differently. <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">Chemical peels</a> use medical-grade acids at concentrations not available over the counter, targeting blocked pores and bacteria deeper in the skin. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> triggers your skin\'s own repair response to improve texture and reduce post-acne marks. Dr Rachel can also prescribe topical treatments at strengths that pharmacies cannot sell. If you have been cycling through products for months with no improvement, it usually means your acne needs clinical intervention, not another cleanser.</p>\"}',1,'2026-04-03 11:17:11','2026-04-03 11:17:11','37ffd71d-16c8-4f36-8939-2352520c617a'),
(7073,7073,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-03 11:17:26','2026-04-03 11:17:26','f4939a75-11ac-423b-be09-921cd9839380'),
(7074,7074,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-03 11:25:38','2026-04-03 11:55:15','e0cc4f66-415a-48c7-84a7-7330df27b372'),
(7075,7075,1,'Upper Lip Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Upper Lip Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Fine vertical lines above the upper lip are something many patients notice gradually, often when lipstick starts to bleed, makeup begins to sit in the lines, or they become more noticeable in photos. Whether you know them as smokers’ lines, barcode lines or lipstick lines, these perioral wrinkles are a very common concern I see in clinic.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Upper Lip Lines? </i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\nUpper lip lines are the fine vertical creases that form on the skin between the upper lip and the nose. You may know them as smokers’ lines, barcode lines or lipstick lines, as they can cause lip products to feather into the surrounding skin. The medical term is perioral lines, meaning lines around the mouth.\\n\\nThe skin above the upper lip is particularly thin and delicate, and more susceptible to sun damage. It has fewer oil glands than much of the face, less underlying fat, and it moves constantly throughout the day as you talk, eat, drink and make expressions.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\nBecause of this, the area can start to show signs of ageing earlier than other areas of the face.\\n\\nOver time, collagen and elastin levels decline, meaning the skin becomes less able to support itself and lines start to form and deepen. Repeated muscle movement, combined with environmental factors such as UV exposure, gradually contributes to the development of these lines.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\nIn some people, these lines can appear earlier or become more noticeable due to naturally thinner skin and lower levels of structural support in this area. Hormonal changes over time can also influence collagen and elasticity, which may make lines appear more defined.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7113]}',1,'2026-04-03 11:25:38','2026-04-16 14:47:36','9e286bf3-3031-4747-8333-685720df445d'),
(7076,7076,1,'What Causes Upper Lip Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Upper Lip Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Upper lip lines usually develop as a result of natural ageing combined with everyday movement and environmental factors. Smoking is often associated with these lines, but it is only one of several contributing factors. Understanding what is driving your lines helps me choose the safest and most effective treatment approach for you.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The most common causes include: </span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Natural ageing and collagen loss, which gradually thins the delicate skin around the mouth </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Changes in underlying bone structure over time, reducing support for the upper lip and allowing lines to deepen </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Repeated lip movements, such as talking, drinking through straws, smoking, whistling or pursing the lips </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Cumulative sun exposure, which breaks down collagen and elastin in this thin, exposed area. Living on the Wirral coast can add to this, with reflected UV and drying sea winds </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Genetics, which influence how early lines appear and how they progress </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Dehydration and reduced barrier function, which can make lines appear more noticeable </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Smoking, which accelerates collagen breakdown, reduces blood flow to the skin and involves repeated pursing of the lips</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7110],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-04-03 11:25:38','2026-04-16 14:47:36','b40fb32a-fe5d-4324-84c4-e1513f28ce78'),
(7077,7077,1,'Types of Upper Lip Lines','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Upper Lip Lines\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Superficial Fine Lines </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThese are often the earliest signs. Delicate surface lines may only be visible in certain lighting or when you purse your lips. They tend to respond very well to treatments that improve hydration and stimulate collagen, and treating them at this stage often means less intervention is needed, with more subtle, natural-looking results.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vertical Barcode Lines </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   These are the classic vertical lines running from the edge of the lip (the vermillion border) upwards towards the nose. They develop over time due to repeated movement of the orbicularis oris muscle, which is the circular muscle around the mouth responsible for movements like pursing the lips. Although often associated with smoking, they are very common in non-smokers too, particularly in those who frequently purse the lips, such as when using straws or playing wind instruments.\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7112],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Deep-Set Creases</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   As lines become more established, they can deepen and remain visible even when the face is at rest. At this stage, the skin has less structural support, and a more considered, combination approach is often needed to soften the lines while maintaining a natural result.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Crepey Perioral Skin</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nSome patients notice a more general change in the skin rather than distinct lines, with a thin, finely wrinkled or “papery” texture. This usually reflects collagen loss, sun damage and reduced hydration. In these cases, the focus is on gradually improving overall skin quality rather than treating individual lines.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7114]}',1,'2026-04-03 11:25:38','2026-04-16 14:47:36','ce9044cc-306f-4669-a4e3-455966141ea4'),
(7078,7078,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','364a22a0-1546-40c8-9266-f0e6cf85a6c6'),
(7079,7079,1,'Frequently Asked Questions About Upper Lip Lines','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Upper Lip Lines\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about Upper Lip Lines\"}',1,'2026-04-03 11:25:38','2026-04-16 14:47:36','55550fef-80cd-42ef-8533-9802023573fb'),
(7080,7080,1,'What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Over-the-counter creams containing retinol or vitamin C can help with mild surface discolouration, but they cannot reach the more serious structural damage that causes textured scars. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> triggers controlled collagen remodelling beneath the skin surface, while <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">chemical peels</a> remove damaged layers to encourage smoother skin growth. For deeper scarring, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotide therapy</a> stimulates tissue regeneration at a cellular level. Dr Rachel will assess whether your scarring needs surface-level care or a clinical approach.</p>\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','42d8747a-95ee-448e-bcfd-357e1a7bbf08'),
(7081,7081,1,'Can acne scars get worse over time if left untreated?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars get worse over time if left untreated?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scars do not spread, but their appearance can worsen with age. Natural collagen loss and reduced skin elasticity make existing scars look deeper and more prominent. Sun damage also darkens post-inflammatory pigmentation around scarring. Early intervention with collagen-stimulating treatments like microneedling or Sunekos can improve scarring while your skin still has strong regenerative capacity. Addressing any associated hyperpigmentation prevents discolouration from becoming more stubborn.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','73cdf963-f1a3-4c57-9e5e-6d1345c20f47'),
(7082,7082,1,'Can I combine acne scar treatment with other aesthetic treatments?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine acne scar treatment with other aesthetic treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and a combination approach often delivers the best results. Microneedling can be combined with polynucleotide therapy to boost both collagen production and tissue repair at the same time. If scarring is accompanied by uneven skin tone, a course of chemical peels can address pigmentation while other treatments target texture. If you are also concerned about skin laxity around the scarring area, <a href=\\\"{entry:1951@1:url||https://hermeswp.xyz/rachel/web/treatments/sunekos}\\\">Sunekos Performa</a> can improve overall skin quality alongside scar-specific work. Dr Rachel builds personalised treatment plans that sequence and combine treatments safely.</p>\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','e7fefc46-5e49-4970-9803-dc01e615ec37'),
(7083,7083,1,'Will my acne scars come back after treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will my acne scars come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treated scars do not return. Once collagen has remodelled and scar tissue has been broken down, those improvements are lasting. However, new breakouts in the future can cause new scarring. That is why it is important to have active acne under control before starting scar treatment and to maintain a good skincare routine afterwards. Dr Rachel can advise on a long-term maintenance plan, which may include periodic chemical peels or skin health treatments like Sunekos to keep results looking their best.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','9a93d5e3-d1af-4c10-a2c0-70c5e5634c24'),
(7084,7084,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','1bf8260c-f557-48b9-a5ab-870e6649844a'),
(7085,7085,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','97a81d18-54e8-432c-8598-4e2aef9eb077'),
(7086,7086,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','a2150503-d43b-4527-a38e-0d2a1440756e'),
(7087,7087,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','cc2c9145-61f6-420c-8467-b66b4a0b9d99'),
(7088,7088,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-03 11:25:38','2026-04-03 11:25:38','611c1642-58e7-499f-bfd0-d897e67f775b'),
(7089,7089,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-03 11:25:38','2026-04-20 19:05:12','9354327c-8e9b-4ef1-98a6-c5ff730bb28d'),
(7091,7091,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[5070]}',1,'2026-04-03 11:27:01','2026-04-03 11:27:01','78469ad4-22c7-416d-af09-b8c1f7470fa4'),
(7093,7093,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6533]}',1,'2026-04-03 11:27:18','2026-04-03 11:27:18','a18479a5-2535-4723-ab72-b7283e4e6e45'),
(7094,7094,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','031b92eb-da34-4d55-aace-13786ea404b2'),
(7095,7095,1,'Acne Scarring','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne Scarring\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Your acne may have cleared years ago, but the scars it left behind can still feel very present. Uneven texture, pitted marks, or skin that never quite looks smooth can be a constant reminder of something you thought you had moved past. For many people, acne scarring affects far more than appearance. It can shape how confident you feel day to day, in ways that those who have never experienced it may not fully understand.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne Scarring?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scarring is a long-lasting change in skin texture that can develop after inflammatory acne has healed. When acne affects the deeper layers of the skin, it can disrupt the normal collagen support structure. As the skin repairs itself, this healing process does not always occur in a balanced way. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">If too little collagen is produced during healing, indented or pitted scars can form (atrophic scars). In other cases, the skin mounts an overactive repair response and produces excess collagen, leading to raised scars (hypertrophic scars). In both situations, the result is uneven skin texture that can remain long after active acne has settled.\\n  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Acne scars are different from the temporary marks that often follow a breakout. Flat red or brown marks, known as post-inflammatory erythema or hyperpigmentation, are colour changes rather than true scars and often fade gradually with time and appropriate skincare. True acne scars involve a structural change within the skin and usually require targeted treatment to significantly improve texture. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6963]}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','2796c63b-0d64-4fb0-87f4-937390c4bef4'),
(7096,7096,1,'What Causes Acne Scarring?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne Scarring?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Acne scarring develops as part of the skin’s healing response to inflammation. Understanding why scars form helps explain why early acne treatment and appropriate scar management are so important.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Inflammatory Acne </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The more inflamed a breakout becomes, the higher the risk of scarring. Cystic and nodular acne develop deep within the skin and can cause significant damage to the surrounding tissue. As these lesions heal, the normal collagen framework is often disrupted.</span>\\n</p>\\n<h3>\\n     \\n</h3>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking and Squeezing </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Picking, squeezing, or repeatedly touching spots increases inflammation and can push bacteria deeper into the skin. This creates additional trauma and significantly raises the risk of scarring. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Delayed or Inadequate Treatment\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The longer acne remains active and untreated, the greater the chance of scarring. Ongoing inflammation over months or years causes cumulative damage to the skin’s support structures. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Some people are naturally more prone to acne scarring than others. A family history of acne scars can increase your own risk. Genetics also influence how your skin produces and remodels collagen during healing. </span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6960],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','8bc300db-b6df-4f3f-9f50-ca742baf2a36'),
(7097,7097,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are the most common type of atrophic acne scar, accounting for around 60-70% of cases. They appear as narrow, deep, V-shaped indentations that extend into the deeper layers of the skin. They often resemble enlarged pores or small puncture marks.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are usually less than 2 mm wide, but their depth makes them among the most challenging acne scars to treat. They are more common in areas of the face where the skin is thinner, such as the forehead and upper cheeks and tend to respond best to treatments that work deeper within the skin, rather than surface-level resurfacing alone. Ice pick scars are one of the more challenging types of acne scars to treat.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined, sharp edges and a relatively flat base. These scars typically sit 0.1–0.5 mm below the surrounding skin, giving a pitted appearance similar to chickenpox scarring.\\n \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nRolling scars make up around 15–25% of atrophic acne scars. They are wider than ice pick or boxcar scars, typically 4–5 mm or more across, with gently sloping edges that give the skin an uneven, wave-like appearance. Rolling scars develop when fibrous bands of scar tissue form beneath the skin, tethering the surface to deeper structures and pulling it downward.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars, which are depressed. They develop when the body mounts an overactive repair response during healing and produces excess collagen and fibrous tissue at the site of an acne lesion.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nMost people with acne scarring have a combination of different scar types rather than just one. It is common to see ice pick scars on the cheeks, boxcar scars on the temples, and rolling scars across the lower face. Because each scar type behaves differently and responds to different treatments, a thorough assessment is essential.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','63640657-1cc1-44c0-a231-840adf0ef014'),
(7098,7098,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','169c3f4e-7774-4e02-badf-c560b24117c1'),
(7099,7099,1,'Frequently Asked Questions About Acne Scarring','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne Scarring\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about acne scarring\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','f4a1a90f-dd4a-4289-9540-04fdfaa7cca4'),
(7100,7100,1,'What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Over-the-counter creams containing retinol or vitamin C can help with mild surface discolouration, but they cannot reach the more serious structural damage that causes textured scars. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> triggers controlled collagen remodelling beneath the skin surface, while <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">chemical peels</a> remove damaged layers to encourage smoother skin growth. For deeper scarring, <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotide therapy</a> stimulates tissue regeneration at a cellular level. Dr Rachel will assess whether your scarring needs surface-level care or a clinical approach.</p>\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','100d7419-032a-4314-933d-e2114562fd21'),
(7101,7101,1,'Can acne scars get worse over time if left untreated?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars get worse over time if left untreated?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scars do not spread, but their appearance can worsen with age. Natural collagen loss and reduced skin elasticity make existing scars look deeper and more prominent. Sun damage also darkens post-inflammatory pigmentation around scarring. Early intervention with collagen-stimulating treatments like microneedling or Sunekos can improve scarring while your skin still has strong regenerative capacity. Addressing any associated hyperpigmentation prevents discolouration from becoming more stubborn.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','698b5151-4a96-4064-b9d6-6bee2961ef93'),
(7102,7102,1,'Can I combine acne scar treatment with other aesthetic treatments?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine acne scar treatment with other aesthetic treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and a combination approach often delivers the best results. Microneedling can be combined with polynucleotide therapy to boost both collagen production and tissue repair at the same time. If scarring is accompanied by uneven skin tone, a course of chemical peels can address pigmentation while other treatments target texture. If you are also concerned about skin laxity around the scarring area, <a href=\\\"{entry:1951@1:url||https://hermeswp.xyz/rachel/web/treatments/sunekos}\\\">Sunekos Performa</a> can improve overall skin quality alongside scar-specific work. Dr Rachel builds personalised treatment plans that sequence and combine treatments safely.</p>\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','9c2affce-1303-470f-90dc-3e419458a74c'),
(7103,7103,1,'Will my acne scars come back after treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will my acne scars come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treated scars do not return. Once collagen has remodelled and scar tissue has been broken down, those improvements are lasting. However, new breakouts in the future can cause new scarring. That is why it is important to have active acne under control before starting scar treatment and to maintain a good skincare routine afterwards. Dr Rachel can advise on a long-term maintenance plan, which may include periodic chemical peels or skin health treatments like Sunekos to keep results looking their best.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','949ad761-e2e9-44be-87a0-fa1181cb1731'),
(7104,7104,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','7aa9e422-fce7-4cca-a0cc-caf02ef919e8'),
(7105,7105,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','81f0e1fb-8c27-471a-933f-90e35c249b83'),
(7106,7106,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','9915802f-532c-481e-9e52-69454d480010'),
(7107,7107,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','24decf2a-c0eb-4e08-8662-89c941c22fdd'),
(7108,7108,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','a7d3249f-a8fc-4f76-8357-00aacea4c5c8'),
(7109,7109,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"da0f7ef2-9f36-432c-b279-50a04db13c9f\":\"07834 258596\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:07834 258596\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-03 11:52:20','2026-04-03 11:52:20','bfaf52e4-1d6d-4057-84ba-2bb8754b3cb7'),
(7110,7110,1,'Upper lip 2 1',NULL,NULL,NULL,1,'2026-04-03 11:54:30','2026-04-03 11:54:30','3ddd8dea-9671-4de1-8765-5d5a8af3fbc9'),
(7112,7112,1,'Upper lip 3',NULL,NULL,NULL,1,'2026-04-03 11:54:59','2026-04-03 11:54:59','56062f07-7f4b-482c-82aa-aa9c5c660f58'),
(7113,7113,1,'Upper lip 4',NULL,NULL,NULL,1,'2026-04-03 11:55:00','2026-04-03 11:55:00','ed62d903-35a9-4a87-8894-4518593319e2'),
(7114,7114,1,'Upper lip',NULL,NULL,NULL,1,'2026-04-03 11:55:01','2026-04-03 11:55:01','ddf46c54-cb7e-4be2-84d1-33819f83c1a3'),
(7115,7115,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-03 11:55:15','2026-04-03 11:55:15','4aa7cd3c-e0c0-4c15-b986-e2f24c298048'),
(7131,7131,1,'Why do I have smokers’ lines if I have never smoked?','why-do-i-have-smokers-lines-if-i-have-never-smoked',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why do I have smokers’ lines if I have never smoked?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The term “smokers’ lines” can be misleading. These lines develop from repeated lip movement combined with natural ageing, sun exposure and thinning of the delicate skin around the mouth, rather than smoking alone.\\n\\nEveryday actions such as drinking through straws, whistling, playing wind instruments or simply having naturally thinner skin in this area can all contribute. Many of my patients have never smoked and still develop upper lip lines. They are a very common part of the ageing process, and often one of the first areas patients start to notice changes.\"}',1,'2026-04-03 12:19:57','2026-04-16 14:47:37','aaf2d849-c8ff-4890-a65b-d21513267621'),
(7134,7134,1,'Is treatment for upper lip lines painful?','is-treatment-for-upper-lip-lines-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is treatment for upper lip lines painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The lip area is sensitive, but most patients find treatment very manageable. I use numbing cream where appropriate, gentle technique and very fine needles to keep you comfortable. You may feel brief pressure or small pinpricks, but discomfort is usually short-lived.\"}',1,'2026-04-03 12:19:57','2026-04-03 12:19:57','64bf26fc-ae28-41e9-ba8d-8ed87f5cf871'),
(7135,7135,1,'At what age should I start treating lip lines?','at-what-age-should-i-start-treating-lip-lines',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lip lines?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no perfect age. The right time is when the lines begin to bother you. Early, gentle treatment can help prevent fine lines from becoming deeper over time, often with simple skin-quality treatments and good homecare.\\nThat said, it is never too late. Meaningful improvement is possible at any stage with the right, carefully planned approach.\"}',1,'2026-04-03 12:19:57','2026-04-03 12:19:57','379a1b5f-a6a3-40dd-a894-908a77f9dd37'),
(7136,7136,1,'Will I still be able to smile and talk normally?','will-i-still-be-able-to-smile-and-talk-normally',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to smile and talk normally?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always to soften lines while preserving natural movement. The area around the mouth needs careful technique and conservative dosing, and I plan treatment very precisely so your speech, smile and everyday function feel normal. Choosing an experienced medical practitioner is especially important for this delicate area.\"}',1,'2026-04-03 12:19:57','2026-04-03 12:19:57','c86a8334-9b30-4c6c-8464-9c206ebb622e'),
(7137,7137,1,'Will treating lip lines make my lips look bigger?','will-treating-lip-lines-make-my-lips-look-bigger',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will treating lip lines make my lips look bigger?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. The aim of treating upper lip lines is to soften the lines, not to enlarge your lips. I use very small, carefully placed treatments to support the skin around the mouth while keeping your lip shape natural. If you ever did want more volume, that would be a separate discussion, but many patients are relieved to find we can improve lip lines without changing the look of their lips.\"}',1,'2026-04-03 12:19:57','2026-04-03 12:19:57','584b51f4-4d95-42bd-b252-b35cb41db5e9'),
(7139,7139,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-03 12:19:57','2026-04-03 12:19:57','6ff40d98-da27-4f9b-bc28-972f5fe3ddcf'),
(7140,7140,1,'Upper Lip Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Upper Lip Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Fine vertical lines above the upper lip are something many patients notice gradually, often when lipstick starts to bleed or lines show in photos. Whether you call them smokers’ lines, barcode lines or lipstick lines, these perioral wrinkles are one of the most common concerns I see in the clinic.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Upper Lip Lines?\\n</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Upper lip lines are the fine vertical creases that form on the skin between the upper lip and the nose. You may know them as smokers’ lines, barcode lines or lipstick lines, because they can cause lipstick to feather upwards. The medical term is perioral lines, meaning lines around the mouth.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The skin above the upper lip is particularly thin and delicate, and more susceptible to damage from the sun. It has fewer oil glands than much of the face, less underlying fat, and it moves constantly throughout the day as you talk, eat, drink and make expressions. Because of this, the area often shows signs of ageing earlier than expected.\\n  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Upper lip lines are also more common in women. Female skin in this area is typically thinner, with slightly less collagen support, and the pattern of muscle fibres around the mouth is different. Hormonal changes, especially after menopause, can further reduce collagen and elasticity. Women are also more likely to notice these lines because lipstick and lip products can settle into them, making them more visible.\\n </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7113]}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','4be9ded0-e6d8-4e65-aaef-27f6e90dd0a5'),
(7141,7141,1,'What Causes Upper Lip Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Upper Lip Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Upper lip lines usually develop from a combination of natural ageing and everyday habits. Many people are surprised to learn that smoking is just one of several contributing factors. Understanding what is driving your lines helps me choose the safest and most effective treatment plan for you.  </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The most common causes include: </span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Natural ageing and collagen loss, which thins the delicate skin around the mouth </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Age-related loss of bony support under the lip, which allows lines to deepen over time </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Repeated lip movements, such as talking, drinking through straws, smoking, whistling or pursing the lips </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Years of sun exposure, which breaks down collagen and elastin in this thin, exposed area. On the Wirral coast, reflected UV from the water and drying sea winds can further stress the delicate lip area. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Genetics, which influences how early lines appear and how deep they become </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Dehydration and poor barrier care, which make lines look more visible </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Smoking, which accelerates collagen breakdown and restricts blood flow to the skin, as well as requiring repeated pursing of the lips.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7110],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','3ee5c4bf-f563-4c8f-9a84-f8e9a19210e3'),
(7142,7142,1,'Types of Upper Lip Lines','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Upper Lip Lines\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vertical Barcode Lines\\n</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThese are the classic smokers’ lines - fine vertical wrinkles running from the edge of the lip (the vermillion border) upwards towards the nose. They are mainly caused by repeated puckering of the orbicularis oris muscle over many years.\\nThey can deepen with age and are often more noticeable in people who have smoked, but they are very common in non-smokers, too. For example, in people who have used straws frequently or played wind instruments.\\n  \\n</p>\\n<p>\\n     \\n</p>\\n\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Superficial Fine Lines\\n</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThese are the earliest signs of perioral ageing. Delicate surface lines may only be visible in certain lighting or when you purse your lips. They usually respond very well to treatments that improve hydration and stimulate collagen, and treating them early often means simpler, more natural results.  \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7112],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Deep-Set Creases</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nWhen lines have been present for many years, they can become etched into the skin and remain visible even at rest. These deeper lines often need a combination approach, improving skin quality while also restoring gentle support underneath.   \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Crepey Perioral Skin</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nSome patients notice an overall thin, papery texture rather than distinct lines. This usually reflects collagen and elastin loss, sun damage and reduced hydration. In these cases, treatment focuses on rebuilding skin quality gradually rather than filling individual lines. \\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7114]}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','580023ab-d3bf-48c3-aa11-ae5af5690908'),
(7143,7143,1,'Frequently Asked Questions About Upper Lip Lines','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Upper Lip Lines\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Find answers to common questions about upper lip lines condition\"}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','933eec68-42a6-4834-88c2-cd257de92938'),
(7144,7144,1,'Why do I have smokers’ lines if I have never smoked?','why-do-i-have-smokers-lines-if-i-have-never-smoked',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why do I have smokers’ lines if I have never smoked?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The term smokers’ lines is misleading. These lines develop from repeated lip movement combined with natural ageing, sun exposure and thinning of the delicate skin around the mouth, not necessarily from smoking. Drinking through straws, whistling, playing wind instruments or simply having naturally thinner skin in this area can all contribute.\\nMany of my patients have never smoked and still develop upper lip lines, they are a very common part of skin ageing.\"}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','626177f1-5d21-4731-a2bb-7abd09883e0f'),
(7147,7147,1,'Is treatment for upper lip lines painful?','is-treatment-for-upper-lip-lines-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is treatment for upper lip lines painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The lip area is sensitive, but most patients find treatment very manageable. I use numbing cream where appropriate, gentle technique and very fine needles to keep you comfortable. You may feel brief pressure or small pinpricks, but discomfort is usually short-lived.\"}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','08b27777-ce54-4ef1-8f89-87e0c84b4e87'),
(7148,7148,1,'At what age should I start treating lip lines?','at-what-age-should-i-start-treating-lip-lines',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lip lines?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no perfect age. The right time is when the lines begin to bother you. Early, gentle treatment can help prevent fine lines from becoming deeper over time, often with simple skin-quality treatments and good homecare.\\nThat said, it is never too late. Meaningful improvement is possible at any stage with the right, carefully planned approach.\"}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','9878f8d2-f305-447c-9731-2963f41f7d22'),
(7149,7149,1,'Will I still be able to smile and talk normally?','will-i-still-be-able-to-smile-and-talk-normally',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to smile and talk normally?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always to soften lines while preserving natural movement. The area around the mouth needs careful technique and conservative dosing, and I plan treatment very precisely so your speech, smile and everyday function feel normal. Choosing an experienced medical practitioner is especially important for this delicate area.\"}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','8637b345-8d97-4db8-b391-9be6ff1d92f4'),
(7150,7150,1,'Will treating lip lines make my lips look bigger?','will-treating-lip-lines-make-my-lips-look-bigger',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will treating lip lines make my lips look bigger?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. The aim of treating upper lip lines is to soften the lines, not to enlarge your lips. I use very small, carefully placed treatments to support the skin around the mouth while keeping your lip shape natural. If you ever did want more volume, that would be a separate discussion, but many patients are relieved to find we can improve lip lines without changing the look of their lips.\"}',1,'2026-04-03 12:19:58','2026-04-03 12:19:58','c217d093-9851-49c2-9afe-a867e1e29686'),
(7152,7152,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-03 12:20:01','2026-04-03 12:20:01','2fa25819-f31b-48fc-8e25-5521d9c28ff2'),
(7153,7153,1,'Treatment 2','anti-wrinkle-injections-2','treatments/anti-wrinkle-injections-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-04-03 12:20:16','2026-04-03 12:20:16','f7ce9bb6-99c2-448d-8693-53158254b875'),
(7154,7154,1,'Dark Circles Under the Eyes','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:24','2026-04-03 12:35:37','2b690c0d-b930-48fe-ac37-8bf53bd8285a'),
(7155,7155,1,'Crepey Skin','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:24','2026-04-03 12:35:37','9c38af7f-fa36-42af-bef9-6dc0ce067f4d'),
(7156,7156,1,'Lines and Wrinkles','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:24','2026-04-03 12:35:37','8ce421fc-786a-4f5b-bdd2-75fef609cb3e'),
(7157,7157,1,'Ageing Skin','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:41','2026-04-15 17:06:15','9c3d792b-03e8-4f95-b266-4bb9c0f531f1'),
(7158,7158,1,'Upper Lip Lines','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:41','2026-04-03 12:35:37','24c5827e-77f1-4fcf-b562-34cbf117fef2'),
(7159,7159,1,'Acne','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:41','2026-04-03 12:35:37','1e215b03-397d-410b-8d27-363bbc79efe9'),
(7160,7160,1,'Hyperpigmentation','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:41','2026-04-03 12:35:37','08cbee34-4acb-4a28-b8e7-5ed49de1a370'),
(7161,7161,1,'Acne Scarring','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:41','2026-04-03 12:35:37','731882fc-d3af-4110-8ae4-8e4e7f10c48f'),
(7162,7162,1,'Neck Lines','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-04-03 12:21:41','2026-04-03 12:35:37','815f8339-2886-465a-be5b-5addb4d70a96'),
(7164,7164,1,'About','about','about',NULL,1,'2026-04-03 14:05:01','2026-04-03 14:05:01','9ca11bfb-c7b8-4a6f-8a88-3fd308ff423b'),
(7165,7165,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Meet Your Doctor\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong></p><p>I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">GMC-registered doctor</a> with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.</p><p> </p><p>I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.</p><p> </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.</p><p> </p><p>Because aesthetic medicine should enhance how you look, never change who you are — the goal is always for you to look refreshed, not different.</p><p> </p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-03 14:05:01','2026-04-03 14:05:01','6d6d2269-77ec-40d4-983e-d86c9fc70be4'),
(7168,7168,1,'Homepage','homepage','__home__',NULL,1,'2026-04-03 14:06:16','2026-04-03 14:06:16','fe33a84b-d4a9-45bc-be42-9335fff634d9'),
(7169,7169,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">MBChB (Hons) MRCGP (2022) BSc (Hons)</span>\\n</h3>\\n<p>\\n    I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">GMC-registered doctor</span> </a>with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself. \\n</p>\\n<p>\\n    My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options. \\n</p>\\n<p>\\n    Every face and every skin journey is different. Taking the time to assess you properly allows treatments to be carefully tailored, achieving results that are subtle, balanced and completely natural. I am a member of the Complications in Medical Aesthetics Collaborative (CMAC) and regularly undertake further training to ensure my practice remains safe, evidence-based and always centred around patient care. \\n</p>\\n<p>\\n    Because aesthetic medicine should enhance how you look, never change who you are.\\n</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[6347],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-04-03 14:06:16','2026-04-03 14:06:16','fdb37cbd-43a6-4886-98ca-6cc4ba3a8c16'),
(7172,7172,1,'About','about','about',NULL,1,'2026-04-03 14:06:48','2026-04-03 14:06:48','26ab76a3-502b-4c09-a92e-e50edddaf2e1'),
(7173,7173,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Meet Your Doctor\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p>\\n    <strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong>\\n</p>\\n<p>\\n    I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">GMC-registered doctor</span>/a&gt; with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.\\n</a></p>\\n<p>\\n     \\n</p>\\n<p>\\n    I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Because aesthetic medicine should enhance how you look, never change who you are — the goal is always for you to look refreshed, not different.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-03 14:06:48','2026-04-03 14:06:48','69dc5f8e-6ba7-4428-8842-d66476376fa0'),
(7176,7176,1,'About','about','about',NULL,1,'2026-04-03 14:07:22','2026-04-03 14:07:22','c58eb6d4-48e2-4a09-a302-f681a53e3b5b'),
(7177,7177,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Meet Your Doctor\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong></p><p>I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">GMC-registered doctor</span></a> with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.</p><p> </p><p>I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.</p><p> </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.</p><p> </p><p>Because aesthetic medicine should enhance how you look, never change who you are — the goal is always for you to look refreshed, not different.</p><p> </p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-03 14:07:22','2026-04-03 14:07:22','850eae1e-f82b-4ef1-8d42-6eab301dda55'),
(7181,7181,1,'About','about','about',NULL,1,'2026-04-03 14:09:43','2026-04-03 14:09:43','face0674-093c-4e39-90f0-f812189f7c25'),
(7182,7182,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- A natural, subtle approach focused on helping you look refreshed and well, never overdone</span>\\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Evidence-based treatments chosen for safety and long-term skin health</span>\\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Clear, honest advice, including when a treatment is not the right choice</span>\\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Continuity of care, seeing the same doctor from consultation through to review</span>\\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- A personalised plan designed around your face, your skin and your goals</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-03 14:09:43','2026-04-03 14:09:43','75233616-dea6-4d25-8748-bfebb0e301b1'),
(7183,7183,1,'My philosophy','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"My philosophy\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p>My aim is simple: to help you feel comfortable and confident in your own skin again - refreshed, never changed.</p><p> </p><p>I believe great results rarely come from a single treatment. Instead, I focus on a layered approach, improving skin quality, restoring structure where needed, and maintaining balance across the face. This allows results to look natural, age well, and feel like <i>you</i>, just more rested and confident.</p><p> </p><p><strong>Visiting the clinic</strong></p><p> </p><p>I hold clinics in Bebington on the Wirral, providing a calm, discreet environment where you can feel comfortable discussing your concerns.</p><p> </p><p>If you are considering treatment but want honest advice first, a consultation is always the best place to start. Your skin is unique, and your treatment plan should be too.</p><p> </p><p>I look forward to welcoming you to the clinic.</p><p> </p><p><strong>Dr Rachel</strong></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-03 14:09:43','2026-04-03 14:09:43','26033880-cc60-4c14-868a-788e5e70ca48'),
(7186,7186,1,'About','about','about',NULL,1,'2026-04-03 14:10:18','2026-04-03 14:10:18','d95ccd6e-abb7-4b5d-a1bb-1858fa65b905'),
(7187,7187,1,'About Dr Rachel','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"About Dr Rachel\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Meet Your Doctor\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"fffaf7\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel is the woman behind the results at Aesthetics by Dr Rachel\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><strong>MBChB (Hons) MRCGP (2022) BSc (Hons) </strong></p><p>I am Dr Rachel, a self-confessed skincare enthusiast and a fully qualified, <a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(16,54%,64%);\\\">GMC-registered doctor</span></a> with over ten years of medical experience. Alongside my work in medical aesthetics and advanced skin treatments, I continue to practise as a GP here on the Wirral. I am passionate about natural, healthy skin and helping you feel like the best version of yourself through thoughtful, medically-led care.</p><p> </p><p>I hold a BSc (Hons) in Genetics, qualified in Medicine through graduate entry medicine, and became a Member of the Royal College of General Practitioners in 2022. My medical background shapes my careful, safety-first approach to aesthetic treatment and my focus on achieving results that look natural and age well.</p><p> </p><p>My approach is grounded in science rather than trends. I believe the best results come from careful assessment, a strong understanding of facial anatomy, and truly personalised treatment planning. Just as importantly, I believe you should understand why changes are happening in your skin and face, not just what we can do about them, so you feel informed, confident and clear about your options.</p><p> </p><p>Because aesthetic medicine should enhance how you look, never change who you are - the goal is always for you to look refreshed, not different.</p><p> </p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4994]}',1,'2026-04-03 14:10:18','2026-04-03 14:10:18','8f95ee6b-4ecc-4805-b209-b803899cd2c4'),
(7190,7190,1,'Video 2','video',NULL,'{\"0e99218a-a088-4a59-8372-12392a9ed2a1\":\"Video section 2\",\"2ef2608f-2abf-4e80-9c32-a5f6f6c843da\":\"<p>video section description 2</p>\",\"214da0db-9e00-4448-aebd-ac608a67c449\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"ebb0ff55-f947-4817-b289-a0e9eac07029\":\"fffaf7\"}',1,'2026-04-06 08:35:57','2026-04-06 09:22:51','dcbee9ef-d8e0-4fa7-a088-7e6ed13eb8bb'),
(7191,7191,1,'About','about','about',NULL,1,'2026-04-06 08:35:57','2026-04-06 08:35:57','4318f128-cc57-4c10-adda-16a28fc7322c'),
(7192,7192,1,'Video','video',NULL,'{\"0e99218a-a088-4a59-8372-12392a9ed2a1\":\"Video section\",\"2ef2608f-2abf-4e80-9c32-a5f6f6c843da\":\"<p>video section description</p>\",\"214da0db-9e00-4448-aebd-ac608a67c449\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"ebb0ff55-f947-4817-b289-a0e9eac07029\":\"fffaf7\"}',1,'2026-04-06 08:35:57','2026-04-06 08:35:57','0d55479d-b7e3-4d18-9212-68194fcf01ee'),
(7195,7195,1,'About','about','about',NULL,1,'2026-04-06 09:02:55','2026-04-06 09:02:55','20355870-a911-40d4-a41b-6bcc4c3badb9'),
(7196,7196,1,'Video','video',NULL,'{\"0e99218a-a088-4a59-8372-12392a9ed2a1\":\"Video section\",\"2ef2608f-2abf-4e80-9c32-a5f6f6c843da\":\"<p>video section description</p>\",\"214da0db-9e00-4448-aebd-ac608a67c449\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"ebb0ff55-f947-4817-b289-a0e9eac07029\":\"fffaf7\"}',1,'2026-04-06 09:02:55','2026-04-06 09:02:55','319ff828-d67c-475f-8dd7-e6a5fa0c5f4e'),
(7199,7199,1,'About','about','about',NULL,1,'2026-04-06 09:22:51','2026-04-06 09:22:51','d76f0bd2-a973-4594-805e-e14c11beac17'),
(7200,7200,1,'Video 2','video',NULL,'{\"0e99218a-a088-4a59-8372-12392a9ed2a1\":\"Video section 2\",\"2ef2608f-2abf-4e80-9c32-a5f6f6c843da\":\"<p>video section description 2</p>\",\"214da0db-9e00-4448-aebd-ac608a67c449\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"ebb0ff55-f947-4817-b289-a0e9eac07029\":\"fffaf7\"}',1,'2026-04-06 09:22:51','2026-04-06 09:22:51','8614555b-c59d-4cd4-9d02-7bd067f0abb2'),
(7202,7202,1,'About','about','about',NULL,1,'2026-04-06 09:29:37','2026-04-06 09:29:37','a12559e7-d88c-49c8-a781-557839508cba'),
(7205,7205,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-06 09:49:38','2026-04-06 09:49:38','3f269249-daee-4d98-b8ca-89ff7a090e53'),
(7206,7206,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:49:38','2026-04-06 09:49:38','db866f0d-0afc-4633-90fd-812103406683'),
(7209,7209,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-06 09:50:31','2026-04-06 09:50:31','01664aad-5ad6-470c-8892-2f10afca4d3a'),
(7210,7210,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:50:31','2026-04-06 09:50:31','09fe23dd-6349-4ad7-bb76-56a9ee31f12d'),
(7218,7218,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-06 09:54:01','2026-04-06 09:54:01','e80e0695-9e08-4afd-a161-7b4245c72268'),
(7219,7219,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:54:01','2026-04-06 09:54:01','825c8197-afea-4571-bd5e-66efd96a9757'),
(7222,7222,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-06 09:54:13','2026-04-06 09:54:13','0c3f4c90-0357-4b58-9575-280459014f16'),
(7223,7223,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:54:13','2026-04-06 09:54:13','32328b07-fab3-4080-b68b-645e4a1c2920'),
(7226,7226,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 09:54:27','2026-04-06 09:54:27','c644a457-9cee-4523-b26f-74c6aeffe914'),
(7227,7227,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:54:27','2026-04-06 09:54:27','b1246dc9-1e8a-485b-9d36-8955338fd8af'),
(7230,7230,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-06 09:54:39','2026-04-06 09:54:39','d8b9f282-cf25-442b-97fc-796f0f4f5611'),
(7231,7231,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:54:39','2026-04-06 09:54:39','a2afcacd-bd3b-4682-889b-3c8f6f2222e8'),
(7234,7234,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-06 09:54:51','2026-04-06 09:54:51','df62548d-6f04-4caf-9a58-327f918de090'),
(7235,7235,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:54:51','2026-04-06 09:54:51','c2b6df1b-eb4b-4ec0-bdfa-93d2d2a89d39'),
(7238,7238,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-06 09:55:01','2026-04-06 09:55:01','b1b7e32b-c6d8-407d-b170-cc06d04b124e'),
(7239,7239,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:55:01','2026-04-06 09:55:01','66da302f-78de-4a1a-8a40-bb4a3b58caae'),
(7242,7242,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-06 09:55:10','2026-04-06 09:55:10','fe24f609-5ae3-4ed7-86ff-431216772d6d'),
(7243,7243,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:55:10','2026-04-06 09:55:10','61b3f137-2737-4230-8686-8862f9537153'),
(7246,7246,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-06 09:55:23','2026-04-06 09:55:23','0b186a76-ccd2-48ea-b79f-d5e9b1167cd8'),
(7247,7247,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:55:23','2026-04-06 09:55:23','400bd5c8-50d0-4e6c-a03a-8691a884276a'),
(7250,7250,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-06 09:55:47','2026-04-06 09:55:47','cb811505-2d36-4c07-99e5-5eca3685ac06'),
(7251,7251,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:55:47','2026-04-06 09:55:47','5f316bae-ec4b-4957-a89e-1ff0ae166f27'),
(7254,7254,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-06 09:55:57','2026-04-06 09:55:57','f60a4e0c-524d-4fd0-a6e8-e045c5153c58'),
(7255,7255,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:55:57','2026-04-06 09:55:57','b23a1284-1db9-4d30-9bf9-5a1655167fcb'),
(7258,7258,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-06 09:56:08','2026-04-06 09:56:08','cc8fde2d-cd99-486e-817b-e080e816ac7d'),
(7259,7259,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:56:08','2026-04-06 09:56:08','23295364-5ca7-482c-972f-493f382d4b56'),
(7262,7262,1,'Ageing','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-06 09:56:18','2026-04-06 09:56:18','24b19a72-b2d1-4ecc-b18c-49f74c33d120'),
(7263,7263,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:56:18','2026-04-06 09:56:18','303a153b-1a96-4a58-9d48-decd9d22fab9'),
(7266,7266,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-06 09:56:29','2026-04-06 09:56:29','638b1bfa-b419-40b0-b48c-2bbf25f41dd8'),
(7267,7267,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:56:29','2026-04-06 09:56:29','7b9d7e34-7cc0-453f-9cce-53e0d3e80c60'),
(7270,7270,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-06 09:56:41','2026-04-06 09:56:41','4cbee7a7-345a-4acf-96e2-c170a46d80ae'),
(7271,7271,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:56:41','2026-04-06 09:56:41','7567b832-c9fe-441b-a13c-076f00990539'),
(7274,7274,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-06 09:56:53','2026-04-06 09:56:53','19c4859c-e460-4382-b731-91ab142ccea3'),
(7275,7275,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:56:53','2026-04-06 09:56:53','d2a2139a-7b87-4ce0-841e-9b12d6673c6f'),
(7278,7278,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-06 09:57:04','2026-04-06 09:57:04','1a1d516a-dfd9-48a3-8dd6-60b33b6b4404'),
(7279,7279,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:57:04','2026-04-06 09:57:04','3ebb47df-c529-4421-abab-21af644f06d4'),
(7282,7282,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[5070]}',1,'2026-04-06 09:57:14','2026-04-06 09:57:14','b2cd663b-0551-408a-b4e8-b738bc12fe4d'),
(7283,7283,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:57:14','2026-04-06 09:57:14','068d39da-a911-4337-af6e-0ac7b2c8eb4d'),
(7286,7286,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6533]}',1,'2026-04-06 09:57:25','2026-04-06 09:57:25','ae48ff88-ff47-463a-8983-8d478c447880'),
(7287,7287,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 09:57:25','2026-04-06 09:57:25','2a2b75a5-ed5a-42f1-9a18-6fd2f8a1edfe'),
(7297,7297,1,'Subtle & Safe','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Subtle & Safe\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">I do not believe in the “frozen” look. I take a thoughtful, conservative approach to treatment planning, because this is what gives the most natural long-term results. Through careful facial assessment and advanced injection techniques, my aim is always to achieve subtle, balanced results. You will still look like yourself, just refreshed, brighter and more confident.</span></p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','b609be1b-1302-4cd5-b6fb-55b24fc51f78'),
(7298,7298,1,'Expert Care','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Expert Care\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Every treatment is personally carried out by me as a GMC-registered doctor with advanced training in facial anatomy and medical aesthetics. I use only UK-licensed, medical-grade products sourced from regulated UK pharmacies and follow careful medical protocols to ensure your safety, comfort and natural results. All prescription treatments are provided only after a full medical consultation to make sure they are safe, appropriate and tailored to you.</span></p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','3b2462fe-ea47-4ec1-ae71-39d8c971f56d'),
(7299,7299,1,'Proven Excellence','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Excellence\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Anti-wrinkle treatment is one of the most established and well-researched treatments in medical aesthetics. I combine this scientific evidence with detailed facial assessment and careful planning so that treatment is tailored to how <i>your</i> face moves, not a one-size-fits-all approach, but a treatment plan designed specifically for you.</p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','0a736a1b-1aef-4f9f-8f29-d718c4107ceb'),
(7300,7300,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','4995e700-d1a3-452f-9129-17624a1efada'),
(7301,7301,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Anti-Wrinkle Injections?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Soften visible signs of ageing with anti-wrinkle treatments designed to keep you looking natural, refreshed and still recognisably you.</span></p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','182803c1-fc90-4846-b927-01e968758cf4'),
(7302,7302,1,'Targeted Results','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Anti-wrinkle injections work by relaxing the facial muscles that create expression lines, such as frown lines, forehead lines and crow’s feet. This allows the skin to smooth and recover over time, softening existing lines and helping to prevent deeper ones from developing. The result is a refreshed, well-rested appearance that still looks completely natural.</span></p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','74a01ca8-b49e-45d1-861a-aabd5c7f7b3b'),
(7303,7303,1,'Subtle & Safe','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Subtle & Safe\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">I do not believe in the “frozen” look. I take a thoughtful, conservative approach to treatment planning, because this is what gives the most natural long-term results. Through careful facial assessment and advanced injection techniques, my aim is always to achieve subtle, balanced results. You will still look like yourself, just refreshed, brighter and more confident.</span></p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','629d9d1f-ae9b-4962-8cb5-b2e40551104d'),
(7304,7304,1,'Expert Care','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Expert Care\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Every treatment is personally carried out by me as a GMC-registered doctor with advanced training in facial anatomy and medical aesthetics. I use only UK-licensed, medical-grade products sourced from regulated UK pharmacies and follow careful medical protocols to ensure your safety, comfort and natural results. All prescription treatments are provided only after a full medical consultation to make sure they are safe, appropriate and tailored to you.</span></p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','8252d65b-4dcd-4a74-8de6-1d35bdaf59b8'),
(7305,7305,1,'Proven Excellence','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Proven Excellence\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Anti-wrinkle treatment is one of the most established and well-researched treatments in medical aesthetics. I combine this scientific evidence with detailed facial assessment and careful planning so that treatment is tailored to how <i>your</i> face moves, not a one-size-fits-all approach, but a treatment plan designed specifically for you.</p>\"}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','5476b4ac-67b7-4522-a7d2-9d8dc7b0bcac'),
(7306,7306,1,'Who Should Consider Anti-Wrinkle Injections?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Anti-Wrinkle Injections?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You have forehead lines, frown lines (the \\\"11s\\\"), or crow\'s feet have become etched into your skin, making you look more tired, stressed, or older than you feel.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are looking to prevent lines from becoming more established, not just correct existing ones. Even when wrinkles are not deeply set, early and carefully planned treatment can help reduce repeated movement and slow the development of deeper lines over time.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You do not want to look \\\"done\\\", you want to look like a refreshed, well-rested version of yourself.</span></li></ul><p> </p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\">You are reassured that your treatment will be carried out by a qualified medical professional, with the training, knowledge, and clinical judgement to deliver safe, natural results.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','ce4ce4aa-4e1b-4a77-8c30-f61cf1d09b68'),
(7307,7307,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"If you are unsure about anything or would like honest advice, I am always happy to help. You are very welcome to get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 13:44:39','2026-04-06 13:44:39','2bbeddab-93d5-4366-838c-a456ba4af975'),
(7308,7308,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-06 13:44:43','2026-04-06 13:44:43','20eb0293-8bb4-432c-8e8a-529d3eaf9eb4'),
(7316,7316,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-06 14:05:30','2026-04-06 14:05:30','bb4dd473-34fa-41b4-9f3e-6d5479b9b261'),
(7317,7317,1,'Why Choose Cryotherapy for Skin Lesions?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Cryotherapy for Skin Lesions?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy is a well-established treatment for many benign skin lesions, including skin tags, warts and moles. Cryotherapy offers a simple and effective medical treatment without the need for surgery or stitches.</span></p>\"}',1,'2026-04-06 14:05:30','2026-04-06 14:05:30','4d808541-cab3-43da-9b1b-9cc7e4b2d3f3'),
(7318,7318,1,'Precision Technology','precision-technology',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Precision Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike traditional liquid nitrogen methods, the advanced CryoIQ pen used in my clinic delivers controlled nitrous oxide at -89°C with millimetre precision. This targeted approach freezes only the unwanted lesion while protecting surrounding healthy skin, reducing the risk of scarring and unwanted permanent skin changes.</span></p>\"}',1,'2026-04-06 14:05:30','2026-04-06 14:05:30','d2ee1ca9-9592-4bad-91d8-ef2ffba4ac3c'),
(7319,7319,1,'What Is Cryotherapy Treatment?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Cryotherapy Treatment?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy is a medical procedure that uses controlled freezing with nitrous oxide to safely destroy unwanted skin lesions, while preserving the surrounding healthy skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the freeze\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy works by freezing fluid within targeted skin lesions, causing the unwanted cells to rupture and die. The beauty of this treatment lies in its precision, where I target only the problem tissue while leaving everything around it completely unharmed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">At my clinic, I use the CryoIQ pen, which delivers nitrous oxide at precisely -89°C. This is very different from the liquid nitrogen spray devices commonly used in many GP surgeries and high-street clinics. The CryoIQ allows far greater control over the depth and spread of the freeze, with millimetre-level precision. This level of accuracy matters because it allows me to treat the lesion effectively while minimising trauma to the surrounding healthy skin, reducing the risk of hypopigmentation, supporting faster healing, and ultimately achieving better cosmetic outcomes.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">During the 5–10 second treatment you will usually feel a brief sharp sting, often described as similar to an elastic band snapping against the skin. The area will turn white (known as <i>frosting</i>) as the cells freeze, before gradually returning to its normal colour. Within 24–48 hours a small protective blister may form, which is a normal and expected part of the healing process. Over the following 7–14 days this will dry into a scab and naturally fall away, revealing fresh pink skin underneath. The most important thing you can do to minimise the risk of scarring is to allow this to heal naturally and avoid picking the area.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4888],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Why doctor-led cryotherapy matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Here is something many people do not realise: cryotherapy is a medical procedure, not a beauty treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skill is not simply in applying cold to the skin, but in understanding <i>what</i> is being treated and <i>whether</i> cryotherapy is the right option. This includes recognising when a lesion appears suitable for treatment, when an alternative approach may be safer, and when referral for further assessment is the most appropriate next step.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Clinical judgement matters. Freeze time, lesion depth, skin type, and the risk of pigmentation change all influence how cryotherapy should be performed. These are decisions that rely on medical training and experience, not just equipment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a practising GP here on the Wirral, I bring over 10 years of clinical experience to every consultation. I take the time to examine your lesion carefully, review your medical history, and explain clearly what cryotherapy can and cannot achieve for your individual concern.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Just as importantly, I know when <i>not</i> to treat — when a lesion needs dermatology referral, when a biopsy may be more appropriate, or when cryotherapy is not the safest option. This clinical judgement is just as important as the treatment itself.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4887],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-06 14:05:30','2026-04-06 14:05:30','c023cb00-93ff-4e6c-99e0-a07c7f7179c2'),
(7320,7320,1,'Who Should Consider Cryotherapy?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Cryotherapy?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have benign skin lesions causing concern - </strong>Skin tags snagging on clothing or jewellery, warts on hands that over-the-counter treatments have failed to remove, milia around the eyes, cherry angiomas you find cosmetically bothersome, or age spots making you feel self-conscious.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want treatment in a clinical setting - </strong>You value having a GMC-registered doctor with the clinical expertise to assess whether cryotherapy is appropriate, treat safely, and advise when further medical review may be needed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want treatment in a clinical setting - </strong>You value having a GMC-registered doctor with the clinical expertise to assess whether cryotherapy is appropriate, treat safely, and advise when further medical review may be needed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of Marionette Lines - Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-06 14:05:30','2026-04-06 14:05:30','32f710ad-0063-4e60-9d46-1fc6db3bf6dc'),
(7321,7321,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 14:05:30','2026-04-06 14:05:30','e035f020-e8ed-49e1-bb18-44938a9b4400'),
(7322,7322,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-06 14:05:35','2026-04-06 14:05:35','51e9d72f-b8db-42e4-a19b-53e1c4fe00f8'),
(7325,7325,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-06 14:05:50','2026-04-06 14:05:50','5bad005f-a074-49b4-b7f9-197b0dc9c533'),
(7326,7326,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 14:05:50','2026-04-06 14:05:50','d1946765-5b20-481d-875f-0729353a36e3'),
(7329,7329,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:41:30','2026-04-06 15:41:30','991f8538-a0ec-46fd-9d61-194c55187a03'),
(7330,7330,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 15:41:30','2026-04-06 15:41:30','7b547aa3-b9e5-40b3-9bfc-38528f37df6e'),
(7331,7331,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:41:33','2026-04-06 15:41:33','6a037656-3e5c-40ca-a973-0cb3bb992d7f'),
(7340,7340,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:44:54','2026-04-06 15:44:54','6dda273d-3052-4ffc-a6bf-e96774ff11de'),
(7341,7341,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">or skin concerns such as acne scarring, fine lines, uneven texture and persistent pigmentation, medical microneedling targets the deeper layers of the skin to stimulate regeneration and renewal beyond what topical treatments alone can achieve.</span></p>\"}',1,'2026-04-06 15:44:54','2026-04-06 15:44:54','1f119e3a-57bf-4422-b7ea-8c580ace359f'),
(7342,7342,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:44:57','2026-04-06 15:44:57','657ad3f7-aebf-444a-85f0-a28e420ab49d'),
(7345,7345,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:45:24','2026-04-06 15:45:24','a7dbb216-53b8-41eb-841c-52994897a0c7'),
(7346,7346,1,'Medical Microneedling Wirral Advanced Skin Regeneration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Medical Microneedling Wirral Advanced Skin Regeneration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led collagen induction therapy | Premium serums: NCTF, Polynucleotides &amp; Exosomes | Treat acne scars, wrinkles &amp; pigmentation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-06 15:45:24','2026-04-06 15:45:24','aaccbad2-2a14-449c-9fdb-80dde3f7169e'),
(7347,7347,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:45:28','2026-04-06 15:45:28','649e5c81-a632-41f3-be5c-f5b3c702bf4e'),
(7349,7349,1,NULL,'__temp_zesjggrjdtfmngtircqnytximfcudwimsons',NULL,NULL,1,'2026-04-06 15:46:17','2026-04-06 15:46:17','69aad0f3-cdbd-42cd-9a8c-3a4a70225e34'),
(7356,7356,1,'True Collagen Induction','true-collagen-induction',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Collagen Induction\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Microneedling works by creating tiny, controlled micro-channels in the skin, which stimulate your body’s natural healing response. This encourages the production of new collagen and elastin - the proteins responsible for keeping skin firm, smooth and resilient - with studies showing collagen levels can increase by up to 400% over time. Rather than just improving the surface, microneedling supports the skin’s own repair processes to strengthen and improve skin quality from within.</p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:49:45','6ca12103-469d-411c-8c9f-2969eaae6d9d'),
(7357,7357,1,'Advanced Serum Technology','advanced-serum-technology',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Advanced Serum Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>What sets medical microneedling apart is the use of advanced treatment serums alongside the ability to work at greater, clinically appropriate depths than standard cosmetic microneedling. As a doctor, I tailor needle depth precisely according to the treatment area, skin thickness and the concern being addressed. This allows carefully selected active ingredients to reach the layers where true skin regeneration takes place.</p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:49:45','5f20e27c-6ac9-482c-a0c2-ca460d732ba6'),
(7358,7358,1,'Treats What Lasers Cannot','treats-what-lasers-cannot',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Lasers Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is suitable for all skin types, including darker skin tones, where some energy-based treatments can carry a higher risk of pigmentation changes. As a non-ablative treatment, it works without removing or destroying tissue, meaning recovery is typically straightforward. Medical microneedling can be used to improve a wide range of concerns.</span></p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:49:45','dbcdd7b8-f089-48fc-9958-3a618d80618f'),
(7359,7359,1,'Medical Precision','medical-precision',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical Precision\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Doctor-led microneedling allows for precise adjustment of needle depth, typically ranging from 0.5 mm to 2.5 mm depending on the treatment area and the concern being addressed. Treatment is performed using strict sterile technique, with carefully selected treatment serums and the clinical expertise to recognise and manage complications should they arise.</p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:49:45','2d7bed4a-364d-4a0c-a935-a53b3c0fa577'),
(7360,7360,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:48:42','2026-04-06 15:48:42','c6ed0042-6a63-4ae2-8be2-1728ad840846'),
(7361,7361,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">or skin concerns such as acne scarring, fine lines, uneven texture and persistent pigmentation, medical microneedling targets the deeper layers of the skin to stimulate regeneration and renewal beyond what topical treatments alone can achieve.</span></p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:48:42','ab3b4726-d46e-4101-ad50-fc6dec9bcef7'),
(7362,7362,1,'True Collagen Induction','true-collagen-induction',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Collagen Induction\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Microneedling works by creating tiny, controlled micro-channels in the skin, which stimulate your body’s natural healing response. This encourages the production of new collagen and elastin - the proteins responsible for keeping skin firm, smooth and resilient - with studies showing collagen levels can increase by up to 400% over time. Rather than just improving the surface, microneedling supports the skin’s own repair processes to strengthen and improve skin quality from within.</p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:48:42','0f63b600-05b5-44e5-be4c-6eac843ad37b'),
(7363,7363,1,'Advanced Serum Technology','advanced-serum-technology',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Advanced Serum Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>What sets medical microneedling apart is the use of advanced treatment serums alongside the ability to work at greater, clinically appropriate depths than standard cosmetic microneedling. As a doctor, I tailor needle depth precisely according to the treatment area, skin thickness and the concern being addressed. This allows carefully selected active ingredients to reach the layers where true skin regeneration takes place.</p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:48:42','274fe195-a88c-4bcd-bf4e-523a5339fa97'),
(7364,7364,1,'Treats What Lasers Cannot','treats-what-lasers-cannot',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Lasers Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is suitable for all skin types, including darker skin tones, where some energy-based treatments can carry a higher risk of pigmentation changes. As a non-ablative treatment, it works without removing or destroying tissue, meaning recovery is typically straightforward. Medical microneedling can be used to improve a wide range of concerns.</span></p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:48:42','68fbcd7e-2247-4cf6-b831-c2095aac349d'),
(7365,7365,1,'Medical Precision','medical-precision',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical Precision\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Doctor-led microneedling allows for precise adjustment of needle depth, typically ranging from 0.5 mm to 2.5 mm depending on the treatment area and the concern being addressed. Treatment is performed using strict sterile technique, with carefully selected treatment serums and the clinical expertise to recognise and manage complications should they arise.</p>\"}',1,'2026-04-06 15:48:42','2026-04-06 15:48:42','01d44233-a7d0-4246-9c06-e42d77bc6e98'),
(7372,7372,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:49:45','2026-04-06 15:49:45','c3bcc7e3-e3a5-4549-b8bc-c5dd6b1ce67f'),
(7373,7373,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">or skin concerns such as acne scarring, fine lines, uneven texture and persistent pigmentation, medical microneedling targets the deeper layers of the skin to stimulate regeneration and renewal beyond what topical treatments alone can achieve.</span></p>\"}',1,'2026-04-06 15:49:45','2026-04-06 15:49:45','8f61957a-fd5f-4144-9f2a-59a26dc5e474'),
(7374,7374,1,'Advanced Serum Technology','advanced-serum-technology',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Advanced Serum Technology\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>What sets medical microneedling apart is the use of advanced treatment serums alongside the ability to work at greater, clinically appropriate depths than standard cosmetic microneedling. As a doctor, I tailor needle depth precisely according to the treatment area, skin thickness and the concern being addressed. This allows carefully selected active ingredients to reach the layers where true skin regeneration takes place.</p>\"}',1,'2026-04-06 15:49:45','2026-04-06 15:49:45','227b5233-9bc0-4dd6-a4b0-29c964789ff5'),
(7375,7375,1,'Treats What Lasers Cannot','treats-what-lasers-cannot',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What Lasers Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is suitable for all skin types, including darker skin tones, where some energy-based treatments can carry a higher risk of pigmentation changes. As a non-ablative treatment, it works without removing or destroying tissue, meaning recovery is typically straightforward. Medical microneedling can be used to improve a wide range of concerns.</span></p>\"}',1,'2026-04-06 15:49:45','2026-04-06 15:49:45','8fdba9ed-8ff1-450c-b36c-7e49fab5cfa0'),
(7376,7376,1,'Medical Precision','medical-precision',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical Precision\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Doctor-led microneedling allows for precise adjustment of needle depth, typically ranging from 0.5 mm to 2.5 mm depending on the treatment area and the concern being addressed. Treatment is performed using strict sterile technique, with carefully selected treatment serums and the clinical expertise to recognise and manage complications should they arise.</p>\"}',1,'2026-04-06 15:49:46','2026-04-06 15:49:46','0dfd5959-e154-447f-b688-eab55423a3fd'),
(7377,7377,1,'True Collagen Induction','true-collagen-induction',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"True Collagen Induction\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Microneedling works by creating tiny, controlled micro-channels in the skin, which stimulate your body’s natural healing response. This encourages the production of new collagen and elastin - the proteins responsible for keeping skin firm, smooth and resilient - with studies showing collagen levels can increase by up to 400% over time. Rather than just improving the surface, microneedling supports the skin’s own repair processes to strengthen and improve skin quality from within.</p>\"}',1,'2026-04-06 15:49:46','2026-04-06 15:49:46','3cf5fb95-1d76-420b-a13d-184a34547f1e'),
(7380,7380,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:53:50','2026-04-06 15:53:50','58cf70b0-b65c-461b-b034-e9b366a6eed6'),
(7381,7381,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">or skin concerns such as acne scarring, fine lines, uneven texture and persistent pigmentation, medical microneedling targets the deeper layers of the skin to stimulate regeneration and renewal beyond what topical treatments alone can achieve.</span></p>\"}',1,'2026-04-06 15:53:50','2026-04-06 15:53:50','e1ad5709-bac6-479a-97c5-fd3f029b3541'),
(7384,7384,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-06 15:54:53','2026-04-06 15:54:53','7a78a6f2-1e3f-4640-b7cc-46dec61a5d1d'),
(7385,7385,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Medical Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">or skin concerns such as acne scarring, fine lines, uneven texture and persistent pigmentation, medical microneedling targets the deeper layers of the skin to stimulate regeneration and renewal beyond what topical treatments alone can achieve.</span></p>\"}',1,'2026-04-06 15:54:53','2026-04-06 15:54:53','6c6274bd-c58f-482d-ab01-d6d29336c490'),
(7390,7390,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-06 20:27:46','2026-04-06 20:27:46','caef46a9-773c-4c43-becd-49daae632486'),
(7391,7391,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Polynucleotides?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon, selected for their close biological compatibility with human skin. They work at a cellular level to support the skin’s natural repair processes, strengthening tissue and improving skin quality from within. This is a regenerative treatment that focuses on restoring skin health, rather than simply treating the surface.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science Behind Cellular Repair\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time I explain polynucleotides to patients, I often see a lightbulb moment. For many people, this treatment offers something that other aesthetic approaches cannot. While many traditional treatments focus on improving visible symptoms, polynucleotides work at a deeper level, supporting one of the key biological drivers of skin ageing: declining cellular function.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As we age, fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid - become less active. This contributes to thinning skin, reduced elasticity, dehydration and the tired, crepey appearance that is often most noticeable around delicate areas such as the under-eyes, where treatment options can be limited.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon. When carefully injected into human tissue, they encourage fibroblasts to become more active, supporting collagen production, improving microcirculation and helping repair cellular DNA damage caused by UV exposure and oxidative stress. By strengthening the skin from within, they also create a healthier foundation, making them an ideal primer before other collagen-stimulating treatments.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4630],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The under-eye area, where many patients choose polynucleotides, is one of the most delicate and technically demanding areas of the face. The skin is extremely thin, the vascular anatomy is complex, and careful assessment and precise technique are essential to minimise risk and achieve the best outcome.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry emergency equipment and hold full professional indemnity insurance for advanced injectable procedures. However, safety is not only about responding to problems; it is about preventing them. That starts with a thorough assessment, correct product choice and precise technique.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess your skin quality, examine the anatomy around the under-eye area and discuss suitability in detail. In some cases, I may recommend alternative or complementary treatments, such as combining polynucleotides with <strong>clinically formulated pHformula skincare</strong> or <strong>microneedling</strong>, to support skin health more holistically.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4628],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr. Rachel made me feel very comfortable and reassured me every step of the way as I was quite anxious. I had no idea what treatments would work for me, but she was very patient and listened to my concerns. She formulated a plan - I\'ve had 3 treatments so far and can really see a difference. She is truly lovely and caring, and her knowledge and bedside manner are second to none. I cannot praise her enough and would definitely recommend her.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Jill\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"J.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-06 20:27:46','2026-04-06 20:27:46','f62cbd65-443e-4f5c-93b6-390d31c907b7'),
(7392,7392,1,'Who Should Consider Polynucleotides?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Polynucleotides?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have under-eye dark circles</strong> caused by thin, translucent skin where underlying blood vessels are visible. Polynucleotides help improve skin thickness and support microcirculation, gradually softening the </span><a href=\\\"link\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"background-color:transparent;color:#000000;\\\">appearance</span></a><span style=\\\"background-color:transparent;color:#000000;\\\"> of these stubborn circles.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey, thinning skin,</strong> especially around the under-eyes, neck or hands. By supporting dermal repair, polynucleotides help improve elasticity and resilience for smoother, stronger skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are experiencing menopausal skin changes</strong> related to declining oestrogen, including thinning, dryness and loss of firmness. Polynucleotides help support the cellular processes that are normally influenced by oestrogen, improving skin quality and resilience over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking long-term improvement in skin quality</strong> rather than short-term cosmetic fixes, with results that develop progressively over 12 weeks as the skin regenerates.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-06 20:27:46','2026-04-06 20:27:46','03a3fd4b-7dfe-4529-ae2b-2989c91d3a5d'),
(7393,7393,1,'Frequently Asked Questions About Polynucleotide Treatment','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Polynucleotide Treatment\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about polynucleotide treatment answered by Dr Rachel.\"}',1,'2026-04-06 20:27:46','2026-04-06 20:27:46','3d9208af-af90-4e55-a889-b258941ecc9e'),
(7394,7394,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 20:27:46','2026-04-06 20:27:46','b05b8442-084e-4035-9d08-ed00f588534a'),
(7395,7395,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-06 20:27:50','2026-04-06 20:27:50','1da1a88d-3e9c-4b5b-a258-1a26871fa073'),
(7401,7401,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-06 20:30:42','2026-04-06 20:30:42','d0cd98b4-3ed7-4c42-8282-36a3a0aad2c6'),
(7402,7402,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-04-06 20:30:42','2026-04-06 20:30:42','ff345e14-1416-4a03-9123-2eb422703552'),
(7403,7403,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £75\"}',1,'2026-04-06 20:30:42','2026-04-06 20:30:42','1e94465c-b1c1-4d42-9fe3-9e104bf6d9ac'),
(7404,7404,1,'Procedure Time','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-regular fa-clock text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Procedure Time\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"60 Minutes\"}',1,'2026-04-06 20:30:42','2026-04-06 20:30:42','e8179c7e-abfc-4a21-ade5-3f1aa7ef7800'),
(7405,7405,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 20:30:42','2026-04-06 20:30:42','800fee5b-2f4e-4830-832e-5790faf6d7a0'),
(7412,7412,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-06 20:50:15','2026-04-06 20:50:15','264a0cd0-8746-45b1-97ff-45b13314d4b8'),
(7413,7413,1,'Why Book a Skin Consultation?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Book a Skin Consultation?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">You have tried the products, followed the trends, and maybe even invested in treatments that did not quite deliver - yet your skin still is not where you want it to be. A skin consultation at Aesthetics By Dr Rachel gives you clarity and a clear way forward using skincare that actually works and reaches where it really needs to go.</span></p>\"}',1,'2026-04-06 20:50:15','2026-04-06 20:50:15','8d5ed897-5e81-4769-b532-b9fd44eac98a'),
(7414,7414,1,'Understand What Bothers You','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Understand What Bothers You\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Your consultation begins in a calm, private setting where I take time to understand how your skin makes you feel and what truly matters to you. I explore your concerns, goals, and medical history in detail, then use advanced skin analysis to look beneath the surface and identify the root causes of your skin issues.</span></p>\"}',1,'2026-04-06 20:50:15','2026-04-06 20:50:15','772b4f7a-e9cd-4005-b744-da43d5444c0c'),
(7415,7415,1,'Test Your Skin\'s Tolerance','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Test Your Skin\'s Tolerance\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">During your consultation, you will receive a pHformula SP Complex sensitivity facial, which is a patented skin sensitivity test designed to assess how reactive your skin truly is. This allows me to understand how your skin responds to different treatment strengths, so we can create protocols that work with your skin biology rather than against it.</span></p>\"}',1,'2026-04-06 20:50:15','2026-04-06 20:50:15','e6b51368-e2dd-4e42-ba39-b61ea30a0741'),
(7416,7416,1,'Get Your Personalised Plan','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Get Your Personalised Plan\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">I create a personalised skin health plan for you, combining clinically formulated pHformula skincare with carefully selected in-clinic treatments. For some patients, this may naturally evolve into a Radiance Collection programme or the Skin Coach Club, providing structured, long-term skin support.</span></p>\"}',1,'2026-04-06 20:50:15','2026-04-06 20:50:15','1dd42489-8641-4c19-a872-cc544ccc9c59'),
(7417,7417,1,'Ongoing Support','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Ongoing Support\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">This is not a one-and-done approach. I provide regular review appointments, adjust treatments as your skin evolves, and offer continuous professional guidance throughout your skin journey. You will always have clear guidance at every stage, helping you feel informed, reassured, and confident in your plan.</span></p>\"}',1,'2026-04-06 20:50:15','2026-04-06 20:50:15','28dd6648-ba6f-4199-85ee-9bf5aa564947'),
(7418,7418,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-06 20:50:18','2026-04-06 20:50:18','da9408f7-8735-4dcb-ae64-b3f9e40688de'),
(7422,7422,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-06 20:53:52','2026-04-06 20:53:52','f4ef9363-6bda-46d1-acdc-180034cdbf6c'),
(7423,7423,1,'Your Comprehensive Skin Consultation','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Your Comprehensive Skin Consultation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A relaxed, in-depth appointment where I explore your concerns, analyse your skin in detail, and create a personalised plan to support meaningful, long-term improvements in your skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your consultation begins with time dedicated to understanding what is bothering you, how your skin makes you feel, and what truly matters to you. Many patients come to me at a point where their confidence is at its lowest - frustrated by persistent concerns such as acne breakouts, scarring, inflamed skin, pigmentation problems, textural irregularities, visible ageing, or skin that feels dull, dry, or fatigued. Skin has a powerful impact on how we see ourselves, and goes far beyond how it looks.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry out a thorough face-to-face assessment, exploring your medical and aesthetic history in detail, because your skin is completely unique,  and your plan going forward should be too. Every recommendation is made with your long-term skin health at the centre, ensuring it is safe, clinically appropriate, and genuinely tailored to you.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Using advanced skin analysis, I look beyond what we can see with the naked eye to assess the deeper layers of your skin, including hydration, pigmentation, congestion, and barrier function. This allows us to identify the root causes of your concerns, choose the right treatments in the right order, and monitor your progress over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">From here, I create a personalised plan designed specifically for your skin. For some patients, this develops into ongoing, structured support through the Skin Coach Club, while others choose a Radiance Collection programme - both providing clear direction, regular reviews, and a strategic long-term approach to skin health. I take time to explain the science behind each option, expected outcomes, and realistic timeframes, so you feel informed, confident, and fully in control throughout your journey.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GP, I approach skin through a medical lens - diagnosing concerns accurately, recognising when symptoms require medical input, and calibrating treatments safely across all skin tones. I understand contraindications, inflammatory pathways, and how to work with skin biology rather than against it.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I commonly support patients struggling with acne and scarring, stubborn pigmentation, dull or fatigued skin, visible ageing changes, and sensitive or compromised skin barriers.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I partner with pHformula for both home skincare and in-clinic treatments because their approach is firmly science-led and evidence-based. Their patented technologies are designed to deliver active ingredients precisely to where they are needed within the skin, supporting controlled renewal and barrier health rather than aggressively stripping the skin back. This precision-led approach produces consistent, meaningful results - and is a system I trust clinically and use myself.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When it comes to your skin, diagnostic accuracy and formulation quality matter. You deserve informed medical guidance, not guesswork.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4948],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-06 20:53:52','2026-04-06 20:53:52','d6281cba-feb0-4a75-842d-ba73757bc659'),
(7424,7424,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-06 20:53:55','2026-04-06 20:53:55','8507e0d0-be97-4da5-8686-8db92dccdcb0'),
(7429,7429,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-06 20:58:45','2026-04-06 20:58:45','db363e62-ea30-4374-9ad8-ab724ced7d24'),
(7430,7430,1,'Why Choose Skin Boosters?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Skin Boosters?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When skin looks dull or tired despite high-quality skincare, when dehydration lines are becoming more noticeable, or when the neck and lower face begin to show crepey texture, skin boosters offer a deeper level of support. By delivering hydration directly into the dermis and stimulating collagen production, skin boosters improve skin quality from within in a way that topical products simply cannot achieve.</span></p>\"}',1,'2026-04-06 20:58:45','2026-04-06 20:58:45','4f6b3d9a-faf5-45a5-8155-4f78a0482487'),
(7431,7431,1,'Quality, Not Volume','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Quality, Not Volume\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike dermal fillers, which are designed to add structure and shape, skin boosters focus on improving skin quality, texture and radiance without altering facial features. They are ideal for patients seeking healthy, hydrated, glowing skin rather than volumising enhancement. Your face remains entirely yours, just fresher, smoother and more luminous. This reflects my philosophy that the best results should look effortless and completely natural.</span></p>\"}',1,'2026-04-06 20:58:45','2026-04-06 20:58:45','f586a52e-bda1-4da8-96f1-1a3384ee1dd3'),
(7432,7432,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters are injectable treatments that deliver hyaluronic acid directly into the dermis to improve skin quality from within. By providing deep, long-lasting hydration and supporting bio-remodelling processes, they help enhance luminosity, elasticity and overall skin health in a way that topical skincare alone cannot achieve.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Skin Redensification\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When patients tell me they have tried countless high-street and luxury serums without seeing real change, I explain a simple truth: most cosmetic skincare is designed to work primarily at the surface of the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The epidermis is the outer protective layer. Beneath this lies the dermis - the living layer of the skin. This is where fibroblasts produce collagen and elastin, where hydration is retained, and where true skin strength, elasticity and resilience are determined. Many over-the-counter products, regardless of price, are not formulated to meaningfully influence this deeper layer.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters bypass this limitation entirely. Using ultra-fine needles or cannula, I deliver non-cross-linked hyaluronic acid directly into the dermis through a series of micro-injections distributed evenly across the treatment area. This allows hydration and bio-remodelling to take place exactly where skin quality is determined.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is also what differentiates skin boosters from dermal fillers. Fillers use cross-linked hyaluronic acid designed to add structure and volume. Skin boosters use non-cross-linked hyaluronic acid that disperses throughout the dermis, attracting water, improving skin density and supporting collagen and elastin production without altering facial shape.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why Doctor-Led Matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;\\\">Skin booster treatments may appear straightforward, but delivering hundreds of precise micro-injections across the face requires detailed anatomical knowledge, clinical judgement and meticulous technique. The difference between excellent outcomes and avoidable complications lies in medical expertise.</span></p><p> </p><p><span style=\\\"background-color:transparent;\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess skin quality, hydration levels, barrier function and overall skin health, review relevant medical history and medications, and determine whether skin boosters are truly the most appropriate option.</span></p><p> </p><p><span style=\\\"background-color:transparent;\\\">In some cases, patients who believe they need skin boosters may benefit more from <strong>polynucleotides</strong> or biostimulators like <strong>JULAINE™ </strong>to support cellular regeneration. Others may require <strong>dermal fillers</strong> to address structural volume loss, or <strong>clinical-grade skincare like pHformula</strong> to optimise the skin barrier before injectable treatment. Making these distinctions requires medical expertise, experience and clinical judgement.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4538],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I am new to treatment an have only had a few meetings / treatments with Dr Rachel but I am really pleased with everything so far. Dr Rachel is very knowledgeable, professional and friendly. She makes you feel very comfortable and confident in her ability to treat. I am looking forward to further visits.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lisa Walker\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.W.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-06 20:58:45','2026-04-06 20:58:45','569dea01-5a44-4183-88df-dd346b899b6b'),
(7433,7433,1,'Who Should Consider Skin Boosters?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Skin Boosters?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your skin looks dull and lacks radiance </strong>despite consistent skincare use, and you are seeking a healthier, more </span><a href=\\\"sadasdasd\\\"><span style=\\\"background-color:transparent;color:#000000;\\\">luminous</span></a><span style=\\\"background-color:transparent;color:#000000;\\\"> appearance where make-up feels optional.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have fine dehydration lines</strong> across your face that create a tired appearance and are not caused by muscle movement, meaning they will not improve with anti-wrinkle treatments.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your neck shows crepey texture,</strong> an area especially prone to dehydration and sun-related skin changes.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your hands appear thinner, </strong>with more visible veins, and you would like to improve skin smoothness and overall quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are interested in prevention, not just correction</strong> and are in your late 20s or early 30s, using skin boosters proactively to maintain skin health before more significant ageing develops.</span></p><p> </p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-06 20:58:45','2026-04-06 20:58:45','c84726a8-1a1e-429e-a603-ae6ebac9f893'),
(7434,7434,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-06 20:58:49','2026-04-06 20:58:49','acbd8ad5-b908-4d13-a5d7-a7dcecb1ffea'),
(7444,7444,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','b5b0d2bf-ee0b-428b-ae44-33e481690a63'),
(7445,7445,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"/contacts\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','235e8092-0362-42e3-abfa-2845501df255'),
(7446,7446,1,'Why Choose Sunekos Eye Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Sunekos Eye Treatment?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:#333333;\\\">The eye area is one of the most common concerns that brings patients to clinic. Persistent dark circles, fine lines and thinning, crepey skin can make you look tired even when you feel well.</span></p>\"}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','4c9a0e5c-bdc7-476b-a715-01340eff2ac5'),
(7447,7447,1,'Patented Non-Volumising Formula','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-dna text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Patented Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Unlike traditional fillers that add volume, Sunekos focuses on improving skin quality. Its patented formula combines hyaluronic acid with a precise blend of amino acids to support the skin’s natural repair processes and collagen production, helping the under-eye area look smoother, firmer, and more refreshed over time.</span></p>\"}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','8f118032-51e6-4a44-a1be-4871f6b3ecee'),
(7448,7448,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-magnifying-glass text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Dark circles often develop because the under-eye skin becomes thinner and more fragile over time. Sunekos helps strengthen and improve skin quality around the eye, supporting collagen and elastin so the area looks smoother, healthier, and less tired.</span></p>\"}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','a6d0dbc9-dc22-4c1f-abea-a27872f9f67c'),
(7449,7449,1,'Gentle Yet Effective','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Sunekos is specifically designed for the delicate under-eye area, making it suitable even for thin or sensitive skin. Its carefully balanced formula supports collagen and elastin production, helping to improve skin strength, smoothness, and resilience over time.</span></p>\"}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','60466aae-02ce-4884-8216-705662c32129'),
(7450,7450,1,'Natural, Subtle Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-spa\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"color:#333333;\\\">Results develop gradually over the course of treatment as your own collagen and elastin production is supported. There is no sudden change and nothing that looks obvious or overdone. Instead, the under-eye area appears fresher, more rested, and naturally brighter, while you continue to look completely like yourself.</span></p>\"}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','749c893e-dff7-4b64-8441-bf928787c41e'),
(7451,7451,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is an advanced injectable treatment developed in Italy, designed to improve skin quality in the delicate under-eye area. Its patented combination of hyaluronic acid and amino acids supports collagen and elastin, helping to improve brightness, texture, and firmness without adding volume. This makes it ideal for patients seeking subtle, natural-looking improvement in skin quality.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers frequently struggle in this region because they aim to replace volume where volume is not always the issue. In many patients, the concern is skin quality rather than structural loss. Adding volume to fragile tissue can lead to puffiness, product visibility through thin skin, a bluish Tyndall effect, migration and an unnatural appearance. Sunekos Performa takes a fundamentally different approach.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[3957],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[3956],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','b6e4f4b8-2557-49dc-81ab-5977d2d999a3'),
(7452,7452,1,'Who Should Consider Sunekos Eye Treatment?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><i>Who Should Consider Sunekos Eye Treatment?</i></h2><h2> </h2><p><span style=\\\"color:#333333;\\\">Sunekos Performa is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through regeneration of skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"color:hsl(208,29%,19%);\\\"><span>This treatment may be suitable if you:</span></span></h3><h3> </h3><ul><li><span style=\\\"color:#333333;\\\">Have hereditary dark circles related to thin under-eye skin, where underlying blood vessels are more visible.</span></li><li><span style=\\\"color:#333333;\\\">Notice crepey under-eye texture that makes the area appear tired or aged.</span></li><li><span style=\\\"color:#333333;\\\">Have mild hollowing but are concerned about puffiness, product visibility, or a bluish tint under the eyes with tear trough filler.</span></li><li><span style=\\\"color:#333333;\\\">Feel they have a perpetually tired appearance despite adequate sleep.</span></li><li><span style=\\\"color:#333333;\\\">Are considering preventative treatment in their 30s–40s to support under-eye skin quality before more significant ageing changes develop.</span></li><li><span style=\\\"background-color:transparent;\\\">Are not suitable for tear trough filler due to their anatomy, previous experiences, or a preference for non-volumising treatments.</span></li></ul><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-06 21:12:07','2026-04-06 21:12:07','5b60202e-3896-4e73-b8fc-269e7d80eee7'),
(7453,7453,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-06 21:12:10','2026-04-06 21:12:10','0ad6efe4-0ab8-45b8-ae8b-73b4d751095c'),
(7465,7465,1,'Bespoke, Intelligent Formulations','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Bespoke, Intelligent Formulations\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The true power of professional chemical treatments lies not simply in strength, but in precision. I have an extensive range of clinically proven acids and active ingredients available, allowing me to tailor each treatment to your specific skin concerns. Different combinations of AHAs, BHAs, TCA and targeted regenerative ingredients can be selected to address acne, pigmentation, redness, textural irregularities and visible ageing.</span></p>\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','eb1be30d-638f-40a3-ab2a-d256b303eba5'),
(7466,7466,1,'Treats What High-Street Skincare Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What High-Street Skincare Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">There are some skin concerns that even the most expensive over-the-counter skincare cannot fully address. Stubborn pigmentation that does not fade. Active acne that requires true pore decongestion. Post-inflammatory pigmentation left behind after breakouts. Fine lines formed through years of cumulative sun exposure. This is where professional skin treatments can safely and effectively take your results further.</span></p>\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','2abad69c-a7a8-4892-9713-d83df33e6050'),
(7467,7467,1,'Medical-Grade Safety','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Safety\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing should never be rushed or formulaic. As a doctor, I carefully assess your medical history, skincare, medications and Fitzpatrick skin type before selecting the most appropriate treatment. This is especially important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Careful product selection, controlled application and appropriate aftercare ensure your treatment is not only effective, but safe, measured and tailored to your skin.</span></p>\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','2a3fd00c-567e-44bb-9217-0687b73991b9'),
(7468,7468,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','20f1d2ec-8159-43e1-9ce0-2374e1115163'),
(7469,7469,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','a7f76332-022c-45c4-b7c8-86e9efe5141e'),
(7470,7470,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £135\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','971b4665-865f-4dc7-bdf3-749132d39efd'),
(7471,7471,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">If your skin looks dull or congested, if pigmentation refuses to fade, or if fine lines and acne scarring are beginning to affect your confidence, chemical peels can offer a level of skin renewal that topical products alone simply cannot achieve. By accelerating cell turnover and stimulating deeper regeneration, professional chemical resurfacing treatments improve clarity, smooth texture, brighten uneven tone and restore luminosity. The result is skin that looks fresher, healthier and revitalised.</span></p>\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','ac23e6a5-5964-41b6-a387-17508546bb25'),
(7472,7472,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-syringe\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Accelerated Cellular Renewal\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Professional chemical peels use carefully selected acids to gently loosen and remove the build-up of dead, damaged skin cells on the surface. By accelerating your skin’s natural renewal process, fresher, brighter skin is revealed while deeper layers are stimulated to regenerate. This controlled resurfacing not only improves texture and clarity, but also supports collagen production beneath the surface. </span></p>\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','37f2869b-57ec-4276-b30b-b95927bdff32'),
(7473,7473,1,'Bespoke, Intelligent Formulations','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-shield-heart\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Bespoke, Intelligent Formulations\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The true power of professional chemical treatments lies not simply in strength, but in precision. I have an extensive range of clinically proven acids and active ingredients available, allowing me to tailor each treatment to your specific skin concerns. Different combinations of AHAs, BHAs, TCA and targeted regenerative ingredients can be selected to address acne, pigmentation, redness, textural irregularities and visible ageing.</span></p>\"}',1,'2026-04-06 21:26:55','2026-04-06 21:26:55','ba5ea808-9c9a-4a58-bd40-08b38421bd84'),
(7474,7474,1,'Treats What High-Street Skincare Cannot','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-user-doctor\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Treats What High-Street Skincare Cannot\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">There are some skin concerns that even the most expensive over-the-counter skincare cannot fully address. Stubborn pigmentation that does not fade. Active acne that requires true pore decongestion. Post-inflammatory pigmentation left behind after breakouts. Fine lines formed through years of cumulative sun exposure. This is where professional skin treatments can safely and effectively take your results further.</span></p>\"}',1,'2026-04-06 21:26:56','2026-04-06 21:26:56','de9ba721-7c8e-493a-92d0-471fc76e6810'),
(7475,7475,1,'Medical-Grade Safety','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Medical-Grade Safety\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing should never be rushed or formulaic. As a doctor, I carefully assess your medical history, skincare, medications and Fitzpatrick skin type before selecting the most appropriate treatment. This is especially important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Careful product selection, controlled application and appropriate aftercare ensure your treatment is not only effective, but safe, measured and tailored to your skin.</span></p>\"}',1,'2026-04-06 21:26:56','2026-04-06 21:26:56','ec95dbe0-95c1-4ccb-b0ef-99d19d177226'),
(7476,7476,1,'What Is Chemical Resurfacing?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Chemical Resurfacing?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often referred to as advanced chemical peels, chemical resurfacing treatments go beyond traditional exfoliation to deliver deeper, regenerative skin correction. Chemical resurfacing is a medically controlled skin regeneration treatment that uses carefully formulated acids and active ingredients to stimulate renewal within your skin. Rather than simply exfoliating the surface, resurfacing treatments work by activating cellular turnover, improving skin function and encouraging collagen production in a measured, targeted way. </span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When most people think of chemical peels, they often picture visible peeling and surface exfoliation. In reality, the most advanced treatments I offer go far beyond traditional peels. I work with pHformula to provide advanced chemical resurfacing - a controlled, regenerative approach that stimulates cellular renewal without the need for aggressive surface damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skin naturally renews itself over approximately 28–40 days, a process that slows with age, inflammation and environmental stress. Rather than simply removing the outer layer, pHformula resurfacing treatments activate specific renewal pathways within the skin while preserving barrier integrity. This is what makes pHformula fundamentally different.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These treatments combine carefully calibrated acids with regenerative active ingredients in balanced formulations. Instead of relying purely on strength, they use controlled delivery systems and synergistic actives to initiate correction at a cellular level.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4375],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led chemical peel matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Chemical peels may appear straightforward, but the difference between excellent results and complications lies in clinical judgement. As a GMC-registered GP, I approach your skin with medical insight as well as aesthetic expertise. I assess your Fitzpatrick skin type accurately, identify contraindications such as active infection or recent isotretinoin use, and evaluate your skin’s healing capacity before recommending treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is particularly important for patients with darker skin tones, where the risk of post-inflammatory hyperpigmentation must be carefully managed. Appropriate preparation, correct product selection and conservative, intelligent treatment planning are essential to achieving improvement without triggering unwanted pigmentation.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Precision during treatment is essential. Acid selection, application technique, exposure time and skin response are all carefully monitored throughout your treatment. Rather than chasing visible peeling, I assess your skin in real time, adjusting the treatment to optimise regeneration while protecting and strengthening your skin barrier.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4372],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I recently had an aesthetic treatment and could not be more thrilled with the results. I appreciated the honesty, attention to detail, and genuine care for achieving natural-looking results. I highly recommend Dr Rachel to anyone considering aesthetic treatments.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lindsay Doolan\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.D.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-06 21:26:56','2026-04-06 21:26:56','d7a13289-dfcd-4674-9de7-375e09e36f7e'),
(7477,7477,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Who Should Consider Chemical Resurfacing?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if</span></span><span style=\\\"color:hsl(0,0%,20%);\\\"><span>:</span></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have stubborn pigmentation</strong> such as melasma, sun spots and post-inflammatory hyperpigmentation that skincare alone has not improved.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You struggle with acne or congestion</strong> and require deeper clinical-grade treatment to help clear pores and calm inflammation. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are noticing early ageing changes </strong>such as fine lines, sun damage and dullness, and would like to support collagen and healthier skin renewal.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Your skin feels rough or uneven</strong> and you want smoother, brighter skin on which makeup sits beautifully.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have acne scarring</strong> and would benefit from gradual TCA resurfacing as part of a structured treatment course.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want to maintain healthy, radiant skin</strong> and include regular light peels within your personalised Radiance Collection programme.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-06 21:26:56','2026-04-06 21:26:56','02d63d1a-727d-45d6-819f-76fc95e0651f'),
(7478,7478,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-06 21:26:56','2026-04-06 21:26:56','6e4d7f8c-fa60-4390-aee7-709e421ef79c'),
(7479,7479,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-06 21:26:59','2026-04-06 21:26:59','adc9282b-325f-40ad-b05e-071d5b88c3ef'),
(7482,7482,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-07 08:18:03','2026-04-07 08:18:03','0da0277c-38d7-4da4-aad9-1a2794f4992f'),
(7483,7483,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Not all acne leaves scars, but when inflammation runs deeper in the skin it can sometimes leave lasting changes in texture. Understanding the type of acne scarring present is an important first step, as different scar patterns often need different treatment approaches.</p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are the most common type of atrophic acne scar, accounting for around 60-70% of cases. They appear as narrow, deep, V-shaped indentations that extend into the deeper layers of the skin. They often resemble enlarged pores or small puncture marks.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Ice pick scars are usually less than 2 mm wide, but their depth makes them among the most challenging acne scars to treat. They are more common in areas of the face where the skin is thinner, such as the forehead and upper cheeks and tend to respond best to treatments that work deeper within the skin, rather than surface-level resurfacing alone. Ice pick scars are one of the more challenging types of acne scars to treat.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined, sharp edges and a relatively flat base. These scars typically sit 0.1–0.5 mm below the surrounding skin, giving a pitted appearance similar to chickenpox scarring.\\n \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nRolling scars make up around 15–25% of atrophic acne scars. They are wider than ice pick or boxcar scars, typically 4–5 mm or more across, with gently sloping edges that give the skin an uneven, wave-like appearance. Rolling scars develop when fibrous bands of scar tissue form beneath the skin, tethering the surface to deeper structures and pulling it downward.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars, which are depressed. They develop when the body mounts an overactive repair response during healing and produces excess collagen and fibrous tissue at the site of an acne lesion.\\n \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nMost people with acne scarring have a combination of different scar types rather than just one. It is common to see ice pick scars on the cheeks, boxcar scars on the temples, and rolling scars across the lower face. Because each scar type behaves differently and responds to different treatments, a thorough assessment is essential.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-07 08:18:03','2026-04-07 08:18:03','adbd4975-c1a1-41fb-8cfa-88a6f23628b7'),
(7486,7486,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-07 09:16:09','2026-04-07 09:16:09','09beeaea-625a-461e-90c6-4fcab004f9cc'),
(7487,7487,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Not all acne leaves scars, but when inflammation runs deeper in the skin it can sometimes leave lasting changes in texture. Understanding the type of acne scarring present is an important first step, as different scar patterns often need different treatment approaches.</p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span></h3><p> </p><p>Ice pick scars are the most common type of atrophic acne scar. They appear as narrow, deep indentations that extend into the skin, often looking like enlarged pores or small puncture marks. Although usually less than 2 mm wide, their depth can make them more challenging to treat.</p><p> </p><p>They are often seen in areas where the skin is thinner, such as the forehead and upper cheeks, and tend to respond best to treatments that work deeper within the skin rather than surface resurfacing alone.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span></h3><p> </p><p>Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined edges and a relatively flat base, giving the skin a pitted appearance similar to chickenpox scarring. They are usually shallow to medium in depth and often respond well to collagen-stimulating treatments.</p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span></h3><p> </p><p>Rolling scars make up around 15–25% of atrophic acne scars. They appear as wider depressions with gently sloping edges, giving the skin an uneven or wave-like texture. They develop when fibrous bands form beneath the skin, pulling the surface downwards, and often respond best to treatments that help stimulate collagen and release this tethering.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span></h3><p> </p><p>Hypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars which appear as indentations. They develop when the skin produces excess collagen during healing, resulting in thicker areas of scar tissue. These scars are more common on the jawline, chest and back, and often require a different treatment approach from indented scars. </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span></h3><p> </p><p>Most people with acne scarring have a mixture of different scar types rather than just one. It is common to see ice pick, boxcar and rolling scars affecting different areas of the face at the same time. Because each type responds differently to treatment, careful assessment is essential when deciding the best approach.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-07 09:16:09','2026-04-07 09:16:09','46b69d92-e9ad-4e83-98d2-a93b844ea297'),
(7488,7488,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-07 09:16:12','2026-04-07 09:16:12','cb974598-11a9-42ba-8c68-363640041c00'),
(7491,7491,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-07 09:17:32','2026-04-07 09:17:32','5caebd58-7f68-4045-872c-1d67c25fd65f'),
(7492,7492,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Not all acne leaves scars, but when inflammation runs deeper in the skin it can sometimes leave lasting changes in texture. Understanding the type of acne scarring present is an important first step, as different scar patterns often need different treatment approaches.</p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><strong>Atrophic Scars</strong></p><p> </p><p>These are the most common type of acne scars and appear as indentations in the skin caused by loss of collagen during healing. They are usually divided into three main types: ice pick, boxcar and rolling scars.</p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span></h3><p> </p><p>Ice pick scars are the most common type of atrophic acne scar. They appear as narrow, deep indentations that extend into the skin, often looking like enlarged pores or small puncture marks. Although usually less than 2 mm wide, their depth can make them more challenging to treat.</p><p> </p><p>They are often seen in areas where the skin is thinner, such as the forehead and upper cheeks, and tend to respond best to treatments that work deeper within the skin rather than surface resurfacing alone.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span></h3><p> </p><p>Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined edges and a relatively flat base, giving the skin a pitted appearance similar to chickenpox scarring. They are usually shallow to medium in depth and often respond well to collagen-stimulating treatments.</p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span></h3><p> </p><p>Rolling scars make up around 15–25% of atrophic acne scars. They appear as wider depressions with gently sloping edges, giving the skin an uneven or wave-like texture. They develop when fibrous bands form beneath the skin, pulling the surface downwards, and often respond best to treatments that help stimulate collagen and release this tethering.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span></h3><p> </p><p>Hypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars which appear as indentations. They develop when the skin produces excess collagen during healing, resulting in thicker areas of scar tissue. These scars are more common on the jawline, chest and back, and often require a different treatment approach from indented scars. </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span></h3><p> </p><p>Most people with acne scarring have a mixture of different scar types rather than just one. It is common to see ice pick, boxcar and rolling scars affecting different areas of the face at the same time. Because each type responds differently to treatment, careful assessment is essential when deciding the best approach.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-07 09:17:32','2026-04-07 09:17:32','f6f44dc7-7d9f-421c-b8ca-81594ebc2dca'),
(7495,7495,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-07 09:17:53','2026-04-07 09:17:53','34463e0c-c79b-4a97-8ed7-b33450061c35'),
(7496,7496,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Not all acne leaves scars, but when inflammation runs deeper in the skin it can sometimes leave lasting changes in texture. Understanding the type of acne scarring present is an important first step, as different scar patterns often need different treatment approaches.</p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><strong>Atrophic Scars</strong></h3><p> </p><p>These are the most common type of acne scars and appear as indentations in the skin caused by loss of collagen during healing. They are usually divided into three main types: ice pick, boxcar and rolling scars.</p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span></h3><p> </p><p>Ice pick scars are the most common type of atrophic acne scar. They appear as narrow, deep indentations that extend into the skin, often looking like enlarged pores or small puncture marks. Although usually less than 2 mm wide, their depth can make them more challenging to treat.</p><p> </p><p>They are often seen in areas where the skin is thinner, such as the forehead and upper cheeks, and tend to respond best to treatments that work deeper within the skin rather than surface resurfacing alone.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span></h3><p> </p><p>Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined edges and a relatively flat base, giving the skin a pitted appearance similar to chickenpox scarring. They are usually shallow to medium in depth and often respond well to collagen-stimulating treatments.</p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span></h3><p> </p><p>Rolling scars make up around 15–25% of atrophic acne scars. They appear as wider depressions with gently sloping edges, giving the skin an uneven or wave-like texture. They develop when fibrous bands form beneath the skin, pulling the surface downwards, and often respond best to treatments that help stimulate collagen and release this tethering.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span></h3><p> </p><p>Hypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars which appear as indentations. They develop when the skin produces excess collagen during healing, resulting in thicker areas of scar tissue. These scars are more common on the jawline, chest and back, and often require a different treatment approach from indented scars. </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span></h3><p> </p><p>Most people with acne scarring have a mixture of different scar types rather than just one. It is common to see ice pick, boxcar and rolling scars affecting different areas of the face at the same time. Because each type responds differently to treatment, careful assessment is essential when deciding the best approach.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-07 09:17:53','2026-04-07 09:17:53','31597346-3cfb-4434-ace8-8509c6568b9e'),
(7499,7499,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-07 09:18:17','2026-04-07 09:18:17','ff044def-40bb-47ef-81b6-332d1fa28886'),
(7500,7500,1,'Types of Acne Scars','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne Scars\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Not all acne leaves scars, but when inflammation runs deeper in the skin it can sometimes leave lasting changes in texture. Understanding the type of acne scarring present is an important first step, as different scar patterns often need different treatment approaches.</p><p> </p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>Atrophic Scars</h3><p> </p><p>These are the most common type of acne scars and appear as indentations in the skin caused by loss of collagen during healing. They are usually divided into three main types: ice pick, boxcar and rolling scars.</p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Ice Pick Scars</span></h3><p> </p><p>Ice pick scars are the most common type of atrophic acne scar. They appear as narrow, deep indentations that extend into the skin, often looking like enlarged pores or small puncture marks. Although usually less than 2 mm wide, their depth can make them more challenging to treat.</p><p> </p><p>They are often seen in areas where the skin is thinner, such as the forehead and upper cheeks, and tend to respond best to treatments that work deeper within the skin rather than surface resurfacing alone.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Boxcar Scars</span></h3><p> </p><p>Boxcar scars account for around 20–30% of atrophic acne scars. They appear as round or oval depressions with clearly defined edges and a relatively flat base, giving the skin a pitted appearance similar to chickenpox scarring. They are usually shallow to medium in depth and often respond well to collagen-stimulating treatments.</p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6961],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Rolling Scars</span></h3><p> </p><p>Rolling scars make up around 15–25% of atrophic acne scars. They appear as wider depressions with gently sloping edges, giving the skin an uneven or wave-like texture. They develop when fibrous bands form beneath the skin, pulling the surface downwards, and often respond best to treatments that help stimulate collagen and release this tethering.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hypertrophic and Keloid Scars</span></h3><p> </p><p>Hypertrophic and keloid scars are raised scars that sit above the level of the surrounding skin, unlike atrophic scars which appear as indentations. They develop when the skin produces excess collagen during healing, resulting in thicker areas of scar tissue. These scars are more common on the jawline, chest and back, and often require a different treatment approach from indented scars. </p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Scarring</span></h3><p> </p><p>Most people with acne scarring have a mixture of different scar types rather than just one. It is common to see ice pick, boxcar and rolling scars affecting different areas of the face at the same time. Because each type responds differently to treatment, careful assessment is essential when deciding the best approach.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6962]}',1,'2026-04-07 09:18:17','2026-04-07 09:18:17','b7b3ff00-dc74-47ff-99e6-60f06e29033c'),
(7507,7507,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-07 19:20:04','2026-04-07 19:20:04','c7b1ad96-568d-46d1-85cd-6c51fb3dbf50'),
(7508,7508,1,'Acne','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Acne\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>You have tried every cleanser, every serum, and every piece of advice the internet has to offer, yet the breakouts keep coming. They may flare around your chin before your period, or perhaps they have been with you since your teenage years and never truly gone away. Acne is one of the most common skin concerns I see at Aesthetics by Dr Rachel, affecting people well into their twenties, thirties, forties and beyond. Understanding why acne develops is the first step towards finally gaining control of it.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Acne?</i></span></h2><p> </p><p>Acne is a chronic inflammatory skin condition that develops when hair follicles become blocked with oil and dead skin cells. It is not just the occasional spot before a big event. For many people, it is a persistent medical condition that can last for months or even years, affecting not only your skin, but often your confidence and how you feel day to day.</p><p> </p><p>Acne can present in several different ways, and most people experience a mixture of these at the same time. You might notice blackheads, where blocked pores remain open at the surface and appear dark due to a reaction between oil and air, alongside whiteheads, where the blockage sits just beneath the skin as small flesh-coloured bumps. Some breakouts appear as papules, which are small red inflamed spots that can feel sore to touch, while others develop into pustules, the more familiar spots with a visible white or yellow centre caused by inflammation within the pore. In more persistent or severe cases, acne can also form nodules or cysts, which are deeper, more painful lumps beneath the skin that can last for weeks and may increase the risk of scarring if not properly managed.</p><p> </p><p>Acne most commonly affects the face, but it can also develop on the chest, back and shoulders. The location, pattern and type of breakouts you experience often provide important clues about what may be driving your acne. Understanding this is what allows me to recommend treatments that are not just effective, but also appropriate for your skin.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7014]}',1,'2026-04-07 19:20:04','2026-04-07 19:20:04','915d902b-d6e0-455d-9d1b-0fc9a8880d3d'),
(7509,7509,1,'What Causes Acne?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Acne?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Acne is rarely caused by just one factor. Instead, it usually develops due to a combination of internal and external influences affecting oil production, inflammation, skin cell turnover and bacteria within the pores.</p>\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hormonal Fluctuations  </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hormones are one of the most common triggers of acne, which is why many women notice breakouts around their menstrual cycle, during pregnancy, when changing contraception, or during perimenopause. Androgens, the hormones that rise during puberty and fluctuate throughout adult life, can stimulate the sebaceous glands to produce more oil, increasing the likelihood of blocked pores and inflammation.</span></p><h3> </h3><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Stress </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Stress can also play a significant role. When you are under prolonged stress, your body produces higher levels of cortisol. This can increase oil production, worsen inflammation and slow skin healing, which is why many people notice their skin worsening during particularly busy or difficult periods.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Genetics  </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">If your parents experienced acne, you may be more likely to develop it too. Your genes influence how much oil your skin produces, how your immune system responds to bacteria, how easily your pores become blocked, and how prone your skin is to inflammation.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skincare Products and Habits  </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skincare routine can also make a significant difference. Using products that are too heavy or occlusive can contribute to congestion and blocked pores, while overly harsh or stripping cleansers can damage your skin barrier. When this happens, the skin often tries to compensate by producing even more oil, which can unintentionally make breakouts worse rather than better.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7016],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-07 19:20:04','2026-04-07 19:20:04','dfc9887e-4af9-4965-8281-82c2fdb2e407'),
(7510,7510,1,'Types of Acne','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Acne rarely looks the same from one person to another, and most people experience a mixture of different types. Understanding these patterns is why effective treatment needs to be personalised, and why a proper skin assessment is so important before deciding the best way forward.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHormonal acne typically appears on the lower face, around the chin, jaw and neck. It tends to be deeper and more cystic than other types, with painful spots that sit beneath the skin surface for days or weeks.  \\n</p>\\n\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Adult-Onset Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nIf you had clear skin as a teenager but started getting spots in your twenties or later, you have adult-onset acne. This is surprisingly common, affecting up to 54 percent of women over 25. Adult skin behaves differently from teenage skin.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Inflammatory Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThis includes papules, pustules, nodules and cysts. The redness and swelling you see are your immune system responding to bacteria in the blocked pore. Inflammatory acne is more likely to leave marks and scars than non-inflammatory types.  \\n</p>\\n<p>\\n     </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7013],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Comedonal Acne</span></h3><p> </p><p>Comedonal acne is made up mainly of blackheads and whiteheads, with little inflammation. It often affects the forehead, nose and chin and can make the skin look uneven or congested. Although it is usually less painful than inflammatory acne, it can still significantly affect skin texture and confidence, and often forms the starting point for more inflamed breakouts.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Inflammatory Acne </span></h3><p> </p><p>Inflammatory acne includes papules, pustules, nodules and cysts. The redness and swelling you see is caused by your immune system reacting to bacteria within blocked pores. This type of acne is more likely to leave post-inflammatory marks or scarring if not managed appropriately.</p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Acne</span></h3><p> </p><p>Hormonal acne typically appears on the lower face, particularly around the chin and jawline, and sometimes the neck. These breakouts are often deeper and more persistent, forming painful spots beneath the skin that can last for days or even weeks. Many people notice these flare in a predictable pattern, often around their menstrual cycle.</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7015]}',1,'2026-04-07 19:20:04','2026-04-07 19:20:04','04da0a80-bd41-4f54-ad9c-d3fe5821d789'),
(7511,7511,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-07 19:20:08','2026-04-07 19:20:08','e2333e97-1d88-4c29-bace-0cee6554c77b'),
(7512,7512,1,'Can I combine acne scar treatment with other aesthetic treatments?','q-is-the-neck-line-treatment-painful',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and a combination approach often delivers the best results. Treatments such as medical microneedling can be combined with regenerative treatments like polynucleotides to support both collagen production and skin repair. If scarring is accompanied by uneven skin tone, chemical resurfacing can help address pigmentation while other treatments focus on improving texture. Where there are also concerns about overall skin quality, regenerative treatments such as <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">JULÄINE™</a> may be considered to support collagen strength alongside scar-focused treatments. Treatment plans are carefully planned to combine and sequence treatments safely for the best long-term outcome. Often the best results come from improving the overall health of the skin, not just treating the scar itself.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine acne scar treatment with other aesthetic treatments?\"}',1,'2026-04-13 08:46:57','2026-04-13 08:47:48','1eb9d939-2793-4d27-9d12-28eccd144a9f'),
(7524,7524,1,'What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Over-the-counter creams containing ingredients such as retinol or vitamin C can help with mild surface discolouration, but they usually contain lower concentrations of active ingredients. Skincare is important, but it needs to be carefully chosen and used consistently to make a real difference. More established acne scarring involves deeper structural changes that topical products alone cannot reach. Treatments such as medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>microneedling</strong></a> can help stimulate collagen to improve skin texture, while <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>chemical resurfacing</strong></a> supports skin renewal and smoother skin. The most effective approach usually combines the right homecare with appropriate in-clinic treatments. Skincare does much of the daily work, but in-clinic treatments can help create the changes that skincare alone cannot achieve.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','865155b3-25a3-4c69-88b3-c131ce7702f1'),
(7525,7525,1,'Can acne scars get worse over time if left untreated?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars get worse over time if left untreated?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Acne scars do not spread, but their appearance can become more noticeable over time. Natural collagen loss and reduced skin elasticity can make existing scars appear deeper, while sun exposure can worsen surrounding pigmentation and make scarring more visible. Early intervention with collagen-stimulating treatments such as medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">microneedling</a> or regenerative treatments like <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">JULÄINE™</a> can help support skin structure while your skin still has good healing capacity. Addressing any associated pigmentation early can also help prevent discolouration from becoming more persistent. Treating scars earlier often allows for better improvement than waiting until collagen loss progresses.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','4c504add-f511-47ca-ad57-c31c24f4ae3b'),
(7526,7526,1,'Will my acne scars come back after treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will my acne scars come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Treated scars do not return. Once collagen has remodelled and scar tissue has improved, those changes are long-lasting. However, new breakouts in the future can lead to new scarring, which is why it is important to have active acne well-controlled before starting scar treatment and to maintain a good skincare routine afterwards. I may also recommend a longer-term maintenance approach to support your results, which can include periodic skin treatments or collagen-supporting treatments such as JULÄINE™ where appropriate. The goal is not just improvement, but helping your skin stay strong enough to hold those improvements.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','010f9db2-1a22-4608-995c-57244af88f2e'),
(7527,7527,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','fb062ff6-c704-497a-922d-194da88fcd30'),
(7528,7528,1,'Frequently Asked Questions About Acne Scarring','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne Scarring\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne scarring\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','42abe743-26a0-4bb6-844b-4bc1c8ae0794'),
(7529,7529,1,'What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between treating acne scars at an aesthetic clinic versus using over-the-counter scar creams?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Over-the-counter creams containing ingredients such as retinol or vitamin C can help with mild surface discolouration, but they usually contain lower concentrations of active ingredients. Skincare is important, but it needs to be carefully chosen and used consistently to make a real difference. More established acne scarring involves deeper structural changes that topical products alone cannot reach. Treatments such as medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>microneedling</strong></a> can help stimulate collagen to improve skin texture, while <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>chemical resurfacing</strong></a> supports skin renewal and smoother skin. The most effective approach usually combines the right homecare with appropriate in-clinic treatments. Skincare does much of the daily work, but in-clinic treatments can help create the changes that skincare alone cannot achieve.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','fb4bfd9c-b1eb-449a-abca-34f9857ad9fd'),
(7530,7530,1,'Can acne scars get worse over time if left untreated?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars get worse over time if left untreated?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Acne scars do not spread, but their appearance can become more noticeable over time. Natural collagen loss and reduced skin elasticity can make existing scars appear deeper, while sun exposure can worsen surrounding pigmentation and make scarring more visible. Early intervention with collagen-stimulating treatments such as medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">microneedling</a> or regenerative treatments like <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">JULÄINE™</a> can help support skin structure while your skin still has good healing capacity. Addressing any associated pigmentation early can also help prevent discolouration from becoming more persistent. Treating scars earlier often allows for better improvement than waiting until collagen loss progresses.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','b3f6c4d1-3a60-498b-b7cd-3ee18e2ac9fa'),
(7531,7531,1,'Can I combine acne scar treatment with other aesthetic treatments?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine acne scar treatment with other aesthetic treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and a combination approach often delivers the best results. Treatments such as medical microneedling can be combined with regenerative treatments like polynucleotides to support both collagen production and skin repair. If scarring is accompanied by uneven skin tone, chemical resurfacing can help address pigmentation while other treatments focus on improving texture. Where there are also concerns about overall skin quality, regenerative treatments such as <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">JULÄINE™</a> may be considered to support collagen strength alongside scar-focused treatments. Treatment plans are carefully planned to combine and sequence treatments safely for the best long-term outcome. Often the best results come from improving the overall health of the skin, not just treating the scar itself.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','edfdc9f5-16f3-43c0-a480-c76fa0bfb77d'),
(7532,7532,1,'Will my acne scars come back after treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will my acne scars come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Treated scars do not return. Once collagen has remodelled and scar tissue has improved, those changes are long-lasting. However, new breakouts in the future can lead to new scarring, which is why it is important to have active acne well-controlled before starting scar treatment and to maintain a good skincare routine afterwards. I may also recommend a longer-term maintenance approach to support your results, which can include periodic skin treatments or collagen-supporting treatments such as JULÄINE™ where appropriate. The goal is not just improvement, but helping your skin stay strong enough to hold those improvements.</p>\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','b01f6e0a-04fb-474e-a42a-54b720755ea3'),
(7533,7533,1,'Can acne scars be completely removed?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne scars be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Complete removal of acne scars is unlikely, but meaningful improvement is very achievable with the right treatment approach. The degree of improvement depends on factors such as scar type, depth, and how your skin responds to healing. Deep ice pick scars are generally more challenging to treat than shallower rolling scars. I will always give you an honest, realistic assessment during your consultation and talk you through what level of improvement you can expect, so you can make an informed decision about treatment.\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','687d2798-91bf-4bae-b09b-77a8e5e260a3'),
(7534,7534,1,'How long does it take to see results?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Acne scar treatment requires patience, as collagen remodelling is a gradual process that continues for months after treatment. You may start to notice early improvements within a few weeks, but results build progressively over time. The most noticeable improvement typically develops over several months, particularly when treatments are carried out as part of a structured course. Most patients require a series of treatments spaced several weeks apart to achieve the best outcome. During your consultation, I will talk you through expected timelines based on your specific scar type and treatment plan.\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','a72254df-b8a0-4569-a48c-2a4b6a14563b'),
(7535,7535,1,'Do I need to wait until my acne has cleared before treating scars?','do-i-need-to-wait-until-my-acne-has-cleared-before-treating-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do I need to wait until my acne has cleared before treating scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Active acne needs to be brought under good control before starting acne scar treatment. Treating scars while breakouts are still occurring can increase inflammation and lead to new scarring. If you are still experiencing active acne, I can advise on managing this first and then transition you into scar treatment once your skin is more stable. This staged approach helps protect your skin and achieve better long-term results.\"}',1,'2026-04-13 08:55:16','2026-04-13 08:55:16','bd3abad6-2e5c-4958-b622-a885d4a741b9'),
(7536,7536,1,'Is there any downtime after treatment?','is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime varies depending on the treatment used. Some treatments may cause temporary redness, mild sensitivity, or light flaking as the skin heals. Your skin may look pink or feel slightly tender for a short period. Most patients are able to return to normal daily activities quickly, although you may prefer to avoid important social events for a few days after more intensive treatments. I will always talk you through expected downtime in advance, so you can plan around treatment with confidence.\"}',1,'2026-04-13 08:55:17','2026-04-13 08:55:17','04f8c43b-29eb-4526-ad9d-508320480a7c'),
(7537,7537,1,'How many treatments will I need?','how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The number of treatments needed varies depending on the type and severity of your scarring, as well as the level of improvement you would like to achieve. Acne scarring responds far better to a course of treatments than a one-off session, with combination approaches often producing the best overall improvement.\\nDuring your consultation, I will outline a personalised treatment plan based on your skin and scar pattern, and we will review progress as we go. Treatment plans can be adjusted along the way depending on how your skin responds, ensuring the approach remains both effective and appropriate for you.\"}',1,'2026-04-13 08:55:17','2026-04-13 08:55:17','b5e51890-2568-4d0f-9f5e-668480772f3b'),
(7541,7541,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-13 09:13:54','2026-04-13 09:13:54','d32f1bcd-c40e-4a91-94ba-2e27cd11481a'),
(7542,7542,1,'Frequently Asked Questions About Polynucleotide Treatment','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Polynucleotide Treatment\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about polynucleotide treatment answered by Dr Rachel.\"}',1,'2026-04-13 09:13:54','2026-04-13 09:13:54','f6407db7-fa84-4050-8496-124f8ff21ad9'),
(7543,7543,1,'Is there any downtime?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Downtime is usually minimal. You may notice small injection marks and mild swelling for 24-48 hours as the product settles into the skin. Some patients experience temporary under-eye puffiness for a day or two, and occasional bruising can occur. Most people feel comfortable returning to normal activities by the next day. I recommend avoiding strenuous exercise for 24 hours and avoiding makeup for 12-24 hours. If you have an important event coming up, allowing a 1-week buffer is sensible to account for any bruising.</p>\"}',1,'2026-04-13 09:13:54','2026-04-13 09:13:54','c00113ef-7f6a-4e11-bb3e-e9fe23ce007c'),
(7547,7547,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:16:00','2026-04-13 09:16:00','3a060789-6bec-4232-98ff-30eb7e0dc6b1'),
(7548,7548,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-04-13 09:16:00','2026-04-13 09:16:00','84d95e49-de54-49ea-9940-94df915ab26f'),
(7549,7549,1,'Can dermal fillers look natural?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers look natural?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Natural-looking results rely on precise placement, a deep understanding of facial anatomy, and a conservative approach where less really is more. When people think about dermal fillers, they often picture the obvious, overdone results they have seen in the media. What is less often noticed are the many people you pass every day who have had treatment and simply look well rested and refreshed, because the best treatment should be undetectable.</p><p> </p><p>My philosophy is <i><strong>refreshed, never changed</strong></i><strong>.</strong> I am passionate about creating natural, subtle and balanced results that respect your individual anatomy and enhance your unique features. I use carefully measured amounts of filler, placed strategically to restore youthful proportions rather than add unnecessary volume. The aim is always to help you look like yourself on a good day.</p>\"}',1,'2026-04-13 09:16:00','2026-04-13 09:16:00','2f8cce1f-736d-4e62-9725-accd8e59d07e'),
(7553,7553,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:17:20','2026-04-13 09:17:20','0e89e6e4-ede1-4af0-8cef-4c645f3abe7a'),
(7554,7554,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-04-13 09:17:20','2026-04-13 09:17:20','c568fcc3-f6e0-44d8-8695-0a439af79fe1'),
(7555,7555,1,'What is the difference between dermal fillers and anti-wrinkle injections?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between dermal fillers and anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Dermal fillers and anti-wrinkle injections work in different ways and are often used together to achieve the most natural and balanced results.</p><p> </p><p><strong>Dermal fillers</strong> are used to restore volume and structural support where it has gradually reduced over time. They can help improve facial contours, support areas of hollowing or thinning, and also provide hydration within the skin due to their hyaluronic acid content. Results are visible immediately and typically last between 6 and 18 months depending on the area treated.</p><p> </p><p><strong>Anti-wrinkle injections</strong> work differently. Rather than adding volume, they gently relax specific muscles that contribute to expression lines. This helps soften dynamic wrinkles such as frown lines, forehead lines and crow’s feet, while also helping to prevent these lines from becoming deeper over time. Results usually begin to appear within 1–2 weeks and typically last around 3–4 months.</p><p> </p><p>Many patients benefit from a combined approach, using dermal fillers to restore structural support alongside anti-wrinkle treatment to soften movement-related lines. If appropriate, I will always talk this through with you during your consultation and advise on what will best suit your face, your goals and your preference for natural results.</p>\"}',1,'2026-04-13 09:17:20','2026-04-13 09:17:20','0c76eb6f-bc9f-4911-807f-9ad821c808e6'),
(7556,7556,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:18:56','2026-04-13 09:18:56','7e56230a-8ba2-46f6-ae70-7f4b44c4d397'),
(7560,7560,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:21:43','2026-04-13 09:21:43','7f3f52c3-c487-4af8-aeab-1d581ae791eb'),
(7561,7561,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so beautifully. As we move through our 30s, 40s, and beyond, several structural changes occur at the same time. We gradually lose facial volume as the fat that once supported youthful contours depletes and shifts downward. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Collagen production slows, meaning the skin becomes less firm and elastic. The underlying bone structure also changes, particularly through the cheeks and jaw, altering the framework that supports the face. At the same time, levels of hyaluronic acid fall, leading to dehydration and loss of that naturally plump, luminous skin quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In youth, the face is shaped like an inverted triangle — wider and fuller through the cheeks, gently tapering towards the chin. This is often referred to as the <i>triangle of youth</i>. As these age-related changes take place, that triangle gradually reverses. Volume is lost from the mid-face, the lower face becomes heavier, and shadows begin to form where light once reflected smoothly.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">There is something many people are not aware of in the aesthetics industry: dermal fillers are medical devices, yet they are sometimes administered in settings without medical oversight. Dermal filler treatments may look simple, but they involve complex anatomy and carry medical risks that require appropriate training to manage safely.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Your face is complex and highly vascular, and treatments should always be approached with a thorough understanding of facial anatomy and safety. Potential risks can include blocked blood vessels, skin injury, filler migration or unsatisfactory aesthetic outcomes. While some issues are minor, others require urgent medical assessment and treatment. <strong>It is not the syringe that keeps you safe, but the training, anatomy knowledge and clinical judgement of the person holding it.</strong></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered doctor and practising GP, I bring over 10 years of clinical, diagnostic and emergency care experience to every appointment. I have detailed knowledge of facial anatomy and vascular structures, can recognise early signs of complications, and am trained to act quickly using established medical protocols. I also carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">For me, dermal fillers are not simply cosmetic procedures. They are medical treatments that should be performed with the same level of care, planning and safety you would expect in any clinical setting. <strong>Your face is not somewhere to take risks, and choosing the right practitioner is one of the most important decisions you can make.</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-13 09:21:43','2026-04-13 09:21:43','7453c073-a1d1-43e8-b665-ed18dda6ff5a'),
(7564,7564,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:22:47','2026-04-13 09:22:47','915e24c3-10af-45b5-b6fd-e3f9e60b1ecc'),
(7565,7565,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so beautifully. As we move through our 30s, 40s, and beyond, several structural changes occur at the same time. We gradually lose facial volume as the fat that once supported youthful contours depletes and shifts downward. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Collagen production slows, meaning the skin becomes less firm and elastic. The underlying bone structure also changes, particularly through the cheeks and jaw, altering the framework that supports the face. At the same time, levels of hyaluronic acid fall, leading to dehydration and loss of that naturally plump, luminous skin quality.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In youth, the face is shaped like an inverted triangle — wider and fuller through the cheeks, gently tapering towards the chin. This is often referred to as the <i>triangle of youth</i>. As these age-related changes take place, that triangle gradually reverses. Volume is lost from the mid-face, the lower face becomes heavier, and shadows begin to form where light once reflected smoothly.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">There is something many people are not aware of in the aesthetics industry: dermal fillers are medical devices, yet they are sometimes administered in settings without medical oversight. Dermal filler treatments may look simple, but they involve complex anatomy and carry medical risks that require appropriate training to manage safely.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Your face is complex and highly vascular, and treatments should always be approached with a thorough understanding of facial anatomy and safety. Potential risks can include blocked blood vessels, skin injury, filler migration or unsatisfactory aesthetic outcomes. While some issues are minor, others require urgent medical assessment and treatment. <strong>It is not the syringe that keeps you safe, but the training, anatomy knowledge and clinical judgement of the person holding it.</strong></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>GMC-registered doctor</strong></span></a><span style=\\\"color:hsl(0,0%,100%);\\\"> and practising GP, I bring over 10 years of clinical, diagnostic and emergency care experience to every appointment. I have detailed knowledge of facial anatomy and vascular structures, can recognise early signs of complications, and am trained to act quickly using established medical protocols. I also carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">For me, dermal fillers are not simply cosmetic procedures. They are medical treatments that should be performed with the same level of care, planning and safety you would expect in any clinical setting. <strong>Your face is not somewhere to take risks, and choosing the right practitioner is one of the most important decisions you can make.</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-13 09:22:47','2026-04-13 09:22:47','3cb83c04-2da1-44c7-860a-0a38abf890d8'),
(7566,7566,1,'Are dermal fillers safe?','q-is-there-any-downtime-after-treatment',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>When dermal fillers are performed by a properly trained medical professional using approved products, they have a very good safety record. The fillers I use in clinic are made from hyaluronic acid, a substance your body naturally produces, which means true allergic reactions are very uncommon.</p><p> </p><p>The most common side effects are mild and temporary, such as swelling, redness, tenderness or bruising where the injections were placed. These usually settle within a few days.</p><p> </p><p>More serious complications are rare but can happen with any injectable treatment. This is why choosing a medically trained practitioner is important. As a GMC-registered doctor and a member of the Complications in Medical Aesthetics Collaborative (CMAC), I have the detailed anatomical knowledge to minimise risk and the clinical training to recognise and treat complications quickly if they occur. I also carry appropriate emergency medications, including hyaluronidase (an enzyme that can dissolve filler if needed), at every appointment.</p><p> </p><p>Just as importantly, you will always be able to contact me if you have any concerns after your treatment. Care does not end when your appointment finishes. Proper aftercare, follow-up and medical oversight are an essential part of safe aesthetic treatment.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are dermal fillers safe?\"}',1,'2026-04-13 09:23:49','2026-04-13 09:23:54','ccbab4d8-6b10-41cb-9ce2-44feee0e8623'),
(7582,7582,1,'Do dermal fillers hurt?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do dermal fillers hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients find dermal filler treatment more comfortable than they expect. I use ultra-fine needles and careful techniques to minimise discomfort. Some modern dermal fillers contain lidocaine, a local anaesthetic mixed into the gel, which helps numb the area as the product is placed. For more sensitive areas, such as the lips, topical numbing cream can also be applied beforehand. Most patients describe the sensation as a feeling of pressure with the occasional brief pinch. Patient comfort is always a priority, and I will always work at a pace that feels manageable for you.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','4f737439-f8bd-4ca7-a162-6988ce8c4b9b'),
(7583,7583,1,'Will I look swollen or bruised after treatment?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look swollen or bruised after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Some swelling is normal after dermal filler treatment, particularly in areas such as the lips. Swelling often peaks within 24–48 hours and usually settles over the following few days. Some patients experience very little swelling, while others notice more temporary puffiness depending on the area treated and individual healing response. I always take a careful, conservative approach to help keep results natural and minimise unnecessary swelling.</p><p> </p><p>Bruising can also occur, as with any injectable treatment. I use ultra-fine needles and careful techniques to minimise this risk. If bruising does develop, it typically fades within 5–7 days and can usually be covered with makeup after 24 hours.</p><p> </p><p>If you are planning treatment ahead of a special event, I usually recommend allowing around 3–4 weeks so any swelling or bruising has fully settled and results are looking their best.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','4a094272-9d46-489c-996f-90cdeec6eecd'),
(7584,7584,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','308fc2b8-ba0d-42c0-bc02-d8be068116f4'),
(7585,7585,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Doctor-Led Aesthetic Medicine\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','63164175-5d68-4d75-9840-038908b50441'),
(7586,7586,1,'Price','price',NULL,'{\"4c4b22bb-5fe8-416c-8823-615a5318a82f\":\"fa-solid fa-sterling-sign text-base\",\"7b421ddd-f8ff-42a3-8082-c778636c4b86\":\"Price\",\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\":\"From £295\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','b2003978-f087-4de9-94c3-ff25a0e69f6b'),
(7587,7587,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so effectively. As we move through our 30s, 40s and beyond, several structural changes happen at the same time. We gradually lose facial volume as the fat that once supported youthful contours reduces and shifts downwards.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Collagen production also slows, meaning the skin becomes less firm and elastic. The underlying bone structure changes too, particularly through the cheeks and jawline, subtly altering the framework that supports the face. At the same time, levels of hyaluronic acid decline, meaning the skin holds less moisture and can start to look less plump and radiant.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">In youth, the face is often shaped like an inverted triangle, with fullness through the cheeks and gentle tapering towards the chin. This is sometimes called the <i>triangle of youth</i>. As these changes occur, that triangle gradually reverses. Volume is lost from the mid-face, the lower face can appear heavier, and shadows begin to form where light once reflected smoothly. This is often when people notice they look more tired, even when they feel well.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">There is something many people are not aware of in the aesthetics industry: dermal fillers are medical devices, yet they are sometimes administered in settings without medical oversight. Dermal filler treatments may look simple, but they involve complex anatomy and carry medical risks that require appropriate training to manage safely.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Your face is complex and highly vascular, and treatments should always be approached with a thorough understanding of facial anatomy and safety. Potential risks can include blocked blood vessels, skin injury, filler migration or unsatisfactory aesthetic outcomes. While some issues are minor, others require urgent medical assessment and treatment. <strong>It is not the syringe that keeps you safe, but the training, anatomy knowledge and clinical judgement of the person holding it.</strong></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>GMC-registered doctor</strong></span></a><span style=\\\"color:hsl(0,0%,100%);\\\"> and practising GP, I bring over 10 years of clinical, diagnostic and emergency care experience to every appointment. I have detailed knowledge of facial anatomy and vascular structures, can recognise early signs of complications, and am trained to act quickly using established medical protocols. I also carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">For me, dermal fillers are not simply cosmetic procedures. They are medical treatments that should be performed with the same level of care, planning and safety you would expect in any clinical setting. <strong>Your face is not somewhere to take risks, and choosing the right practitioner is one of the most important decisions you can make.</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','7bf7bc26-9995-4087-9e48-aca42da2cab8'),
(7588,7588,1,'Frequently Asked Questions About Dermal Fillers','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dermal Fillers\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Dermal Fillers answered by Dr Rachel.\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','7e5ffbb6-27fb-4c61-b646-4faac8e0f82b'),
(7589,7589,1,'Do dermal fillers hurt?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Do dermal fillers hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients find dermal filler treatment more comfortable than they expect. I use ultra-fine needles and careful techniques to minimise discomfort. Some modern dermal fillers contain lidocaine, a local anaesthetic mixed into the gel, which helps numb the area as the product is placed. For more sensitive areas, such as the lips, topical numbing cream can also be applied beforehand. Most patients describe the sensation as a feeling of pressure with the occasional brief pinch. Patient comfort is always a priority, and I will always work at a pace that feels manageable for you.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','c5beddb1-95f5-401b-b6c0-cee8558b8338'),
(7590,7590,1,'How long do dermal fillers last?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do dermal fillers last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The results from fillers generally last between 6 and 18 months. But, as with all treatments, results vary between individual metabolisms, products used and the area(s) injected. </p><p> </p><p>As a general guide: </p><p><strong>Lips:</strong> 6-9 months (higher movement area metabolises filler faster) </p><p><strong>Cheeks: </strong>12-18 months (lower movement area, deeper placement) </p><p><strong>Jawline/Chin:</strong> 12-18 months </p><p><strong>Nasolabial Folds:</strong> 9-12 months </p><p> </p><p>Your body gradually metabolises hyaluronic acid over time, so results fade naturally and gracefully. With regular, well-planned treatments, many patients find they require less filler over time as skin quality and underlying support improve. When dermal fillers are combined with treatments that target other layers of the skin - such as collagen stimulation or skin-quality therapies - results are often enhanced further, creating a more balanced, longer-lasting rejuvenation rather than relying on volume alone.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','5712c01c-f366-4b23-bdc3-d650ba09daf3'),
(7591,7591,1,'What is the aftercare for dermal fillers?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the aftercare for dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"After dermal filler treatment, aftercare is simple, and most patients return to normal activities straight away. You will be provided with clear, written aftercare instructions, and I remain available should you have any concerns during the healing process.\\nAs a general guide, it is advised to avoid strenuous exercise, alcohol, and excessive heat (such as saunas or steam rooms) for 24-48 hours, and to avoid massaging or applying pressure to the treated areas unless advised. Mild swelling, tenderness, or bruising can occur and usually settle within a few days.\\nYou are encouraged to attend your complimentary 4-week review appointment so we can review your results and make sure you are happy with how everything has settled. If you have any concerns at any point, you are encouraged to get in touch - ongoing support and reassurance are an important part of doctor-led care.\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','48075641-54ac-4822-b74a-aafca1d05eeb'),
(7592,7592,1,'Will I look swollen or bruised after treatment?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I look swollen or bruised after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Some swelling is normal after dermal filler treatment, particularly in areas such as the lips. Swelling often peaks within 24–48 hours and usually settles over the following few days. Some patients experience very little swelling, while others notice more temporary puffiness depending on the area treated and individual healing response. I always take a careful, conservative approach to help keep results natural and minimise unnecessary swelling.</p><p> </p><p>Bruising can also occur, as with any injectable treatment. I use ultra-fine needles and careful techniques to minimise this risk. If bruising does develop, it typically fades within 5–7 days and can usually be covered with makeup after 24 hours.</p><p> </p><p>If you are planning treatment ahead of a special event, I usually recommend allowing around 3–4 weeks so any swelling or bruising has fully settled and results are looking their best.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','c6cb1b42-579d-4537-b533-5bdf1f2714ae'),
(7593,7593,1,'Can dermal fillers look natural?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers look natural?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Natural-looking results rely on precise placement, a deep understanding of facial anatomy, and a conservative approach where less really is more. When people think about dermal fillers, they often picture the obvious, overdone results they have seen in the media. What is less often noticed are the many people you pass every day who have had treatment and simply look well rested and refreshed, because the best treatment should be undetectable.</p><p> </p><p>My philosophy is <i><strong>refreshed, never changed</strong></i><strong>.</strong> I am passionate about creating natural, subtle and balanced results that respect your individual anatomy and enhance your unique features. I use carefully measured amounts of filler, placed strategically to restore youthful proportions rather than add unnecessary volume. The aim is always to help you look like yourself on a good day.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','c93d5619-7c25-45f2-b63b-bdf7f10f4d4a'),
(7594,7594,1,'What is the difference between dermal fillers and anti-wrinkle injections?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between dermal fillers and anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Dermal fillers and anti-wrinkle injections work in different ways and are often used together to achieve the most natural and balanced results.</p><p> </p><p><strong>Dermal fillers</strong> are used to restore volume and structural support where it has gradually reduced over time. They can help improve facial contours, support areas of hollowing or thinning, and also provide hydration within the skin due to their hyaluronic acid content. Results are visible immediately and typically last between 6 and 18 months depending on the area treated.</p><p> </p><p><strong>Anti-wrinkle injections</strong> work differently. Rather than adding volume, they gently relax specific muscles that contribute to expression lines. This helps soften dynamic wrinkles such as frown lines, forehead lines and crow’s feet, while also helping to prevent these lines from becoming deeper over time. Results usually begin to appear within 1–2 weeks and typically last around 3–4 months.</p><p> </p><p>Many patients benefit from a combined approach, using dermal fillers to restore structural support alongside anti-wrinkle treatment to soften movement-related lines. If appropriate, I will always talk this through with you during your consultation and advise on what will best suit your face, your goals and your preference for natural results.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','c3fefd73-1961-413a-a9ed-2580e991088a'),
(7595,7595,1,'Are dermal fillers safe?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are dermal fillers safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>When dermal fillers are performed by a properly trained medical professional using approved products, they have a very good safety record. The fillers I use in clinic are made from hyaluronic acid, a substance your body naturally produces, which means true allergic reactions are very uncommon.</p><p> </p><p>The most common side effects are mild and temporary, such as swelling, redness, tenderness or bruising where the injections were placed. These usually settle within a few days.</p><p> </p><p>More serious complications are rare but can happen with any injectable treatment. This is why choosing a medically trained practitioner is important. As a GMC-registered doctor and a member of the Complications in Medical Aesthetics Collaborative (CMAC), I have the detailed anatomical knowledge to minimise risk and the clinical training to recognise and treat complications quickly if they occur. I also carry appropriate emergency medications, including hyaluronidase (an enzyme that can dissolve filler if needed), at every appointment.</p><p> </p><p>Just as importantly, you will always be able to contact me if you have any concerns after your treatment. Care does not end when your appointment finishes. Proper aftercare, follow-up and medical oversight are an essential part of safe aesthetic treatment.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','e6bf9835-0ae9-406c-bd9c-2747b00a625a'),
(7596,7596,1,'Can dermal fillers be reversed?','can-dermal-fillers-be-reversed',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dermal fillers be reversed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Hyaluronic acid fillers can be dissolved using an enzyme called hyaluronidase if needed. This may be used if you are unhappy with the result, if asymmetry develops, or in the unlikely event of a complication. When required, the filler can usually be broken down within 24-48 hours.\\nThis reversibility is one of the key safety advantages of hyaluronic acid fillers compared with permanent or semi-permanent products, meaning you are never committed to a result that does not feel right for you.\\nIn practice, dissolving filler is rarely needed. With careful assessment, precise placement, and a conservative approach, most concerns are prevented from the outset.\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','36317db1-f58a-4395-baf9-fbaa21c6cf22'),
(7597,7597,1,'How much do dermal fillers cost?','how-much-do-dermal-fillers-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much do dermal fillers cost?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p><a href=\\\"https://hermeswp.xyz/rachel/web/prices\\\">Pricing</a> varies depending on the area treated and the amount of product required. I will always discuss clear, transparent pricing during your consultation once I have assessed your facial anatomy and what is likely to achieve a balanced, natural result. I take a conservative approach and often use less filler than patients expect, focusing on precise placement rather than volume. That said, I will also be honest and realistic if achieving your goals is likely to require a certain amount of product, or if a phased approach would be more appropriate. My role is to guide you with clarity and integrity, without pressure or upselling, so you can make an informed decision that feels right for you.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','f308ce25-0cad-4f48-b282-000ec915bfd6'),
(7598,7598,1,'Can men have dermal fillers?','can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can men have dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in the clinic seeking subtle, natural-looking facial enhancement. Men often look to improve jawline definition, enhance chin projection, and restore facial balance, while maintaining a strong, masculine appearance. Male facial anatomy differs from female anatomy, with thicker skin, stronger musculature, and different fat distribution patterns. Treatment techniques and product placement, therefore, need to be carefully adapted. I tailor each treatment to respect these anatomical differences, focusing on proportion, structure, and natural results. Male aesthetics is a growing area of practice, and I welcome male patients looking for discreet, professional, doctor-led facial rejuvenation.</p>\"}',1,'2026-04-13 09:29:39','2026-04-13 09:29:39','1d67e202-0009-4ff0-8ced-02fe607335ed'),
(7599,7599,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-13 09:29:49','2026-04-13 09:29:49','9cb31d8d-fa5b-40f4-aa1e-1ae1ec8f48cf'),
(7605,7605,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-13 09:34:35','2026-04-13 09:34:35','b20f5dcf-0148-468b-9f20-436f6ff1f1d4'),
(7606,7606,1,'Frequently Asked Questions About Skin Booster Injectable Treatments','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Booster Injectable Treatments\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Booster Injectable Treatments answered by Dr Rachel.\"}',1,'2026-04-13 09:34:35','2026-04-13 09:34:35','47ff109f-2cf0-4023-8345-1096391a69a4'),
(7607,7607,1,'How long do skin booster results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do skin booster results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results typically last between 6-12 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolism. Patients with good underlying skin health may find results last closer to 12 months, while those with more advanced skin ageing or sun damage may notice results gradually fading around 6-9 months. Maintenance treatments every 6 months help sustain optimal skin quality, and some patients find they require less frequent maintenance over time as overall skin health improves.</p>\"}',1,'2026-04-13 09:34:35','2026-04-13 09:34:35','cdb1e1b5-433a-469e-ad0c-6f93c92b2436'),
(7608,7608,1,'What is the difference between Neauvia Hydro Deluxe and Profhilo®?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between Neauvia Hydro Deluxe and Profhilo®?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Both are injectable hyaluronic acid treatments used to improve skin quality, but they work in slightly different ways. Neauvia Hydro Deluxe uses non-cross-linked hyaluronic acid combined with calcium hydroxyapatite. It is delivered in a grid pattern of micro-injections across the treatment area to deeply hydrate the dermis and support collagen stimulation. This approach focuses on improving hydration, resilience and overall skin quality, especially in areas prone to dehydration and texture loss. Profhilo® is a high-concentration hyaluronic acid formulation that is injected at fewer strategic points (typically 5 on each side of your face). Once placed, it spreads naturally through the tissue, promoting bio-remodelling by stimulating multiple types of collagen and elastin. This leads to improved tissue firmness and a subtle lifting effect alongside enhanced hydration. Many patients benefit from a strategic combination of both, tailored to their individual skin goals and skin quality.</p>\"}',1,'2026-04-13 09:34:35','2026-04-13 09:34:35','877cb5e7-a5a1-43d1-bb02-586ebcee0687'),
(7612,7612,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-13 09:36:40','2026-04-13 09:36:40','baff39ae-00ee-4a46-a326-cb5219ffa1dc'),
(7613,7613,1,'Frequently Asked Questions About Cryotherapy','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Cryotherapy\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Cryotherapy answered by Dr Rachel.\"}',1,'2026-04-13 09:36:40','2026-04-13 09:36:40','e5cb313f-2bd3-4ae2-b44f-aa916e4d981e'),
(7614,7614,1,'How long does the treatment take?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does the treatment take?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Each individual lesion usually takes just 5-10 seconds to freeze. A typical appointment lasts 15 minutes, including consultation, treatment of multiple lesions if needed, and aftercare discussion. You can have as many lesions treated as you wish in one session.</p>\"}',1,'2026-04-13 09:36:40','2026-04-13 09:36:40','ba6d3726-6673-48bb-a5a8-4eb65608770c'),
(7615,7615,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-13 09:36:42','2026-04-13 09:36:42','00200883-f05f-4e74-bc36-9078496dd1ed'),
(7618,7618,1,'Ageing','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-13 09:39:48','2026-04-13 09:39:48','34a447b4-83e2-4d13-ae40-67d27fd45efb'),
(7619,7619,1,'Ageing','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Ageing\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Yes, and in many cases a combined approach delivers the most natural and effective results. Ageing affects every layer of the face, from skin quality and collagen, to volume, structure and muscle movement. This is why different treatments often work best when used together, as each addresses a different layer. My approach focuses on treating these changes in a balanced way, for example improving skin quality, restoring subtle structural support, stimulating collagen and softening lines where appropriate. Rather than treating one concern in isolation, I look at how everything works together to keep results natural and harmonious.</p><p> </p><p>I will always design a personalised treatment plan with careful timing and no pressure to do everything at once. Treatments can be phased gradually, focusing first on what will make the biggest difference while keeping your results subtle and natural.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Happens When Skin Ages?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Skin ageing is a gradual, layered process that affects every level of the skin and the structures beneath it. It often begins earlier than most people realise, commonly from the mid-20s, and becomes more visible over time. The changes you see on the surface reflect deeper shifts happening below. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Collagen, the protein responsible for skin strength and support, decreases by around 1% every year after your mid-20s. Elastin, which allows skin to stretch and recoil, also declines. Levels of hyaluronic acid reduce, meaning the skin holds less moisture and appears less plump and radiant. Together, these changes lead to thinner skin, fine lines, and increased skin laxity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Ageing also affects the deeper framework of the face. Facial fat pads gradually lose volume and descend, reducing soft tissue support. Over time, the facial skeleton undergoes slow, subtle reshaping as bone is gradually broken down and rebuilt in different areas. This leads to a gentle loss of overall facial bone volume and changes in contour, which reduces the support available for the soft tissues above. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6567]}',1,'2026-04-13 09:39:48','2026-04-13 09:39:48','ff512aaf-1969-42be-95e9-4f24fde5d28d'),
(7634,7634,1,'What makes Aesthetics by Dr Rachel different for anti-ageing treatment in Wirral?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for anti-ageing treatments on the Wirral?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>I am a practising GP with extensive medical training and specialist qualifications in aesthetic medicine, working within a regulated medical framework. You will always be seen by me, with your consultation focused on understanding your skin and exploring options together. I take time to understand your concerns, your lifestyle and what matters most to you before recommending any treatment. Every treatment plan is grounded in medical knowledge, facial anatomy and safety, with a strong focus on long-term skin health and subtle, natural results. You will never receive a generic approach or feel any pressure to proceed, only clear, honest advice tailored to you.</p>\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','42a210a1-52c4-4536-8cf0-0cbfeb739905'),
(7635,7635,1,'Ageing','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','5108bf96-72bd-4d8b-8688-cd74c33f6fb6'),
(7636,7636,1,'What Causes Skin to Age?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Skin to Age?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Skin ageing is influenced by two main processes. <strong>Intrinsic ageing</strong> is the natural, unavoidable process that happens to all of us over time, due to genetics and internal biology. <strong>Extrinsic ageing</strong> is caused by external factors such as sun exposure and lifestyle. Many of the changes associated with ageing are strongly influenced by external factors, especially sun exposure, which means there is often more we can do to protect and support your skin than you might realise.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Ageing (Internal Factors)</span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Genetics</strong> - influence your skin type and how quickly ageing changes become visible</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Hormonal changes</strong> - particularly around menopause, which can accelerate collagen loss and skin thinning</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Collagen, elastin and hyaluronic acid decline</strong> - natural reductions over time lead to less firmness, elasticity and hydration</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Slower cell turnover</strong> - the skin takes longer to renew and repair itself, which can reduce brightness and smoothness</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6565],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','560f41b6-c6fa-42ad-88a8-a369749a7f0a'),
(7637,7637,1,'What causes skin to age 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3><strong>Extrinsic Ageing (External Factors)  </strong></h3><p> </p><p><strong>- Sun exposure</strong> – the single biggest cause of premature skin ageing. UV radiation breaks down collagen and elastin, damages DNA, and contributes to wrinkles, pigmentation and loss of firmness</p><p> </p><p><strong>-Smoking</strong> – reduces blood flow to the skin, impairs oxygen delivery and increases free radical damage, accelerating visible ageing</p><p> </p><p><strong>-Pollution</strong> – increases oxidative stress and inflammation, weakening the skin barrier and contributing to collagen breakdown</p><p> </p><p><strong>-Lifestyle factors</strong> – including poor sleep, chronic stress, dehydration and diets lacking key nutrients, all of which can impair skin repair and regeneration</p><p> </p><p><strong>-Repetitive facial movement</strong> – over time, expression lines can become more permanent as skin elasticity and resilience decline</p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Living on the Wirral peninsula also means your skin is regularly exposed to coastal wind, salt air and strong reflected sunlight. These environmental factors can increase dehydration and weaken the skin barrier if skin is not properly protected. The good news is that with the right daily protection, barrier support and carefully chosen treatments, these effects can be managed, helping your skin remain healthy and resilient over time.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6566],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>The Visible Signs of Ageing Skin</i></span></h2><p> </p><p>Ageing shows up differently for everyone. Understanding which changes are most noticeable for you allows me to select treatments that are targeted, appropriate, and suited to your skin’s needs.</p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Fine Lines and Wrinkles</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines and wrinkles often appear first around the eyes (crow’s feet), forehead, and mouth. Dynamic lines form with facial movement and, over time, can become static lines that remain visible even when the face is at rest. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Volume Loss</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Facial fat pads play an important role in maintaining youthful facial shape and balance. When they are full and well supported, they help create the natural “triangle of youth”, with fullness through the mid-face and gentle tapering towards the jaw.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Skin Laxity and Sagging</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">As collagen and elastin levels decline, the skin loses its ability to remain firm and resilient. Over time, it begins to loosen and descend, particularly around the lower face, jawline, and neck. This can soften facial definition, contribute to jowling, and deepen folds, often making the face appear heavier or more tired.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','5dbbc83e-dc70-4bcb-9bf7-46fab8b28cf8'),
(7638,7638,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about the changes of ageing\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','63bd46c8-70e9-4088-9b39-0f747bb57c5f'),
(7639,7639,1,'At what age should I start anti-ageing treatments?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no set age, and no expectation or pressure to have any treatment at all. Anti-ageing is not about a specific number, but about how your skin is changing and how those changes make you feel. Some people choose to focus on prevention in their late twenties or early thirties with good skincare, sun protection and treatments such as skin boosters, while others seek more corrective options later on. I always start by understanding what is bothering you, assessing the underlying changes in your skin, and only then suggesting treatments that directly and appropriately address those concerns. The right time is simply when you feel ready and want advice, not when you feel you should do something.\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','3d426c1c-2dbc-49a7-8b0b-bbf40ab35957'),
(7640,7640,1,'Will I still look like myself after treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still look like myself after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My approach is always subtle, measured and focused on enhancing rather than changing your features. The aim is to help you look refreshed, well-rested and healthier, not different or overdone. Patients often tell me that friends and family comment on how well they look, without being able to pinpoint exactly what has changed.\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','f35d6fc8-c04d-4a5e-b283-e9f6dbd06d14'),
(7641,7641,1,'How many treatments will I need?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatments will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends entirely on your concerns, goals and the underlying changes in your skin. Some treatments, such as Profhilo®, follow a set course, typically 2 sessions spaced 4 weeks apart. Others, including <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a>, may involve a single treatment with maintenance only when required. I will always outline a clear, personalised plan during your <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">consultation</a>, with no pressure to proceed and a focus on achieving the most appropriate, natural result for you.</p>\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','0c089838-4316-4a55-bee3-43581baf35b2'),
(7642,7642,1,'Is there any downtime?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most anti-ageing treatments involve minimal downtime. You may experience some temporary redness, swelling or occasional bruising for a day or two, depending on the treatment performed. Many patients are able to return to their normal daily activities the same day, and I will always talk you through expected recovery time and aftercare in advance so you can plan confidently.\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','3cce1edc-eb41-4246-ae22-6b9dec8ddb59'),
(7643,7643,1,'How long do results last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This varies depending on the treatment and how your skin responds. Skin boosters typically last around 6 to 9 months, while dermal fillers can last 12 to 18 months, depending on the area treated and the product used. Anti-wrinkle injections usually last around 3 months on average. Maintenance treatments are recommended to keep your results looking their best, and I will always talk you through expected longevity and maintenance options during your consultation so you can make informed decisions.\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','04523a89-d927-4369-801a-9880c465d75c'),
(7644,7644,1,'Can I combine different anti-ageing treatments?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine different anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and in many cases, a combined approach delivers the most natural and effective results. Different treatments address different aspects of ageing, for example, improving skin quality, restoring volume, stimulating collagen or softening lines. Combining treatments such as dermal fillers with <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> or other collagen-stimulating options allows me to address multiple concerns in a balanced way. I will always design a personalised treatment plan that targets your specific concerns safely and appropriately, with careful timing and no pressure to do everything at once.</p>\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','2401300a-82ce-4d3b-84e4-ba09b0e5a154'),
(7645,7645,1,'What makes Aesthetics by Dr Rachel different for anti-ageing treatment in Wirral?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for anti-ageing treatments on the Wirral?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>I am a practising GP with extensive medical training and specialist qualifications in aesthetic medicine, working within a regulated medical framework. You will always be seen by me, with your consultation focused on understanding your skin and exploring options together. I take time to understand your concerns, your lifestyle and what matters most to you before recommending any treatment. Every treatment plan is grounded in medical knowledge, facial anatomy and safety, with a strong focus on long-term skin health and subtle, natural results. You will never receive a generic approach or feel any pressure to proceed, only clear, honest advice tailored to you.</p>\"}',1,'2026-04-13 10:30:04','2026-04-13 10:30:04','cc92142e-8d81-4b5c-abd9-3fee3c5d72e5'),
(7646,7646,1,'Ageing','ageing','conditions/ageing','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-13 10:30:07','2026-04-13 10:30:07','18bc3847-6808-44d4-8d71-242a4178fa9b'),
(7653,7653,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-13 10:36:07','2026-04-13 10:36:07','7a111450-53cf-4cb4-a0ec-f709978acd4a'),
(7654,7654,1,'Frequently Asked Questions About Skin Consultation with Dr Rachel','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Skin Consultation with Dr Rachel\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Skin Consultation answered by Dr Rachel.\"}',1,'2026-04-13 10:36:07','2026-04-13 10:36:07','91166b61-5388-424e-9bc7-54e6951c2aa6'),
(7655,7655,1,'How long until I see results?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long until I see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Timeframes vary widely depending on your starting skin health, the concerns we are addressing, and how reactive your skin is. Some improvements, such as calmer skin or reduced breakouts, may be noticed within a few weeks, while changes like pigmentation or texture take longer to evolve. Skin transformation is rarely a straight line - it is normal to have good days and more challenging phases along the way. Most patients see meaningful, lasting improvement over 3-6 months with consistent skincare and regular review, I will guide you through each stage as your skin responds.</p>\"}',1,'2026-04-13 10:36:07','2026-04-13 10:36:07','eb3022b4-d820-47e3-8b6d-3c69ead0cbdf'),
(7656,7656,1,'What is the SP Complex sensitivity test?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the SP Complex sensitivity test?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The SP Complex sensitivity test is a pHformula skin tolerance assessment carried out during your consultation to evaluate how your skin responds to active ingredients. It helps me assess your skin’s sensitivity on a scale of 1-10, allowing treatment strengths and protocols to be carefully selected according to your individual tolerance. This step helps ensure treatments are both safe and effective while reducing the risk of unnecessary irritation.</p>\"}',1,'2026-04-13 10:36:07','2026-04-13 10:36:07','ca1e72a1-8aa1-4295-990f-324532bda167'),
(7657,7657,1,'How much does a Skin Consultation cost?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much does a Skin Consultation cost?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The comprehensive skin consultation is £75 and includes a dedicated 60-minute appointment with me. This allows time for detailed skin analysis, the pHformula SP Complex sensitivity assessment, and the creation of your personalised skin plan. You will leave with a clear understanding of your skin, realistic expectations, and a structured plan for improvement. Clear, transparent pricing is always discussed based on what is most appropriate for your skin.</p>\"}',1,'2026-04-13 10:36:07','2026-04-13 10:36:07','5919541d-3f82-4d36-857b-ebf795f43c50'),
(7658,7658,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-13 10:36:09','2026-04-13 10:36:09','5f389959-a9ae-45d4-b3e7-4f65824321f7'),
(7659,7659,1,'How many Sunekos Eye treatment sessions will I need?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients benefit from a course of 3–4 treatment sessions, spaced 3–4 weeks apart, to achieve the best results. This gradual approach allows your skin time to respond between treatments, with each session building on the improvements of the last to strengthen and improve the quality of the delicate under-eye skin. Some patients with more noticeable dark circles or thinner under-eye skin may benefit from an additional session. To maintain results, maintenance treatments are usually recommended every 6–12 months, although many patients find these are needed less frequently over time as skin quality continues to improve.</p><p> </p><p>Your personalised treatment plan will always be discussed during your consultation, based on your skin, anatomy, and treatment goals.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many Sunekos Eye treatment sessions will I need?\"}',1,'2026-04-13 10:38:36','2026-04-13 10:38:38','3b6bfcfa-f563-4e80-bf88-f2ced8d8d92e'),
(7661,7661,1,'What is the difference between Sunekos Eye treatment and tear trough filler?','q-will-i-look-frozen-or-expressionless',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Sunekos Eye treatment focuses on improving skin quality rather than adding volume. By supporting collagen and elastin, it helps strengthen thin under-eye skin and improve concerns such as dark circles, thinning skin and crepey texture. Tear trough filler, by contrast, is designed to replace lost volume and is more suitable for deeper hollows where structural support is needed. The key difference is whether the main concern is skin quality or volume loss, which is why careful assessment is so important. In some cases, the best results come from combining both approaches to achieve a balanced, refreshed outcome.</p><p> </p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between Sunekos Eye treatment and tear trough filler?\"}',1,'2026-04-13 10:39:04','2026-04-13 10:39:06','eca45c0f-f1fd-4f17-a363-8f1af6e951a3'),
(7662,7662,1,'Can Sunekos Eye treatment treat dark circles?','q-is-there-any-downtime-after-treatment',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, Sunekos Eye treatment can be effective for certain types of dark circles, particularly those caused by thin under-eye skin where blood vessels show through, creating a blue or purple tone. By improving skin quality and supporting collagen and elastin, the treatment helps the skin become stronger and less translucent, which can make dark circles less noticeable. It is important to understand that not all dark circles are the same. Those caused mainly by excess pigment usually respond better to other treatments such as targeted skincare, laser or chemical resurfacing treatments rather than injectable treatments. During your consultation, I will assess the underlying cause of your dark circles and advise you on the most appropriate treatment plan for your skin.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can Sunekos Eye treatment treat dark circles?\"}',1,'2026-04-13 10:40:32','2026-04-13 10:40:32','c0f7a591-308b-407a-873a-af24f8d94c9c'),
(7663,7663,1,'When will I see results from Sunekos Eye treatment?','q-is-the-treatment-safe',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Many patients notice early improvements in hydration and brightness within 7-10 days, with further improvement developing gradually as the skin strengthens and quality improves. Full results are usually seen around 4-6 weeks after your final session, allowing for subtle, natural-looking rejuvenation.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from Sunekos Eye treatment?\"}',1,'2026-04-13 10:40:55','2026-04-13 10:40:55','025b209f-0684-463c-bc61-95d60a301f4f'),
(7664,7664,1,'How long do Sunekos Eye treatment results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results typically last 6–12 months, depending on your skin quality, age, and lifestyle factors. To maintain improvements, most patients benefit from a single maintenance treatment once or twice a year. Many also find results improve with repeat treatments as overall skin quality continues to strengthen. Your maintenance plan will always be discussed based on how your skin responds.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do Sunekos Eye treatment results last?\"}',1,'2026-04-13 10:41:14','2026-04-13 10:41:14','1d50a7bd-fca5-4b05-8a41-86114ed3b6e6'),
(7665,7665,1,'Can I combine Sunekos with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Sunekos Performa can be safely combined with other treatments as part of a personalised, comprehensive skin rejuvenation plan. Depending on your individual concerns, it may be used alongside <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">JULÄINE™</a> to support collagen regeneration, <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">anti-wrinkle treatments</a> to soften expression lines around the eyes, or other advanced skin boosters for more intensive skin improvement across the wider face. The most appropriate combination and treatment sequence will always be discussed during your consultation, based on your anatomy, skin quality, and treatment goals. Treatments are always carefully planned to ensure natural, balanced results.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine Sunekos with other treatments?\"}',1,'2026-04-13 10:41:42','2026-04-13 10:42:25','85690076-b8f0-4904-a734-21f31d37ddb3'),
(7673,7673,1,'Is Sunekos Eye treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos Eye treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients find the treatment comfortable and easier to tolerate than they expected. As the under-eye area can be sensitive, a numbing cream is applied about 20 minutes before treatment to improve comfort. During treatment, you may feel some light pressure or small pinches as the injections are placed, but most patients find this manageable. Very fine needles are used to help keep discomfort to a minimum. Any tenderness afterwards is usually mild and typically settles within 24 hours. Most patients are pleasantly surprised by how straightforward the treatment feels.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','6eebb870-165f-49e1-8acd-acdb1cf14cbe'),
(7674,7674,1,'What is the downtime after Sunekos Eye treatment?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after Sunekos Eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Downtime is usually minimal. Immediately after treatment, small injection marks and mild swelling under the eyes are common and typically settle within 24–48 hours. Some patients may experience minor bruising, which usually resolves within 3–5 days and can normally be covered with makeup once the skin has settled. The area may also feel slightly raised immediately after treatment, which is normal and settles naturally over the following days. Most patients return to work and normal daily activities straight away, and many find the recovery straightforward and easy to fit around everyday life. I will always discuss detailed aftercare with you during your appointment, and you will also receive clear written aftercare instructions to support your recovery at home.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','9067dba7-5c60-4c72-b5a5-c120e97099d3'),
(7675,7675,1,'Is Sunekos treatment safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos treatment safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, when carried out by a qualified medical professional. Sunekos contains ingredients that are well tolerated by the body and is designed for use in delicate areas such as under the eyes. As with any injectable treatment, side effects are possible, but serious complications are uncommon when treatment is performed correctly and with appropriate patient selection. As a GMC-registered GP and member of CMAC, I follow strict medical safety protocols. This includes a detailed medical history, careful treatment technique, and thorough aftercare. Emergency medicines and equipment are always available, although they are rarely needed. Your safety and suitability for treatment are always my first priority.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','bc051441-ccfc-4289-a0fd-a1a486bb4b37'),
(7676,7676,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The under-eye area can be slightly sensitive after treatment, so gentle aftercare is important. It is best to avoid touching or rubbing the area for 24 hours and to avoid makeup for the rest of the day. For the first few days, use gentle skincare and avoid active ingredients around the eyes. Keeping the area well hydrated and protected with daily SPF is important to support healing and protect your results. You will be given detailed aftercare advice following your treatment, and I will recommend any suitable skincare products if needed to help maintain your results. Your aftercare will always be clearly explained so you feel confident looking after your skin at home.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','07c94ce4-4945-4114-85df-99f8eabaae99'),
(7677,7677,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','8c31e05d-3a2a-4a76-a22f-0d0dbd2d4b8b'),
(7678,7678,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is an advanced injectable treatment developed in Italy, designed to improve skin quality in the delicate under-eye area. Its patented combination of hyaluronic acid and amino acids supports collagen and elastin, helping to improve brightness, texture, and firmness without adding volume. This makes it ideal for patients seeking subtle, natural-looking improvement in skin quality.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers can often be challenging in this area because they are designed to replace volume, when volume is not always the main concern. For many patients, the issue is more about skin quality than structural loss. Adding volume to delicate under-eye tissue can increase the risk of puffiness, product visibility, or an unnatural look. Sunekos Performa takes a different approach by focusing on improving the quality and strength of the skin itself.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[3957],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[3956],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','0dc959ea-ddea-474a-b2d7-fc18debd22fa'),
(7679,7679,1,'Frequently Asked Questions About Sinekos','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Sinekos\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Sunekos under-eye treatment answered by Dr Rachel.\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','a5a54673-8863-49bc-b385-b38bc9d5effa'),
(7680,7680,1,'How many Sunekos Eye treatment sessions will I need?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many Sunekos Eye treatment sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients benefit from a course of 3–4 treatment sessions, spaced 3–4 weeks apart, to achieve the best results. This gradual approach allows your skin time to respond between treatments, with each session building on the improvements of the last to strengthen and improve the quality of the delicate under-eye skin. Some patients with more noticeable dark circles or thinner under-eye skin may benefit from an additional session. To maintain results, maintenance treatments are usually recommended every 6–12 months, although many patients find these are needed less frequently over time as skin quality continues to improve.</p><p> </p><p>Your personalised treatment plan will always be discussed during your consultation, based on your skin, anatomy, and treatment goals.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','818f28b2-2c18-4532-876d-eea1696a5163'),
(7681,7681,1,'Is Sunekos Eye treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos Eye treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most patients find the treatment comfortable and easier to tolerate than they expected. As the under-eye area can be sensitive, a numbing cream is applied about 20 minutes before treatment to improve comfort. During treatment, you may feel some light pressure or small pinches as the injections are placed, but most patients find this manageable. Very fine needles are used to help keep discomfort to a minimum. Any tenderness afterwards is usually mild and typically settles within 24 hours. Most patients are pleasantly surprised by how straightforward the treatment feels.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','9827574b-11db-481d-865f-873e1f2c5428'),
(7682,7682,1,'What is the downtime after Sunekos Eye treatment?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after Sunekos Eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Downtime is usually minimal. Immediately after treatment, small injection marks and mild swelling under the eyes are common and typically settle within 24–48 hours. Some patients may experience minor bruising, which usually resolves within 3–5 days and can normally be covered with makeup once the skin has settled. The area may also feel slightly raised immediately after treatment, which is normal and settles naturally over the following days. Most patients return to work and normal daily activities straight away, and many find the recovery straightforward and easy to fit around everyday life. I will always discuss detailed aftercare with you during your appointment, and you will also receive clear written aftercare instructions to support your recovery at home.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','a452c4df-7a79-47c8-b5c2-9375222340fc'),
(7683,7683,1,'When will I see results from Sunekos Eye treatment?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from Sunekos Eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Many patients notice early improvements in hydration and brightness within 7-10 days, with further improvement developing gradually as the skin strengthens and quality improves. Full results are usually seen around 4-6 weeks after your final session, allowing for subtle, natural-looking rejuvenation.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','7b9ad90a-a4ea-4c4f-b967-d934ad8737ed'),
(7684,7684,1,'How long do Sunekos Eye treatment results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do Sunekos Eye treatment results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results typically last 6–12 months, depending on your skin quality, age, and lifestyle factors. To maintain improvements, most patients benefit from a single maintenance treatment once or twice a year. Many also find results improve with repeat treatments as overall skin quality continues to strengthen. Your maintenance plan will always be discussed based on how your skin responds.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','ea441607-451f-4d74-a557-5f6934a45412'),
(7685,7685,1,'What is the difference between Sunekos Eye treatment and tear trough filler?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between Sunekos Eye treatment and tear trough filler?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Sunekos Eye treatment focuses on improving skin quality rather than adding volume. By supporting collagen and elastin, it helps strengthen thin under-eye skin and improve concerns such as dark circles, thinning skin and crepey texture. Tear trough filler, by contrast, is designed to replace lost volume and is more suitable for deeper hollows where structural support is needed. The key difference is whether the main concern is skin quality or volume loss, which is why careful assessment is so important. In some cases, the best results come from combining both approaches to achieve a balanced, refreshed outcome.</p><p> </p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','f6fec62d-84c8-40bf-bfb9-9c79c16b24a8'),
(7686,7686,1,'Can Sunekos Eye treatment treat dark circles?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can Sunekos Eye treatment treat dark circles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, Sunekos Eye treatment can be effective for certain types of dark circles, particularly those caused by thin under-eye skin where blood vessels show through, creating a blue or purple tone. By improving skin quality and supporting collagen and elastin, the treatment helps the skin become stronger and less translucent, which can make dark circles less noticeable. It is important to understand that not all dark circles are the same. Those caused mainly by excess pigment usually respond better to other treatments such as targeted skincare, laser or chemical resurfacing treatments rather than injectable treatments. During your consultation, I will assess the underlying cause of your dark circles and advise you on the most appropriate treatment plan for your skin.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','fe7b7868-8d1d-4af8-8381-378c23e58931'),
(7687,7687,1,'Is Sunekos treatment safe?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is Sunekos treatment safe?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, when carried out by a qualified medical professional. Sunekos contains ingredients that are well tolerated by the body and is designed for use in delicate areas such as under the eyes. As with any injectable treatment, side effects are possible, but serious complications are uncommon when treatment is performed correctly and with appropriate patient selection. As a GMC-registered GP and member of CMAC, I follow strict medical safety protocols. This includes a detailed medical history, careful treatment technique, and thorough aftercare. Emergency medicines and equipment are always available, although they are rarely needed. Your safety and suitability for treatment are always my first priority.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','dda055ef-0853-490c-9bcf-80dcafa986fb'),
(7688,7688,1,'Can I combine Sunekos with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine Sunekos with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. Sunekos Performa can be safely combined with other treatments as part of a personalised, comprehensive skin rejuvenation plan. Depending on your individual concerns, it may be used alongside <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">JULÄINE™</a> to support collagen regeneration, <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">anti-wrinkle treatments</a> to soften expression lines around the eyes, or other advanced skin boosters for more intensive skin improvement across the wider face. The most appropriate combination and treatment sequence will always be discussed during your consultation, based on your anatomy, skin quality, and treatment goals. Treatments are always carefully planned to ensure natural, balanced results.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','4b7cf829-fb2b-432a-9f96-f4edb8ac89da'),
(7689,7689,1,'What skincare should I use after Sunekos?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after Sunekos?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The under-eye area can be slightly sensitive after treatment, so gentle aftercare is important. It is best to avoid touching or rubbing the area for 24 hours and to avoid makeup for the rest of the day. For the first few days, use gentle skincare and avoid active ingredients around the eyes. Keeping the area well hydrated and protected with daily SPF is important to support healing and protect your results. You will be given detailed aftercare advice following your treatment, and I will recommend any suitable skincare products if needed to help maintain your results. Your aftercare will always be clearly explained so you feel confident looking after your skin at home.</p>\"}',1,'2026-04-13 10:46:44','2026-04-13 10:46:44','6e6adad1-0576-47d1-bb21-9fd7560bb2de'),
(7690,7690,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-13 10:47:11','2026-04-13 10:47:11','a241f87d-9ace-48f2-a43e-287373f485bf'),
(7691,7691,1,'Should I avoid wearing makeup if I have acne?','should-i-avoid-wearing-makeup-if-i-have-acne',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>You do not need to stop wearing makeup if you have acne, but choosing suitable products does matter. Look for non-comedogenic formulas designed not to clog pores, and avoid very heavy or occlusive products if your skin is prone to congestion. Most importantly, make sure makeup is removed thoroughly and gently at the end of the day to avoid further blockage of the pores. Makeup should not worsen acne if your overall skincare routine is appropriate and your skin barrier is well supported.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Should I avoid wearing makeup if I have acne?\"}',1,'2026-04-13 11:11:38','2026-04-13 11:11:38','f663b10d-bd39-45d6-8c0e-793ec067dca3'),
(7693,7693,1,'Why do I still have acne as an adult?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Although acne is most common in teenagers and young adults, it is not unusual to see it persist into the twenties, thirties and beyond, particularly in women. In clinic, I often see adult acne linked to hormonal fluctuations, stress, genetics and lifestyle factors. Adult skin also behaves differently from teenage skin. It is often more sensitive and reactive, which is why products that worked when you were younger may no longer be suitable. Adult acne often needs a more considered, skin-health focused approach rather than the harsh treatments traditionally used for teenage acne.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why do I still have acne as an adult?\"}',1,'2026-04-13 11:11:56','2026-04-13 11:11:56','15c87960-ab65-40b2-ab8a-1f9363e34c08'),
(7694,7694,1,'Will acne treatment make my skin dry and sensitive?','will-acne-treatment-make-my-skin-dry-and-sensitive',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>One of the biggest mistakes people make when trying to treat acne is using harsh, stripping products that damage the skin barrier and can ultimately make breakouts worse. Acne treatment should not be about aggressively drying the skin, but about restoring balance. At Aesthetics by Dr Rachel, I take a skin-first approach. This means introducing active ingredients gradually, supporting your skin barrier with the right hydration, and adjusting your routine based on how your skin responds. </p><p> </p><p>We also look beyond just products, considering factors such as diet, stress and overall skin health, including the balance of your skin microbiome, which plays an important role in inflammation and healing. The goal is not just clearer skin, but stronger, healthier skin that is more resilient and less prone to future breakouts.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will acne treatment make my skin dry and sensitive?\"}',1,'2026-04-13 11:12:16','2026-04-13 11:12:24','c457d860-278a-4c97-807f-aa884b154324'),
(7695,7695,1,'How long does it take to see results from acne treatment?','how-long-does-it-take-to-see-results-from-acne-treatment',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Acne treatment takes time because the skin renews itself in cycles. In younger skin this can be around 28 days, but in adults it is often slower. This means it usually takes at least 4–8 weeks before you start to see meaningful improvement. Some people also notice their skin seems to worsen slightly at first as spots that were already developing under the skin become visible. With consistent treatment and the right plan in place, most people start to see clearer, calmer skin over 3 to 6 months. Patience really is important with acne. Quick fixes are rare, but with the right plan, lasting improvement is absolutely achievable.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results from acne treatment?\"}',1,'2026-04-13 11:12:49','2026-04-13 11:12:53','0aa956bf-e066-4668-bcbc-ed9afc1eaeac'),
(7696,7696,1,'Is professional acne treatment safe for darker skin tones?','is-professional-acne-treatment-safe-for-darker-skin-tones',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, but the treatment approach needs to be chosen carefully. Some treatments can carry a higher risk of post-inflammatory hyperpigmentation in darker skin tones if they are too aggressive or not selected appropriately. When treating acne in skin of colour, I carefully choose treatment types, strengths and treatment intervals based on your skin type and how your skin responds. Chemical resurfacing treatments can be performed safely when the right formulations and protocols are used, and medical microneedling is also generally well tolerated across all skin tones when performed appropriately. Careful planning and gradual treatment are key. </p><p> </p><p>Every treatment plan is adjusted according to your individual skin response to improve acne while protecting your skin tone and reducing the risk of unwanted pigmentation</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is professional acne treatment safe for darker skin tones?\"}',1,'2026-04-13 11:13:20','2026-04-13 11:13:28','a167899d-dd46-4eab-94f5-3273824e420d'),
(7704,7704,1,'What if my acne is related to my hormones?','what-if-my-acne-is-related-to-my-hormones',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What if my acne is related to my hormones?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Hormonal acne often needs a slightly different approach to standard acne treatment. If your breakouts follow a clear pattern around your menstrual cycle, or you have other symptoms suggesting a hormonal influence, I take this into account when planning your treatment. Hormonal acne is very common in adult women, and understanding this often helps explain why previous treatments may not have worked. As a doctor, I can also help you understand whether hormones may be playing a role and whether further medical assessment or treatment options might be worth considering alongside your skin treatment.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','9fac38e5-d45a-49c0-8d2b-8dba185ceffb'),
(7705,7705,1,'Can acne treatment help with the red or dark marks left behind after spots heal?','can-acne-treatment-help-with-the-red-or-dark-marks-left-behind-after-spots-heal',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne treatment help with the red or dark marks left behind after spots heal?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The marks left after acne are often post-inflammatory <a href=\\\"{entry:6818@1:url||https://hermeswp.xyz/rachel/web/conditions/hyperpigmentation}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">hyperpigmentation</a> (dark marks) or post-inflammatory erythema (red marks). These are not true scars, but they can take months to fade naturally. Professional skin treatments can help support this process. Chemical resurfacing treatments can help improve skin renewal and gradually lift pigmentation from the upper skin layers, while medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">microneedling</a> can stimulate skin repair and improve overall tone and texture. For more stubborn marks, particularly in darker skin tones, it is important to choose treatments carefully to avoid triggering further pigmentation. It is often possible to start addressing these marks while also treating active acne once breakouts are starting to stabilise. Early treatment can also help reduce the risk of longer-term scarring.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','a4295d3c-2ba8-4bba-a760-80b360063374'),
(7706,7706,1,'How often will I need to come in for acne treatment?','how-often-will-i-need-to-come-in-for-acne-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How often will I need to come in for acne treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends on the type and severity of your acne and your overall treatment plan. Initial consultations include a full skin assessment and a personalised plan based on your skin’s needs. If your plan includes chemical resurfacing treatments, these are typically spaced around 4–6 weeks apart to allow your skin time to respond and repair between sessions. Medical microneedling is usually performed at similar intervals. Between clinic visits, your home skincare routine does much of the daily work in supporting your results. I review your progress at each appointment and adjust your plan based on how your skin is responding. Most patients are then able to move to less frequent maintenance treatments once their skin is more stable and under control. The aim is always to get your skin to a point where it needs less intervention, not more.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','a4e3a97c-76ea-4bcd-b135-51903378fb24'),
(7707,7707,1,'What should I do about acne that keeps coming back in the same area?','what-should-i-do-about-acne-that-keeps-coming-back-in-the-same-area',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What should I do about acne that keeps coming back in the same area?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Recurring breakouts in the same area often suggest an underlying trigger. Jawline and chin breakouts in women are commonly linked to hormones, forehead congestion can relate to product build-up or haircare, and cheek breakouts may be influenced by friction such as phones or pillowcases. Persistent localised acne may benefit from treatments that help reduce congestion and inflammation in that area. Depending on your skin, this can include chemical resurfacing to help clear blocked pores, polynucleotides to help calm inflammation, or treatments that help regulate excess oil production. The aim is not just to treat the spot, but to make that area less prone to repeated breakouts.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','27d0b17e-6c1f-4b4a-9735-f6596f7d49ab'),
(7708,7708,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','dac71460-0fa8-4ad4-a9b2-ab0e5b1b14ca'),
(7709,7709,1,'Frequently Asked Questions About Acne','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','e943822e-6f26-4e43-8233-945d39d8abfb'),
(7710,7710,1,'Why do I still have acne as an adult?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why do I still have acne as an adult?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Although acne is most common in teenagers and young adults, it is not unusual to see it persist into the twenties, thirties and beyond, particularly in women. In clinic, I often see adult acne linked to hormonal fluctuations, stress, genetics and lifestyle factors. Adult skin also behaves differently from teenage skin. It is often more sensitive and reactive, which is why products that worked when you were younger may no longer be suitable. Adult acne often needs a more considered, skin-health focused approach rather than the harsh treatments traditionally used for teenage acne.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','c0c4aaf3-2faf-460b-9284-ea2c49f83d9c'),
(7711,7711,1,'How long does it take to see results from acne treatment?','how-long-does-it-take-to-see-results-from-acne-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results from acne treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Acne treatment takes time because the skin renews itself in cycles. In younger skin this can be around 28 days, but in adults it is often slower. This means it usually takes at least 4–8 weeks before you start to see meaningful improvement. Some people also notice their skin seems to worsen slightly at first as spots that were already developing under the skin become visible. With consistent treatment and the right plan in place, most people start to see clearer, calmer skin over 3 to 6 months. Patience really is important with acne. Quick fixes are rare, but with the right plan, lasting improvement is absolutely achievable.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','d28f149f-9908-4609-a790-03eba43e9cf8'),
(7712,7712,1,'Will acne treatment make my skin dry and sensitive?','will-acne-treatment-make-my-skin-dry-and-sensitive',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will acne treatment make my skin dry and sensitive?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>One of the biggest mistakes people make when trying to treat acne is using harsh, stripping products that damage the skin barrier and can ultimately make breakouts worse. Acne treatment should not be about aggressively drying the skin, but about restoring balance. At Aesthetics by Dr Rachel, I take a skin-first approach. This means introducing active ingredients gradually, supporting your skin barrier with the right hydration, and adjusting your routine based on how your skin responds. </p><p> </p><p>We also look beyond just products, considering factors such as diet, stress and overall skin health, including the balance of your skin microbiome, which plays an important role in inflammation and healing. The goal is not just clearer skin, but stronger, healthier skin that is more resilient and less prone to future breakouts.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','4cd71715-692b-44fc-a71b-4ff4002d83f4'),
(7713,7713,1,'Should I avoid wearing makeup if I have acne?','should-i-avoid-wearing-makeup-if-i-have-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Should I avoid wearing makeup if I have acne?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>You do not need to stop wearing makeup if you have acne, but choosing suitable products does matter. Look for non-comedogenic formulas designed not to clog pores, and avoid very heavy or occlusive products if your skin is prone to congestion. Most importantly, make sure makeup is removed thoroughly and gently at the end of the day to avoid further blockage of the pores. Makeup should not worsen acne if your overall skincare routine is appropriate and your skin barrier is well supported.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','9eb67e64-8010-4b4a-9341-ddab6090935f'),
(7714,7714,1,'What if my acne is related to my hormones?','what-if-my-acne-is-related-to-my-hormones',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What if my acne is related to my hormones?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Hormonal acne often needs a slightly different approach to standard acne treatment. If your breakouts follow a clear pattern around your menstrual cycle, or you have other symptoms suggesting a hormonal influence, I take this into account when planning your treatment. Hormonal acne is very common in adult women, and understanding this often helps explain why previous treatments may not have worked. As a doctor, I can also help you understand whether hormones may be playing a role and whether further medical assessment or treatment options might be worth considering alongside your skin treatment.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','e6cde2be-3b80-4f74-afc6-0fe7e0de7127'),
(7715,7715,1,'Can professional treatments help if I have already tried everything from the pharmacy?','can-professional-treatments-help-if-i-have-already-tried-everything-from-the-pharmacy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can professional treatments help if I have already tried everything from the pharmacy?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Pharmacy products are limited to low-strength active ingredients that sit on the skin surface. Professional treatments work differently. <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">Chemical peels</a> use medical-grade acids at concentrations not available over the counter, targeting blocked pores and bacteria deeper in the skin. <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\">Microneedling</a> triggers your skin\'s own repair response to improve texture and reduce post-acne marks. Dr Rachel can also prescribe topical treatments at strengths that pharmacies cannot sell. If you have been cycling through products for months with no improvement, it usually means your acne needs clinical intervention, not another cleanser.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','e0292920-cf11-4ddd-8a6e-57b372f369e1'),
(7716,7716,1,'Can acne treatment help with the red or dark marks left behind after spots heal?','can-acne-treatment-help-with-the-red-or-dark-marks-left-behind-after-spots-heal',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can acne treatment help with the red or dark marks left behind after spots heal?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>The marks left after acne are often post-inflammatory <a href=\\\"{entry:6818@1:url||https://hermeswp.xyz/rachel/web/conditions/hyperpigmentation}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">hyperpigmentation</a> (dark marks) or post-inflammatory erythema (red marks). These are not true scars, but they can take months to fade naturally. Professional skin treatments can help support this process. Chemical resurfacing treatments can help improve skin renewal and gradually lift pigmentation from the upper skin layers, while medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">microneedling</a> can stimulate skin repair and improve overall tone and texture. For more stubborn marks, particularly in darker skin tones, it is important to choose treatments carefully to avoid triggering further pigmentation. It is often possible to start addressing these marks while also treating active acne once breakouts are starting to stabilise. Early treatment can also help reduce the risk of longer-term scarring.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','f3e865e2-6978-4ee4-8040-1d5d9a535f14'),
(7717,7717,1,'How often will I need to come in for acne treatment?','how-often-will-i-need-to-come-in-for-acne-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How often will I need to come in for acne treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends on the type and severity of your acne and your overall treatment plan. Initial consultations include a full skin assessment and a personalised plan based on your skin’s needs. If your plan includes chemical resurfacing treatments, these are typically spaced around 4–6 weeks apart to allow your skin time to respond and repair between sessions. Medical microneedling is usually performed at similar intervals. Between clinic visits, your home skincare routine does much of the daily work in supporting your results. I review your progress at each appointment and adjust your plan based on how your skin is responding. Most patients are then able to move to less frequent maintenance treatments once their skin is more stable and under control. The aim is always to get your skin to a point where it needs less intervention, not more.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','a9e356e2-41ef-4f27-bc09-8b0cd02e0d6f'),
(7718,7718,1,'Is professional acne treatment safe for darker skin tones?','is-professional-acne-treatment-safe-for-darker-skin-tones',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is professional acne treatment safe for darker skin tones?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, but the treatment approach needs to be chosen carefully. Some treatments can carry a higher risk of post-inflammatory hyperpigmentation in darker skin tones if they are too aggressive or not selected appropriately. When treating acne in skin of colour, I carefully choose treatment types, strengths and treatment intervals based on your skin type and how your skin responds. Chemical resurfacing treatments can be performed safely when the right formulations and protocols are used, and medical microneedling is also generally well tolerated across all skin tones when performed appropriately. Careful planning and gradual treatment are key. </p><p> </p><p>Every treatment plan is adjusted according to your individual skin response to improve acne while protecting your skin tone and reducing the risk of unwanted pigmentation</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','9e3d28a2-a962-47df-9abe-c66511e2d1fc'),
(7719,7719,1,'What should I do about acne that keeps coming back in the same area?','what-should-i-do-about-acne-that-keeps-coming-back-in-the-same-area',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What should I do about acne that keeps coming back in the same area?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Recurring breakouts in the same area often suggest an underlying trigger. Jawline and chin breakouts in women are commonly linked to hormones, forehead congestion can relate to product build-up or haircare, and cheek breakouts may be influenced by friction such as phones or pillowcases. Persistent localised acne may benefit from treatments that help reduce congestion and inflammation in that area. Depending on your skin, this can include chemical resurfacing to help clear blocked pores, polynucleotides to help calm inflammation, or treatments that help regulate excess oil production. The aim is not just to treat the spot, but to make that area less prone to repeated breakouts.</p>\"}',1,'2026-04-13 11:22:17','2026-04-13 11:22:17','0ed4f21a-1e47-4603-a272-87d6761a367a'),
(7726,7726,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-13 12:24:04','2026-04-13 12:24:04','d495eb49-d103-4c1d-9cb3-d98318b8712f'),
(7727,7727,1,'Frequently Asked Questions About Acne','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne\"}',1,'2026-04-13 12:24:04','2026-04-13 12:24:04','18dd36ff-fede-4685-8218-56aaff685720'),
(7728,7728,1,'How often will I need to come in for acne treatment?','how-often-will-i-need-to-come-in-for-acne-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How often will I need to come in for acne treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends on the type and severity of your acne and your overall treatment plan. Initial consultations include a full skin assessment and a personalised plan based on your skin’s needs. If your plan includes chemical resurfacing treatments, these are typically spaced around 4–6 weeks apart to allow your skin time to respond and repair between sessions. Medical microneedling is usually performed at similar intervals. Between clinic visits, your home skincare routine does much of the daily work in supporting your results. I review your progress at each appointment and adjust your plan based on how your skin is responding. Most patients are then able to move to less frequent maintenance treatments once their skin is more stable and under control. The aim is always to get your skin to a point where it needs less intervention, not more.</p>\"}',1,'2026-04-13 12:24:04','2026-04-13 12:24:04','2380a204-4f21-4e2f-bebc-f30380bb3066'),
(7732,7732,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-13 12:26:24','2026-04-13 12:26:24','6fdcb3e5-2aad-44b5-9fb3-c5b1cf26dbdf'),
(7733,7733,1,'Frequently Asked Questions About Acne','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne\"}',1,'2026-04-13 12:26:24','2026-04-13 12:26:24','b4f9aec0-8378-4f1c-bda3-8b8455625ee1'),
(7734,7734,1,'Can professional treatments help if I have already tried everything from the pharmacy?','can-professional-treatments-help-if-i-have-already-tried-everything-from-the-pharmacy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can professional treatments help if I have already tried everything from the pharmacy?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Pharmacy products can be helpful, but they are limited to lower-strength ingredients designed for general use. Professional skin treatments work differently, focusing on improving skin function, reducing congestion and supporting long-term skin health. For example, <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>chemical resurfacing treatments</strong></a><strong> </strong>use carefully controlled acids to help clear blocked pores and improve skin renewal, while medical <a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><strong>microneedling</strong></a> can support skin repair and improve post-acne marks and texture. Alongside treatment, a structured skincare plan can often make a significant difference when you have been trying products without success. If you feel like you have been cycling through different products for months with little improvement, it often means you need a more personalised and structured approach rather than just another cleanser.</p>\"}',1,'2026-04-13 12:26:24','2026-04-13 12:26:24','fef51300-1ff8-4f7f-9ccd-d97883043448'),
(7737,7737,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-13 12:27:25','2026-04-13 12:27:25','6e21519a-1375-4304-a3f6-03cc614b83d4'),
(7738,7738,1,'Frequently Asked Questions About Chemical Peels','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Chemical Peels\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Chemical Peels answered by Dr Rachel.\"}',1,'2026-04-13 12:27:25','2026-04-13 12:27:25','2bcd81ff-a900-4dc6-b3fe-dd56138b209c'),
(7747,7747,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','e57e6b1a-7918-47f5-b7be-325405f5e17d'),
(7748,7748,1,'Frequently Asked Questions About Anti-Wrinkle Injections','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Anti-Wrinkle Injections\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Anti-Wrinkle Injections answered by Dr Rachel.\"}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','a6b20875-a2b7-4954-8e83-715b3d5a86a6'),
(7749,7749,1,'How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do anti-wrinkle injection results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results vary from person to person, but most treatments last up to 3 months, sometimes longer. Rather than suddenly wearing off, the effect fades gradually - a bit like a dimmer switch slowly turning back on - as muscle movement gently returns over that time. </p><p> </p><p>For many patients, this gradual return of movement feels very natural. Follow-up and maintenance timing can be discussed during your consultation, depending on how your face responds to treatment.</p>\"}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','4d89de5d-2b97-42ed-bbe0-ba1c135a6131'),
(7750,7750,1,'How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How permanent are the results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Anti-wrinkle injections are temporary by design. For most people, results last up to 3 months and fade gradually as muscle movement slowly returns. This is actually a positive - it means treatment is adjustable over time and can be refined as your face changes. If you ever decide not to continue, the effects naturally wear off. There are no permanent non-surgical treatments for expression lines, but they can be softened and managed very effectively with the right approach.</p>\"}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','4eeba288-94e9-4146-b62b-caf0497e2961'),
(7751,7751,1,'Can I combine anti-wrinkle injections with other treatments?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine anti-wrinkle injections with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Absolutely. In fact, combining treatments often delivers the most natural and harmonious results. As we age, changes do not happen in just one layer of the face. Muscle activity, skin quality, hydration, and collagen support all change over time, and each plays a role in how the skin looks and feels. Anti-wrinkle injections address muscle movement, while other treatments focus on improving skin quality, boosting collagen support, and restoring lost volume. </p><p> </p><p>Depending on your specific concerns, complementary treatments to enhance your results could include microneedling to significantly enhance your skin quality, advanced <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">bio-stimulators like JULAINE™</a> or <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> to boost collagen production and improve skin laxity, and subtle <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> to artfully restore lost volume. Many of my Wirral patients support their treatment outcomes with personalised specialist skincare to enhance and maintain their results. During your consultation, we will discuss which combination approach might work best for your specific concerns and goals.</p>\"}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','244e2bee-8e9f-47d5-a1bf-c34520f33a3e'),
(7752,7752,1,'Are there any side effects or risks?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Most side effects of anti-wrinkle injections, if they occur, are mild and temporary. These may include slight redness at the injection sites, minor bruising, or a temporary headache. Less commonly, small areas of asymmetry or mild eyelid drooping can occur; these effects usually settle naturally over time and can be reviewed and adjusted at your follow-up appointment. As a GMC-registered doctor, I follow strict medical standards for assessment, prescribing, administration, and aftercare. I am always available to support my patients after treatment, and if you have any concerns at all, you can contact me directly and I will respond promptly. All potential risks are discussed in advance so you can feel informed, supported, and reassured throughout your treatment journey.</p>\"}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','572a2837-6c0c-4b59-83ab-32cdcd2e686b'),
(7753,7753,1,'Will people know that I have had treatment?','q-will-people-know-that-i-have-had-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will people know that I have had treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Not unless you tell them. The hallmark of well-planned anti-wrinkle treatment is that people notice you look refreshed, well-rested, or simply <i>really well</i>, without being able to pinpoint exactly why. Patients often tell me friends or colleagues comment that they look less tired, or ask if they have been on holiday. When treatment is carefully planned and performed with a light touch, the results should never look obvious or overdone. You will still look like yourself - just fresher and more confident.</p>\"}',1,'2026-04-13 12:44:41','2026-04-13 12:44:41','497f49a9-37db-4810-b56c-2846b5b8d31d'),
(7758,7758,1,'Homepage','homepage','__home__',NULL,1,'2026-04-13 12:45:34','2026-04-13 12:45:34','97d46b0d-e96e-49fd-bcba-0928fe9b6f15'),
(7759,7759,1,'Elegant Text section','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"center\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-13 12:45:34','2026-04-13 12:45:34','e767cc5b-58c8-4b5b-97db-af7faf98f3f6'),
(7760,7760,1,'Elegant Text Section','testtt',NULL,NULL,1,'2026-04-13 12:45:34','2026-04-13 12:45:34','073a3dbf-9633-4dda-a897-1debd511701d'),
(7761,7761,1,'Helping you look and feel your best at every stage of life','specialised-in-the-subtle-magic-of-clinically-advanced-treatments',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Helping you look and feel your best at every stage of life\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h3\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2026-04-13 12:45:34','2026-04-13 12:45:34','92ecd6c2-1846-42cc-a127-18a688fb7699'),
(7765,7765,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-13 12:47:41','2026-04-13 12:47:41','0c37aeff-dfd1-4c6d-9ae6-a06b3592eb23'),
(7766,7766,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose JULÄINE™ Bio-Stimulator?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is a next-generation collagen-stimulating treatment designed to increase your skin’s own collagen production at a deeper level. By supporting long-term collagen renewal, JULÄINE™ delivers visible improvements in skin firmness, texture, and radiance, with results that develop naturally and last far longer than many traditional treatments.</span></p>\"}',1,'2026-04-13 12:47:41','2026-04-13 12:47:41','af35e096-cc02-46b9-a77a-e60310f7c5ed'),
(7767,7767,1,'Exceptional Longevity','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-award\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Exceptional Longevity\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">JULÄINE™ is designed for long-term improvement, with results that typically last 18–24 months following a course of 3 treatments. Rather than creating a temporary change, it supports your skin to rebuild its own collagen, delivering gradual, lasting rejuvenation. Over time, the treatment material is naturally broken down by the body, leaving behind the new collagen that your skin has produced.</span></p>\"}',1,'2026-04-13 12:47:41','2026-04-13 12:47:41','16cac685-ce3c-4cc4-9db1-e831759ed6fa'),
(7768,7768,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":false,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-13 12:47:41','2026-04-13 12:47:41','a2dd5ce6-5815-4da0-b0fa-62a4d06a2e1e'),
(7781,7781,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','ac9881ef-af8a-4191-ae60-a9604a29f13d'),
(7782,7782,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Bio-Stimulator answered by Dr Rachel.\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','1f4e95a5-7de8-40ab-aa56-c2cb681cb453'),
(7784,7784,1,'Is JULÄINE™ treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find JULÄINE™ treatment very comfortable. The product itself does not sting, and it is placed into the deeper layers of the skin using a soft, flexible cannula rather than multiple sharp needle injections. This helps minimise discomfort during the procedure.\\nYou may feel some pressure as the product is carefully placed, but this is generally well tolerated. Any tenderness afterwards is usually mild and, if it occurs, settles within 12-24 hours.\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','de8dbb8c-7e27-46b7-822b-60ac830ff8c6'),
(7785,7785,1,'How many JULÄINE™ sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many JULÄINE™ sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"For most patients, I recommend a course of 3-4 treatments, spaced around 4-6 weeks apart. This allows results to build gradually and evenly, giving your skin time to respond and produce new collagen between sessions.\\nSome patients, particularly those with more advanced skin laxity, may benefit from additional treatments. The exact number needed varies from person to person and depends on how your skin responds.\\nDuring your consultation, I will assess your skin carefully and create a personalised treatment plan tailored to your individual concerns and goals.\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','05adacd6-b1d6-4645-92ef-4946d5146df2'),
(7787,7787,1,'How long do JULÄINE™ results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do JULÄINE™ results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results typically last around 18-24 months following a complete treatment course of 3 sessions. This incredible longevity is because JULÄINE™ works by stimulating your skin to produce its own collagen, rather than relying on a temporary product to create change.\\nOver time, the PLLA treatment material is naturally and evenly broken down by the body, while the collagen your skin has produced continues to support firmness, texture, and structure. For many patients, a single maintenance treatment every 18-24 months is enough to help sustain results long-term.\\nThis makes JULÄINE™ a cost-effective, long-term approach to skin health, with benefits that continue well beyond the treatment period itself.\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','51a5e5aa-a7b9-4237-b4e9-9d7728baa5b8'),
(7788,7788,1,'Is there downtime after JULÄINE™?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there downtime after JULÄINE™?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is minimal. You may notice small marks where the cannula was inserted, along with mild swelling for 24-48 hours. Occasionally, slight bruising can occur, but this is usually minor and settles on its own.\\nMost patients return to work and normal daily activities immediately. I advise avoiding strenuous exercise for 24 hours to reduce the risk of bruising. One of the advantages of JULÄINE™ is that aftercare is straightforward, with no intensive massage or complicated routines required.\\nAs a general guide, I recommend avoiding aesthetic treatments in the week leading up to important events, and allowing a 48-hour buffer for any visible marks to settle.\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','b9c8420c-b323-4e0c-b2e3-e7137d7cbbb8'),
(7789,7789,1,'Can JULÄINE™ be combined with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can JULÄINE™ be combined with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, JULÄINE™ works beautifully alongside other aesthetic treatments for comprehensive facial rejuvenation. It can be combined with <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">anti-wrinkle injections </a>(regeneration plus wrinkle prevention), <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> (long-term regeneration plus immediate volume where needed), <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> (collagen stimulation plus hydration), and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> (bio-stimulation plus cellular repair). I will discuss the optimal combination approach during your consultation based on your specific concerns.</p>\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','b8c3b51f-81c0-42c0-8ef3-440f7ecb6fff'),
(7790,7790,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology. </p><p> </p><p>In clinical practice, this more controlled behaviour in the tissue is associated with a more predictable treatment experience, improved comfort, and a reduced likelihood of uneven collagen stimulation or unwanted nodules. These factors are particularly important when treating delicate areas and when planning results that develop gradually and look natural. For me as a doctor, this combination of innovative formulation, strong scientific underpinning, and reliable performance in the skin is why JULÄINE™ is the collagen-stimulating treatment I have chosen to use in my clinic.</p>\"}',1,'2026-04-13 12:48:59','2026-04-13 12:48:59','f80d47b7-6a61-4a69-a1bc-66b1d94e0169'),
(7794,7794,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-13 12:50:11','2026-04-13 12:50:11','cb2aeaa8-2019-4f5e-adf8-a571cbdd4e8e'),
(7795,7795,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Bio-Stimulator answered by Dr Rachel.\"}',1,'2026-04-13 12:50:11','2026-04-13 12:50:11','176b3dcf-0dc8-4016-8c75-be1180c21213'),
(7796,7796,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology. </p><p> </p><p>As a doctor, I am very selective about the treatments I introduce into my clinic. JULÄINE™ is a collagen-stimulating treatment I have chosen because of its strong scientific foundation, innovative formulation and the natural, reliable results it can achieve.</p>\"}',1,'2026-04-13 12:50:11','2026-04-13 12:50:11','4b7ffb55-6959-47d8-ba96-d27e518a5be4');
INSERT INTO `elements_sites` VALUES
(7797,7797,1,'Is JULÄINE™ different from dermal fillers?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes! They are fundamentally different, but often highly complementary. <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">Dermal fillers</a> are typically made from hyaluronic acid, a naturally occurring hydrating substance. Dermal fillers work by replacing lost volume and providing immediate shape and support. Results are visible straight away and usually last around 6–12 months, making fillers ideal for targeted volume correction or contouring.</p><p> </p><p> JULÄINE™, on the other hand, is a collagen bio-stimulator. Rather than replacing volume, it works by stimulating your skin to produce its own collagen over time. This supports long-term structural improvement, enhancing skin quality, firmness, and texture in a gradual, natural way. Most patients begin to notice changes around 2–3 months after treatment, with results continuing to improve over several months and typically lasting up to 18–24 months. In practice, these treatments often work very well together. Fillers can address areas of volume loss where immediate support is needed, while JULÄINE™ improves overall skin quality and structure, helping results look more natural, balanced, and long-lasting.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ different from dermal fillers?\"}',1,'2026-04-13 12:52:12','2026-04-13 12:52:12','2c9b5fe4-3996-4ae0-a1f5-df4766356a36'),
(7809,7809,1,'When will I see results from JULÄINE™?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from JULÄINE™?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results develop gradually as your skin begins to produce new collagen. Some patients notice an initial glow or improvement in skin texture shortly after the first treatment, but this is only the very early stage. Most patients report noticing more meaningful changes after the second treatment, usually around 4-6 weeks in. At this point, skin often looks smoother, brighter, and more supported, with an overall improvement in texture and firmness. The most significant changes develop from around 12 weeks onwards, once collagen production is well established. Results continue to build gradually, with improvements continuing for several months after your final treatment.</p>\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','cabc5b6c-84d2-4a71-8621-358d262097da'),
(7810,7810,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','3a13f965-6073-4cb7-a494-e46fb05225f4'),
(7811,7811,1,'What Areas Can JULÄINE™ Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can JULÄINE™ Treat?</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Common Treatment Areas:</span></span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Midface Rejuvenation</strong> - Restore youthful support to flattened cheeks and temples. JULÄINE™ works by strengthening the skin from within, improving firmness and structure in areas affected by collagen loss, creating a subtle lifting and tightening effect that looks completely natural. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Nasolabial Folds (Smile Lines)</strong> - Soften the appearance of lines running from the nose to the corners of the mouth, by improving collagen support in the surrounding skin, leading to gradual, natural-looking improvement over time. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Jawline Definition </strong>- Improves jawline definition and addresses early jowling. JULÄINE™ supports collagen renewal and tissue firmness, helping create a more defined, tightened lower face.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,20%);\\\"><strong>Neck Rejuvenation</strong> - Improves skin laxity and crepey texture in the neck area. JULÄINE™ tightens tissue and stimulates collagen for a smoother, more youthful neck appearance.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','3f53e90a-ae61-4741-aa9b-789f91cd9f70'),
(7812,7812,1,'Frequently Asked Questions About JULÄINE™ Bio - Stimulator','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About JULÄINE™ Bio - Stimulator\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Bio-Stimulator answered by Dr Rachel.\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','3d3d64a1-0990-42c4-b6d0-8b2574db54df'),
(7813,7813,1,'Is JULÄINE™ different from dermal fillers?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ different from dermal fillers?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes! They are fundamentally different, but often highly complementary. <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">Dermal fillers</a> are typically made from hyaluronic acid, a naturally occurring hydrating substance. Dermal fillers work by replacing lost volume and providing immediate shape and support. Results are visible straight away and usually last around 6–12 months, making fillers ideal for targeted volume correction or contouring.</p><p> </p><p> JULÄINE™, on the other hand, is a collagen bio-stimulator. Rather than replacing volume, it works by stimulating your skin to produce its own collagen over time. This supports long-term structural improvement, enhancing skin quality, firmness, and texture in a gradual, natural way. Most patients begin to notice changes around 2–3 months after treatment, with results continuing to improve over several months and typically lasting up to 18–24 months. In practice, these treatments often work very well together. Fillers can address areas of volume loss where immediate support is needed, while JULÄINE™ improves overall skin quality and structure, helping results look more natural, balanced, and long-lasting.</p>\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','4b8fd3a3-eae2-4489-915e-22509fe350be'),
(7814,7814,1,'Is JULÄINE™ treatment painful?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is JULÄINE™ treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find JULÄINE™ treatment very comfortable. The product itself does not sting, and it is placed into the deeper layers of the skin using a soft, flexible cannula rather than multiple sharp needle injections. This helps minimise discomfort during the procedure.\\nYou may feel some pressure as the product is carefully placed, but this is generally well tolerated. Any tenderness afterwards is usually mild and, if it occurs, settles within 12-24 hours.\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','6cf82a96-97fd-4872-97ff-5764ce5ada7d'),
(7815,7815,1,'How many JULÄINE™ sessions will I need?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many JULÄINE™ sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"For most patients, I recommend a course of 3-4 treatments, spaced around 4-6 weeks apart. This allows results to build gradually and evenly, giving your skin time to respond and produce new collagen between sessions.\\nSome patients, particularly those with more advanced skin laxity, may benefit from additional treatments. The exact number needed varies from person to person and depends on how your skin responds.\\nDuring your consultation, I will assess your skin carefully and create a personalised treatment plan tailored to your individual concerns and goals.\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','fbea570f-8d4f-4cca-a6c7-3bab2ca2cdb8'),
(7816,7816,1,'When will I see results from JULÄINE™?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from JULÄINE™?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Results develop gradually as your skin begins to produce new collagen. Some patients notice an initial glow or improvement in skin texture shortly after the first treatment, but this is only the very early stage. Most patients report noticing more meaningful changes after the second treatment, usually around 4-6 weeks in. At this point, skin often looks smoother, brighter, and more supported, with an overall improvement in texture and firmness. The most significant changes develop from around 12 weeks onwards, once collagen production is well established. Results continue to build gradually, with improvements continuing for several months after your final treatment.</p>\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','3e92bc80-4a5b-4171-bf36-409382c9999f'),
(7817,7817,1,'How long do JULÄINE™ results last?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do JULÄINE™ results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results typically last around 18-24 months following a complete treatment course of 3 sessions. This incredible longevity is because JULÄINE™ works by stimulating your skin to produce its own collagen, rather than relying on a temporary product to create change.\\nOver time, the PLLA treatment material is naturally and evenly broken down by the body, while the collagen your skin has produced continues to support firmness, texture, and structure. For many patients, a single maintenance treatment every 18-24 months is enough to help sustain results long-term.\\nThis makes JULÄINE™ a cost-effective, long-term approach to skin health, with benefits that continue well beyond the treatment period itself.\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','7e9087d6-c028-4b6c-85f7-d60b7985a406'),
(7818,7818,1,'Is there downtime after JULÄINE™?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there downtime after JULÄINE™?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is minimal. You may notice small marks where the cannula was inserted, along with mild swelling for 24-48 hours. Occasionally, slight bruising can occur, but this is usually minor and settles on its own.\\nMost patients return to work and normal daily activities immediately. I advise avoiding strenuous exercise for 24 hours to reduce the risk of bruising. One of the advantages of JULÄINE™ is that aftercare is straightforward, with no intensive massage or complicated routines required.\\nAs a general guide, I recommend avoiding aesthetic treatments in the week leading up to important events, and allowing a 48-hour buffer for any visible marks to settle.\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','d48d6077-9c55-439e-90b4-639f839914de'),
(7819,7819,1,'Can JULÄINE™ be combined with other treatments?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can JULÄINE™ be combined with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, JULÄINE™ works beautifully alongside other aesthetic treatments for comprehensive facial rejuvenation. It can be combined with <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">anti-wrinkle injections </a>(regeneration plus wrinkle prevention), <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> (long-term regeneration plus immediate volume where needed), <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> (collagen stimulation plus hydration), and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> (bio-stimulation plus cellular repair). I will discuss the optimal combination approach during your consultation based on your specific concerns.</p>\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','0bfcc960-969a-418b-bfdc-b21841579c87'),
(7820,7820,1,'Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why did you choose JULÄINE™ over older PLLA treatments such as Sculptra?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>JULÄINE™ represents a newer generation of PLLA collagen bio-stimulation. While earlier PLLA treatments such as Sculptra have been used for many years, JULÄINE™ has been developed with a more refined formulation designed to distribute more evenly within the skin and to stimulate collagen through a gentler, low-inflammation pathway using patented LASYNPRO™ technology. </p><p> </p><p>As a doctor, I am very selective about the treatments I introduce into my clinic. JULÄINE™ is a collagen-stimulating treatment I have chosen because of its strong scientific foundation, innovative formulation and the natural, reliable results it can achieve.</p>\"}',1,'2026-04-13 12:54:27','2026-04-13 12:54:27','2a9d0acd-1b87-4e7a-a1fe-050350c4f523'),
(7821,7821,1,'How many microneedling sessions will I need?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many microneedling sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of treatments rather than a one-off appointment. Treatment programmes usually involve a course of microneedling treatments spaced 4–6 weeks apart, allowing the skin time to heal and remodel between visits. The number of treatments recommended depends on the concern being addressed and how your skin responds.</p><p> </p><p>As a general guide, I recommend that milder concerns, such as fine lines and early texture changes, typically require 3-4 sessions, moderate concerns, including deeper lines or mild scarring, often benefit from 4-5 sessions, and more established concerns such as significant acne scarring or stretch marks may require 6 or more sessions as part of a longer-term programme. Each treatment builds on the previous one, with improvements developing gradually as new collagen forms. To help maintain results, patients will have maintenance treatments approximately every 6 months, depending on individual skin needs.</p>\"}',1,'2026-04-13 12:55:23','2026-04-13 12:57:12','1c0b5341-5964-4315-b916-c7d1a9b5b8fa'),
(7823,7823,1,'What is the difference between NCTF, PDRNs, and Exosomes?','q-will-i-look-frozen-or-expressionless',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>These are all advanced treatment serums that I use alongside medical microneedling to enhance your results, with the final choice depending on your skin concerns and treatment goals.</p><p> </p><p><strong>NCTF 135 HA</strong> is a poly-revitalising formulation containing over 50 active ingredients that support hydration, luminosity and overall skin quality. <strong>Topical PDRNs</strong> (polynucleotides) combine DNA fragments with hyaluronic acid and niacinamide to support cellular repair, barrier function and collagen quality, making them particularly effective for skin ageing and regeneration. <strong>Exosomes </strong>are an advanced regenerative technology containing signalling molecules that improve communication between skin cells, encouraging repair, renewal and collagen stimulation over time, and are especially helpful for improving scarring and treating stubborn pigmentation. I will recommend the most appropriate option following your detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between NCTF, PDRNs, and Exosomes?\"}',1,'2026-04-13 12:55:58','2026-04-13 12:56:01','ee69c674-241f-46e8-bf10-5586bea9751f'),
(7824,7824,1,'What skincare should I use after microneedling?','q-are-there-any-side-effects-or-risks',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>After microneedling, your skin will be more sensitive, so gentle care is important. For the first 48 hours, use a mild cleanser only and apply a soothing, hydrating moisturiser. SPF 50 sunscreen is essential (as always) to protect the skin while it heals and sustain your results. Avoid retinoids, acids and other active ingredients for around 5-7 days, and avoid makeup for 12-24 hours. Keeping the skin well hydrated and protected supports comfortable healing and optimal results. I often recommend specialist skincare, such as pHformula, to support recovery and maintain improvements between treatments. Proper aftercare plays a key role in both safety and long-term collagen stimulation.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after microneedling?\"}',1,'2026-04-13 12:56:33','2026-04-13 12:56:33','c3eabe09-2731-4fe3-8598-13be691513e9'),
(7826,7826,1,'Can microneedling treat acne scars?','q-is-there-any-downtime-after-treatment',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced clinical-grade serums. By creating controlled micro-injuries in the skin, microneedling stimulates collagen production, helping to gradually soften and improve the appearance of scar tissue. Improvements develop over time, with the most visible changes typically seen from around 12 weeks onwards. For more established or deeper scarring, microneedling is often combined with regenerative treatments such as <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>, <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">biostimulators</a> like JULAINE™ and <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">chemical resurfacing</a>, which support collagen quality and tissue repair. A course of treatments is usually required, with the exact number depending on scar type and severity. Results are progressive, natural-looking and continue to improve with a tailored, combined approach.</p>\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can microneedling treat acne scars?\"}',1,'2026-04-13 12:57:36','2026-04-13 12:57:36','e0fc3d08-7667-4c3d-b188-2e5c5839277e'),
(7837,7837,1,'How does microneedling compare to laser resurfacing?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How does microneedling compare to laser resurfacing?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Both microneedling and laser resurfacing aim to stimulate collagen, but they work in different ways. Laser treatments use heat to resurface the skin, which can be effective but often involves longer downtime and a higher risk of side effects, particularly in darker skin tones. Microneedling stimulates collagen through controlled micro-injuries without heat or surface damage, allowing the skin to heal naturally. This typically results in shorter recovery times, greater comfort and suitability across all skin types. While laser resurfacing may still be considered for certain types of severe scarring, microneedling offers excellent collagen stimulation with fewer risks and minimal downtime for most patients.</p>\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','e856fdb9-dfbf-42fc-a054-7d54d232a791'),
(7838,7838,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','47efdfe8-7b19-434b-be7a-951800c0e107'),
(7839,7839,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Medical Microneedling?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical microneedling is collagen induction therapy designed to stimulate the skin’s natural wound-healing processes, supporting collagen production and tissue regeneration at a deeper level.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of collagen induction\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"Microneedling works by harnessing the body’s natural and highly effective wound-healing biology. When performed in a controlled, medical setting, it encourages the skin to repair, strengthen, and regenerate itself from within. When tiny needles create precise micro-injuries within the dermis, the skin recognises this as a signal to begin repair. This process unfolds in three carefully coordinated phases.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 1: Early Healing Response (first few hours)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skin releases growth factors and signalling molecules that initiate repair. Blood platelets are drawn to the treated areas, helping to start the regeneration process. This response is controlled and purposeful, supporting healing rather than causing damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 2: Repair and Renewal (days to weeks)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblast cells migrate to the treated areas and begin producing new collagen and elastin. New micro-circulation develops, improving oxygen and nutrient delivery to the skin. During this phase, skin strength, texture, and quality begin to improve.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 3: Remodelling and Maturation (weeks 4–12)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Newly formed collagen continues to mature and organise into a stronger, more functional dermal structure. Over time, the skin becomes firmer, smoother, and more resilient, with results continuing to develop for up to twelve weeks.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4448],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led microneedling matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Microneedling may appear straightforward, but achieving safe, consistent, and meaningful results relies on medical expertise and clinical judgement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I bring a detailed understanding of skin anatomy, facial structure, and individual variation. I understand how dermal depth differs across facial zones, where important vascular structures lie beneath the skin, and how to calibrate needle depth precisely to stimulate collagen while protecting tissue integrity.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Equally important is accurate assessment. Not every skin concern is best treated with microneedling alone. Some types of scarring respond better to alternative resurfacing approaches, some concerns benefit from injectable regenerative treatments, and others require targeted chemical resurfacing for pigmentation. Knowing which approach is most appropriate comes from clinical training, experience, and taking a whole-skin view rather than relying on a single treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Serum selection also plays a critical role. Different formulations support different biological processes: some enhance hydration and radiance, others support tissue repair and recovery, while more advanced regenerative options help encourage collagen renewal in more challenging cases. Matching the right serum to your skin biology is key to achieving optimal outcomes.</span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4531],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','455acff9-cb51-4668-b590-9abc59c3000d'),
(7840,7840,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Who Should Consider Medical Microneedling?</span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>This treatment may be suitable if:</span></span></h3><h3> </h3><p><span style=\\\"color:hsl(0,0%,0%);\\\"><strong>You have acne scarring</strong> that skincare alone cannot improve. Microneedling works within the deeper layers of the skin to remodel scar tissue and support smoother texture over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You notice fine lines and uneven texture</strong> that make your skin appear less smooth or refreshed, and would like to support natural collagen renewal.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have pigmentation concerns </strong>such as sunspots that are bothering you, where some energy-based treatments may carry a higher risk of pigment change.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have stretch marks</strong> and would like to improve skin texture and quality in these areas.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are seeking overall skin rejuvenation</strong> with minimal downtime, typically limited to short-term redness that settles within 24-48 hours.</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','e56b137b-212a-40a3-9708-134208208110'),
(7841,7841,1,'Frequently Asked Questions About Microneedling','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Microneedling\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Microneedling Treatment answered by Dr Rachel.\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','cbe8a057-a693-4274-b6a4-262dd87c60db'),
(7842,7842,1,'How many microneedling sessions will I need?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many microneedling sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of treatments rather than a one-off appointment. Treatment programmes usually involve a course of microneedling treatments spaced 4–6 weeks apart, allowing the skin time to heal and remodel between visits. The number of treatments recommended depends on the concern being addressed and how your skin responds.</p><p> </p><p>As a general guide, I recommend that milder concerns, such as fine lines and early texture changes, typically require 3-4 sessions, moderate concerns, including deeper lines or mild scarring, often benefit from 4-5 sessions, and more established concerns such as significant acne scarring or stretch marks may require 6 or more sessions as part of a longer-term programme. Each treatment builds on the previous one, with improvements developing gradually as new collagen forms. To help maintain results, patients will have maintenance treatments approximately every 6 months, depending on individual skin needs.</p>\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','2bf06286-9431-4721-9ba5-a2c64c03533a'),
(7843,7843,1,'Does microneedling hurt?','q-how-many-treatments-will-i-need-is-it-a-one-off-treatment-or-ongoing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does microneedling hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients describe microneedling as mildly uncomfortable rather than painful. During treatment, you feel pressure and a light scratching sensation as the device passes over the skin. Sensation varies depending on individual sensitivity and the area being treated, with finer areas such as the upper lip feeling slightly more intense. Treatment is very well tolerated and the discomfort is brief. Afterwards, the skin typically feels warm and tight, similar to mild sunburn, and this settles quickly.\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','c303d3f8-d81b-48f9-b103-3b48343b620d'),
(7844,7844,1,'When will I see results from microneedling?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results from microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"You may notice an early improvement in radiance once initial redness settles, but the most meaningful results develop gradually over time. Microneedling works by stimulating your skin’s natural collagen production, which is a slow, regenerative process. Around 12 weeks is when results become most noticeable, as newly formed collagen has had time to mature and strengthen the skin. Improvements in texture, firmness and overall skin quality continue to develop for several months after treatment, creating results that look natural, refreshed and long-lasting rather than instant or artificial.\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','9018e73d-80ac-44e0-a433-e37a2f533fc2'),
(7845,7845,1,'What is the downtime after microneedling?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the downtime after microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime after microneedling is usually minimal, but this can vary from person to person. Most patients experience redness for 24-48 hours, with the skin feeling warm, tight or slightly flushed. Any swelling is typically mild and short-lived. Between days 3–5, you may notice light flaking or dryness as the skin renews. Many patients feel comfortable returning to work straight away, and makeup can usually be applied after 12-24 hours if needed. I recommend avoiding strenuous exercise for 24 hours and swimming, saunas or steam rooms for 48 hours to support optimal healing. Compared with more intensive resurfacing treatments, recovery is generally quick and well-tolerated.\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','e013d6b6-8d1e-4a42-b42e-fd0de8898bdf'),
(7846,7846,1,'Is microneedling safe for dark skin?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is microneedling safe for dark skin?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, microneedling is considered one of the safest skin treatments for darker skin tones, including Fitzpatrick types IV–VI. Unlike some heat-based treatments, microneedling works by creating controlled micro-channels in the skin without using heat or causing surface damage. This significantly reduces the risk of post-inflammatory hyperpigmentation when performed correctly. Treatment is carefully tailored, including needle depth, technique and aftercare, to suit your skin type and individual needs. When planned and delivered appropriately, microneedling can be a safe and effective option for improving skin texture, scarring and overall skin quality in darker skin tones.\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','178c918f-6898-41e3-b38a-5a51922cdf9b'),
(7847,7847,1,'What is the difference between NCTF, PDRNs, and Exosomes?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between NCTF, PDRNs, and Exosomes?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>These are all advanced treatment serums that I use alongside medical microneedling to enhance your results, with the final choice depending on your skin concerns and treatment goals.</p><p> </p><p><strong>NCTF 135 HA</strong> is a poly-revitalising formulation containing over 50 active ingredients that support hydration, luminosity and overall skin quality. <strong>Topical PDRNs</strong> (polynucleotides) combine DNA fragments with hyaluronic acid and niacinamide to support cellular repair, barrier function and collagen quality, making them particularly effective for skin ageing and regeneration. <strong>Exosomes </strong>are an advanced regenerative technology containing signalling molecules that improve communication between skin cells, encouraging repair, renewal and collagen stimulation over time, and are especially helpful for improving scarring and treating stubborn pigmentation. I will recommend the most appropriate option following your detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.</p>\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','ac7fe699-033f-4bea-8262-866eec4f4761'),
(7848,7848,1,'Can microneedling treat acne scars?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can microneedling treat acne scars?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced clinical-grade serums. By creating controlled micro-injuries in the skin, microneedling stimulates collagen production, helping to gradually soften and improve the appearance of scar tissue. Improvements develop over time, with the most visible changes typically seen from around 12 weeks onwards. For more established or deeper scarring, microneedling is often combined with regenerative treatments such as <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>, <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">biostimulators</a> like JULAINE™ and <a href=\\\"{entry:4303@1:url||https://hermeswp.xyz/rachel/web/treatments/chemical-peels}\\\">chemical resurfacing</a>, which support collagen quality and tissue repair. A course of treatments is usually required, with the exact number depending on scar type and severity. Results are progressive, natural-looking and continue to improve with a tailored, combined approach.</p>\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','147b5375-2f4b-4f4d-9b4e-e7baaf8a602b'),
(7849,7849,1,'How does microneedling compare to laser resurfacing?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How does microneedling compare to laser resurfacing?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Both microneedling and laser resurfacing aim to stimulate collagen, but they work in different ways. Laser treatments use heat to resurface the skin, which can be effective but often involves longer downtime and a higher risk of side effects, particularly in darker skin tones. Microneedling stimulates collagen through controlled micro-injuries without heat or surface damage, allowing the skin to heal naturally. This typically results in shorter recovery times, greater comfort and suitability across all skin types. While laser resurfacing may still be considered for certain types of severe scarring, microneedling offers excellent collagen stimulation with fewer risks and minimal downtime for most patients.</p>\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','79a7deb3-25bc-4e64-990f-923f645c163b'),
(7850,7850,1,'Can microneedling help with hair loss?','q-can-i-combine-anti-wrinkle-injections-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can microneedling help with hair loss?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes. Scalp microneedling can support hair growth by stimulating hair follicles, improving circulation and encouraging a healthier scalp environment. It is most effective for androgenetic (male-pattern or female-pattern) hair loss and general hair thinning where follicles are still present. Results are often enhanced when microneedling is combined with regenerative treatments such as polynucleotides or biostimulators like JULAINE™, which help support follicle health and improve the quality of the surrounding tissue. A course of treatments is usually recommended, typically monthly sessions followed by maintenance, with improvements developing gradually over 4-6 months as the hair growth cycle responds. Microneedling is not suitable for areas where hair follicles are no longer active.\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','a2b97850-d00e-4887-83f2-e49258495584'),
(7851,7851,1,'What skincare should I use after microneedling?','q-are-there-any-side-effects-or-risks',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What skincare should I use after microneedling?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>After microneedling, your skin will be more sensitive, so gentle care is important. For the first 48 hours, use a mild cleanser only and apply a soothing, hydrating moisturiser. SPF 50 sunscreen is essential (as always) to protect the skin while it heals and sustain your results. Avoid retinoids, acids and other active ingredients for around 5-7 days, and avoid makeup for 12-24 hours. Keeping the skin well hydrated and protected supports comfortable healing and optimal results. I often recommend specialist skincare, such as pHformula, to support recovery and maintain improvements between treatments. Proper aftercare plays a key role in both safety and long-term collagen stimulation.</p>\"}',1,'2026-04-13 13:01:09','2026-04-13 13:01:09','3229d162-d4c7-49b0-a331-238afe43640f'),
(7853,7853,1,'Introducing JULAINE™','first-blog-post','blog/first-blog-post','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>I am so excited to officially launch JULAINE™ – the next generation of collagen stimulation – into my clinic on the Wirral. The response from my patients has been incredible, and I am proud to be the exclusive provider of this advanced treatment on the Wirral, and one of very few clinics offering it across the Northwest. This is a treatment for patients who want to truly invest in their long-term skin health. It is not a quick fix or a short-term boost, but a meaningful improvement in skin quality that continues to build and get better over time.<br /><br /> </p><h2>Why is JULAINE™ different, and why am I introducing this new treatment to my clinic?</h2>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[48]}',1,'2026-04-15 14:53:22','2026-04-15 14:53:22','c614c349-7e6b-40a2-93d5-6cde614d34a6'),
(7855,7855,1,'Introducing JULAINE™','first-blog-post','blog/first-blog-post','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>I am so excited to officially launch JULAINE™ – the next generation of collagen stimulation – into my clinic on the Wirral. The response from my patients has been incredible, and I am proud to be the exclusive provider of this advanced treatment on the Wirral, and one of very few clinics offering it across the Northwest. This is a treatment for patients who want to truly invest in their long-term skin health. It is not a quick fix or a short-term boost, but a meaningful improvement in skin quality that continues to build and get better over time.<br /><br /> </p><h2>Why is JULAINE™ different, and why am I introducing this new treatment to my clinic?</h2><p> </p><p>JULAINE™ represents a significant step forward in collagen-stimulating technology. It is far more advanced, refined and safety-led than older generation treatments and it also fulfils a need for my patients for improved collagen stimulation, naturally – which is just what my patients have been asking for. Another key reason I have chosen JULAINE™ is the ethos of the company behind it. They are deeply focused on science, evidence and clinical research, and on backing up their claims properly. I do not choose treatments lightly: anything I offer in clinic must be evidence-led, safety-focused, and fully aligned with my principles as a doctor, and JULAINE™ meets those standards. Honestly, this is the most excited I have been about a skin treatment in a very long time. It fills a gap I have been searching for, and it aligns perfectly with my philosophy of subtle, progressive, doctor-led aesthetic care. The regenerative potential of this treatment is phenomenal, and the results other clinics have been getting are really wonderful. </p><p> </p><h2>What are the results like and how long does it last? </h2><h2> </h2><p>Results develop gradually, in line with neocollagenesis, the natural process of forming new collagen within the skin. JULAINE™ works by gently triggering the body’s own healing response, stimulating fibroblasts in the dermis to produce new collagen and elastin. Most patients notice improvements in skin quality after the second treatment, which usually takes place four to six weeks after the first. From this point onwards, improvements continue to build steadily over many months as new collagen forms. Around twelve weeks after the first treatment is an important milestone, as the newly formed collagen has matured sufficiently to create visible improvements in skin firmness, elasticity and softening of fine lines. The full results, following a complete course of three treatments, can last for up to two years. For most patients, only a single maintenance treatment is required every eighteen months to two years to maintain results. This is a luxury investment in your long-term skin health. </p><p> </p><p>JULAINE™ is also particularly well suited to patients who have experienced significant weight loss, including those who have used medical weight loss injections. Weight loss can sometimes lead to a reduction in facial volume, which may leave the skin appearing looser or less supported. By stimulating your own collagen production, JULAINE™ helps to gently and naturally restore structure and support over time. The aim is not to change how you look, but to ensure the face continues to look healthy, balanced and well supported as your weight stabilises, rather than appearing hollow or drawn, a change often highlighted in the media as “Ozempic face”.</p><p> </p><h2>What does the treatment experience feel like? </h2><h2> </h2><p>I am pleased to report that the procedure itself is very quick, with minimal discomfort. Most patients are able to return to normal activities almost immediately, making it easy to fit around busy lives. Karen, who kindly acted as a model for me during recent training, described the treatment as “perfectly comfortable. I did not feel the product going in, just a little bit of poking and prodding, but it definitely did not hurt.” This was particularly reassuring to hear, as Karen is new to aesthetic treatments and chose to be a model because she felt it was time to invest in herself, while still wanting results that looked natural and never obvious.</p><p> </p><p>Immediately after treatment, Karen had no redness or bruising. In all honesty, no one would have known she had just had a procedure. She noticed a small amount of swelling later that evening, which is entirely normal and expected as we are stimulating the body’s own healing and collagen response. When I saw her again four days later, her skin already looked glowing and beautifully radiant.</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[48]}',1,'2026-04-15 15:00:52','2026-04-15 15:00:52','8e730b44-6d15-41ec-8661-83bc71fc30ca'),
(7857,7857,1,'Introducing JULAINE™','first-blog-post','blog/first-blog-post','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>I am so excited to officially launch JULAINE™ – the next generation of collagen stimulation – into my clinic on the Wirral. The response from my patients has been incredible, and I am proud to be the exclusive provider of this advanced treatment on the Wirral, and one of very few clinics offering it across the Northwest. This is a treatment for patients who want to truly invest in their long-term skin health. It is not a quick fix or a short-term boost, but a meaningful improvement in skin quality that continues to build and get better over time.<br /><br /> </p><h2>Why is JULAINE™ different, and why am I introducing this new treatment to my clinic?</h2><p> </p><p>JULAINE™ represents a significant step forward in collagen-stimulating technology. It is far more advanced, refined and safety-led than older generation treatments and it also fulfils a need for my patients for improved collagen stimulation, naturally – which is just what my patients have been asking for. Another key reason I have chosen JULAINE™ is the ethos of the company behind it. They are deeply focused on science, evidence and clinical research, and on backing up their claims properly. I do not choose treatments lightly: anything I offer in clinic must be evidence-led, safety-focused, and fully aligned with my principles as a doctor, and JULAINE™ meets those standards. Honestly, this is the most excited I have been about a skin treatment in a very long time. It fills a gap I have been searching for, and it aligns perfectly with my philosophy of subtle, progressive, doctor-led aesthetic care. The regenerative potential of this treatment is phenomenal, and the results other clinics have been getting are really wonderful. </p><p> </p><h2>What are the results like and how long does it last? </h2><h2> </h2><p>Results develop gradually, in line with neocollagenesis, the natural process of forming new collagen within the skin. JULAINE™ works by gently triggering the body’s own healing response, stimulating fibroblasts in the dermis to produce new collagen and elastin. Most patients notice improvements in skin quality after the second treatment, which usually takes place four to six weeks after the first. From this point onwards, improvements continue to build steadily over many months as new collagen forms. Around twelve weeks after the first treatment is an important milestone, as the newly formed collagen has matured sufficiently to create visible improvements in skin firmness, elasticity and softening of fine lines. The full results, following a complete course of three treatments, can last for up to two years. For most patients, only a single maintenance treatment is required every eighteen months to two years to maintain results. This is a luxury investment in your long-term skin health. </p><p> </p><p>JULAINE™ is also particularly well suited to patients who have experienced significant weight loss, including those who have used medical weight loss injections. Weight loss can sometimes lead to a reduction in facial volume, which may leave the skin appearing looser or less supported. By stimulating your own collagen production, JULAINE™ helps to gently and naturally restore structure and support over time. The aim is not to change how you look, but to ensure the face continues to look healthy, balanced and well supported as your weight stabilises, rather than appearing hollow or drawn, a change often highlighted in the media as “Ozempic face”.</p><p> </p><h2>What does the treatment experience feel like? </h2><h2> </h2><p>I am pleased to report that the procedure itself is very quick, with minimal discomfort. Most patients are able to return to normal activities almost immediately, making it easy to fit around busy lives. Karen, who kindly acted as a model for me during recent training, described the treatment as “perfectly comfortable. I did not feel the product going in, just a little bit of poking and prodding, but it definitely did not hurt.” This was particularly reassuring to hear, as Karen is new to aesthetic treatments and chose to be a model because she felt it was time to invest in herself, while still wanting results that looked natural and never obvious.</p><p> </p><p>Immediately after treatment, Karen had no redness or bruising. In all honesty, no one would have known she had just had a procedure. She noticed a small amount of swelling later that evening, which is entirely normal and expected as we are stimulating the body’s own healing and collagen response. When I saw her again four days later, her skin already looked glowing and beautifully radiant.</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[48]}',1,'2026-04-15 15:01:22','2026-04-15 15:01:22','ea29586a-c784-41c7-b700-180a93201f53'),
(7858,7858,1,'JULAINE vial',NULL,NULL,NULL,1,'2026-04-15 15:02:13','2026-04-15 15:02:13','53bf53bc-d9f0-4759-b8da-a733eff43d24'),
(7860,7860,1,'Introducing JULAINE™','first-blog-post','blog/first-blog-post','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>I am so excited to officially launch JULAINE™ – the next generation of collagen stimulation – into my clinic on the Wirral. The response from my patients has been incredible, and I am proud to be the exclusive provider of this advanced treatment on the Wirral, and one of very few clinics offering it across the Northwest. This is a treatment for patients who want to truly invest in their long-term skin health. It is not a quick fix or a short-term boost, but a meaningful improvement in skin quality that continues to build and get better over time.<br /><br /> </p><h2>Why is JULAINE™ different, and why am I introducing this new treatment to my clinic?</h2><p> </p><p>JULAINE™ represents a significant step forward in collagen-stimulating technology. It is far more advanced, refined and safety-led than older generation treatments and it also fulfils a need for my patients for improved collagen stimulation, naturally – which is just what my patients have been asking for. Another key reason I have chosen JULAINE™ is the ethos of the company behind it. They are deeply focused on science, evidence and clinical research, and on backing up their claims properly. I do not choose treatments lightly: anything I offer in clinic must be evidence-led, safety-focused, and fully aligned with my principles as a doctor, and JULAINE™ meets those standards. Honestly, this is the most excited I have been about a skin treatment in a very long time. It fills a gap I have been searching for, and it aligns perfectly with my philosophy of subtle, progressive, doctor-led aesthetic care. The regenerative potential of this treatment is phenomenal, and the results other clinics have been getting are really wonderful. </p><p> </p><h2>What are the results like and how long does it last? </h2><h2> </h2><p>Results develop gradually, in line with neocollagenesis, the natural process of forming new collagen within the skin. JULAINE™ works by gently triggering the body’s own healing response, stimulating fibroblasts in the dermis to produce new collagen and elastin. Most patients notice improvements in skin quality after the second treatment, which usually takes place four to six weeks after the first. From this point onwards, improvements continue to build steadily over many months as new collagen forms. Around twelve weeks after the first treatment is an important milestone, as the newly formed collagen has matured sufficiently to create visible improvements in skin firmness, elasticity and softening of fine lines. The full results, following a complete course of three treatments, can last for up to two years. For most patients, only a single maintenance treatment is required every eighteen months to two years to maintain results. This is a luxury investment in your long-term skin health. </p><p> </p><p>JULAINE™ is also particularly well suited to patients who have experienced significant weight loss, including those who have used medical weight loss injections. Weight loss can sometimes lead to a reduction in facial volume, which may leave the skin appearing looser or less supported. By stimulating your own collagen production, JULAINE™ helps to gently and naturally restore structure and support over time. The aim is not to change how you look, but to ensure the face continues to look healthy, balanced and well supported as your weight stabilises, rather than appearing hollow or drawn, a change often highlighted in the media as “Ozempic face”.</p><p> </p><h2>What does the treatment experience feel like? </h2><h2> </h2><p>I am pleased to report that the procedure itself is very quick, with minimal discomfort. Most patients are able to return to normal activities almost immediately, making it easy to fit around busy lives. Karen, who kindly acted as a model for me during recent training, described the treatment as “perfectly comfortable. I did not feel the product going in, just a little bit of poking and prodding, but it definitely did not hurt.” This was particularly reassuring to hear, as Karen is new to aesthetic treatments and chose to be a model because she felt it was time to invest in herself, while still wanting results that looked natural and never obvious.</p><p> </p><p>Immediately after treatment, Karen had no redness or bruising. In all honesty, no one would have known she had just had a procedure. She noticed a small amount of swelling later that evening, which is entirely normal and expected as we are stimulating the body’s own healing and collagen response. When I saw her again four days later, her skin already looked glowing and beautifully radiant.</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[7858]}',1,'2026-04-15 15:02:17','2026-04-15 15:02:17','ae9f23c2-852b-4d7c-9510-aca7f7df8577'),
(7862,7862,1,'Introducing JULAINE™','introducing-julaine','blog/introducing-julaine','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>I am so excited to officially launch JULAINE™ – the next generation of collagen stimulation – into my clinic on the Wirral. The response from my patients has been incredible, and I am proud to be the exclusive provider of this advanced treatment on the Wirral, and one of very few clinics offering it across the Northwest. This is a treatment for patients who want to truly invest in their long-term skin health. It is not a quick fix or a short-term boost, but a meaningful improvement in skin quality that continues to build and get better over time.<br /><br /> </p><h2>Why is JULAINE™ different, and why am I introducing this new treatment to my clinic?</h2><p> </p><p>JULAINE™ represents a significant step forward in collagen-stimulating technology. It is far more advanced, refined and safety-led than older generation treatments and it also fulfils a need for my patients for improved collagen stimulation, naturally – which is just what my patients have been asking for. Another key reason I have chosen JULAINE™ is the ethos of the company behind it. They are deeply focused on science, evidence and clinical research, and on backing up their claims properly. I do not choose treatments lightly: anything I offer in clinic must be evidence-led, safety-focused, and fully aligned with my principles as a doctor, and JULAINE™ meets those standards. Honestly, this is the most excited I have been about a skin treatment in a very long time. It fills a gap I have been searching for, and it aligns perfectly with my philosophy of subtle, progressive, doctor-led aesthetic care. The regenerative potential of this treatment is phenomenal, and the results other clinics have been getting are really wonderful. </p><p> </p><h2>What are the results like and how long does it last? </h2><h2> </h2><p>Results develop gradually, in line with neocollagenesis, the natural process of forming new collagen within the skin. JULAINE™ works by gently triggering the body’s own healing response, stimulating fibroblasts in the dermis to produce new collagen and elastin. Most patients notice improvements in skin quality after the second treatment, which usually takes place four to six weeks after the first. From this point onwards, improvements continue to build steadily over many months as new collagen forms. Around twelve weeks after the first treatment is an important milestone, as the newly formed collagen has matured sufficiently to create visible improvements in skin firmness, elasticity and softening of fine lines. The full results, following a complete course of three treatments, can last for up to two years. For most patients, only a single maintenance treatment is required every eighteen months to two years to maintain results. This is a luxury investment in your long-term skin health. </p><p> </p><p>JULAINE™ is also particularly well suited to patients who have experienced significant weight loss, including those who have used medical weight loss injections. Weight loss can sometimes lead to a reduction in facial volume, which may leave the skin appearing looser or less supported. By stimulating your own collagen production, JULAINE™ helps to gently and naturally restore structure and support over time. The aim is not to change how you look, but to ensure the face continues to look healthy, balanced and well supported as your weight stabilises, rather than appearing hollow or drawn, a change often highlighted in the media as “Ozempic face”.</p><p> </p><h2>What does the treatment experience feel like? </h2><h2> </h2><p>I am pleased to report that the procedure itself is very quick, with minimal discomfort. Most patients are able to return to normal activities almost immediately, making it easy to fit around busy lives. Karen, who kindly acted as a model for me during recent training, described the treatment as “perfectly comfortable. I did not feel the product going in, just a little bit of poking and prodding, but it definitely did not hurt.” This was particularly reassuring to hear, as Karen is new to aesthetic treatments and chose to be a model because she felt it was time to invest in herself, while still wanting results that looked natural and never obvious.</p><p> </p><p>Immediately after treatment, Karen had no redness or bruising. In all honesty, no one would have known she had just had a procedure. She noticed a small amount of swelling later that evening, which is entirely normal and expected as we are stimulating the body’s own healing and collagen response. When I saw her again four days later, her skin already looked glowing and beautifully radiant.</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[7858]}',1,'2026-04-15 15:03:09','2026-04-15 15:03:09','a9c5a140-cc62-4271-be41-973894754859'),
(7864,7864,1,'Microneedling and Polynucleotides – hello!','microneedling-and-polynucleotides','blog/microneedling-and-polynucleotides','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<h2> </h2><h2>The dream combination that your skin needs. </h2><h2> </h2><p>Perfect skin does not exist. Well, except perhaps on social media, with a sneaky filter or two… However, HEALTHY skin with a gorgeous glow that makes people say “Wow your skin looks great” absolutely does exist. And that’s what we aim for in clinic! To maintain our skin health, we NEED to use products and treatments that are stimulating our skin cells to make the vital proteins that we lose as we get older – collagen and elastin. We need to protect our skin, and arm it with ingredients that reduce damage from harmful sun rays and environmental stressors, and enable the skin to regenerate itself from within. This is why I am so excited to introduce this new and pioneering skin treatment to clinic.</p><p> </p><p> </p><h2>Polynucleotides WITH microneedling! A polynucleotide facial, if you will...</h2><p> </p><p>MESO OX have created a unique and pioneering skin cocktail serum that contains not one but THREE skin nourishing heroes. Not only that, this wonderful serum is introduced into your skin using microneedling, the unsung skincare treatment that creates microtrauma in the skin. </p><p> </p><p>This serves two main functions: </p><p>-Promotes skin repair and regeneration </p><p>-Dramatically increases absorption of key skincare molecules</p><p> </p><p> </p><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4446:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Featured-Image.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4448:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Treatment.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><h2> </h2><h2>What are these hero ingredients?</h2><h3> </h3><h3>POLYNUCLEOTIDES</h3><p> </p><p>Polynucleotides have taken clinic by storm (you might have heard of them as a “salmon DNA facial”). They are little building blocks of crucial DNA that we can inject superficially into the skin, to massively boost collagen production and tackle a massive range of skin complaints. This is the first time that polynucleotides are able to be combined with microneedling – hence my giddy excitement!</p><h3> </h3><h3>HYALURONIC ACID</h3><p> </p><p>Our skin’s natural moisturiser, flooding the skin with hydration and smoothing out wrinkles. The serum contains three different forms of hyaluronic acid which carry out a whole heap of anti-ageing functions, and work in beautiful synergy with the polynucleotides.</p><h3> </h3><h3>NIACINAMIDE</h3><p> </p><p>Another skin powerhouse, niacinamide, is crucial in fighting inflammation, acne and pigmentation.</p><p> </p><h2>Who should have this treatment?</h2><p> </p><p>Basically, anyone who wants strong, beautiful, healthy and glowing skin. If you have looked in the mirror and felt a bit “meh” about your skin, noticing that your skin now just looks dull with wrinkles deepening and you’ve lost your glowy mojo – this treatment is for you. </p><p> </p><p>This treatment is also for you if you have: </p><p>- Scarring </p><p>- Acne </p><p>- Pigmentation problems </p><p>- Skin laxity </p><p>- Inflammation </p><p>- Photo-ageing </p><p>- Sun damage</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[4446]}',1,'2026-04-15 15:18:25','2026-04-15 15:18:25','a5978367-f85d-43d5-bd44-ee6898898148'),
(7865,7865,1,'Microneedling and Polynucleotides – hello!','microneedling-and-polynucleotides','blog/microneedling-and-polynucleotides','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<h2> </h2><h2>The dream combination that your skin needs. </h2><h2> </h2><p>Perfect skin does not exist. Well, except perhaps on social media, with a sneaky filter or two… However, HEALTHY skin with a gorgeous glow that makes people say “Wow your skin looks great” absolutely does exist. And that’s what we aim for in clinic! To maintain our skin health, we NEED to use products and treatments that are stimulating our skin cells to make the vital proteins that we lose as we get older – collagen and elastin. We need to protect our skin, and arm it with ingredients that reduce damage from harmful sun rays and environmental stressors, and enable the skin to regenerate itself from within. This is why I am so excited to introduce this new and pioneering skin treatment to clinic.</p><p> </p><p> </p><h2>Polynucleotides WITH microneedling! A polynucleotide facial, if you will...</h2><p> </p><p>MESO OX have created a unique and pioneering skin cocktail serum that contains not one but THREE skin nourishing heroes. Not only that, this wonderful serum is introduced into your skin using microneedling, the unsung skincare treatment that creates microtrauma in the skin. </p><p> </p><p>This serves two main functions: </p><p>-Promotes skin repair and regeneration </p><p>-Dramatically increases absorption of key skincare molecules</p><p> </p><p> </p><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4446:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Featured-Image.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4448:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Treatment.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><h2> </h2><h2>What are these hero ingredients?</h2><h3> </h3><h3>POLYNUCLEOTIDES</h3><p> </p><p>Polynucleotides have taken clinic by storm (you might have heard of them as a “salmon DNA facial”). They are little building blocks of crucial DNA that we can inject superficially into the skin, to massively boost collagen production and tackle a massive range of skin complaints. This is the first time that polynucleotides are able to be combined with microneedling – hence my giddy excitement!</p><h3> </h3><h3>HYALURONIC ACID</h3><p> </p><p>Our skin’s natural moisturiser, flooding the skin with hydration and smoothing out wrinkles. The serum contains three different forms of hyaluronic acid which carry out a whole heap of anti-ageing functions, and work in beautiful synergy with the polynucleotides.</p><h3> </h3><h3>NIACINAMIDE</h3><p> </p><p>Another skin powerhouse, niacinamide, is crucial in fighting inflammation, acne and pigmentation.</p><p> </p><h2>Who should have this treatment?</h2><p> </p><p>Basically, anyone who wants strong, beautiful, healthy and glowing skin. If you have looked in the mirror and felt a bit “meh” about your skin, noticing that your skin now just looks dull with wrinkles deepening and you’ve lost your glowy mojo – this treatment is for you. </p><p> </p><p>This treatment is also for you if you have: </p><p>- Scarring </p><p>- Acne </p><p>- Pigmentation problems </p><p>- Skin laxity </p><p>- Inflammation </p><p>- Photo-ageing </p><p>- Sun damage</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[4446]}',1,'2026-04-15 15:18:28','2026-04-15 15:18:28','fd3beeed-be8a-4ad3-97da-9b5f4b7d5d64'),
(7867,7867,1,'Microneedling and Polynucleotides – hello!','microneedling-and-polynucleotides','blog/microneedling-and-polynucleotides','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<h2> </h2><h2>The dream combination that your skin needs. </h2><h2> </h2><p>Perfect skin does not exist. Well, except perhaps on social media, with a sneaky filter or two… However, HEALTHY skin with a gorgeous glow that makes people say “Wow your skin looks great” absolutely does exist. And that’s what we aim for in clinic! To maintain our skin health, we NEED to use products and treatments that are stimulating our skin cells to make the vital proteins that we lose as we get older – collagen and elastin. We need to protect our skin, and arm it with ingredients that reduce damage from harmful sun rays and environmental stressors, and enable the skin to regenerate itself from within. This is why I am so excited to introduce this new and pioneering skin treatment to clinic.</p><p> </p><p> </p><h2>Polynucleotides WITH microneedling! A polynucleotide facial, if you will...</h2><p> </p><p>MESO OX have created a unique and pioneering skin cocktail serum that contains not one but THREE skin nourishing heroes. Not only that, this wonderful serum is introduced into your skin using microneedling, the unsung skincare treatment that creates microtrauma in the skin. </p><p> </p><p>This serves two main functions: </p><p>-Promotes skin repair and regeneration </p><p>-Dramatically increases absorption of key skincare molecules</p><p> </p><p> </p><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4446:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Featured-Image.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4448:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Treatment.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><h2> </h2><h2>What are these hero ingredients?</h2><h3> </h3><h3>POLYNUCLEOTIDES</h3><p> </p><p>Polynucleotides have taken clinic by storm (you might have heard of them as a “salmon DNA facial”). They are little building blocks of crucial DNA that we can inject superficially into the skin, to massively boost collagen production and tackle a massive range of skin complaints. This is the first time that polynucleotides are able to be combined with microneedling – hence my giddy excitement!</p><h3> </h3><h3>HYALURONIC ACID</h3><p> </p><p>Our skin’s natural moisturiser, flooding the skin with hydration and smoothing out wrinkles. The serum contains three different forms of hyaluronic acid which carry out a whole heap of anti-ageing functions, and work in beautiful synergy with the polynucleotides.</p><h3> </h3><h3>NIACINAMIDE</h3><p> </p><p>Another skin powerhouse, niacinamide, is crucial in fighting inflammation, acne and pigmentation.</p><p> </p><h2>Who should have this treatment?</h2><p> </p><p>Basically, anyone who wants strong, beautiful, healthy and glowing skin. If you have looked in the mirror and felt a bit “meh” about your skin, noticing that your skin now just looks dull with wrinkles deepening and you’ve lost your glowy mojo – this treatment is for you. </p><p> </p><p>This treatment is also for you if you have: </p><p>- Scarring </p><p>- Acne </p><p>- Pigmentation problems </p><p>- Skin laxity </p><p>- Inflammation </p><p>- Photo-ageing </p><p>- Sun damage</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[4446]}',1,'2026-04-15 15:19:04','2026-04-15 15:19:04','6d1fed14-5f44-4932-b2a9-43f5be510f87'),
(7868,7868,1,'Microneedling and Polynucleotides – hello!','microneedling-and-polynucleotides','blog/microneedling-and-polynucleotides','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<h2> </h2><h2>The dream combination that your skin needs. </h2><h2> </h2><p>Perfect skin does not exist. Well, except perhaps on social media, with a sneaky filter or two… However, HEALTHY skin with a gorgeous glow that makes people say “Wow your skin looks great” absolutely does exist. And that’s what we aim for in clinic! To maintain our skin health, we NEED to use products and treatments that are stimulating our skin cells to make the vital proteins that we lose as we get older – collagen and elastin. We need to protect our skin, and arm it with ingredients that reduce damage from harmful sun rays and environmental stressors, and enable the skin to regenerate itself from within. This is why I am so excited to introduce this new and pioneering skin treatment to clinic.</p><p> </p><p> </p><h2>Polynucleotides WITH microneedling! A polynucleotide facial, if you will...</h2><p> </p><p>MESO OX have created a unique and pioneering skin cocktail serum that contains not one but THREE skin nourishing heroes. Not only that, this wonderful serum is introduced into your skin using microneedling, the unsung skincare treatment that creates microtrauma in the skin. </p><p> </p><p>This serves two main functions: </p><p>-Promotes skin repair and regeneration </p><p>-Dramatically increases absorption of key skincare molecules</p><p> </p><p> </p><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4446:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Featured-Image.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4448:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Treatment.jpg}\\\" width=\\\"1365\\\" height=\\\"2048\\\" alt=\\\"\\\" /></figure><h2> </h2><h2>What are these hero ingredients?</h2><h3> </h3><h3>POLYNUCLEOTIDES</h3><p> </p><p>Polynucleotides have taken clinic by storm (you might have heard of them as a “salmon DNA facial”). They are little building blocks of crucial DNA that we can inject superficially into the skin, to massively boost collagen production and tackle a massive range of skin complaints. This is the first time that polynucleotides are able to be combined with microneedling – hence my giddy excitement!</p><h3> </h3><h3>HYALURONIC ACID</h3><p> </p><p>Our skin’s natural moisturiser, flooding the skin with hydration and smoothing out wrinkles. The serum contains three different forms of hyaluronic acid which carry out a whole heap of anti-ageing functions, and work in beautiful synergy with the polynucleotides.</p><h3> </h3><h3>NIACINAMIDE</h3><p> </p><p>Another skin powerhouse, niacinamide, is crucial in fighting inflammation, acne and pigmentation.</p><p> </p><h2>Who should have this treatment?</h2><p> </p><p>Basically, anyone who wants strong, beautiful, healthy and glowing skin. If you have looked in the mirror and felt a bit “meh” about your skin, noticing that your skin now just looks dull with wrinkles deepening and you’ve lost your glowy mojo – this treatment is for you. </p><p> </p><p>This treatment is also for you if you have: </p><p>- Scarring </p><p>- Acne </p><p>- Pigmentation problems </p><p>- Skin laxity </p><p>- Inflammation </p><p>- Photo-ageing </p><p>- Sun damage</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[4446]}',1,'2026-04-15 15:19:14','2026-04-15 15:19:14','a5c9eb13-8247-4129-afb3-097824bde2cf'),
(7870,7870,1,'Microneedling and Polynucleotides – hello!','microneedling-and-polynucleotides','blog/microneedling-and-polynucleotides','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<h2> </h2><h2>The dream combination that your skin needs. </h2><h2> </h2><p>Perfect skin does not exist. Well, except perhaps on social media, with a sneaky filter or two… However, HEALTHY skin with a gorgeous glow that makes people say “Wow your skin looks great” absolutely does exist. And that’s what we aim for in clinic! To maintain our skin health, we NEED to use products and treatments that are stimulating our skin cells to make the vital proteins that we lose as we get older – collagen and elastin. We need to protect our skin, and arm it with ingredients that reduce damage from harmful sun rays and environmental stressors, and enable the skin to regenerate itself from within. This is why I am so excited to introduce this new and pioneering skin treatment to clinic.</p><p> </p><p> </p><h2>Polynucleotides WITH microneedling! A polynucleotide facial, if you will...</h2><p> </p><p>MESO OX have created a unique and pioneering skin cocktail serum that contains not one but THREE skin nourishing heroes. Not only that, this wonderful serum is introduced into your skin using microneedling, the unsung skincare treatment that creates microtrauma in the skin. </p><p> </p><p>This serves two main functions: </p><p>-Promotes skin repair and regeneration </p><p>-Dramatically increases absorption of key skincare molecules</p><p> </p><p> </p><p> </p><p> </p><p> </p><figure class=\\\"image\\\"><img style=\\\"aspect-ratio:1365/2048;\\\" src=\\\"{asset:4448:url||https://hermeswp.xyz/rachel/web//assets/images/Microneedling-Wirral-Treatment.jpg}\\\" alt=\\\"\\\" width=\\\"1365\\\" height=\\\"2048\\\" /></figure><h2> </h2><h2>What are these hero ingredients?</h2><h3> </h3><h3>POLYNUCLEOTIDES</h3><p> </p><p>Polynucleotides have taken clinic by storm (you might have heard of them as a “salmon DNA facial”). They are little building blocks of crucial DNA that we can inject superficially into the skin, to massively boost collagen production and tackle a massive range of skin complaints. This is the first time that polynucleotides are able to be combined with microneedling – hence my giddy excitement!</p><h3> </h3><h3>HYALURONIC ACID</h3><p> </p><p>Our skin’s natural moisturiser, flooding the skin with hydration and smoothing out wrinkles. The serum contains three different forms of hyaluronic acid which carry out a whole heap of anti-ageing functions, and work in beautiful synergy with the polynucleotides.</p><h3> </h3><h3>NIACINAMIDE</h3><p> </p><p>Another skin powerhouse, niacinamide, is crucial in fighting inflammation, acne and pigmentation.</p><p> </p><h2>Who should have this treatment?</h2><p> </p><p>Basically, anyone who wants strong, beautiful, healthy and glowing skin. If you have looked in the mirror and felt a bit “meh” about your skin, noticing that your skin now just looks dull with wrinkles deepening and you’ve lost your glowy mojo – this treatment is for you. </p><p> </p><p>This treatment is also for you if you have: </p><p>- Scarring </p><p>- Acne </p><p>- Pigmentation problems </p><p>- Skin laxity </p><p>- Inflammation </p><p>- Photo-ageing </p><p>- Sun damage</p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[4446]}',1,'2026-04-15 15:19:53','2026-04-15 15:19:53','3aa9a8c6-775f-4a28-aba1-e6d7cd7685bc'),
(7871,7871,1,'Unlocking Radiant Skin: Top 5 Essential Tips for Healthy Skin','unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','blog/unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>Isn’t it time to show your skin some love? The skin is our largest organ and one of the most hardworking organs we have. Here are my top 5 tips for boosting your skin’s radiance and giving you a healthy glow. </p><p> </p><h2>1. Wear SPF </h2><h2> </h2><p>Repeat after me: wearing sunscreen is not just for sunny days. Wearing sunscreen is not just for sunny days…. UV radiation from the sun can wreak havoc on your skin, leading to premature ageing, sunspots, and even skin cancer. Broad-spectrum SPF is essential to protect your skin, even on cloudy days. Prevention is so much simpler than trying to treat all the damage of sun exposure later down the line. By incorporating SPF into your daily routine, you are safeguarding your skin’s health in the long-term and believe me, you will thank yourself later! </p><p> </p><h2>2. Clean your skin properly </h2><h2> </h2><p>Step away from the baby wipes. Think about it, your skin is exposed every day to pollution, chemicals, dirt and sweat as well as being covered in whatever we put on it – make up, SPF…you name it. So it really is important to clean your skin properly. Rather than push the dirt around, with face wipes. Your skin deserves better! Cleaning your skin properly does not mean using harsh ingredients to strip your skin, but means using products that emulsify and gently lift all those products off the skin to ensure your skin is cleansed fully, morning and at night. This also encourages your skin to gently turnover – losing those dead skin cells on top and leaving healthy new skin cells underneath. I love the EXFO cleanser from pHformula – it removes all my SPF and any make up, and does everything a good cleanser should do. I have also previously enjoyed using a nice cleansing balm or oil followed by a simple pH-balanced cleanser. Whilst we are on it, Micellar water is a make up remover and not a cleanser – so another little tip would be to not use Micellar water as your face cleanser. </p><p> </p><h2>3. Use a consistent skin routine </h2><h2> </h2><p>Consistence is the cornerstone of effective skincare. If you can establish a daily routine tailored to your skin type and concerns – you are winning. Choose products that are backed by science, with effective formulations and targeted to your specific skin. Stay away from TikTok trends and invest in good quality skincare! Once you have started your daily routine of cleanse – moisturise – SPF, you might want to introduce some active ingredients like retinol, vitamin C or niacinamide. This depends on your skin type and concerns. And remember, patience is key. Visible results require consistent use over time and miracles do not happen overnight! If you are muddled and don’t know where to start, please get in touch to book your online or in-clinic skin consultation. </p><p> </p><h2>4. Bank your collagen </h2><h2> </h2><p>As we get older, our skin renews itself at a much slower rate, leaving damaged and dull skin cells on top. Not only that, our skin produces less collagen and elastin which are really important proteins for maintaining the skin’s structure and healthy bounce. So we end up losing collagen at a faster rate and not replacing it as quickly. Therefore as we get older, our skin becomes more thinner, more crepey and starts to sag. It is important to invest in treatments that boost collagen and gently encourage turnover of the skin to help restore some of the bouncy glow. Treatments include: Microneedling (AKA collagen induction therapy) Polynucleotides, Profhilo® LED therapy Chemical peels Skincare like retinol and vitamin C. </p><p> </p><h2>5. Eat a skin-friendly diet </h2><h2> </h2><p>Diet plays a pivotal role in the health of your skin and there is a whole heap of research emerging into the microbiomes of our gut and skin. Foods that nourish our skin include foods high in antioxidants such as berries, leafy greens and nuts. Omega-3 fatty acids found in oily fish like salmon as well as flaxseeds and chia seeds help to maintain our skin’s barrier – which is particularly important for skin prone to inflammatory disorders like acne and rosacea. And generally, a balanced diet containing fruits, vegetables, lean proteins and healthy fats will also benefit the skin as well as giving a multitude of other benefits. Finally, remember to keep your skin well hydrated from within, drinking plenty of water and limiting intake of caffeine, fizzy drinks and alcohol. </p><p> </p><p>Would you like to book your consultation? Clinics are held on the Wirral in Bebington, Eastham and Moreton on a wide variety of days and times to suit you, You can book in online below, fill in the contact form on the website homepage, or message me directly.</p><p> </p><p> </p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[7876]}',1,'2026-04-15 15:20:34','2026-04-15 15:26:00','a1cc15f9-ce66-4bd1-9e5d-b7ef4fdff85a'),
(7872,7872,1,'Unlocking Radiant Skin: Top 5 Essential Tips for Healthy Skin','unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','blog/unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>Isn’t it time to show your skin some love? The skin is our largest organ and one of the most hardworking organs we have. Here are my top 5 tips for boosting your skin’s radiance and giving you a healthy glow. </p><p> </p><h2>1. Wear SPF </h2><h2> </h2><p>Repeat after me: wearing sunscreen is not just for sunny days. Wearing sunscreen is not just for sunny days…. UV radiation from the sun can wreak havoc on your skin, leading to premature ageing, sunspots, and even skin cancer. Broad-spectrum SPF is essential to protect your skin, even on cloudy days. Prevention is so much simpler than trying to treat all the damage of sun exposure later down the line. By incorporating SPF into your daily routine, you are safeguarding your skin’s health in the long-term and believe me, you will thank yourself later! </p><p> </p><h2>2. Clean your skin properly </h2><h2> </h2><p>Step away from the baby wipes. Think about it, your skin is exposed every day to pollution, chemicals, dirt and sweat as well as being covered in whatever we put on it – make up, SPF…you name it. So it really is important to clean your skin properly. Rather than push the dirt around, with face wipes. Your skin deserves better! Cleaning your skin properly does not mean using harsh ingredients to strip your skin, but means using products that emulsify and gently lift all those products off the skin to ensure your skin is cleansed fully, morning and at night. This also encourages your skin to gently turnover – losing those dead skin cells on top and leaving healthy new skin cells underneath. I love the EXFO cleanser from pHformula – it removes all my SPF and any make up, and does everything a good cleanser should do. I have also previously enjoyed using a nice cleansing balm or oil followed by a simple pH-balanced cleanser. Whilst we are on it, Micellar water is a make up remover and not a cleanser – so another little tip would be to not use Micellar water as your face cleanser. </p><p> </p><h2>3. Use a consistent skin routine </h2><h2> </h2><p>Consistence is the cornerstone of effective skincare. If you can establish a daily routine tailored to your skin type and concerns – you are winning. Choose products that are backed by science, with effective formulations and targeted to your specific skin. Stay away from TikTok trends and invest in good quality skincare! Once you have started your daily routine of cleanse – moisturise – SPF, you might want to introduce some active ingredients like retinol, vitamin C or niacinamide. This depends on your skin type and concerns. And remember, patience is key. Visible results require consistent use over time and miracles do not happen overnight! If you are muddled and don’t know where to start, please get in touch to book your online or in-clinic skin consultation. </p><p> </p><h2>4. Bank your collagen </h2><h2> </h2><p>As we get older, our skin renews itself at a much slower rate, leaving damaged and dull skin cells on top. Not only that, our skin produces less collagen and elastin which are really important proteins for maintaining the skin’s structure and healthy bounce. So we end up losing collagen at a faster rate and not replacing it as quickly. Therefore as we get older, our skin becomes more thinner, more crepey and starts to sag. It is important to invest in treatments that boost collagen and gently encourage turnover of the skin to help restore some of the bouncy glow. Treatments include: Microneedling (AKA collagen induction therapy) Polynucleotides, Profhilo® LED therapy Chemical peels Skincare like retinol and vitamin C. </p><p> </p><h2>5. Eat a skin-friendly diet </h2><h2> </h2><p>Diet plays a pivotal role in the health of your skin and there is a whole heap of research emerging into the microbiomes of our gut and skin. Foods that nourish our skin include foods high in antioxidants such as berries, leafy greens and nuts. Omega-3 fatty acids found in oily fish like salmon as well as flaxseeds and chia seeds help to maintain our skin’s barrier – which is particularly important for skin prone to inflammatory disorders like acne and rosacea. And generally, a balanced diet containing fruits, vegetables, lean proteins and healthy fats will also benefit the skin as well as giving a multitude of other benefits. Finally, remember to keep your skin well hydrated from within, drinking plenty of water and limiting intake of caffeine, fizzy drinks and alcohol. </p><p> </p><p>Would you like to book your consultation? Clinics are held on the Wirral in Bebington, Eastham and Moreton on a wide variety of days and times to suit you, You can book in online below, fill in the contact form on the website homepage, or message me directly.</p>\"}',1,'2026-04-15 15:23:08','2026-04-15 15:23:08','96eeef23-4b66-487f-ad63-179f73758bca'),
(7874,7874,1,'Unlocking Radiant Skin: Top 5 Essential Tips for Healthy Skin','unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','blog/unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>Isn’t it time to show your skin some love? The skin is our largest organ and one of the most hardworking organs we have. Here are my top 5 tips for boosting your skin’s radiance and giving you a healthy glow. </p><p> </p><h2>1. Wear SPF </h2><h2> </h2><p>Repeat after me: wearing sunscreen is not just for sunny days. Wearing sunscreen is not just for sunny days…. UV radiation from the sun can wreak havoc on your skin, leading to premature ageing, sunspots, and even skin cancer. Broad-spectrum SPF is essential to protect your skin, even on cloudy days. Prevention is so much simpler than trying to treat all the damage of sun exposure later down the line. By incorporating SPF into your daily routine, you are safeguarding your skin’s health in the long-term and believe me, you will thank yourself later! </p><p> </p><h2>2. Clean your skin properly </h2><h2> </h2><p>Step away from the baby wipes. Think about it, your skin is exposed every day to pollution, chemicals, dirt and sweat as well as being covered in whatever we put on it – make up, SPF…you name it. So it really is important to clean your skin properly. Rather than push the dirt around, with face wipes. Your skin deserves better! Cleaning your skin properly does not mean using harsh ingredients to strip your skin, but means using products that emulsify and gently lift all those products off the skin to ensure your skin is cleansed fully, morning and at night. This also encourages your skin to gently turnover – losing those dead skin cells on top and leaving healthy new skin cells underneath. I love the EXFO cleanser from pHformula – it removes all my SPF and any make up, and does everything a good cleanser should do. I have also previously enjoyed using a nice cleansing balm or oil followed by a simple pH-balanced cleanser. Whilst we are on it, Micellar water is a make up remover and not a cleanser – so another little tip would be to not use Micellar water as your face cleanser. </p><p> </p><h2>3. Use a consistent skin routine </h2><h2> </h2><p>Consistence is the cornerstone of effective skincare. If you can establish a daily routine tailored to your skin type and concerns – you are winning. Choose products that are backed by science, with effective formulations and targeted to your specific skin. Stay away from TikTok trends and invest in good quality skincare! Once you have started your daily routine of cleanse – moisturise – SPF, you might want to introduce some active ingredients like retinol, vitamin C or niacinamide. This depends on your skin type and concerns. And remember, patience is key. Visible results require consistent use over time and miracles do not happen overnight! If you are muddled and don’t know where to start, please get in touch to book your online or in-clinic skin consultation. </p><p> </p><h2>4. Bank your collagen </h2><h2> </h2><p>As we get older, our skin renews itself at a much slower rate, leaving damaged and dull skin cells on top. Not only that, our skin produces less collagen and elastin which are really important proteins for maintaining the skin’s structure and healthy bounce. So we end up losing collagen at a faster rate and not replacing it as quickly. Therefore as we get older, our skin becomes more thinner, more crepey and starts to sag. It is important to invest in treatments that boost collagen and gently encourage turnover of the skin to help restore some of the bouncy glow. Treatments include: Microneedling (AKA collagen induction therapy) Polynucleotides, Profhilo® LED therapy Chemical peels Skincare like retinol and vitamin C. </p><p> </p><h2>5. Eat a skin-friendly diet </h2><h2> </h2><p>Diet plays a pivotal role in the health of your skin and there is a whole heap of research emerging into the microbiomes of our gut and skin. Foods that nourish our skin include foods high in antioxidants such as berries, leafy greens and nuts. Omega-3 fatty acids found in oily fish like salmon as well as flaxseeds and chia seeds help to maintain our skin’s barrier – which is particularly important for skin prone to inflammatory disorders like acne and rosacea. And generally, a balanced diet containing fruits, vegetables, lean proteins and healthy fats will also benefit the skin as well as giving a multitude of other benefits. Finally, remember to keep your skin well hydrated from within, drinking plenty of water and limiting intake of caffeine, fizzy drinks and alcohol. </p><p> </p><p>Would you like to book your consultation? Clinics are held on the Wirral in Bebington, Eastham and Moreton on a wide variety of days and times to suit you, You can book in online below, fill in the contact form on the website homepage, or message me directly.</p><p> </p><p> </p>\"}',1,'2026-04-15 15:24:51','2026-04-15 15:24:51','cfd9a1e2-af4a-4308-b2a0-3198e6b5a497'),
(7875,7875,1,'Unlocking Radiant Skin: Top 5 Essential Tips for Healthy Skin','unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','blog/unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>Isn’t it time to show your skin some love? The skin is our largest organ and one of the most hardworking organs we have. Here are my top 5 tips for boosting your skin’s radiance and giving you a healthy glow. </p><p> </p><h2>1. Wear SPF </h2><h2> </h2><p>Repeat after me: wearing sunscreen is not just for sunny days. Wearing sunscreen is not just for sunny days…. UV radiation from the sun can wreak havoc on your skin, leading to premature ageing, sunspots, and even skin cancer. Broad-spectrum SPF is essential to protect your skin, even on cloudy days. Prevention is so much simpler than trying to treat all the damage of sun exposure later down the line. By incorporating SPF into your daily routine, you are safeguarding your skin’s health in the long-term and believe me, you will thank yourself later! </p><p> </p><h2>2. Clean your skin properly </h2><h2> </h2><p>Step away from the baby wipes. Think about it, your skin is exposed every day to pollution, chemicals, dirt and sweat as well as being covered in whatever we put on it – make up, SPF…you name it. So it really is important to clean your skin properly. Rather than push the dirt around, with face wipes. Your skin deserves better! Cleaning your skin properly does not mean using harsh ingredients to strip your skin, but means using products that emulsify and gently lift all those products off the skin to ensure your skin is cleansed fully, morning and at night. This also encourages your skin to gently turnover – losing those dead skin cells on top and leaving healthy new skin cells underneath. I love the EXFO cleanser from pHformula – it removes all my SPF and any make up, and does everything a good cleanser should do. I have also previously enjoyed using a nice cleansing balm or oil followed by a simple pH-balanced cleanser. Whilst we are on it, Micellar water is a make up remover and not a cleanser – so another little tip would be to not use Micellar water as your face cleanser. </p><p> </p><h2>3. Use a consistent skin routine </h2><h2> </h2><p>Consistence is the cornerstone of effective skincare. If you can establish a daily routine tailored to your skin type and concerns – you are winning. Choose products that are backed by science, with effective formulations and targeted to your specific skin. Stay away from TikTok trends and invest in good quality skincare! Once you have started your daily routine of cleanse – moisturise – SPF, you might want to introduce some active ingredients like retinol, vitamin C or niacinamide. This depends on your skin type and concerns. And remember, patience is key. Visible results require consistent use over time and miracles do not happen overnight! If you are muddled and don’t know where to start, please get in touch to book your online or in-clinic skin consultation. </p><p> </p><h2>4. Bank your collagen </h2><h2> </h2><p>As we get older, our skin renews itself at a much slower rate, leaving damaged and dull skin cells on top. Not only that, our skin produces less collagen and elastin which are really important proteins for maintaining the skin’s structure and healthy bounce. So we end up losing collagen at a faster rate and not replacing it as quickly. Therefore as we get older, our skin becomes more thinner, more crepey and starts to sag. It is important to invest in treatments that boost collagen and gently encourage turnover of the skin to help restore some of the bouncy glow. Treatments include: Microneedling (AKA collagen induction therapy) Polynucleotides, Profhilo® LED therapy Chemical peels Skincare like retinol and vitamin C. </p><p> </p><h2>5. Eat a skin-friendly diet </h2><h2> </h2><p>Diet plays a pivotal role in the health of your skin and there is a whole heap of research emerging into the microbiomes of our gut and skin. Foods that nourish our skin include foods high in antioxidants such as berries, leafy greens and nuts. Omega-3 fatty acids found in oily fish like salmon as well as flaxseeds and chia seeds help to maintain our skin’s barrier – which is particularly important for skin prone to inflammatory disorders like acne and rosacea. And generally, a balanced diet containing fruits, vegetables, lean proteins and healthy fats will also benefit the skin as well as giving a multitude of other benefits. Finally, remember to keep your skin well hydrated from within, drinking plenty of water and limiting intake of caffeine, fizzy drinks and alcohol. </p><p> </p><p>Would you like to book your consultation? Clinics are held on the Wirral in Bebington, Eastham and Moreton on a wide variety of days and times to suit you, You can book in online below, fill in the contact form on the website homepage, or message me directly.</p><p> </p><p> </p>\"}',1,'2026-04-15 15:24:53','2026-04-15 15:24:53','82762137-6229-4440-875b-64ebced15730'),
(7876,7876,1,'Radiant skin glow',NULL,NULL,NULL,1,'2026-04-15 15:25:56','2026-04-15 15:25:56','7481c0a7-0c8b-438e-8240-92320244592e'),
(7878,7878,1,'Unlocking Radiant Skin: Top 5 Essential Tips for Healthy Skin','unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','blog/unlocking-radiant-skin-top-5-essential-tips-for-healthy-skin','{\"966e4d54-8540-4d35-be11-59c9ca1f49b0\":\"<p>Isn’t it time to show your skin some love? The skin is our largest organ and one of the most hardworking organs we have. Here are my top 5 tips for boosting your skin’s radiance and giving you a healthy glow. </p><p> </p><h2>1. Wear SPF </h2><h2> </h2><p>Repeat after me: wearing sunscreen is not just for sunny days. Wearing sunscreen is not just for sunny days…. UV radiation from the sun can wreak havoc on your skin, leading to premature ageing, sunspots, and even skin cancer. Broad-spectrum SPF is essential to protect your skin, even on cloudy days. Prevention is so much simpler than trying to treat all the damage of sun exposure later down the line. By incorporating SPF into your daily routine, you are safeguarding your skin’s health in the long-term and believe me, you will thank yourself later! </p><p> </p><h2>2. Clean your skin properly </h2><h2> </h2><p>Step away from the baby wipes. Think about it, your skin is exposed every day to pollution, chemicals, dirt and sweat as well as being covered in whatever we put on it – make up, SPF…you name it. So it really is important to clean your skin properly. Rather than push the dirt around, with face wipes. Your skin deserves better! Cleaning your skin properly does not mean using harsh ingredients to strip your skin, but means using products that emulsify and gently lift all those products off the skin to ensure your skin is cleansed fully, morning and at night. This also encourages your skin to gently turnover – losing those dead skin cells on top and leaving healthy new skin cells underneath. I love the EXFO cleanser from pHformula – it removes all my SPF and any make up, and does everything a good cleanser should do. I have also previously enjoyed using a nice cleansing balm or oil followed by a simple pH-balanced cleanser. Whilst we are on it, Micellar water is a make up remover and not a cleanser – so another little tip would be to not use Micellar water as your face cleanser. </p><p> </p><h2>3. Use a consistent skin routine </h2><h2> </h2><p>Consistence is the cornerstone of effective skincare. If you can establish a daily routine tailored to your skin type and concerns – you are winning. Choose products that are backed by science, with effective formulations and targeted to your specific skin. Stay away from TikTok trends and invest in good quality skincare! Once you have started your daily routine of cleanse – moisturise – SPF, you might want to introduce some active ingredients like retinol, vitamin C or niacinamide. This depends on your skin type and concerns. And remember, patience is key. Visible results require consistent use over time and miracles do not happen overnight! If you are muddled and don’t know where to start, please get in touch to book your online or in-clinic skin consultation. </p><p> </p><h2>4. Bank your collagen </h2><h2> </h2><p>As we get older, our skin renews itself at a much slower rate, leaving damaged and dull skin cells on top. Not only that, our skin produces less collagen and elastin which are really important proteins for maintaining the skin’s structure and healthy bounce. So we end up losing collagen at a faster rate and not replacing it as quickly. Therefore as we get older, our skin becomes more thinner, more crepey and starts to sag. It is important to invest in treatments that boost collagen and gently encourage turnover of the skin to help restore some of the bouncy glow. Treatments include: Microneedling (AKA collagen induction therapy) Polynucleotides, Profhilo® LED therapy Chemical peels Skincare like retinol and vitamin C. </p><p> </p><h2>5. Eat a skin-friendly diet </h2><h2> </h2><p>Diet plays a pivotal role in the health of your skin and there is a whole heap of research emerging into the microbiomes of our gut and skin. Foods that nourish our skin include foods high in antioxidants such as berries, leafy greens and nuts. Omega-3 fatty acids found in oily fish like salmon as well as flaxseeds and chia seeds help to maintain our skin’s barrier – which is particularly important for skin prone to inflammatory disorders like acne and rosacea. And generally, a balanced diet containing fruits, vegetables, lean proteins and healthy fats will also benefit the skin as well as giving a multitude of other benefits. Finally, remember to keep your skin well hydrated from within, drinking plenty of water and limiting intake of caffeine, fizzy drinks and alcohol. </p><p> </p><p>Would you like to book your consultation? Clinics are held on the Wirral in Bebington, Eastham and Moreton on a wide variety of days and times to suit you, You can book in online below, fill in the contact form on the website homepage, or message me directly.</p><p> </p><p> </p>\",\"83e6b444-62be-401e-aadc-b5db0004e217\":[7876]}',1,'2026-04-15 15:26:00','2026-04-15 15:26:00','38cef7cc-e87a-49ca-ac24-879374cda7f0'),
(7880,7880,1,'Ageing Skin','ageing-skin','conditions/ageing-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-15 17:06:15','2026-04-15 17:06:15','8f2aee4d-9980-47da-90bb-5f589f5fb990'),
(7881,7881,1,'Ageing Skin','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Ageing Skin\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Yes, and in many cases a combined approach delivers the most natural and effective results. Ageing affects every layer of the face, from skin quality and collagen, to volume, structure and muscle movement. This is why different treatments often work best when used together, as each addresses a different layer. My approach focuses on treating these changes in a balanced way, for example improving skin quality, restoring subtle structural support, stimulating collagen and softening lines where appropriate. Rather than treating one concern in isolation, I look at how everything works together to keep results natural and harmonious.</p><p> </p><p>I will always design a personalised treatment plan with careful timing and no pressure to do everything at once. Treatments can be phased gradually, focusing first on what will make the biggest difference while keeping your results subtle and natural.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Happens When Skin Ages?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Skin ageing is a gradual, layered process that affects every level of the skin and the structures beneath it. It often begins earlier than most people realise, commonly from the mid-20s, and becomes more visible over time. The changes you see on the surface reflect deeper shifts happening below. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Collagen, the protein responsible for skin strength and support, decreases by around 1% every year after your mid-20s. Elastin, which allows skin to stretch and recoil, also declines. Levels of hyaluronic acid reduce, meaning the skin holds less moisture and appears less plump and radiant. Together, these changes lead to thinner skin, fine lines, and increased skin laxity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Ageing also affects the deeper framework of the face. Facial fat pads gradually lose volume and descend, reducing soft tissue support. Over time, the facial skeleton undergoes slow, subtle reshaping as bone is gradually broken down and rebuilt in different areas. This leads to a gentle loss of overall facial bone volume and changes in contour, which reduces the support available for the soft tissues above. </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6567]}',1,'2026-04-15 17:06:15','2026-04-15 17:06:15','df08f805-51c1-4049-985b-9621f4a994ed'),
(7882,7882,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about the changes of ageing\"}',1,'2026-04-15 17:06:15','2026-04-15 17:06:15','5574ee4a-5d94-47d2-947f-4da19523aca2'),
(7883,7883,1,'How long do results last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This varies depending on the treatment and how your skin responds. Skin boosters typically last around 6 to 9 months, while dermal fillers can last 12 to 18 months depending on the area treated and the product used. Anti-wrinkle injections usually last around 3 months on average. Regenerative collagen-stimulating treatments such as JULÄINE™ can last up to 2 years as they work by supporting your skin’s own collagen production over time. Maintenance treatments are recommended to help preserve results. The aim is always to maintain results gradually rather than waiting for them to fully wear off. I will always talk you through expected longevity and maintenance options during your consultation so you can make informed decisions.</p>\"}',1,'2026-04-15 17:06:15','2026-04-15 17:06:15','b6463d12-ca22-4b06-8e71-461ef2838e0d'),
(7891,7891,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">If you feel like the person you see in the mirror has lost their spark, if your reflection no longer reflects the person that you are, and your face looks more tired than you remember, dermal fillers offer a subtle, science-led way to restore what time has taken away. I help women and men who want to look refreshed, not “done” - restoring softness, light and confidence in a way that feels entirely like you.</span></p>\"}',1,'2026-04-15 17:20:20','2026-04-15 17:20:20','af0c903b-3453-4ff9-a351-2802f8537295'),
(7892,7892,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-15 17:20:20','2026-04-15 17:20:20','29409f0b-da16-4c2d-a1c5-fdab5547367e'),
(7893,7893,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Dr Rachel Aesthetics\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">If you feel like the person you see in the mirror has lost their spark, if your reflection no longer reflects the person that you are, and your face looks more tired than you remember, dermal fillers offer a subtle, science-led way to restore what time has taken away. I help women and men who want to look refreshed, not “done” - restoring softness, light and confidence in a way that feels entirely like you.</span></p>\"}',1,'2026-04-15 17:20:20','2026-04-15 17:20:20','943cffe5-0fe7-435b-a711-9388059baf9e'),
(7894,7894,1,'What Areas Can Dermal Fillers Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Doctor-Led Aesthetic Medicine\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Areas Can Dermal Fillers Treat</i></span></h2><h2> </h2><p> </p><h3><span style=\\\"color:hsl(0,0%,20%);\\\"><span>Dermal fillers can be used to restore volume, support facial structure and improve balance across different areas of the face.</span></span></h3><h3> </h3><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration) - </strong>Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring - </strong>Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines) - </strong>These natural creases can deepen over time, creating a heavier or more tired appearance. Rather than filling the lines directly, restoring support through the cheeks often softens them more naturally. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines - </strong>Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. </span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[3953]}',1,'2026-04-15 17:20:20','2026-04-15 17:20:20','27868a4b-7599-4e23-86ef-b4f1c332c12a'),
(7895,7895,1,'Why a Consultation Comes First?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why a Consultation Comes First?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>If you are considering dermal fillers, the most important first step is always a full consultation. Rather than treating a single line or area in isolation, I assess your face as a whole to understand the structural changes that may be contributing to what you have noticed. Often, the lines or volume loss people are most concerned about are actually the result of deeper changes elsewhere in the face. The most natural results usually come from addressing these underlying changes rather than simply filling the visible line. This is why I do not recommend booking treatment based on a specific “area”, as what is most appropriate depends entirely on your individual assessment. Following your consultation, I will explain what I feel would make the most meaningful difference. </p><p> </p><p>Treatments can then be carried out gradually and in stages if needed, helping results remain balanced and natural rather than overdone. In some cases, I may recommend my <strong>Signature Radiance Lift</strong>, which focuses on restoring subtle structural support while also improving skin quality. This can sometimes be combined with lower face anti-wrinkle treatment to reduce downward pull from certain muscles, or skin boosters to improve hydration and skin strength, allowing for a more complete and harmonious result. I believe strongly in transparency and informed decision-making. Following your consultation, I will review your assessment and send you a personalised plan with clear pricing, so you can consider everything properly before deciding. There is never any pressure to proceed, only honest advice about what I believe will give you the most natural and balanced result.</p>\"}',1,'2026-04-15 17:20:20','2026-04-15 17:20:20','a9162af0-286a-4857-b921-25e1ad4a728b'),
(7896,7896,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-15 17:20:22','2026-04-15 17:20:22','532f258e-ca01-42c2-85ec-f8cd2df793ee'),
(7910,7910,1,'card 1','qwddw',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Full Consultation\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>\\n    If you are considering dermal fillers, the most important first step is always a full consultation. Rather than treating a single line or area in isolation, I assess your face as a whole to understand the structural changes that may be contributing to what you have noticed. Often, the lines or volume loss people are most concerned about are actually the result of deeper changes elsewhere in the face. The most natural results usually come from addressing these underlying changes rather than simply filling the visible line. This is why I do not recommend booking treatment based on a specific “area”, as what is most appropriate depends entirely on your individual assessment. Following your consultation, I will explain what I feel would make the most meaningful difference. Treatments can then be carried out gradually and in stages if needed, helping results remain balanced and natural rather than overdone.\\n</p>\"}',1,'2026-04-15 17:26:19','2026-04-15 17:26:19','5a7d4a1b-1c9b-442c-8c1d-dd576a364d79'),
(7911,7911,1,'card 2','qwddw',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Signature Radiance Life\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"In some cases, I may recommend my Signature Radiance Lift, which focuses on restoring subtle structural support while also improving skin quality. This can sometimes be combined with lower face anti-wrinkle treatment to reduce downward pull from certain muscles, or skin boosters to improve hydration and skin strength, allowing for a more complete and harmonious result.\\n\\nI believe strongly in transparency and informed decision-making. Following your consultation, I will review your assessment and send you a personalised plan with clear pricing, so you can consider everything properly before deciding. There is never any pressure to proceed, only honest advice about what I believe will give you the most natural and balanced result.\"}',1,'2026-04-15 17:26:19','2026-04-15 17:26:19','5b7d2482-0630-4b57-a1ae-e8a1ad01532a'),
(7912,7912,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-15 17:26:19','2026-04-15 17:26:19','d4c7a617-66b0-470b-89a1-9a6665d25157'),
(7913,7913,1,'Why a Consultation Comes First?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why a Consultation Comes First?\"}',1,'2026-04-15 17:26:19','2026-04-15 17:26:19','671a1e46-1bb5-496e-b41b-31fe63c14d57'),
(7914,7914,1,'card 1','qwddw',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Full Consultation\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>\\n    If you are considering dermal fillers, the most important first step is always a full consultation. Rather than treating a single line or area in isolation, I assess your face as a whole to understand the structural changes that may be contributing to what you have noticed. Often, the lines or volume loss people are most concerned about are actually the result of deeper changes elsewhere in the face. The most natural results usually come from addressing these underlying changes rather than simply filling the visible line. This is why I do not recommend booking treatment based on a specific “area”, as what is most appropriate depends entirely on your individual assessment. Following your consultation, I will explain what I feel would make the most meaningful difference. Treatments can then be carried out gradually and in stages if needed, helping results remain balanced and natural rather than overdone.\\n</p>\"}',1,'2026-04-15 17:26:19','2026-04-15 17:26:19','1b5313b5-05a1-449b-8dd7-ec7dd5e4b14c'),
(7915,7915,1,'card 2','qwddw',NULL,'{\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Signature Radiance Life\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"In some cases, I may recommend my Signature Radiance Lift, which focuses on restoring subtle structural support while also improving skin quality. This can sometimes be combined with lower face anti-wrinkle treatment to reduce downward pull from certain muscles, or skin boosters to improve hydration and skin strength, allowing for a more complete and harmonious result.\\n\\nI believe strongly in transparency and informed decision-making. Following your consultation, I will review your assessment and send you a personalised plan with clear pricing, so you can consider everything properly before deciding. There is never any pressure to proceed, only honest advice about what I believe will give you the most natural and balanced result.\"}',1,'2026-04-15 17:26:19','2026-04-15 17:26:19','1b6850fe-c09c-4ec6-9238-5bacdaef3001'),
(7916,7916,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-15 17:27:05','2026-04-15 17:27:05','738f4c6c-cec4-4bd6-8678-b2757c31aa25'),
(7919,7919,1,'Homepage','homepage','__home__',NULL,1,'2026-04-16 12:10:18','2026-04-16 12:10:18','af99217e-b504-4943-b855-2254f6398a27'),
(7920,7920,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: 11:00 AM - 5:00 PM</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-16 12:10:18','2026-04-16 12:10:18','7e285618-a941-4e7e-90d6-294db4cc2d25'),
(7924,7924,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: 11:00 AM - 5:00 PM</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-16 12:11:07','2026-04-16 12:11:07','16973120-9320-43e0-a3b2-2b15a023c96c'),
(7925,7925,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-16 12:11:07','2026-04-17 12:13:21','916d818b-e87e-4e2d-b5a6-adcd81e1ba7b'),
(7926,7926,1,'Contacts','contacts','contacts',NULL,1,'2026-04-16 12:11:07','2026-04-16 12:11:07','3df468e2-37bd-484a-a9c1-3b233a9a3c0b'),
(7927,7927,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: 11:00 AM - 5:00 PM</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-16 12:11:07','2026-04-16 12:11:07','5d3621e7-46f5-42c5-94fc-9eebe0ae9cbc'),
(7928,7928,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://hermeswp.xyz/rachel/web/contacts\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-16 12:11:07','2026-04-16 12:11:07','c6c18151-184a-404e-89e7-6ce5089ac66d'),
(7929,7929,1,'Contacts','contacts','contacts',NULL,1,'2026-04-16 12:11:09','2026-04-16 12:11:09','8ce833f9-7167-4115-a2ec-45d8b02db49d'),
(7932,7932,1,'About','about','about',NULL,1,'2026-04-16 12:20:07','2026-04-16 12:20:07','979ae438-608e-48a0-a060-89fd3d095129'),
(7933,7933,1,'Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why patients choose my clinic\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">I understand how unsettling it can feel when your appearance starts to change and you no longer quite recognise the face looking back at you. Many of my patients come to see me because they want to feel more like themselves again but are unsure where to start or who to trust.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">My role is always to listen first, understand what matters to you, and then guide you with honest, medically-grounded advice you can feel confident in.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Patients often tell me they value:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- A natural, subtle approach</strong> focused on helping you look refreshed and well, never overdone</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Evidence-based treatments </strong>chosen for safety and long-term skin health</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Clear, honest advice</strong>, including when a treatment is not the right choice</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- Continuity of care</strong>, seeing the same doctor from consultation through to review</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>- A personalised plan </strong>designed around your face, your skin and your goals</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-16 12:20:07','2026-04-16 12:20:07','49b6ecf9-d310-436a-9ede-2f5d1aa0bb1c'),
(7938,7938,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-16 12:36:18','2026-04-16 12:36:18','552b87d8-64ca-4039-ae50-76a53d388d1e'),
(7939,7939,1,'Dark Circles Under the Eyes','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dark Circles Under the Eyes\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Those shadows under your eyes can be so frustrating. You try to cover your under-eyes with concealer every morning, only to find the dark circles still showing through. Perhaps people keep asking if you are tired when you actually feel fine. Dark circles are one of the most common concerns I see in the clinic here on the Wirral, and they can affect anyone, at any age.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The important thing to know is that “dark circles” are not all the same. Once I understand why yours have appeared, I can create a safe, tailored plan to brighten and refresh the eye area so you look as well-rested as you really feel.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Dark Circles Under the Eyes?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Dark circles refer to the darker or shadowed appearance beneath the eyes. Medically, they may be described as periorbital hyperpigmentation, but in clinic I tend to explain them more simply as changes in colour or contour in this delicate area. The skin under the eyes is one of the thinnest on the face, which means it reveals underlying changes more easily.  </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Pigment, circulation, and subtle shifts in structure can all become visible here in a way they would not elsewhere. They are not simply a sign of tiredness, although poor sleep can make them more noticeable. Dark circles can be caused by increased pigmentation in the skin, the way light interacts with the area due to underlying circulation, or shadowing from volume loss and structural changes. Most people have a combination of these factors. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">When I assess your under-eye area, I look carefully at each of these elements. Once we understand what is truly driving the appearance, we can choose treatments that are appropriate, natural-looking, and designed to give meaningful, long-term improvement. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6727]}',1,'2026-04-16 12:36:18','2026-04-16 12:36:18','b0106cdb-6cac-4fc6-97d3-954077f952c9'),
(7940,7940,1,'Frequently Asked Questions About Dark Circles Under the Eyes','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dark Circles Under the Eyes\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about dark circles under the eyes\"}',1,'2026-04-16 12:36:18','2026-04-16 12:36:18','c52107f3-244e-45fd-9504-89fb34e31ef9'),
(7941,7941,1,'Can dark circles be treated with non-surgical aesthetic treatment?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be treated with non-surgical aesthetic treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes. Depending on the underlying cause, dark circles can often be improved significantly with a tailored, non-surgical approach. Treatments may include options such as <a href=\\\"{entry:1951@1:url||https://hermeswp.xyz/rachel/web/treatments/sunekos}\\\">Sunekos</a>, which is specifically designed for the delicate under-eye area to improve skin quality and reduce crepiness, as well as other advanced <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">skin boosters</a> and regenerative treatments that support collagen production and tissue health, such as <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>. In selected cases, <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">dermal fillers</a> may be considered to restore lost volume and reduce shadowing, but this is not suitable for everyone and requires careful assessment. During your consultation, I will assess what is contributing to your dark circles and recommend the safest, most appropriate approach for you.</p>\"}',1,'2026-04-16 12:36:18','2026-04-16 12:36:18','537a1589-c36a-4f06-85ca-6bb19cd5614c'),
(7945,7945,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-16 12:41:20','2026-04-16 12:41:20','bc54c390-9e19-4468-8ae1-88fa602840a8'),
(7946,7946,1,'What Causes Dark Circles Under the Eyes?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Dark Circles Under the Eyes?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dark circles can develop for lots of different reasons, and most people have more than one factor involved. That is why they can be so stubborn, and why a single cream or quick fix rarely works. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Structural Causes (Volume Loss and Shadows)</strong></span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes dark circles are not really about colour at all, but about shadowing created by changes in the underlying facial structure. This is something I see very often in clinic, particularly as we move through our 30s and 40s.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Over time, the support beneath the eyes gradually changes. Collagen reduces, fat pads shift, and the transition between the lower eyelid and cheek becomes more defined. Rather than the area appearing darker, it is the way light falls into these contours that creates the appearance of a shadow. This type of dark circle is often influenced by:</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Gradual loss of collagen and soft tissue beneath the eyes, leading to a hollow or sunken appearance </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- A more visible tear trough between the lower eyelid and cheek </span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">- Natural bone structure or genetics, resulting in deeper-set eyes </span></p><p> </p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6726],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-16 12:41:20','2026-04-16 12:41:20','fc2ddb62-6f93-444e-b83e-497c945cda29'),
(7949,7949,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-16 12:44:03','2026-04-16 12:44:03','333498b5-1378-4a8a-aa1a-8077b3660ef9'),
(7950,7950,1,'What Causes Dark Circles Under the Eyes 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vascular Causes (Blood Vessels Showing Through)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    In some people, dark circles are not caused by pigmentation but by the way light interacts with the skin under the eyes. The skin in this area is naturally very thin, so underlying blood vessels can show through, creating a bluish or purple tone. This can become more noticeable when you are tired or run down. This type of dark circle is often influenced by:\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Naturally thin, delicate under-eye skin\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sluggish circulation or pooling of blood in the small vessels beneath the eyes\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Lack of sleep, which can make the area appear darker and more shadowed\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Allergies or nasal congestion, which increase pressure in the surrounding vessels\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>Pigmentation Causes (Excess Melanin)</h3><p> </p><p>For some people, the darkness is true pigmentation in the skin rather than shadowing. This often looks more brown than blue and can be quite stubborn without the right approach.</p><p> </p><p>- Genetic tendency to periorbital hyperpigmentation, which is more common in darker skin tones</p><p> </p><p>- Sun exposure stimulates melanin production in the delicate under-eye area </p><p> </p><p>- Post-inflammatory pigmentation from rubbing the eyes, eczema, or allergic reactions</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-16 12:44:04','2026-04-16 12:44:04','5c17b611-f7a7-4bb6-8168-1075796afd3e'),
(7959,7959,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','da3d1eb4-65c6-4ffd-93c9-e814d2de804e'),
(7960,7960,1,'What Causes Dark Circles Under the Eyes 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vascular Causes (Blood Vessels Showing Through)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    In some people, dark circles are not caused by pigmentation but by the way light interacts with the skin under the eyes. The skin in this area is naturally very thin, so underlying blood vessels can show through, creating a bluish or purple tone. This can become more noticeable when you are tired or run down. This type of dark circle is often influenced by:\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Naturally thin, delicate under-eye skin\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sluggish circulation or pooling of blood in the small vessels beneath the eyes\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Lack of sleep, which can make the area appear darker and more shadowed\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Allergies or nasal congestion, which increase pressure in the surrounding vessels\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    Pigmentation Causes (Excess Melanin)\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    For some people, the darkness under the eyes is due to true pigmentation within the skin rather than shadowing. This tends to appear more brown in tone and can be particularly persistent without the right approach.\\n\\nThis type of dark circle is often influenced by:\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - A genetic tendency to increased pigmentation in the under-eye area, which is more common in darker skin tones\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sun exposure, which stimulates melanin production in this delicate skin\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Post-inflammatory pigmentation, often triggered by rubbing the eyes, eczema, or allergic reactions\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','f5ef55b8-b530-450a-8449-4ac454ffc12e'),
(7961,7961,1,'Frequently Asked Questions About Dark Circles Under the Eyes','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Dark Circles Under the Eyes\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about dark circles under the eyes\"}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','f700520a-9d17-44fd-9746-0e5e0601f0e4'),
(7962,7962,1,'Am I a suitable candidate for under-eye treatment?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Am I a suitable candidate for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Many people with concerns such as hollowing, volume loss, or thinning skin under the eyes can benefit from treatment.\\n\\nHowever, if your dark circles are mainly related to pigmentation or lifestyle factors, a different approach, or a combination of treatments, may be more appropriate.\\n\\nThe most important step is understanding what is causing the change in your individual case. A face-to-face consultation allows me to assess this in detail and guide you towards the safest, most natural-looking option for you.\"}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','34beea6b-8ab5-42b6-bb35-8cd52403438c'),
(7963,7963,1,'Can dark circles be permanently removed?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can dark circles be permanently removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"In most cases, dark circles cannot be removed permanently, but they can often be improved significantly with the right approach. This is because factors such as ageing, genetics, and lifestyle continue to influence the under-eye area over time. As a result, maintenance treatments are usually needed to keep results looking their best.\\n\\nSimple measures also play an important role. Good quality sleep, staying well hydrated, managing allergies, and wearing daily sun protection can all help to maintain improvement and slow further change.\\n\\nThe aim is not to completely erase the area, but to create a softer, brighter, and more refreshed appearance in a way that still looks natural.\"}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','f711b696-f6a6-42b5-b0a5-a0ad861ef818'),
(7964,7964,1,'What makes Aesthetics by Dr Rachel different for under-eye treatment?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for under-eye treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As a practising GP with specialist training in aesthetic medicine, I approach dark circles in the same way I would any medical concern - by understanding the cause first. I take time to assess your skin, facial structure, medical history, and lifestyle in detail before recommending any treatment. The under-eye area is delicate and complex, and it requires careful judgement as well as precise technique.\\n\\nYou will see me at every appointment, and you will never feel rushed or pressured. If a treatment is not right for you, I will always be honest and guide you towards the safest and most appropriate option. My focus is on achieving subtle, balanced results that look natural, and feel right for you.\"}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','716b9be6-a7cf-4fed-bab0-d10a27e1631b'),
(7965,7965,1,'Does under-eye treatment hurt?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Does under-eye treatment hurt?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>\\n    The under-eye area is naturally sensitive, but discomfort is usually minimal. A topical numbing cream is applied beforehand to keep the area as comfortable as possible.\\n\\nMost patients describe the sensation as a feeling of mild pressure rather than pain.\\n</p>\"}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','13f355d4-e9db-4112-8ca6-9e155789a4d0'),
(7966,7966,1,'Are there any risks or side effects?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any risks or side effects?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As with any injectable treatment, there is a small risk of bruising, swelling, or tenderness at the injection site. The under-eye area is particularly delicate, which is why careful assessment and precise technique are essential. Serious complications are rare when treatment is performed by a suitably qualified and experienced medical professional.\"}',1,'2026-04-16 12:49:02','2026-04-16 12:49:02','f38f5616-0917-493e-b50c-ca06cdd2b537'),
(7967,7967,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-16 12:49:06','2026-04-16 12:49:06','13a7aacc-6bde-4139-a6ec-78aa7f6cb5d5'),
(7996,7996,1,'Can I combine different treatments?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine different treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, and combining treatments often gives the best results. Different treatments work at different levels of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation, I assess your face as a whole and design a personalised treatment strategy based on your concerns, goals, and lifestyle. Many patients follow a phased approach within my Radiance Collection programmes, allowing improvements to build gradually and safely over time.\"}',1,'2026-04-16 13:20:33','2026-04-16 13:20:33','ed1efadd-3f7a-42ad-ad56-ef90d1d58bc3'),
(7997,7997,1,'What makes Aesthetics by Dr Rachel different?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As a practising GP with specialist training in aesthetic medicine, patient safety is always my first priority. Every consultation is doctor-led, thorough, and carefully paced. I take time to understand your concerns, assess your face as a whole, review your medical history and medications, and recommend only treatments that are safe and appropriate for you. You will see me at every appointment, allowing me to monitor your progress closely and adjust your treatment approach carefully over time. Many patients choose me because my ethos is centred on natural, subtle results, delivered safely, with honest advice and never any pressure to proceed.\"}',1,'2026-04-16 13:20:33','2026-04-16 13:20:33','6bcf5f14-60b7-47fe-9980-aacb904dc60b'),
(7998,7998,1,'At what age should I start treating lines and wrinkles?','at-what-age-should-i-start-treating-lines-and-wrinkles',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lines and wrinkles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no “right age” to start. I usually suggest thinking about treatment only when the lines start to bother you. Early, gentle treatments can help soften movement patterns and support the skin over time, often meaning less intervention is needed later.\"}',1,'2026-04-16 13:20:33','2026-04-16 13:20:33','ec59c104-8d45-401d-a189-1df52cb15621'),
(7999,7999,1,'Will I still be able to move my face naturally after anti-wrinkle injections?','will-i-still-be-able-to-move-my-face-naturally-after-anti-wrinkle-injections',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to move my face naturally after anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always for natural, refreshed results. You should still look like yourself, just more rested. I use careful assessment, conservative dosing and precise placement so expression is softened in a balanced way rather than eliminated. The “frozen” look usually comes from overtreatment. I take a whole-face, layered approach and review results with you, making small adjustments only if needed. Many patients come to me because they want subtle, natural outcomes.\"}',1,'2026-04-16 13:20:33','2026-04-16 13:20:33','ab59dbe4-06ac-49ce-ac7c-4460abd18c80'),
(8000,8000,1,'Is there any downtime?','is-there-any-downtime',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments involve very little downtime. You may notice some mild redness, swelling, or small marks for a few hours to a couple of days. With procedures involving injections, bruising is possible and can occasionally take up to a week to settle. Most patients return straight to their normal activities, although I usually suggest avoiding strenuous exercise, alcohol, and heat treatments for 24 hours.\"}',1,'2026-04-16 13:20:33','2026-04-16 13:20:33','11b9df2b-c483-4c16-b09b-78730d2aecac'),
(8001,8001,1,'How long do results last?','how-long-do-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends on the treatment you choose, as well as your individual skin and lifestyle. As a general guide: <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">Anti-wrinkle injections</a> usually last around 3-4 months. As the effect gradually wears off, muscle activity returns and lines slowly come back to their previous level. Stopping treatment does not make wrinkles worse - your skin simply continues its natural ageing process. Many patients feel that lines look a little softer than before, as the muscles have been relaxed for a period of time. <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">Dermal fillers</a> typically last around 9-18 months, depending on the area treated and how your body naturally breaks down the product. <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">Biostimulators</a> such as JULÄINE™ deliver results lasting up to 2 years, with only 1 maintenance treatment needed every 18-24 months. <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">Skin boosters</a> and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> focus on improving skin quality and hydration, and usually benefit from maintenance treatments every 6-9 months to keep results looking their best.</p>\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','90217fea-5b8c-47da-a5e6-1de81fe29ae0'),
(8002,8002,1,'Is the treatment painful?','is-the-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find treatments very tolerable. Anti-wrinkle injections use very fine needles and tend to feel like brief pinpricks. For treatments such as fillers and skin boosters, numbing cream can be used in certain areas to keep you as comfortable as possible.\\n\\nAppointments are carried out in a calm, unhurried way, so there is time to ensure you feel at ease throughout. Any discomfort is usually short-lived, and many patients are pleasantly surprised by how comfortable the process feels.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','daa9c721-a72d-48ee-8bfe-9588c0b561ee'),
(8003,8003,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','e3d4294c-1b73-494b-bcfd-328cfbe421f8'),
(8004,8004,1,'Lines and Wrinkles','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Lines and Wrinkles\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,20%);\\\">Lines can appear quietly. A crease that lingers after you smile. Make-up catching in places it never used to. You start to notice lines that were not there before. They may sit between your brows, around your eyes, across your forehead, or around your mouth. Perhaps your concealer now highlights shadows instead of hiding them, and photographs seem harsher than they once were. These changes rarely happen overnight. They come from years of expression, sun exposure, stress, sleep patterns, and the gradual loss of collagen and hydration in the skin.\\n</span>\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Lines and Wrinkles? </i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Lines and wrinkles are creases, folds, or ridges that develop in the skin over time. Fine lines are usually shallow and subtle, sometimes only visible in certain lighting or when your face moves. Wrinkles are deeper grooves that become more noticeable as the years pass. Both develop as a result of gradual changes in the structure of your skin, combined with years of facial expression and environmental exposure.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Your skin relies on collagen and elastin to stay firm, smooth, and resilient. From our mid-twenties, collagen production slowly declines, typically by around 1% each year. As this support reduces, the skin becomes thinner, less elastic, and slower to recover. Everyday expressions such as smiling, frowning, laughing, and squinting gently crease the skin thousands of times, and over time, those temporary lines can begin to settle.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Sun exposure, stress, sleep patterns, smoking, dehydration, and genetics all play a role as well. This is why lines appear at different times and in different areas for each person. Understanding why they form helps me guide you towards treatments that are safe, appropriate, and designed to give natural, balanced results.\\n </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6686]}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','22c3de50-89d6-4d4b-81fa-8db85c6956d9'),
(8005,8005,1,'What Causes Lines and Wrinkles?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Lines and Wrinkles?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Lines and wrinkles develop for a number of different reasons, and in most people there is a combination of factors involved. Over time, your skin naturally changes, but things like sun exposure, lifestyle, and everyday facial expressions also play a part. Understanding what is contributing to your lines allows me to recommend treatments that are safe, appropriate, and right for your skin.\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Intrinsic Factors (Natural Ageing)</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">Intrinsic ageing refers to the natural changes that happen inside your skin over time. These are influenced by your genetics and hormones, and affect everyone to some degree.\\n\\nAs the skin gradually changes:</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Collagen and elastin reduce, so the skin becomes less firm and more prone to creasing\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Skin renewal slows down, which can make the surface look less smooth and more uneven\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Hormonal changes affect skin thickness, elasticity, and overall quality</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Natural hydration levels fall, including a reduction in hyaluronic acid</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Subtle changes in fat and bone structure alter how the face is supported</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">- Your individual skin type and genetics influence how and where lines develop</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6684],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','41f89819-589a-44b7-a81d-1b6ef52af73b'),
(8006,8006,1,'What causes lines and wrinkles 2','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <strong>Extrinsic Ageing (External Factors)  </strong>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Sun exposure </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Repeated facial movement </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Smoking </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Pollution and environmental stress </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Lifestyle factors </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">- Local environmental exposure </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    Living here on the Wirral, many of us spend time outdoors, whether that is walking along the coast or enjoying the seaside. Wind, salt air, and sunlight reflected off the water can all contribute to dryness and gradual collagen breakdown if the skin is not well protected with daily sunscreen and supportive skincare.\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6685],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Common Areas Affected</i></span></h2><p> </p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Forehead lines</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across the forehead that can give a tired or worried appearance   </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Frown lines</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Glabellar lines or “elevens” are vertical lines between the eyebrows that can make you look cross even when you are not. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Crow’s feet</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Fine lines radiating from the outer corners of the eyes, often more noticeable when smiling or in photographs, and where make-up can start to gather. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Nasolabial folds</span></h3><p><span style=\\\"background-color:transparent;color:#333333;\\\">Lines running from the sides of the nose to the corners of the mouth that can create shadows beside the smile . </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','eb2efccb-b8b6-4c62-bcf0-713aa15400d3'),
(8007,8007,1,'Frequently Asked Questions About Lines and Wrinkles','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Lines and Wrinkles\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about treating lines and wrinkles\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','c8a7c0f1-93d9-4a44-b179-d6f6926f7d7e'),
(8008,8008,1,'Can I combine different treatments?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine different treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, and combining treatments often gives the best results. Different treatments work at different levels of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation, I assess your face as a whole and design a personalised treatment strategy based on your concerns, goals, and lifestyle. Many patients follow a phased approach within my Radiance Collection programmes, allowing improvements to build gradually and safely over time.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','bd489884-2abc-410d-bbdf-f811dba2ae71'),
(8009,8009,1,'What makes Aesthetics by Dr Rachel different?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As a practising GP with specialist training in aesthetic medicine, patient safety is always my first priority. Every consultation is doctor-led, thorough, and carefully paced. I take time to understand your concerns, assess your face as a whole, review your medical history and medications, and recommend only treatments that are safe and appropriate for you. You will see me at every appointment, allowing me to monitor your progress closely and adjust your treatment approach carefully over time. Many patients choose me because my ethos is centred on natural, subtle results, delivered safely, with honest advice and never any pressure to proceed.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','b7ad5bd6-d500-4f23-bb1f-1bd3047098b4'),
(8010,8010,1,'At what age should I start treating lines and wrinkles?','at-what-age-should-i-start-treating-lines-and-wrinkles',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lines and wrinkles?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no “right age” to start. I usually suggest thinking about treatment only when the lines start to bother you. Early, gentle treatments can help soften movement patterns and support the skin over time, often meaning less intervention is needed later.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','2b384bc6-0be0-4534-96bc-c355466f9bd8'),
(8011,8011,1,'Will I still be able to move my face naturally after anti-wrinkle injections?','will-i-still-be-able-to-move-my-face-naturally-after-anti-wrinkle-injections',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to move my face naturally after anti-wrinkle injections?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always for natural, refreshed results. You should still look like yourself, just more rested. I use careful assessment, conservative dosing and precise placement so expression is softened in a balanced way rather than eliminated. The “frozen” look usually comes from overtreatment. I take a whole-face, layered approach and review results with you, making small adjustments only if needed. Many patients come to me because they want subtle, natural outcomes.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','fe139407-a2ae-419a-ab2d-87abb1d3e1a9'),
(8012,8012,1,'Is there any downtime?','is-there-any-downtime',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is there any downtime?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments involve very little downtime. You may notice some mild redness, swelling, or small marks for a few hours to a couple of days. With procedures involving injections, bruising is possible and can occasionally take up to a week to settle. Most patients return straight to their normal activities, although I usually suggest avoiding strenuous exercise, alcohol, and heat treatments for 24 hours.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','910f4f96-8d10-465d-9934-036e0a3c7646'),
(8013,8013,1,'How long do results last?','how-long-do-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do results last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>This depends on the treatment you choose, as well as your individual skin and lifestyle. As a general guide: <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">Anti-wrinkle injections</a> usually last around 3-4 months. As the effect gradually wears off, muscle activity returns and lines slowly come back to their previous level. Stopping treatment does not make wrinkles worse - your skin simply continues its natural ageing process. Many patients feel that lines look a little softer than before, as the muscles have been relaxed for a period of time. <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">Dermal fillers</a> typically last around 9-18 months, depending on the area treated and how your body naturally breaks down the product. <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">Biostimulators</a> such as JULÄINE™ deliver results lasting up to 2 years, with only 1 maintenance treatment needed every 18-24 months. <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">Skin boosters</a> and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a> focus on improving skin quality and hydration, and usually benefit from maintenance treatments every 6-9 months to keep results looking their best.</p>\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','bd237088-0ccf-4693-8216-289f53648bdf'),
(8014,8014,1,'Is the treatment painful?','is-the-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find treatments very tolerable. Anti-wrinkle injections use very fine needles and tend to feel like brief pinpricks. For treatments such as fillers and skin boosters, numbing cream can be used in certain areas to keep you as comfortable as possible.\\n\\nAppointments are carried out in a calm, unhurried way, so there is time to ensure you feel at ease throughout. Any discomfort is usually short-lived, and many patients are pleasantly surprised by how comfortable the process feels.\"}',1,'2026-04-16 13:20:34','2026-04-16 13:20:34','40cc7af7-20f9-4f97-b7eb-c5ba703f30eb'),
(8015,8015,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-16 13:21:16','2026-04-16 13:21:16','105c470a-eea8-489d-a19a-deaf625231e0'),
(8016,8016,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-16 13:21:19','2026-04-16 13:21:19','50bd0afd-7ea5-43ef-a02c-8683a52852cc'),
(8020,8020,1,'Ageing Skin','ageing-skin','conditions/ageing-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-16 13:27:28','2026-04-16 13:27:28','bb20c89e-5bd6-41d5-b95c-c9050b1a12b4'),
(8021,8021,1,'Frequently Asked Questions About Ageing','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Ageing\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about the changes of ageing\"}',1,'2026-04-16 13:27:28','2026-04-16 13:27:28','ae4408b1-1680-4da8-b07a-9056850e490f'),
(8022,8022,1,'Can I combine different anti-ageing treatments?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine different anti-ageing treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, and in many cases a combined approach delivers the most natural and effective results. Ageing affects every layer of the face, from skin quality and collagen, to volume, structure and muscle movement. This is why different treatments often work best when used together, as each addresses a different layer. My approach focuses on treating these changes in a balanced way, for example improving skin quality, restoring subtle structural support, stimulating collagen and softening lines where appropriate. Rather than treating one concern in isolation, I look at how everything works together to keep results natural and harmonious. I will always design a personalised treatment plan with careful timing and no pressure to do everything at once. Treatments can be phased gradually, focusing first on what will make the biggest difference while keeping your results subtle and natural.</p>\"}',1,'2026-04-16 13:27:28','2026-04-16 13:27:28','8d6e5050-2235-4159-9921-faee8d306ded'),
(8023,8023,1,'Ageing Skin','ageing-skin','conditions/ageing-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-16 13:27:32','2026-04-16 13:27:32','ba8434c5-9a9c-47fd-933a-645c97de8839'),
(8027,8027,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-16 13:28:51','2026-04-16 13:28:51','0c4454ed-d902-46cd-9ff1-ecc3d02a3217'),
(8028,8028,1,'Crepey Skin','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Crepey Skin\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>\\n    You may start to notice that your skin no longer feels as firm or springy as it once did. It may look thinner, slightly looser, or develop fine lines that seem to crumple rather than smooth out. When you gently pinch the skin, it may stay creased for a moment before slowly returning. Crepey skin often develops gradually and can make the skin appear more delicate, finely wrinkled or tired, particularly on areas where the skin is naturally thinner such as around the eyes, the neck and the décolletage.\\n</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2><span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Crepey Skin?</i></span></h2><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Crepey skin describes skin that has become thin, finely wrinkled and loose, often compared to the texture of crepe paper or tissue paper. Unlike deeper wrinkles that form in specific areas due to repeated muscle movement, crepey skin tends to affect broader areas and has a fragile, papery appearance. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">The key difference between crepey skin and other signs of ageing is that it reflects a decline in skin quality and structure rather than volume loss or muscle activity. Over time, the skin loses collagen and elastin, the proteins responsible for strength, thickness and elasticity. </span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">As a result, the skin becomes thinner, less resilient and slower to recoil when stretched. This is why treatments that focus purely on lifting or tightening often do not fully address crepey skin, and why approaches that improve skin quality and stimulate collagen regeneration are so important.  </span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6785]}',1,'2026-04-16 13:28:51','2026-04-16 13:28:51','51889619-1585-4cb1-a1b1-fa83c7823e53'),
(8029,8029,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-16 13:40:55','2026-04-16 13:40:55','20a2974b-d2cf-439d-bdfc-ec1a09e1952f'),
(8043,8043,1,'Will the pigmentation come back after treatment?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will the pigmentation come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Unfortunately, pigmentation can return over time, particularly if the original trigger is still present or sun protection is not consistent. Skin that has developed pigmentation once is often more prone to it in the future. That said, with the right approach, results can be maintained very well. Consistent daily sun protection, appropriate skincare, and occasional maintenance treatments all play an important role in keeping your skin clear and even.\\n\\nI will always talk this through with you in detail, so you know what to expect and feel confident in how to maintain your results long-term.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','b7732069-7afd-468c-8d8f-edee225abe21'),
(8044,8044,1,'Are treatments suitable for all skin types?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are treatments suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treatments need to be carefully adapted to your skin type. Darker skin tones can be at higher risk of post-inflammatory pigmentation if treatments are too strong or not chosen appropriately.\\n\\nDuring your consultation, I assess your skin in detail and recommend options that are both safe and effective for you. This is one of the reasons a doctor-led assessment is so important when treating pigmentation, as careful planning helps protect your skin while achieving the best possible results.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','1185b0bb-6360-4f87-8be1-414642531e6a'),
(8045,8045,1,'Can I treat hyperpigmentation at home?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat hyperpigmentation at home?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Home skincare plays an important role in treating hyperpigmentation, but professional-strength products recommended after a proper skin assessment are usually more effective than high street alternatives. Ingredients such as retinoids, vitamin C, tranexamic acid, and azelaic acid can make a real difference when used consistently. I often recommend the pHformula range, which is specifically designed to target pigmentation safely and effectively while supporting overall skin health. For more noticeable or stubborn pigmentation, combining good home care with in-clinic treatments usually provides faster and more reliable results.</p>\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','9db135d0-5dd0-4f6d-916a-9abc5852a4c6'),
(8046,8046,1,'What makes Aesthetics by Dr Rachel different for pigmentation treatment?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for pigmentation treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As a qualified medical doctor and practising GP with extensive training in aesthetic medicine and skin health, I focus first on diagnosing the exact type of pigmentation you have before recommending anything.\\n\\nDuring your consultation, I carry out an in-depth skin assessment, including advanced skin analysis, which helps us understand not only the pattern of pigmentation but also how deeply it sits within the skin. This level of detail is essential in choosing treatments that are both safe and genuinely effective.\\n\\nThis allows me to recommend the most appropriate approach for your skin, whether that involves professional-strength skincare, in-clinic treatments, or a combination of both.\\n\\nBecause you see me at every appointment, I can monitor your progress closely and adjust your plan as your skin responds and changes over time. Many patients come to me after trying multiple products or treatments elsewhere, and find that a careful, medically-led assessment and a structured plan make all the difference to their results.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','a325c8cb-738d-4493-8cf0-66ab32cc7929'),
(8047,8047,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','d2908680-6e47-4892-9e70-ce11790309d8'),
(8048,8048,1,'Hyperpigmentation and Age Spots','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Hyperpigmentation and Age Spots\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"These areas of uneven pigmentation can often seem to appear suddenly. You may begin to notice darker patches on the cheeks or forehead, or a general unevenness in skin tone that leaves the skin looking duller or older than you feel.\\n\\nEven with a good skincare routine now, factors such as past sun exposure, hormonal changes, and inflammation can take time to surface, becoming more visible over the years. Understanding why this happens is the first step in treating pigmentation effectively.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Is Hyperpigmentation?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Hyperpigmentation refers to areas of skin that appear darker than the surrounding skin. It happens when cells called melanocytes produce excess melanin, the pigment that gives your skin its colour. You might notice this as small dark spots, larger patches, or a more general unevenness in tone, ranging from light tan to deeper brown.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Although it is not harmful, it can really affect your confidence. Many people find themselves relying more on makeup or feeling that their skin looks dull, uneven, or older than they feel.\\n\\nWhen I assess your skin, I look carefully at the pattern and type of pigmentation you have. This is important, as not all pigmentation behaves in the same way. Once we understand what is driving it, we can choose treatments that are safe, effective, and designed to reduce the risk of it returning.\\n </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Whether your pigmentation is related to sun exposure, hormonal changes, inflammation, or a combination of factors, a personalised approach makes all the difference. With the right plan, it is often possible to gradually fade darker areas and restore a clearer, more even complexion over time.\\n </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6847]}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','56eb6c61-004f-46fc-945e-ed61a09bd39d'),
(8049,8049,1,'Understanding the Different Types of Hyperpigmentation','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Understanding the Different Types of Hyperpigmentation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Not all dark spots are the same. Identifying the type of pigmentation you have is an important first step, as it allows me to choose the safest and most effective treatment approach for your skin.  </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Age Spots (Solar Lentigines) </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Also called sun spots or liver spots, these are flat brown marks that appear on areas that have had the most sun exposure over your lifetime, such as the face, hands, shoulders, and chest.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Melasma appears as larger, patchy areas of discolouration, usually in a symmetrical pattern across the cheeks, forehead, upper lip, and chin. The colour can range from light brown to grey-brown or even slightly bluish-brown, depending on how deep the pigment sits in the skin. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Post-Inflammatory Hyperpigmentation </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This type of pigmentation appears after the skin has been irritated or inflamed. Acne, cuts, burns, eczema, insect bites, or even overly aggressive skin treatments can leave behind darker marks once the skin has healed. </span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles </span></h3><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Freckles are small, flat spots that darken with sun exposure and tend to fade in winter. They are most common in people with fair skin and red or blonde hair. Some people also ask about treating freckles. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6846],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','d6e475fe-aee2-4e6e-875e-5815796b027d'),
(8050,8050,1,'What Causes Hyperpigmentation and Age Spots?','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">What Causes Hyperpigmentation and Age Spots?</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Sun exposure, which is the most common cause. Each time your skin is exposed to UV light without adequate protection, it produces extra melanin as a defence. Over time, this damage builds up and becomes visible as dark spots and uneven tone.  \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Hormonal changes, which can stimulate melanin production. This is why pigmentation such as melasma often appears during pregnancy, when taking hormonal contraception, or around perimenopause and menopause.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Inflammation or irritation, which can trigger excess pigment during the healing process. This may follow acne, injuries, burns, or certain skin conditions.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - Your natural skin type and genetic background, which influence how your skin responds to these triggers and how likely you are to develop pigmentation.\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6848],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    Where Does Hyperpigmentation Appear?\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n\\n<p>\\nHyperpigmentation can develop anywhere on the body, but it most commonly appears in areas that have had the greatest exposure to the sun over time.\\n\\nCommon areas include:</p>\\n<p>\\n    - The face, particularly the cheeks, forehead, upper lip, and temples, where pigmentation often appears as patches or uneven tone.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - The backs of the hands, which are frequently exposed to sunlight and are one of the most common areas for age spots to develop.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - The chest, where the skin is more delicate and often exposed during warmer months.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    - The shoulders and forearms, which receive significant sun exposure over the years and are prone to developing pigmentation changes.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','8d72ecc3-89bb-46fe-a236-42829861338b'),
(8051,8051,1,'Frequently Asked Questions About Hyperpigmentation','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Hyperpigmentation\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about hyperpigmentation\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','b9e9f5b4-0989-4621-8a8d-8c83dae0324a'),
(8052,8052,1,'Can hyperpigmentation be completely removed?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can hyperpigmentation be completely removed?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>In many cases, hyperpigmentation can be improved very significantly, and sometimes cleared completely, but it depends on the type of pigmentation, how deep it sits, and how long it has been present. Some types, such as age spots and other superficial pigmentation, respond very well to treatment, while others, like melasma, are more prone to recurrence and need ongoing maintenance. During <a href=\\\"{entry:4896@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-consultation}\\\">your consultation</a>, I will assess your skin carefully and give you honest, realistic expectations based on your specific situation.</p>\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','1902fada-f9fc-4c6f-adc9-6587ed649ec6'),
(8053,8053,1,'How long does it take to see results?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long does it take to see results?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treating hyperpigmentation does take patience. Many patients start to notice early improvement within 4 to 6 weeks, but more visible, meaningful change usually takes 3 to 6 months, depending on the type and depth of pigmentation. Stubborn or long-standing marks can take longer. Staying consistent with your skincare and daily sun protection makes a huge difference to how quickly and consistently you see results.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','57b07cac-f00e-4000-a0e4-8f2e1fc5fcd7'),
(8054,8054,1,'Will the pigmentation come back after treatment?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will the pigmentation come back after treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Unfortunately, pigmentation can return over time, particularly if the original trigger is still present or sun protection is not consistent. Skin that has developed pigmentation once is often more prone to it in the future. That said, with the right approach, results can be maintained very well. Consistent daily sun protection, appropriate skincare, and occasional maintenance treatments all play an important role in keeping your skin clear and even.\\n\\nI will always talk this through with you in detail, so you know what to expect and feel confident in how to maintain your results long-term.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','f31209e6-9bd2-4202-8e1c-e85f91e66d4a'),
(8055,8055,1,'Are treatments suitable for all skin types?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are treatments suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Treatments need to be carefully adapted to your skin type. Darker skin tones can be at higher risk of post-inflammatory pigmentation if treatments are too strong or not chosen appropriately.\\n\\nDuring your consultation, I assess your skin in detail and recommend options that are both safe and effective for you. This is one of the reasons a doctor-led assessment is so important when treating pigmentation, as careful planning helps protect your skin while achieving the best possible results.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','3fd923d6-0672-48ce-854e-489d4bd27be4'),
(8056,8056,1,'Can I treat hyperpigmentation at home?','does-under-eye-treatment-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat hyperpigmentation at home?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Home skincare plays an important role in treating hyperpigmentation, but professional-strength products recommended after a proper skin assessment are usually more effective than high street alternatives. Ingredients such as retinoids, vitamin C, tranexamic acid, and azelaic acid can make a real difference when used consistently. I often recommend the pHformula range, which is specifically designed to target pigmentation safely and effectively while supporting overall skin health. For more noticeable or stubborn pigmentation, combining good home care with in-clinic treatments usually provides faster and more reliable results.</p>\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','50e95c94-c177-4f21-b573-9741280e22a7'),
(8057,8057,1,'What makes Aesthetics by Dr Rachel different for pigmentation treatment?','are-there-any-risks-or-side-effects',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for pigmentation treatment?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"As a qualified medical doctor and practising GP with extensive training in aesthetic medicine and skin health, I focus first on diagnosing the exact type of pigmentation you have before recommending anything.\\n\\nDuring your consultation, I carry out an in-depth skin assessment, including advanced skin analysis, which helps us understand not only the pattern of pigmentation but also how deeply it sits within the skin. This level of detail is essential in choosing treatments that are both safe and genuinely effective.\\n\\nThis allows me to recommend the most appropriate approach for your skin, whether that involves professional-strength skincare, in-clinic treatments, or a combination of both.\\n\\nBecause you see me at every appointment, I can monitor your progress closely and adjust your plan as your skin responds and changes over time. Many patients come to me after trying multiple products or treatments elsewhere, and find that a careful, medically-led assessment and a structured plan make all the difference to their results.\"}',1,'2026-04-16 13:51:08','2026-04-16 13:51:08','5ddc9f2c-7e16-4166-a665-e04101dd1186'),
(8060,8060,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-16 13:55:16','2026-04-16 13:55:16','ad98d923-97cc-423f-ae49-cf30c4b6f03b'),
(8061,8061,1,'Types of Acne','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Acne\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Acne rarely looks the same from one person to another, and most people experience a mixture of different types. Understanding these patterns is why effective treatment needs to be personalised, and why a proper skin assessment is so important before deciding the best way forward.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Comedonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nComedonal acne is made up mainly of blackheads and whiteheads, with little inflammation. It often affects the forehead, nose and chin and can make the skin look uneven or congested.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Inflammatory Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nInflammatory acne includes papules, pustules, nodules and cysts. The redness and swelling you see are caused by your immune system reacting to bacteria within blocked pores.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Hormonal Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nHormonal acne typically appears on the lower face, particularly around the chin and jawline, and sometimes the neck. These breakouts are often deeper and more persistent, forming painful spots beneath the skin that can last for days or even weeks. \\n</p>\\n<p>\\n     \\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7013],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Adult-Onset Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nAdult-onset acne is very common. Many people who had clear skin as teenagers find themselves developing acne for the first time in their twenties, thirties or later. Adult skin behaves differently from teenage skin, often being more sensitive and more prone to inflammation.\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Cystic Acne\\n </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nCystic acne is a more severe form of inflammatory acne, where large, painful lumps form deep beneath the skin. These lesions can take weeks to fully settle and have a higher risk of leaving permanent scars.\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Mixed Acne</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nMost people actually have mixed acne, meaning several of these types are present at the same time. For example, you might have blackheads across your nose, hormonal breakouts around your chin, and inflamed spots on your cheeks.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7015]}',1,'2026-04-16 13:55:16','2026-04-16 13:55:16','58676794-ab6b-4843-87c9-34ae67f0ea3b'),
(8064,8064,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-16 13:55:58','2026-04-16 13:55:58','742f005c-7a0b-4353-ae5f-33afb69eff2f'),
(8065,8065,1,'Frequently Asked Questions About Acne','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Acne\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about acne\"}',1,'2026-04-16 13:55:58','2026-04-16 13:55:58','36bf6a81-3fde-4032-a605-9a6852c83dc8'),
(8066,8066,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-16 13:56:02','2026-04-16 13:56:02','3a099e2c-d687-43fc-848a-bd46b792bb09'),
(8071,8071,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-16 13:57:12','2026-04-16 13:57:12','5a3e85a7-d438-40dd-9775-c9626b28381e'),
(8072,8072,1,'Frequently Asked Questions About Chemical Peels','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Chemical Peels\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Chemical Peels answered by Dr Rachel.\"}',1,'2026-04-16 13:57:12','2026-04-16 13:57:12','80f52827-5309-44eb-bfed-dc42487abb15'),
(8073,8073,1,'How much downtime do chemical peels require?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How much downtime do chemical peels require?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"For patients who require deeper resurfacing, I also offer carefully selected TCA resurfacing treatments. Even then, the aim is still controlled, doctor-led improvement with only mild flaking rather than dramatic shedding. I will always talk you through what to expect based on your treatment and skin type, and we can plan this carefully within your personalised Radiance Collection journey so results remain gradual, safe and natural-looking.\"}',1,'2026-04-16 13:57:12','2026-04-16 13:57:12','f0f0c719-8f90-4966-bb4b-c0ee8f3b11bd'),
(8074,8074,1,'What is the difference between glycolic, salicylic, and TCA peels?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What is the difference between glycolic, salicylic, and TCA peels?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Traditional peels typically rely on a single acid. Glycolic acid is often used to improve dullness and fine texture, salicylic acid is particularly helpful for oily or acne-prone skin, and TCA (trichloroacetic acid) works at a deeper level to address pigmentation and visible ageing changes. In my clinic, most treatments use pHformula’s advanced controlled skin resurfacing systems, which combine multiple acids in carefully balanced formulations. This allows me to tailor treatments precisely to your skin concerns while keeping irritation low and results more predictable and progressive.\"}',1,'2026-04-16 13:57:12','2026-04-16 13:57:12','7237c691-2ec8-4455-b1f7-07315564b8dd'),
(8079,8079,1,'Is the neck line treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find neck treatments very manageable. Injections are usually felt as brief pinpricks, and I can use numbing cream where appropriate to keep you comfortable. Microneedling may feel slightly prickly or warm, but it is generally well-tolerated.\\n\\nYour comfort is always a priority, and I will adjust the technique and pace to suit you throughout your treatment.\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the neck line treatment painful?\"}',1,'2026-04-16 14:01:29','2026-04-16 14:01:29','087a0487-04e6-4566-8944-8e2ca68dbf65'),
(8089,8089,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>\\n    This depends on the severity of your neck lines, your skin quality and the treatments we choose. Neck lines improve best with a course of treatments rather than a one-off. \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    As a general guide: \\n</p>\\n<p>\\n    <strong>• Profhilo®</strong> or similar skin boosters: usually start with 2-3 sessions spaced 4 weeks apart \\n</p>\\n<p>\\n    <strong>• </strong><a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\"><strong>Polynucleotides</strong></a><strong>:</strong> typically a course of 3-4 treatments spaced 4 weeks apart \\n</p>\\n<p>\\n    <strong>• </strong><a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\"><strong>Microneedling</strong></a><strong>:</strong> often 3 to 6 sessions spaced 4–6 weeks apart\\n\\nResults develop gradually as your skin responds and builds collagen over time. Maintenance treatments can vary depending on your skin, lifestyle and how your body responds, and will be adapted to you as part of your longer-term plan. \\n</p>\\n<p>\\n    <strong>• </strong><a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\"><strong>Biostimulators such as JULÄINE™</strong></a><strong>:</strong>  typically a course of 3 sessions spaced 4–6 weeks apart, followed by a single maintenance treatment every 18–24 months to help maintain results\\n</p>\"}',1,'2026-04-16 14:17:03','2026-04-16 14:17:03','b351455a-0d7f-4e77-8bcc-a209e56d9698'),
(8090,8090,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6533]}',1,'2026-04-16 14:17:03','2026-04-16 14:17:03','89c37425-b2a8-4a33-bb66-c39510a4c60f'),
(8091,8091,1,'Neck Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Neck Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#333333;\\\">Horizontal lines across your neck, loose skin that catches your eye in photos, or texture that makes you feel self-conscious in open necklines are concerns I hear about every week in the clinic. Neck lines, sometimes called tech neck or necklace lines, are one of the most common yet most overlooked signs of ageing.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:#333333;\\\">Many patients look after their face carefully but unintentionally neglect the neck, even though the skin there is thinner, more delicate and often shows ageing sooner. For truly natural rejuvenation, the face and neck should always be treated together, not in isolation.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>Neck Lines: What They Are and Why They Appear</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Neck lines are the horizontal creases and wrinkles that develop across the front of the neck. They are often called necklace lines because they tend to sit where a necklace would naturally rest. Some people also notice vertical bands, which are caused by the platysma muscle becoming more visible or active beneath the skin.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The neck is one of the most delicate and exposed areas of the body. The skin here is thinner than on much of the face, with fewer oil glands and less supportive fat beneath it. It is also in almost constant motion, whether you are turning your head, looking down or speaking. As a result, the neck often starts to show signs of ageing earlier than people expect.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">It is very common to focus on the face and overlook the neck, but treating the two separately can make results feel less balanced. For the most natural outcome, the neck should be considered alongside the face as part of a gentle, layered approach, supported by consistent homecare so the whole area ages more evenly and harmoniously.</span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[6533]}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','559be799-253a-4b8d-8750-21e738f1a7bc'),
(8092,8092,1,'What Causes Neck Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Neck Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Neck lines usually develop from a combination of natural ageing and everyday habits. As we get older, collagen and elastin production slow. These are the proteins that keep skin firm and springy, so when levels fall, the delicate skin on the neck begins to crease, fold and lose its elasticity.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The most common causes of neck lines include:</strong></span></h3><h3> </h3><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Natural ageing and collagen loss</strong>, which thins the skin and reduces elasticity over time</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sun damage</strong> from years of UV exposure, particularly on neck skin that is not protected with daily SPF</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Repetitive movement</strong>, including looking down at phones, tablets and laptops (<i>tech neck</i>)</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><span>\\t</span><strong>Genetics</strong>, which influences how early and how deeply lines form</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Sleeping positions</strong>, especially side sleeping, which creases the neck skin night after night</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Weight changes</strong>, where the skin stretches and does not fully tighten again</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Smoking,</strong> which accelerates collagen loss, and dehydration, which makes lines more noticeable</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6538],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','6a2d6600-94b1-4e50-abb9-8a21a94f99d6'),
(8093,8093,1,'How I Treat Neck Lines at Aesthetics by Dr Rachel','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How I Treat Neck Lines at Aesthetics by Dr Rachel</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">The neck needs a slightly different approach to the face. The skin is thinner, movement is constant, and treatments that work well for facial lines do not always translate directly to this area. I tailor every treatment plan to you, taking into account the type of lines you have, your skin quality, your medical history, and the kind of result you are hoping to achieve. My aim is always safe, natural improvement that remains in keeping with your face. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">I tend to take a gentle, layered approach, focusing first on improving skin quality and then addressing deeper lines if needed. This helps results look more subtle and balanced, rather than over-treated. Many patients choose to include the neck as part of a longer-term Radiance Collection programme, allowing improvements to build gradually over time so the face and neck age in harmony.</span>\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[6537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What treatment options are available for Neck Lines?</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Profhilo®</span>\\n</h3>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Profhilo® is one of my favourite treatments for neck rejuvenation because it improves skin quality rather than adding volume. It contains a high concentration of hyaluronic acid that spreads gently like honey beneath the skin, deeply hydrating and stimulating collagen and elastin production. </span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:#1a1a2e;\\\">JULAINE™</span>\\n</h3>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">JULAINE™ is an advanced collagen-stimulating treatment that works at a deeper structural level. It encourages your skin to gradually rebuild its own collagen over time, helping to improve firmness, elasticity and overall skin quality. This makes it particularly helpful for areas of laxity and more established lines, where the skin needs longer-term support.</span>\\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:#1a1a2e;\\\">Microneedling</span>\\n</h3>\\n<p>\\n    <span style=\\\"background-color:transparent;color:#333333;\\\">Microneedling creates tiny, controlled micro-injuries in the skin, which trigger your body’s natural healing response and stimulate new collagen production. On the neck, this can gradually improve texture, soften fine lines and help tighten lax, crepey skin over a course of treatments. </span>\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','582c802f-dc5c-48da-80e4-ea829091e465'),
(8094,8094,1,'Frequently Asked Questions About Neck Lines','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Neck Lines\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your common questions about neck lines.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','666f4134-5b12-4e39-a4a9-b6450bfdd84c'),
(8095,8095,1,'Is neck line treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is neck line treatment suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, I treat all skin types and tones. During your consultation, I assess your neck skin carefully, including pigmentation risk, sensitivity and healing capacity, so I can recommend the safest and most effective approach for you. Treatments are always tailored and adjusted gradually to keep results natural and safe.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','5802f994-34d8-4341-a851-2d879b9ec0d9'),
(8096,8096,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>\\n    This depends on the severity of your neck lines, your skin quality and the treatments we choose. Neck lines improve best with a course of treatments rather than a one-off. \\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n    As a general guide: \\n</p>\\n<p>\\n    <strong>• Profhilo®</strong> or similar skin boosters: usually start with 2-3 sessions spaced 4 weeks apart \\n</p>\\n<p>\\n    <strong>• </strong><a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\"><strong>Polynucleotides</strong></a><strong>:</strong> typically a course of 3-4 treatments spaced 4 weeks apart \\n</p>\\n<p>\\n    <strong>• </strong><a href=\\\"{entry:4418@1:url||https://hermeswp.xyz/rachel/web/treatments/microneedling}\\\"><strong>Microneedling</strong></a><strong>:</strong> often 3 to 6 sessions spaced 4–6 weeks apart\\n\\nResults develop gradually as your skin responds and builds collagen over time. Maintenance treatments can vary depending on your skin, lifestyle and how your body responds, and will be adapted to you as part of your longer-term plan. \\n</p>\\n<p>\\n    <strong>• </strong><a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\"><strong>Biostimulators such as JULÄINE™</strong></a><strong>:</strong>  typically a course of 3 sessions spaced 4–6 weeks apart, followed by a single maintenance treatment every 18–24 months to help maintain results\\n</p>\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','c279f19a-aabc-44b1-a2fd-ce3607609bd7'),
(8097,8097,1,'Is the neck line treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is the neck line treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most patients find neck treatments very manageable. Injections are usually felt as brief pinpricks, and I can use numbing cream where appropriate to keep you comfortable. Microneedling may feel slightly prickly or warm, but it is generally well-tolerated.\\n\\nYour comfort is always a priority, and I will adjust the technique and pace to suit you throughout your treatment.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','551d59cd-90b0-4954-a43a-620f4c59db6c'),
(8098,8098,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments involve very little downtime. You may notice some redness, swelling or small marks for 24-48 hours after injections, and microneedling can leave the skin pink for a few days. Occasional bruising is possible. Most patients return to normal activities the same day, although I usually recommend avoiding strenuous exercise, alcohol and heat treatments for 24 hours.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','fc5301da-397c-4f9d-9e08-9d37acaf35c3'),
(8099,8099,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most neck treatments work gradually as collagen production increases and skin quality improves. You may notice early changes within a few weeks, with continued improvement over several months. Results are not instant, but they are worth the wait because they look natural and long-lasting. Maintenance treatments help keep your neck looking its best over time.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','29738525-f184-4a8a-91b4-e5fc0a7a678b'),
(8100,8100,1,'Can I treat tech neck even if I am in my 20s or 30s?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I treat tech neck even if I am in my 20s or 30s?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, absolutely. I see tech neck more and more in younger patients because of long hours on phones and laptops. Starting early with gentle treatments, good posture habits and consistent skincare can slow the progression of neck lines and help prevent them from becoming deeper over time. Prevention is always easier, and often simpler, than correction later.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','6450cfb2-e2fe-451f-bc69-8b2a326911f3'),
(8101,8101,1,'Can I combine neck line treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine neck line treatment with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, and combining treatments often gives the best results. Different treatments improve different layers of the skin, so a layered approach usually looks more natural and longer lasting than treating one concern in isolation. During your consultation, I assess your face and neck together and design a personalised plan that keeps everything balanced, often combining treatments gradually as part of a Radiance Collection programme.\"}',1,'2026-04-16 14:17:04','2026-04-16 14:17:04','05849492-b2ed-46d8-b54a-0d64d836535e'),
(8102,8102,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6533]}',1,'2026-04-16 14:17:06','2026-04-16 14:17:06','7e4a3e31-7446-49fd-9626-d692a1db667c'),
(8117,8117,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[5070]}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','bc984054-a262-4bf5-b509-cd38ceab4bd4'),
(8118,8118,1,'Rosacea Condition','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Rosacea Condition\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Persistent redness, flushing and visible blood vessels can affect how your skin looks and feels every day. At Aesthetics by Dr Rachel, I take a calm, doctor-led approach to rosacea, focusing on reducing inflammation, strengthening your skin barrier and managing triggers safely over time.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"color:hsl(203,34%,27%);\\\"><i>Rosacea: Symptoms and Causes</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n  Rosacea is a chronic inflammatory skin condition that mainly affects the central face. It can cause persistent redness, flushing, visible blood vessels (known as telangiectasia) and, in some patients, small red bumps that can be mistaken for acne.\\n\\nThe exact cause is not fully understood, but rosacea is thought to develop due to a combination of genetic tendency, immune system over-reactivity and instability of the small blood vessels within the skin.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n  Environmental triggers can then aggravate the condition, leading to flare-ups that may become more frequent over time if rosacea is not carefully managed. There is also increasing evidence that gut health and the skin microbiome may play a role in some patients. Digestive health and dietary factors can influence inflammation, which is why I take a holistic approach, considering lifestyle, skincare and medical treatment together when creating a personalised plan.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5070]}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','22dc74f5-f2a1-4d76-9200-446fa0ee3674'),
(8119,8119,1,'Common Rosacea Triggers And How To Treat','what-is-treatment-3',NULL,'{\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h2><span style=\\\"color:hsl(203,34%,27%);\\\"><i>Common Rosacea Triggers</i></span></h2><p> </p><p>Rosacea flare-ups are often linked to a combination of environmental and lifestyle triggers. Identifying what affects your skin is one of the most important steps in managing rosacea long term. Common triggers include sun exposure, heat, alcohol, spicy foods and emotional stress. Changes in temperature, particularly moving between warm indoor environments and cold outdoor air, can also provoke flushing. Harsh skincare, certain medications or topical steroids, hormonal changes, and underlying gut or dietary factors may all play a role in some patients.</p><p> </p><p>Living on the Wirral can bring additional challenges for rosacea-prone skin. Coastal wind, salt air and rapidly changing weather can disrupt the skin barrier, making redness and sensitivity more difficult to control. When I create a treatment plan, I take these local factors into account, recommending appropriate daily SPF, barrier-supporting skincare such as personalised pHformula routines, and simple, practical adjustments to help keep your skin calm in our coastal climate.</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[5076],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>How I Treat Rosacea at Aesthetics by Dr Rachel</i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\n   There is no single cure for rosacea, but with the right approach, flare-ups can be reduced and your skin can become calmer and more resilient over time. I take a careful, doctor-led approach, combining targeted treatments with supportive skincare to address both the visible redness and the underlying inflammation.\\n\\nEvery plan starts with a thorough consultation. I take time to understand your skin, your triggers, your medical history and your current routine, so we can choose treatments that are safe, appropriate and realistic for you.\\n\\nFor many patients, gentle resurfacing using the pHformula C.R. (Chronic Redness) range can make a real difference.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\n  These treatments are designed specifically for sensitive, redness-prone skin, helping to calm inflammation, support skin renewal and strengthen the skin barrier without aggravating rosacea.\\n\\nDepending on your presentation, I may also recommend regenerative treatments such as polynucleotides, or intradermal botulinum toxin to help reduce flushing and improve overall skin stability. Where appropriate, I can refer you on for laser or IPL therapy, which can be very effective for reducing persistent redness and visible blood vessels.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[5075]}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','3a0d1397-90e0-40c3-9b09-89c9ce5c8f7a'),
(8120,8120,1,'Frequently Asked Questions About Rosacea Condition','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Rosacea Condition\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about rosacea\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','127f67b2-0964-45d5-adf0-c736b97e632c'),
(8121,8121,1,'Is rosacea treatment suitable for all skin types?','q-is-neck-line-treatment-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment suitable for all skin types?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Yes, rosacea treatments can be adapted for all skin types, but they need to be chosen carefully. Rosacea-prone skin is often more sensitive and reactive, so I focus on gentle, barrier-supporting treatments that calm inflammation rather than overstimulating the skin. Your plan will always be based on your skin type, your rosacea subtype and how your skin is likely to respond.\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','bc14e079-9a12-4e78-9678-a142d5fc864c'),
(8122,8122,1,'How many treatment sessions will I need?','q-how-many-treatment-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How many treatment sessions will I need?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"This depends on how your rosacea presents and how reactive your skin is. Most patients benefit from a course of treatments rather than a one-off session, with treatments spaced a few weeks apart.\\n\\nRosacea is a long-term condition, so the focus is on control rather than cure. Once your skin is more stable, maintenance treatments and consistent homecare help keep flare-ups under control.\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','ccdf0669-8556-4ebb-95c6-6b558f31f822'),
(8123,8123,1,'Is rosacea treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments are very manageable. You may feel some mild warmth, tingling or slight stinging, particularly with active treatments, but this usually settles quickly. I always work gently and adjust the treatment to suit your skin, especially as rosacea-prone skin can be more sensitive.\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','e79c1da2-8e60-4108-a736-a79bf7a985f9'),
(8124,8124,1,'How long is the recovery time?','q-how-long-is-the-recovery-time',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long is the recovery time?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Downtime is usually minimal. You may notice some temporary redness or sensitivity for a few hours to a couple of days, depending on the treatment. I will guide you on simple aftercare to help your skin recover quickly and comfortably.\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','f1f3a42b-df76-40e1-a46d-d06bbf95fa32'),
(8125,8125,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results develop gradually. Most patients notice their skin becoming calmer, less reactive and more even over a course of treatments.\\n\\nWith the right combination of treatments, skincare and trigger management, results can be long-lasting, but ongoing maintenance is usually needed to keep rosacea under control and prevent flare-ups returning.\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','1dfb2732-c394-42de-b56b-1c2272fd072c'),
(8126,8126,1,'Are there any side effects or risks?','q-can-i-treat-tech-neck-even-if-i-am-in-my-20s-or-30s',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Are there any side effects or risks?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"All treatments carry some level of risk, but these are minimised with careful assessment and appropriate treatment selection. The most common side effects are temporary redness, sensitivity or mild irritation. Because rosacea-prone skin can be more reactive, I always take a cautious approach and avoid overly aggressive treatments that could worsen inflammation.\\n\\nBefore any treatment, I will talk you through the potential risks and side effects in full so you feel informed and comfortable proceeding. You will have plenty of opportunity to ask questions, and I am always available if you have any concerns after your treatment.\"}',1,'2026-04-16 14:33:57','2026-04-16 14:33:57','5df55a62-9d6f-4495-92f1-fd9d7e514f6b'),
(8127,8127,1,'Can I combine rosacea treatment with other treatments?','q-can-i-combine-neck-line-treatment-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I combine rosacea treatment with other treatments?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Yes, but this needs to be done carefully. In many cases, combining <a href=\\\"https://hermeswp.xyz/rachel/web/treatments\\\">treatments</a> gives the best results, as long as your skin barrier is stable. I usually focus on calming and strengthening the skin first, then gradually introduce other treatments if appropriate, so results remain natural and your skin is not overwhelmed. Skincare is often used alongside medical treatment from your GP, such as prescription creams or tablets, to help support the skin barrier and improve overall control.</p>\"}',1,'2026-04-16 14:33:58','2026-04-16 14:33:58','c3f898bc-226a-40e5-8736-d8dabdff1dc7'),
(8128,8128,1,'What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?','what-makes-aesthetics-by-dr-rachel-different-for-rosacea-treatment-in-wirral',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"What makes Aesthetics by Dr Rachel different for rosacea treatment in Wirral?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>Rosacea requires a thoughtful, medical approach rather than a one-size-fits-all treatment. As a GP with experience in skin health, I take time to understand your skin, your triggers and your overall health before recommending any treatment. I focus on gentle, evidence-based treatments and realistic, long-term management, rather than quick fixes. You will see me at every appointment, so I can monitor how your skin responds and adjust your plan carefully over time. My aim is always to help your skin feel calmer, stronger and more predictable, with results that look natural and in keeping with you.</p>\"}',1,'2026-04-16 14:33:58','2026-04-16 14:33:58','915ae3b3-a132-47f1-acdb-ec223db42dc0'),
(8132,8132,1,'Homepage','homepage','__home__',NULL,1,'2026-04-16 14:35:29','2026-04-16 14:35:29','4ac788c6-427b-472a-910f-c134126efde7'),
(8133,8133,1,'What To Expect','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"What To Expect\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"Clear advice, careful planning, and personalised care.\"}',1,'2026-04-16 14:35:29','2026-04-16 14:35:29','9d7ef4c6-39c9-4bf7-99e8-b59eb5505bb2'),
(8134,8134,1,'Aftercare & Support','section-four',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Aftercare & Support\",\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\":\"<p>\\n    <span style=\\\"color:hsl(0,0%,100%);\\\">My care does not end when you leave the clinic. You will leave with personalised aftercare guidance to help your skin recover well and achieve the best possible results. I explain everything before you leave, provide written instructions, and send a copy by email so you can refer back to it whenever needed. Where appropriate, I may recommend specialist skincare to support healing, protect your skin and help maintain your results. If you have any questions or need reassurance, you can always get in touch. Follow-up is built into your treatment journey so you always feel supported, well looked after, and never on your own in your treatment journey.</span>\\n</p>\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":true}',1,'2026-04-16 14:35:29','2026-04-16 14:35:29','95fca9e4-22bc-474c-8d97-b4fef1b719d4'),
(8138,8138,1,'Will treatment stop my lipstick from bleeding?','will-treatment-stop-my-lipstick-from-bleeding',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"In many cases, yes, and it can make a real difference to how you feel day to day. By softening the vertical lines and improving skin quality around the mouth, there are fewer channels for lipstick to settle into, so feathering becomes much less noticeable. The aim is always improvement rather than perfection, but many patients tell me they feel more confident wearing their favourite lip colours again, without needing to worry about them bleeding into the surrounding skin.\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will treatment stop my lipstick from bleeding?\"}',1,'2026-04-16 14:36:50','2026-04-16 14:36:50','b5c76f97-593e-4544-b7eb-7be619de79c7'),
(8139,8139,1,'Can I prevent upper lip lines from getting worse?','can-i-prevent-upper-lip-lines-from-getting-worse',NULL,'{\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Ageing cannot be stopped, but you can slow the progression of upper lip lines. Daily use of a broad-spectrum SPF is essential, even on cloudy Wirral days, as UV exposure is one of the main drivers of these lines. Gentle, consistent skincare that supports hydration and protects the skin barrier can also make a noticeable difference. Where possible, try to minimise repeated pursing of the lips, such as drinking through straws, and if you smoke, stopping can significantly reduce further line development. Maintenance treatments can then help preserve results over time, keeping the area smoother and more refined in a natural way.\",\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I prevent upper lip lines from getting worse?\"}',1,'2026-04-16 14:37:12','2026-04-16 14:37:12','617c81ea-3bde-48cd-b5ec-314a5e70ef64'),
(8151,8151,1,'How long do upper lip line treatments last?','how-long-do-upper-lip-line-treatments-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do upper lip line treatments last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>\\n    Results vary depending on the treatment used and on your individual skin. As a general guide: \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">Dermal fillers</a>: usually last around 8 to 12 months in the perioral area \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">Skin boosters</a> and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>: typically last 6-9 months \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">Anti-wrinkle treatment</a>:  usually lasts around 2 to 3 months in this area, as the lips are very active \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">Bio-stimulators</a> such as JULÄINE™: results develop gradually and can last up to 2 years\\n\\nIn many cases, combining treatments gives the best and longest-lasting results, as different treatments work at different levels of the skin. I will guide you on the most appropriate approach for you, with a focus on subtle, natural-looking improvement over time.\\n</p>\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','f3a00d45-e434-4506-900e-0a91fc6ab44a'),
(8152,8152,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','3d6c919d-167c-4dc5-925c-658d153cb187'),
(8153,8153,1,'Upper Lip Lines','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Upper Lip Lines\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Fine vertical lines above the upper lip are something many patients notice gradually, often when lipstick starts to bleed, makeup begins to sit in the lines, or they become more noticeable in photos. Whether you know them as smokers’ lines, barcode lines or lipstick lines, these perioral wrinkles are a very common concern I see in clinic.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h2>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\"><i>What Are Upper Lip Lines? </i></span>\\n</h2>\\n<p>\\n     \\n</p>\\n<p>\\nUpper lip lines are the fine vertical creases that form on the skin between the upper lip and the nose. You may know them as smokers’ lines, barcode lines or lipstick lines, as they can cause lip products to feather into the surrounding skin. The medical term is perioral lines, meaning lines around the mouth.\\n\\nThe skin above the upper lip is particularly thin and delicate, and more susceptible to sun damage. It has fewer oil glands than much of the face, less underlying fat, and it moves constantly throughout the day as you talk, eat, drink and make expressions.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\nBecause of this, the area can start to show signs of ageing earlier than other areas of the face.\\n\\nOver time, collagen and elastin levels decline, meaning the skin becomes less able to support itself and lines start to form and deepen. Repeated muscle movement, combined with environmental factors such as UV exposure, gradually contributes to the development of these lines.\\n</p>\\n<p>\\n     \\n</p>\\n<p>\\nIn some people, these lines can appear earlier or become more noticeable due to naturally thinner skin and lower levels of structural support in this area. Hormonal changes over time can also influence collagen and elasticity, which may make lines appear more defined.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7113]}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','f797334a-37a9-444a-8629-6ae2b6b0f666'),
(8154,8154,1,'What Causes Upper Lip Lines?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Causes Upper Lip Lines?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Upper lip lines usually develop as a result of natural ageing combined with everyday movement and environmental factors. Smoking is often associated with these lines, but it is only one of several contributing factors. Understanding what is driving your lines helps me choose the safest and most effective treatment approach for you.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The most common causes include: </span></h3><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Natural ageing and collagen loss, which gradually thins the delicate skin around the mouth </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Changes in underlying bone structure over time, reducing support for the upper lip and allowing lines to deepen </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Repeated lip movements, such as talking, drinking through straws, smoking, whistling or pursing the lips </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Cumulative sun exposure, which breaks down collagen and elastin in this thin, exposed area. Living on the Wirral coast can add to this, with reflected UV and drying sea winds </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Genetics, which influence how early lines appear and how they progress </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Dehydration and reduced barrier function, which can make lines appear more noticeable </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">- Smoking, which accelerates collagen breakdown, reduces blood flow to the skin and involves repeated pursing of the lips</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7110],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','b0c2a4e3-1fab-4359-9e77-600f2dedfd66'),
(8155,8155,1,'Types of Upper Lip Lines','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Types of Upper Lip Lines\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"F2E5DE\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Superficial Fine Lines </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nThese are often the earliest signs. Delicate surface lines may only be visible in certain lighting or when you purse your lips. They tend to respond very well to treatments that improve hydration and stimulate collagen, and treating them at this stage often means less intervention is needed, with more subtle, natural-looking results.\\n \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Vertical Barcode Lines </span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   These are the classic vertical lines running from the edge of the lip (the vermillion border) upwards towards the nose. They develop over time due to repeated movement of the orbicularis oris muscle, which is the circular muscle around the mouth responsible for movements like pursing the lips. Although often associated with smoking, they are very common in non-smokers too, particularly in those who frequently purse the lips, such as when using straws or playing wind instruments.\\n</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[7112],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Deep-Set Creases</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\n   As lines become more established, they can deepen and remain visible even when the face is at rest. At this stage, the skin has less structural support, and a more considered, combination approach is often needed to soften the lines while maintaining a natural result.  \\n</p>\\n<p>\\n     \\n</p>\\n<h3>\\n    <span style=\\\"background-color:transparent;color:hsl(203,34%,27%);\\\">Crepey Perioral Skin</span>\\n</h3>\\n<p>\\n     \\n</p>\\n<p>\\nSome patients notice a more general change in the skin rather than distinct lines, with a thin, finely wrinkled or “papery” texture. This usually reflects collagen loss, sun damage and reduced hydration. In these cases, the focus is on gradually improving overall skin quality rather than treating individual lines.\\n</p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[7114]}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','33d578b3-994a-4d63-8c02-eb54f787cc85'),
(8156,8156,1,'Frequently Asked Questions About Upper Lip Lines','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Upper Lip Lines\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about Upper Lip Lines\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','affe3ed0-577d-4cfd-86ec-273b2165419e'),
(8157,8157,1,'Why do I have smokers’ lines if I have never smoked?','why-do-i-have-smokers-lines-if-i-have-never-smoked',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Why do I have smokers’ lines if I have never smoked?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The term “smokers’ lines” can be misleading. These lines develop from repeated lip movement combined with natural ageing, sun exposure and thinning of the delicate skin around the mouth, rather than smoking alone.\\n\\nEveryday actions such as drinking through straws, whistling, playing wind instruments or simply having naturally thinner skin in this area can all contribute. Many of my patients have never smoked and still develop upper lip lines. They are a very common part of the ageing process, and often one of the first areas patients start to notice changes.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','a0692ee7-27e8-4c3d-9a9d-0a7f226e6a6a'),
(8158,8158,1,'How long do upper lip line treatments last?','how-long-do-upper-lip-line-treatments-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"How long do upper lip line treatments last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"<p>\\n    Results vary depending on the treatment used and on your individual skin. As a general guide: \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4702@1:url||https://hermeswp.xyz/rachel/web/treatments/dermal-fillers}\\\">Dermal fillers</a>: usually last around 8 to 12 months in the perioral area \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4502@1:url||https://hermeswp.xyz/rachel/web/treatments/skin-boosters}\\\">Skin boosters</a> and <a href=\\\"{entry:4593@1:url||https://hermeswp.xyz/rachel/web/treatments/polynucleotides}\\\">polynucleotides</a>: typically last 6-9 months \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4026@1:url||https://hermeswp.xyz/rachel/web/treatments/anti-wrinkle-injection}\\\">Anti-wrinkle treatment</a>:  usually lasts around 2 to 3 months in this area, as the lips are very active \\n</p>\\n<p>\\n    • <a href=\\\"{entry:4203@1:url||https://hermeswp.xyz/rachel/web/treatments/julaine-bio-stimulators}\\\">Bio-stimulators</a> such as JULÄINE™: results develop gradually and can last up to 2 years\\n\\nIn many cases, combining treatments gives the best and longest-lasting results, as different treatments work at different levels of the skin. I will guide you on the most appropriate approach for you, with a focus on subtle, natural-looking improvement over time.\\n</p>\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','f048eead-e387-4ca0-afa6-8e1062685125'),
(8159,8159,1,'Will treatment stop my lipstick from bleeding?','will-treatment-stop-my-lipstick-from-bleeding',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will treatment stop my lipstick from bleeding?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"In many cases, yes, and it can make a real difference to how you feel day to day. By softening the vertical lines and improving skin quality around the mouth, there are fewer channels for lipstick to settle into, so feathering becomes much less noticeable. The aim is always improvement rather than perfection, but many patients tell me they feel more confident wearing their favourite lip colours again, without needing to worry about them bleeding into the surrounding skin.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','0e5f98fa-e022-4ba8-bfe7-45705f090cb7'),
(8160,8160,1,'Is treatment for upper lip lines painful?','is-treatment-for-upper-lip-lines-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is treatment for upper lip lines painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"The lip area is sensitive, but most patients find treatment very manageable. I use numbing cream where appropriate, gentle technique and very fine needles to keep you comfortable. You may feel brief pressure or small pinpricks, but discomfort is usually short-lived.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','812ef0b8-c9a3-45a4-8140-3b1d093c97d7'),
(8161,8161,1,'At what age should I start treating lip lines?','at-what-age-should-i-start-treating-lip-lines',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"At what age should I start treating lip lines?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"There is no perfect age. The right time is when the lines begin to bother you. Early, gentle treatment can help prevent fine lines from becoming deeper over time, often with simple skin-quality treatments and good homecare.\\nThat said, it is never too late. Meaningful improvement is possible at any stage with the right, carefully planned approach.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','ccc95b08-2cd3-4458-a4c2-a3e825f63383'),
(8162,8162,1,'Will I still be able to smile and talk normally?','will-i-still-be-able-to-smile-and-talk-normally',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will I still be able to smile and talk normally?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Absolutely. My aim is always to soften lines while preserving natural movement. The area around the mouth needs careful technique and conservative dosing, and I plan treatment very precisely so your speech, smile and everyday function feel normal. Choosing an experienced medical practitioner is especially important for this delicate area.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','ec4d656d-ce4e-4554-a105-4fb22b132dc5'),
(8163,8163,1,'Will treating lip lines make my lips look bigger?','will-treating-lip-lines-make-my-lips-look-bigger',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Will treating lip lines make my lips look bigger?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"No. The aim of treating upper lip lines is to soften the lines, not to enlarge your lips. I use very small, carefully placed treatments to support the skin around the mouth while keeping your lip shape natural. If you ever did want more volume, that would be a separate discussion, but many patients are relieved to find we can improve lip lines without changing the look of their lips.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','39ee16eb-09e8-4292-988b-767eafebbde3'),
(8164,8164,1,'Can I prevent upper lip lines from getting worse?','can-i-prevent-upper-lip-lines-from-getting-worse',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Can I prevent upper lip lines from getting worse?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Ageing cannot be stopped, but you can slow the progression of upper lip lines. Daily use of a broad-spectrum SPF is essential, even on cloudy Wirral days, as UV exposure is one of the main drivers of these lines. Gentle, consistent skincare that supports hydration and protects the skin barrier can also make a noticeable difference. Where possible, try to minimise repeated pursing of the lips, such as drinking through straws, and if you smoke, stopping can significantly reduce further line development. Maintenance treatments can then help preserve results over time, keeping the area smoother and more refined in a natural way.\"}',1,'2026-04-16 14:47:37','2026-04-16 14:47:37','01ba56a0-28ff-4806-a725-41ab8ecf3259'),
(8165,8165,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-16 14:47:40','2026-04-16 14:47:40','e5c0e83a-9e97-4d79-ae5a-9b2a135630f2'),
(8169,8169,1,'Homepage','homepage','__home__',NULL,1,'2026-04-16 14:51:26','2026-04-16 14:51:26','7291d869-bf6a-47d5-ab70-45dfc497ec9b'),
(8170,8170,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Refreshed. Natural.\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Confidence. Restored.\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">My name is Dr Rachel. With over 10 years of clinical experience as a doctor, I strongly believe aesthetic medicine should enhance how you look, never change who you are. The best results are always subtle, balanced and completely natural.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-04-16 14:51:26','2026-04-16 14:51:26','d446b31d-0813-44f0-8e53-1b55551733a0'),
(8171,8171,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-16 14:51:26','2026-04-16 14:51:26','0b2d430b-13d6-4e17-9a24-7abff9a28bb6'),
(8176,8176,1,'Homepage','homepage','__home__',NULL,1,'2026-04-16 14:52:31','2026-04-16 14:52:31','7915c085-9317-4e4f-98be-a79cbd880d0a'),
(8177,8177,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Refreshed. Natural.\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Confidence. Restored.\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"<p><span style=\\\"background-color:transparent;color:#555555;\\\">My name is Dr Rachel. With over 10 years of clinical experience as a doctor, I strongly believe aesthetic medicine should enhance how you look, never change who you are. The best results are always subtle, balanced and completely natural.</span></p><p> </p><p> </p>\",\"e491edbd-c23e-4f68-a29b-405630bd8368\":true,\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[4118],\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\":\"https://www.youtube.com/watch?v=9k7zv2uyaXA\",\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-04-16 14:52:31','2026-04-16 14:52:31','7174b545-cc03-4e7e-aff0-372170be596d'),
(8178,8178,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-16 14:52:31','2026-04-16 14:52:31','1223443d-9a0f-4992-87a9-19a395013938'),
(8179,8179,1,'Learn More','learn-more',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Learn More\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"{entry:912@1:url}\",\"type\":\"entry\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2026-04-16 14:52:31','2026-04-16 14:52:31','704f31c1-0410-436d-934a-6cca89ef5e2c'),
(8183,8183,1,'Homepage','homepage','__home__',NULL,1,'2026-04-16 14:54:00','2026-04-16 14:54:00','a748a266-ae18-4376-aed8-aec160c926b6'),
(8184,8184,1,'What To Expect','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"What To Expect\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"Clear advice, careful planning, and personalised care.\"}',1,'2026-04-16 14:54:00','2026-04-16 14:54:00','f4ff5c88-45ff-4960-bcd2-eaded0e3cd8f'),
(8185,8185,1,'Book Consultation','book-consultation-works',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-16 14:54:00','2026-04-16 14:54:00','57998b19-3d47-4ba0-884f-0cfc713bc12f'),
(8190,8190,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[5070]}',1,'2026-04-16 14:56:08','2026-04-16 14:56:08','f53479c7-2ccc-4ae2-bcb4-acfe12f281f4'),
(8191,8191,1,'Frequently Asked Questions About Rosacea Condition','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions About Rosacea Condition\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Dr Rachel answers your most common questions about rosacea\"}',1,'2026-04-16 14:56:08','2026-04-16 14:56:08','8a67a569-5c83-430f-8340-9912c7b51763'),
(8192,8192,1,'Is rosacea treatment painful?','q-is-the-neck-line-treatment-painful',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Is rosacea treatment painful?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Most treatments are very manageable. You may feel some mild warmth, tingling or slight stinging, particularly with active treatments, but this usually settles quickly. I always work gently and adjust the treatment to suit your skin, especially as rosacea-prone skin can be more sensitive.\"}',1,'2026-04-16 14:56:08','2026-04-16 14:56:08','abefa301-24b7-4fb6-9adb-7bf8cb37b0ae'),
(8193,8193,1,'When will I see results, and how long do they last?','q-when-will-i-see-results-and-how-long-do-they-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"When will I see results, and how long do they last?\",\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\":\"Results develop gradually. Most patients notice their skin becoming calmer, less reactive and more even over a course of treatments.\\n\\nWith the right combination of treatments, skincare and trigger management, results can be long-lasting, but ongoing maintenance is usually needed to keep rosacea under control and prevent flare-ups returning.\"}',1,'2026-04-16 14:56:08','2026-04-16 14:56:08','5878f218-8d9b-49a7-bad7-24eddb8eed80'),
(8195,8195,1,'Crows Feet Treatment before',NULL,NULL,NULL,1,'2026-04-17 11:47:07','2026-04-17 11:47:07','8b045015-007d-4395-aa17-5f3586411021'),
(8196,8196,1,'Crows Feet Treatment after',NULL,NULL,NULL,1,'2026-04-17 11:47:17','2026-04-17 11:47:17','01990cba-d80c-44d1-b9b0-aaf1e52b7092'),
(8197,8197,1,'Crow\'s Feet Treatment','test1',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[8195],\"d5803862-14af-411a-83a8-0734f3d68687\":[8196],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2026-04-17 11:47:28','2026-04-17 11:47:28','9ec223ec-8a3e-421b-8a7b-dd7a9755d2b6'),
(8199,8199,1,'Phformula resurfacing after',NULL,NULL,NULL,1,'2026-04-17 11:53:41','2026-04-17 11:53:41','f360c8f9-c2a5-4c7e-b217-8edf54ead025'),
(8200,8200,1,'Phformula resurfacing before',NULL,NULL,NULL,1,'2026-04-17 11:54:28','2026-04-17 11:54:28','f6424ef8-8547-4c25-b34d-9b693443795d'),
(8201,8201,1,'pHformula resurfacing','micro-needling',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[8200],\"d5803862-14af-411a-83a8-0734f3d68687\":[8199],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2026-04-17 11:54:44','2026-04-17 11:54:44','3e4ab085-9de6-4233-9b2a-8a8ae482b0a0'),
(8203,8203,1,'Polynucleotides before',NULL,NULL,NULL,1,'2026-04-17 12:06:19','2026-04-17 12:06:19','e1f7b528-c1f4-4afe-a907-7b53bbc98d76'),
(8204,8204,1,'Polynucleotides after',NULL,NULL,NULL,1,'2026-04-17 12:06:29','2026-04-17 12:06:29','185eaf2c-df5a-4235-825b-d500eccf8e67'),
(8205,8205,1,'Polynucleotides Treatment','prophilo',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[8203],\"d5803862-14af-411a-83a8-0734f3d68687\":[8204],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2026-04-17 12:06:35','2026-04-17 12:06:35','4ce03467-439f-4ebc-a0e2-3e929b098abd'),
(8211,8211,1,'Contacts','contacts','contacts',NULL,1,'2026-04-17 12:13:21','2026-04-17 12:13:21','98432337-aa78-40fa-91d7-1f9864bdc213'),
(8212,8212,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: 11:00 AM - 5:00 PM</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-17 12:13:21','2026-04-17 12:13:21','d33dd5fd-52cd-4de5-a597-8112cf1e9392'),
(8213,8213,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-17 12:13:21','2026-04-17 12:13:21','42171480-e508-450c-9e59-97530c3118f3'),
(8218,8218,1,'Homepage','homepage','__home__',NULL,1,'2026-04-17 12:19:21','2026-04-17 12:19:21','b7f4c6c6-7e5f-42ed-bb27-a8a31368dfe2'),
(8219,8219,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Me\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find My Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,0%);\\\">Aesthetics by Dr. Rachel, 224 Town Lane, Higher Bebington, CH63 8LG</span></p>\",\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\":\"<p><span style=\\\"color:hsl(0,0%,0%);\\\">Monday - Saturday: 10:00 AM - 8:00 PM </span></p><p><span style=\\\"color:hsl(0,0%,0%);\\\">Sunday: 11:00 AM - 5:00 PM</span></p>\",\"3686df1e-4be2-483f-ab92-1295ff5058c9\":\"07834 258 596\",\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\":\"rachel@drrachelaesthetics.com\",\"729977b5-e42b-44bc-b4c2-3300364e9e1d\":\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2381.284688806504!2d-3.026846322997474!3d53.35605977399634!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b270164ee9b75%3A0xce6d08d7fd3b3fa6!2sAesthetics%20By%20Dr%20Rachel!5e0!3m2!1sen!2sbg!4v1774000893249!5m2!1sen!2sbg\"}',1,'2026-04-17 12:19:21','2026-04-17 12:19:21','ae7d1856-d8d6-4beb-8e96-c5a3ae0f38f2'),
(8220,8220,1,'Book Consultation','book-consultation',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"type\":\"url\",\"target\":\"_blank\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2026-04-17 12:19:22','2026-04-17 12:19:22','e3be9aca-b016-4ec9-87ee-a5880415ff23'),
(8223,8223,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-17 12:23:55','2026-04-17 12:23:55','a7481e66-0c59-49d3-984e-e451edf4a31a'),
(8224,8224,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Natural-looking anti-wrinkle injections by a medical expert | GMC-Registered Doctor | Smooth forehead lines, frown lines &amp; crow\'s feet | UK-licensed products only</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:23:55','2026-04-17 12:23:55','2c5b64d7-1003-4760-9df3-3ac236a165fb'),
(8227,8227,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-17 12:24:07','2026-04-17 12:24:07','7f997c7c-e1d5-49d6-a6a3-bb70a83ee8a2'),
(8228,8228,1,'JULÄINE™ Bio-Stimulator','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Next-generation PLLA collagen stimulator | Natural facial rejuvenation lasting 24 months | LASYNPRO™ technology </span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:24:07','2026-04-17 12:24:07','ffb49907-cbf2-447d-a1ba-6b10f7f4c599'),
(8231,8231,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-17 12:24:16','2026-04-17 12:24:16','89045648-9e31-4edf-a8d4-549d7c2702f4'),
(8232,8232,1,'Chemical Peels Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"> Doctor-led skin rejuvenation | Superficial to deep peels | Treat acne, scarring, pigmentation &amp; ageing</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:24:16','2026-04-17 12:24:16','c90a572c-e955-43b9-b473-16fafd03bc5b'),
(8235,8235,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-17 12:24:25','2026-04-17 12:24:25','77134240-4e5b-463b-9e3b-c054e7f4ae64'),
(8236,8236,1,'Expert Cryotherapy Treatment by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment by Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin lesion removal | Advanced CryoIQ Cryotherapy technology | Skin tags, warts, moles &amp; more | Serving Wirral, Bebington, Eastham &amp; Moreton</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:24:25','2026-04-17 12:24:25','9768c21d-8ca6-49f9-b057-37dcc267cf3b'),
(8239,8239,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-17 12:24:36','2026-04-17 12:24:36','a691f668-ff62-4299-993d-fb05a16c89d4'),
(8240,8240,1,'Dermal Fillers - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led aesthetic clinic | Natural-looking lip, cheek &amp; jawline fillers | Hyaluronic acid volume restoration on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:24:36','2026-04-17 12:24:36','3fb4ded9-bc63-4d8f-9842-30ca7c0763d0'),
(8243,8243,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-17 12:24:44','2026-04-17 12:24:44','7e16b61a-b3f4-49ef-bffb-aeccae93eaa5'),
(8244,8244,1,'Medical Microneedling Wirral Advanced Skin Regeneration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Medical Microneedling Wirral Advanced Skin Regeneration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led collagen induction therapy | Premium serums: NCTF, Polynucleotides &amp; Exosomes | Treat acne scars, wrinkles &amp; pigmentation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:24:44','2026-04-17 12:24:44','2704b7cd-01bb-48ef-aabf-298c2273dc91'),
(8247,8247,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-17 12:24:54','2026-04-17 12:24:54','d9e1bd87-cd49-413f-a317-c1fe414f016d'),
(8248,8248,1,'Polynucleotides Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning cellular repair therapy | Treat dark circles, fine lines &amp; crepey skin | Salmon DNA bio-stimulator | Polynucletoides on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:24:54','2026-04-17 12:24:54','22945919-0b51-4452-a0fe-26f20c17fe1a'),
(8251,8251,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-17 12:25:05','2026-04-17 12:25:05','eb2e5015-9e48-4cb6-a681-06f952c2ff9e'),
(8252,8252,1,'Skin Boosters Wirral Doctor-Led Injectable Hydration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Boosters Injectable Hydration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin booster treatment | Hyaluronic acid injectable moisturiser | Transform dull, dehydrated skin</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:25:05','2026-04-17 12:25:05','fb9304cc-dce0-4dde-9dbc-685581ffb979'),
(8255,8255,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-17 12:25:15','2026-04-17 12:25:15','dd46abeb-f76d-4e2a-a31b-fddbdbe9d04a'),
(8256,8256,1,'Skin Consultation By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation By Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Understand what is bothering your skin | In-depth skin analysis &amp; sensitivity testing | Personalised Skincare &amp; Clinic Plans | Bebington, Heswall, West Kirby, Caldy</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:25:15','2026-04-17 12:25:15','947be194-b298-4821-9988-9f9fa4aaba81'),
(8259,8259,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-17 12:25:24','2026-04-17 12:25:24','7eca6b0b-53c5-4142-a403-49fa887fd222'),
(8260,8260,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-04-17 12:25:24','2026-04-17 12:25:24','19cca340-d2ec-4e71-ba13-b6af54494716'),
(8263,8263,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-17 16:14:57','2026-04-17 16:14:57','97ae1208-2ba4-43e4-b5cf-5e5a08a8b81d'),
(8264,8264,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Natural-looking anti-wrinkle injections by a medical expert | GMC-Registered Doctor | Smooth forehead lines, frown lines &amp; crow\'s feet | UK-licensed products only</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:14:57','2026-04-17 16:14:57','1fd2da95-11da-4e9c-bf8a-70bae8f22e87'),
(8267,8267,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-17 16:19:31','2026-04-17 16:19:31','f39bb3c6-2533-47e4-9a48-e2946f231cd5'),
(8268,8268,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Natural-looking anti-wrinkle injections by a medical expert | GMC-Registered Doctor | Smooth forehead lines, frown lines &amp; crow\'s feet | UK-licensed products only</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":false}',1,'2026-04-17 16:19:31','2026-04-17 16:19:31','b546ba67-2a23-4f31-b440-58d97bc7eeaf'),
(8271,8271,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-17 16:23:19','2026-04-17 16:23:19','2a8378e4-500e-463e-a300-433f0865d463'),
(8272,8272,1,'Expert Cryotherapy Treatment by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment by Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin lesion removal | Advanced CryoIQ Cryotherapy technology | Skin tags, warts, moles &amp; more | Serving Wirral, Bebington, Eastham &amp; Moreton</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:23:19','2026-04-17 16:23:19','afe69c81-98a3-49ed-9357-fdc04a013f77'),
(8275,8275,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-17 16:27:55','2026-04-17 16:27:55','af7113bc-dc45-4cc8-b589-6f9d2e4ae9d2'),
(8276,8276,1,'Expert Cryotherapy Treatment by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment by Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin lesion removal | Advanced CryoIQ Cryotherapy technology | Skin tags, warts, moles &amp; more | Serving Wirral, Bebington, Eastham &amp; Moreton</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":false}',1,'2026-04-17 16:27:55','2026-04-17 16:27:55','792772d7-457a-4eef-a563-7f810b119fa9'),
(8279,8279,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-17 16:28:25','2026-04-17 16:28:25','b4a3b676-a2a5-4640-bf0a-2f99c2566592'),
(8280,8280,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Natural-looking anti-wrinkle injections by a medical expert | GMC-Registered Doctor | Smooth forehead lines, frown lines &amp; crow\'s feet | UK-licensed products only</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:28:25','2026-04-17 16:28:25','f430e7b1-82b4-46c5-93a2-f47bbdbf22c2'),
(8283,8283,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-17 16:28:38','2026-04-17 16:28:38','3e72fe45-c975-413d-9ee5-7f2fd51e504b'),
(8284,8284,1,'JULÄINE™ Bio-Stimulator','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Next-generation PLLA collagen stimulator | Natural facial rejuvenation lasting 24 months | LASYNPRO™ technology </span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:28:38','2026-04-17 16:28:38','b8ccb8a2-f8bc-4358-b88b-2b458f2ba67b'),
(8287,8287,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-17 16:28:49','2026-04-17 16:28:49','f14ef9f2-3a1e-4209-98c7-7e01acf42842'),
(8288,8288,1,'Chemical Peels Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"> Doctor-led skin rejuvenation | Superficial to deep peels | Treat acne, scarring, pigmentation &amp; ageing</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:28:49','2026-04-17 16:28:49','4fcc0c2a-40f3-4231-8192-af462e9bb320'),
(8291,8291,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-17 16:28:58','2026-04-17 16:28:58','b6fdf4cf-7905-4cf0-964b-c3f7ee0f95cc'),
(8292,8292,1,'Expert Cryotherapy Treatment by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment by Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin lesion removal | Advanced CryoIQ Cryotherapy technology | Skin tags, warts, moles &amp; more | Serving Wirral, Bebington, Eastham &amp; Moreton</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:28:58','2026-04-17 16:28:58','9c6bfd5a-0671-498f-9a47-6553f3bdbbff'),
(8295,8295,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-17 16:29:09','2026-04-17 16:29:09','936af780-514c-42e3-9947-20d8cdc72e37'),
(8296,8296,1,'Dermal Fillers - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led aesthetic clinic | Natural-looking lip, cheek &amp; jawline fillers | Hyaluronic acid volume restoration on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:29:09','2026-04-17 16:29:09','3ee06e0c-c5a4-4529-87a8-77cb304b7f97'),
(8299,8299,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-17 16:29:19','2026-04-17 16:29:19','6354ed46-3f75-4f10-94de-02f6750d1676'),
(8300,8300,1,'Medical Microneedling Wirral Advanced Skin Regeneration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Medical Microneedling Wirral Advanced Skin Regeneration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led collagen induction therapy | Premium serums: NCTF, Polynucleotides &amp; Exosomes | Treat acne scars, wrinkles &amp; pigmentation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:29:19','2026-04-17 16:29:19','38c255ee-5d4e-4112-bd28-d63cace59d56'),
(8303,8303,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-17 16:29:29','2026-04-17 16:29:29','1031281a-de9a-4500-af2f-c59e1f3d5eaa'),
(8304,8304,1,'Polynucleotides Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning cellular repair therapy | Treat dark circles, fine lines &amp; crepey skin | Salmon DNA bio-stimulator | Polynucletoides on the Wirral</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:29:29','2026-04-17 16:29:29','dfb4e970-d075-459a-8f78-7cd61b16b06f'),
(8307,8307,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-17 16:29:38','2026-04-17 16:29:38','95f87edc-a335-4539-b583-810251ebd2c4'),
(8308,8308,1,'Skin Boosters Wirral Doctor-Led Injectable Hydration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Boosters Injectable Hydration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Doctor-led skin booster treatment | Hyaluronic acid injectable moisturiser | Transform dull, dehydrated skin</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:29:38','2026-04-17 16:29:38','d32b1260-e013-4b75-9acd-7ca60d4fe75b'),
(8311,8311,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-17 16:29:46','2026-04-17 16:29:46','3ff79623-996b-4aca-b118-95af9c2c33c1'),
(8312,8312,1,'Skin Consultation By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation By Dr Rachel\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Understand what is bothering your skin | In-depth skin analysis &amp; sensitivity testing | Personalised Skincare &amp; Clinic Plans | Bebington, Heswall, West Kirby, Caldy</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:29:46','2026-04-17 16:29:46','ea8303ec-320d-4f2d-a019-0666f16bb78e'),
(8315,8315,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-17 16:29:55','2026-04-17 16:29:55','df58312c-dc10-4372-b5ac-48c89ff0c288'),
(8316,8316,1,'Sunekos Eye Treatment Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Sunekos Eye Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"On the Wirral\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"<p><span style=\\\"color:#333333;\\\">Doctor-led periocular skin booster | Patented amino acid formula | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising rejuvenation</span></p><p> </p><p> </p>\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book a Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"07834 258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\":true}',1,'2026-04-17 16:29:55','2026-04-17 16:29:55','1514693b-810d-4e5a-af74-9036fc72c230'),
(8319,8319,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-17 16:33:14','2026-04-17 16:33:14','455d9140-1de2-460f-bf45-2fea36d41476'),
(8320,8320,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-17 16:33:14','2026-04-17 16:33:14','11f6f89d-d858-40dd-9f74-0f4978e3c866'),
(8323,8323,1,'Acne Scarring','acne-scarring','conditions/acne-scarring','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6963]}',1,'2026-04-20 19:03:57','2026-04-20 19:03:57','f2f9acd5-63bf-43ca-8a6e-cefd5fa7e64b'),
(8324,8324,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:03:57','2026-04-20 19:03:57','4586d67f-d701-4553-a86a-569c91842f05'),
(8327,8327,1,'Acne','acne','conditions/acne','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7016]}',1,'2026-04-20 19:04:59','2026-04-20 19:04:59','1050d1a1-977a-4cfa-978f-4e8ac26f2a0b'),
(8328,8328,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:04:59','2026-04-20 19:04:59','e6abd25e-f4e4-4c43-a2cd-fda1d899c5b3'),
(8331,8331,1,'Upper Lip Lines','upper-lip-lines','conditions/upper-lip-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[7113]}',1,'2026-04-20 19:05:12','2026-04-20 19:05:12','7af45826-d5f2-41a4-83bb-0924a7a8549c'),
(8332,8332,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:05:12','2026-04-20 19:05:12','189e29ee-ed7e-47dc-aece-d6682a099dce'),
(8335,8335,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[5070]}',1,'2026-04-20 19:05:23','2026-04-20 19:05:23','f3256d15-0a8f-4427-80ce-6127aa36f8cd'),
(8336,8336,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:05:23','2026-04-20 19:05:23','aab46339-4180-451e-a562-a1300810e93c'),
(8339,8339,1,'Lines and Wrinkles','lines-and-wrinkles','conditions/lines-and-wrinkles','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6685]}',1,'2026-04-20 19:05:34','2026-04-20 19:05:34','26f64ce4-8538-4ea5-bf6d-947287ebb231'),
(8340,8340,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:05:34','2026-04-20 19:05:34','2dc6d875-b8c5-40ec-97c5-a66629012fe1'),
(8343,8343,1,'Dark Circles Under the Eyes','dark-circles-under-the-eyes','conditions/dark-circles-under-the-eyes','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6727]}',1,'2026-04-20 19:05:48','2026-04-20 19:05:48','c325aad4-16f3-4088-b3e6-32dbf85610cb'),
(8344,8344,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:05:48','2026-04-20 19:05:48','813dc911-c72d-484d-979f-fe29da64302a'),
(8347,8347,1,'Crepey Skin','crepey-skin','conditions/crepey-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6787]}',1,'2026-04-20 19:08:02','2026-04-20 19:08:02','602a9297-6284-4860-8edf-b34c1293983f'),
(8348,8348,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:08:02','2026-04-20 19:08:02','f4c861ad-18d3-470b-8d32-78bfea5e458a'),
(8351,8351,1,'Ageing Skin','ageing-skin','conditions/ageing-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-20 19:08:22','2026-04-20 19:08:22','7af25193-b7d2-4d95-8308-ea7a0184239a'),
(8352,8352,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"/contacts\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:08:22','2026-04-20 19:08:22','c366e183-c81b-4396-a84c-07bd3a09c39b'),
(8355,8355,1,'Neck Lines','neck-lines','conditions/neck-lines','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6533]}',1,'2026-04-20 19:09:20','2026-04-20 19:09:20','2ed08560-bdda-400d-a6ad-82ce72ff5989'),
(8356,8356,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:09:20','2026-04-20 19:09:20','a81295ae-5e45-488c-b27a-ac7f55f3ede0'),
(8359,8359,1,'Hyperpigmentation','hyperpigmentation','conditions/hyperpigmentation','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6849]}',1,'2026-04-20 19:13:53','2026-04-20 19:13:53','dcc4f67b-5120-46f3-9d1f-1df8681df3b3'),
(8360,8360,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:13:53','2026-04-20 19:13:53','f823955c-e370-4bb2-9363-dc3ee8dd22cb'),
(8363,8363,1,'Ageing Skin','ageing-skin','conditions/ageing-skin','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[6567]}',1,'2026-04-20 19:14:16','2026-04-20 19:14:16','4a4a1521-3516-4b00-ad59-0bb8a67a082e'),
(8364,8364,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:14:16','2026-04-20 19:14:16','423b2048-99da-4332-af96-196b3739cd12'),
(8368,8368,1,'Anti Wrinkle Injections','anti-wrinkle-injection','treatments/anti-wrinkle-injection','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to refresh\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-20 19:15:07','2026-04-20 19:15:07','8a562cca-24b9-452b-8af2-38de8b96fba8'),
(8369,8369,1,'What Are Anti-Wrinkle Injections?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Anti-Wrinkle Injections?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections are a popular, non-surgical treatment used to soften fine lines and wrinkles caused by facial movement. They work by gently relaxing the muscles underneath the skin, reducing repeated movement so lines appear smoother. Treatment is quick, minimally invasive, and does not require surgery or downtime. Most patients return to normal activities immediately after treatment.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time you frown, squint, or raise your eyebrows, specific facial muscles contract and crease the skin above them. Over time, those repeated movements cause lines to linger - even when your face is at rest. This can leave you looking more tired, tense, or cross than you actually feel.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Anti-wrinkle injections work by gently relaxing the muscles that are responsible for these expression lines. When those muscles are less active, the skin above them has a chance to smooth and recover, leaving you looking fresher, more relaxed, and more like yourself again.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is not about freezing your face. It is about balance and precision - softening overactive muscles while keeping natural movement and expression. You will still look like you, just brighter and more refreshed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Before treatment, I take time to carefully assess how your face moves, where lines form, and how strong your different muscles are. This allows me to tailor treatment specifically to you, rather than taking a one-size-fits-all approach.</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"I have been performing anti-wrinkle treatments for many years, and what I love most is seeing the confidence grow in my patients. It is never just about the wrinkles - it is about helping you feel like yourself again.”</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What sets my clinic apart is my medical-first approach.</strong> I am a GMC-registered doctor and a practising GP based here on the Wirral. I hold a BSc (Hons) in Genetics and completed my medical degree through Graduate Entry Medicine, giving me a strong scientific foundation and a deep understanding of how these treatments work.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before every treatment, I carry out a thorough medical and facial assessment to understand how your face moves and where treatment will be most effective. This allows me to create a personalised plan tailored to you - because anti-wrinkle treatment should never be one-size-fits-all.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Here is something most clinics do not do:</strong> I change the needle between treatment areas to reduce tissue trauma, minimise bruising, and ensure the sharpest, most precise delivery each time. A complimentary 2-week follow-up assessment is included in your treatment. This is where good results become exceptional results.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:15:07','2026-04-20 19:15:07','a4d9c5ad-e5e1-4363-a923-8e85f42d0ef4'),
(8370,8370,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"If you are unsure about anything or would like honest advice, I am always happy to help. You are very welcome to get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:15:07','2026-04-20 19:15:07','48d937ad-f235-4d64-b9d0-c2621c31d7e8'),
(8374,8374,1,'Bio-Stimulators','julaine-bio-stimulators','treatments/julaine-bio-stimulators','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to regenerate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4084]}',1,'2026-04-20 19:15:28','2026-04-20 19:15:28','b24501f5-a03b-4ea5-b0a1-84c4f4275cc1'),
(8375,8375,1,'WHAT IS JULÄINE™?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JULÄINE™?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">JULÄINE™ is a next-generation poly-L-lactic (PLLA) collagen-stimulating treatment developed in Sweden. It works by encouraging your skin to produce more of its own natural collagen over time, supporting genuine tissue renewal from within, and significantly improving skin quality with a gradual skin-tightening effect.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of bio-stimulation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">“JULÄINE™ represents a fundamental shift in how we approach facial rejuvenation. Rather than focusing on immediate change, it works by stimulating your skin’s own collagen-producing cells (fibroblasts), helping the skin rebuild and strengthen itself from within. Because this relies on natural biological processes, results develop gradually rather than overnight. Let me explain the biological processes that are occurring after treatment with JULÄINE™:</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 1:</strong> Immediately After Treatment (Days 1-3): The PLLA particles are injected into the deep dermis of your skin, where they get to work. In the first few days, your skin starts its natural repair process. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 2: </strong>Collagen Cells Are Activated (Weeks 1-3): Over the following weeks, JULÄINE™ begins activating fibroblasts — the cells responsible for producing collagen and elastin.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Phase 3: </strong>Progressive Collagen Formation (Weeks 4-12): As new collagen and elastin begin to form, visible improvements become more noticeable. Skin starts to look firmer, smoother, and more even in tone.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> <strong>Phase 4: </strong>Lasting Skin Improvement (Months 6-24) As your skin continues to build new collagen, the PLLA treatment material itself is gradually and safely broken down by your body. </span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4105],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led bio-stimulation matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">\\\"Bio-stimulators like JULÄINE™ require a detailed understanding of facial anatomy, tissue biology, and cellular signalling pathways. This is a regenerative treatment, and success depends on careful assessment, precision, and sound clinical judgement rather than a one-size-fits-all approach. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP with over a decade of clinical experience, I bring a medical understanding of skin structure, collagen behaviour, and tissue response that guides how and when treatments should be used. Just as importantly, I understand when a bio-stimulator is appropriate - and when it is not. </span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Not every concern is best treated with JULÄINE™ alone. Some patients may benefit more from dermal filler for targeted volume, polynucleotides for cellular repair, or a carefully planned combination approach. My role is to assess what your skin truly needs and guide you honestly, using my clinical judgement and extensive medical training.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\"> Technique is also critical with collagen-stimulating treatments. Placement depth, product distribution, and pacing all influence comfort, safety, and results. I manage the entire regenerative journey with precision, from treatment planning through to aftercare and follow-up.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4090],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:15:28','2026-04-20 19:15:28','4e8a9d39-ea09-4515-9e85-8477207dda8e'),
(8376,8376,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:15:28','2026-04-20 19:15:28','e19db390-3009-4a53-a631-82d210a71250'),
(8380,8380,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to resurface\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6344]}',1,'2026-04-20 19:16:22','2026-04-20 19:16:22','9b8d9b5b-69b7-4e5f-85ff-5a1a45d29ff2'),
(8381,8381,1,'What Is Chemical Resurfacing?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Chemical Resurfacing?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Often referred to as advanced chemical peels, chemical resurfacing treatments go beyond traditional exfoliation to deliver deeper, regenerative skin correction. Chemical resurfacing is a medically controlled skin regeneration treatment that uses carefully formulated acids and active ingredients to stimulate renewal within your skin. Rather than simply exfoliating the surface, resurfacing treatments work by activating cellular turnover, improving skin function and encouraging collagen production in a measured, targeted way. </span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When most people think of chemical peels, they often picture visible peeling and surface exfoliation. In reality, the most advanced treatments I offer go far beyond traditional peels. I work with pHformula to provide advanced chemical resurfacing - a controlled, regenerative approach that stimulates cellular renewal without the need for aggressive surface damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skin naturally renews itself over approximately 28–40 days, a process that slows with age, inflammation and environmental stress. Rather than simply removing the outer layer, pHformula resurfacing treatments activate specific renewal pathways within the skin while preserving barrier integrity. This is what makes pHformula fundamentally different.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These treatments combine carefully calibrated acids with regenerative active ingredients in balanced formulations. Instead of relying purely on strength, they use controlled delivery systems and synergistic actives to initiate correction at a cellular level.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4375],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led chemical peel matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Chemical peels may appear straightforward, but the difference between excellent results and complications lies in clinical judgement. As a GMC-registered GP, I approach your skin with medical insight as well as aesthetic expertise. I assess your Fitzpatrick skin type accurately, identify contraindications such as active infection or recent isotretinoin use, and evaluate your skin’s healing capacity before recommending treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is particularly important for patients with darker skin tones, where the risk of post-inflammatory hyperpigmentation must be carefully managed. Appropriate preparation, correct product selection and conservative, intelligent treatment planning are essential to achieving improvement without triggering unwanted pigmentation.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Precision during treatment is essential. Acid selection, application technique, exposure time and skin response are all carefully monitored throughout your treatment. Rather than chasing visible peeling, I assess your skin in real time, adjusting the treatment to optimise regeneration while protecting and strengthening your skin barrier.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4372],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I recently had an aesthetic treatment and could not be more thrilled with the results. I appreciated the honesty, attention to detail, and genuine care for achieving natural-looking results. I highly recommend Dr Rachel to anyone considering aesthetic treatments.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lindsay Doolan\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.D.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:16:22','2026-04-20 19:16:22','2eff08ea-497b-4d8e-b172-e487503f1984'),
(8382,8382,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:16:22','2026-04-20 19:16:22','c5a58f27-be05-4120-98de-79c93c6a4cda'),
(8386,8386,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4886]}',1,'2026-04-20 19:16:43','2026-04-20 19:16:43','a82f40f1-9056-4595-9651-7dac362d6e06'),
(8387,8387,1,'What Is Cryotherapy Treatment?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Cryotherapy Treatment?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy is a medical procedure that uses controlled freezing with nitrous oxide to safely destroy unwanted skin lesions, while preserving the surrounding healthy skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the freeze\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Cryotherapy works by freezing fluid within targeted skin lesions, causing the unwanted cells to rupture and die. The beauty of this treatment lies in its precision, where I target only the problem tissue while leaving everything around it completely unharmed.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">At my clinic, I use the CryoIQ pen, which delivers nitrous oxide at precisely -89°C. This is very different from the liquid nitrogen spray devices commonly used in many GP surgeries and high-street clinics. The CryoIQ allows far greater control over the depth and spread of the freeze, with millimetre-level precision. This level of accuracy matters because it allows me to treat the lesion effectively while minimising trauma to the surrounding healthy skin, reducing the risk of hypopigmentation, supporting faster healing, and ultimately achieving better cosmetic outcomes.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">During the 5–10 second treatment you will usually feel a brief sharp sting, often described as similar to an elastic band snapping against the skin. The area will turn white (known as <i>frosting</i>) as the cells freeze, before gradually returning to its normal colour. Within 24–48 hours a small protective blister may form, which is a normal and expected part of the healing process. Over the following 7–14 days this will dry into a scab and naturally fall away, revealing fresh pink skin underneath. The most important thing you can do to minimise the risk of scarring is to allow this to heal naturally and avoid picking the area.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4888],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Why doctor-led cryotherapy matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Here is something many people do not realise: cryotherapy is a medical procedure, not a beauty treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skill is not simply in applying cold to the skin, but in understanding <i>what</i> is being treated and <i>whether</i> cryotherapy is the right option. This includes recognising when a lesion appears suitable for treatment, when an alternative approach may be safer, and when referral for further assessment is the most appropriate next step.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Clinical judgement matters. Freeze time, lesion depth, skin type, and the risk of pigmentation change all influence how cryotherapy should be performed. These are decisions that rely on medical training and experience, not just equipment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a practising GP here on the Wirral, I bring over 10 years of clinical experience to every consultation. I take the time to examine your lesion carefully, review your medical history, and explain clearly what cryotherapy can and cannot achieve for your individual concern.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Just as importantly, I know when <i>not</i> to treat — when a lesion needs dermatology referral, when a biopsy may be more appropriate, or when cryotherapy is not the safest option. This clinical judgement is just as important as the treatment itself.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4887],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:16:43','2026-04-20 19:16:43','26ae4dbe-5df1-4492-8b31-439d0192f68e'),
(8388,8388,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:16:43','2026-04-20 19:16:43','565bd24c-cd64-4599-ba20-c1bdbc4640bf'),
(8392,8392,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to restore\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4754]}',1,'2026-04-20 19:17:00','2026-04-20 19:17:00','3107f352-b504-405d-ab37-3ad0d907d2a3'),
(8393,8393,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are gel-like substances, most commonly made from hyaluronic acid, that are carefully injected into the skin to replace lost volume, soften lines and wrinkles, and restore natural facial contours. Hyaluronic acid is a substance your body already produces and plays a key role in skin hydration and structural support. The injection of dermal fillers is a minimally invasive procedure that delivers instant results with minimal downtime.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of volume restoration\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Let me explain what is really happening as your face ages, because this is key to understanding why dermal fillers can work so effectively. As we move through our 30s, 40s and beyond, several structural changes happen at the same time. We gradually lose facial volume as the fat that once supported youthful contours reduces and shifts downwards.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Collagen production also slows, meaning the skin becomes less firm and elastic. The underlying bone structure changes too, particularly through the cheeks and jawline, subtly altering the framework that supports the face. At the same time, levels of hyaluronic acid decline, meaning the skin holds less moisture and can start to look less plump and radiant.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">In youth, the face is often shaped like an inverted triangle, with fullness through the cheeks and gentle tapering towards the chin. This is sometimes called the <i>triangle of youth</i>. As these changes occur, that triangle gradually reverses. Volume is lost from the mid-face, the lower face can appear heavier, and shadows begin to form where light once reflected smoothly. This is often when people notice they look more tired, even when they feel well.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4753],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led dermal fillers matter\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">There is something many people are not aware of in the aesthetics industry: dermal fillers are medical devices, yet they are sometimes administered in settings without medical oversight. Dermal filler treatments may look simple, but they involve complex anatomy and carry medical risks that require appropriate training to manage safely.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Your face is complex and highly vascular, and treatments should always be approached with a thorough understanding of facial anatomy and safety. Potential risks can include blocked blood vessels, skin injury, filler migration or unsatisfactory aesthetic outcomes. While some issues are minor, others require urgent medical assessment and treatment. <strong>It is not the syringe that keeps you safe, but the training, anatomy knowledge and clinical judgement of the person holding it.</strong></span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a </span><a href=\\\"https://www.gmc-uk.org/registrants/7488274\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\"><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>GMC-registered doctor</strong></span></a><span style=\\\"color:hsl(0,0%,100%);\\\"> and practising GP, I bring over 10 years of clinical, diagnostic and emergency care experience to every appointment. I have detailed knowledge of facial anatomy and vascular structures, can recognise early signs of complications, and am trained to act quickly using established medical protocols. I also carry appropriate emergency medications, including hyaluronidase, at every treatment.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">For me, dermal fillers are not simply cosmetic procedures. They are medical treatments that should be performed with the same level of care, planning and safety you would expect in any clinical setting. <strong>Your face is not somewhere to take risks, and choosing the right practitioner is one of the most important decisions you can make.</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4752],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"My consultation with Rachel was absolutely fantastic. She made me feel at ease straight away and listened carefully to my concerns. Her considered approach made me confident that I had found the perfect practitioner for my treatment. I am absolutely delighted with my (very natural looking) results. Will definitely be returning for my future treatments. Thank you!\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Laura H.\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:17:00','2026-04-20 19:17:00','7a509067-541f-4c54-b1b2-a271c29afec6'),
(8394,8394,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:17:00','2026-04-20 19:17:00','a7cc5265-6d15-4600-8ff5-46b03a6ff9c4'),
(8398,8398,1,'Microneedling','microneedling','treatments/microneedling','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to rejuvenate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4446]}',1,'2026-04-20 19:17:18','2026-04-20 19:17:18','9ecbaa97-1211-4eff-8d26-440dcb630ec7'),
(8399,8399,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Medical Microneedling?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical microneedling is collagen induction therapy designed to stimulate the skin’s natural wound-healing processes, supporting collagen production and tissue regeneration at a deeper level.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science of collagen induction\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">\\\"Microneedling works by harnessing the body’s natural and highly effective wound-healing biology. When performed in a controlled, medical setting, it encourages the skin to repair, strengthen, and regenerate itself from within. When tiny needles create precise micro-injuries within the dermis, the skin recognises this as a signal to begin repair. This process unfolds in three carefully coordinated phases.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 1: Early Healing Response (first few hours)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The skin releases growth factors and signalling molecules that initiate repair. Blood platelets are drawn to the treated areas, helping to start the regeneration process. This response is controlled and purposeful, supporting healing rather than causing damage.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 2: Repair and Renewal (days to weeks)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblast cells migrate to the treated areas and begin producing new collagen and elastin. New micro-circulation develops, improving oxygen and nutrient delivery to the skin. During this phase, skin strength, texture, and quality begin to improve.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Phase 3: Remodelling and Maturation (weeks 4–12)</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Newly formed collagen continues to mature and organise into a stronger, more functional dermal structure. Over time, the skin becomes firmer, smoother, and more resilient, with results continuing to develop for up to twelve weeks.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4448],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led microneedling matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Microneedling may appear straightforward, but achieving safe, consistent, and meaningful results relies on medical expertise and clinical judgement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I bring a detailed understanding of skin anatomy, facial structure, and individual variation. I understand how dermal depth differs across facial zones, where important vascular structures lie beneath the skin, and how to calibrate needle depth precisely to stimulate collagen while protecting tissue integrity.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Equally important is accurate assessment. Not every skin concern is best treated with microneedling alone. Some types of scarring respond better to alternative resurfacing approaches, some concerns benefit from injectable regenerative treatments, and others require targeted chemical resurfacing for pigmentation. Knowing which approach is most appropriate comes from clinical training, experience, and taking a whole-skin view rather than relying on a single treatment.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Serum selection also plays a critical role. Different formulations support different biological processes: some enhance hydration and radiance, others support tissue repair and recovery, while more advanced regenerative options help encourage collagen renewal in more challenging cases. Matching the right serum to your skin biology is key to achieving optimal outcomes.</span></p><p> </p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4531],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:17:18','2026-04-20 19:17:18','ddb638fe-98eb-4c0e-b26d-536b003cdf94'),
(8400,8400,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:17:18','2026-04-20 19:17:18','f281f5ba-714a-421d-a457-fde7bc1c678e'),
(8404,8404,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to repair\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6337]}',1,'2026-04-20 19:17:35','2026-04-20 19:17:35','fa3af1d7-8bcc-440b-b91f-267eb2927c1c'),
(8405,8405,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Polynucleotides?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon, selected for their close biological compatibility with human skin. They work at a cellular level to support the skin’s natural repair processes, strengthening tissue and improving skin quality from within. This is a regenerative treatment that focuses on restoring skin health, rather than simply treating the surface.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science Behind Cellular Repair\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Every time I explain polynucleotides to patients, I often see a lightbulb moment. For many people, this treatment offers something that other aesthetic approaches cannot. While many traditional treatments focus on improving visible symptoms, polynucleotides work at a deeper level, supporting one of the key biological drivers of skin ageing: declining cellular function.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As we age, fibroblasts - the cells responsible for producing collagen, elastin and hyaluronic acid - become less active. This contributes to thinning skin, reduced elasticity, dehydration and the tired, crepey appearance that is often most noticeable around delicate areas such as the under-eyes, where treatment options can be limited.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Polynucleotides are highly purified DNA fragments derived from salmon. When carefully injected into human tissue, they encourage fibroblasts to become more active, supporting collagen production, improving microcirculation and helping repair cellular DNA damage caused by UV exposure and oxidative stress. By strengthening the skin from within, they also create a healthier foundation, making them an ideal primer before other collagen-stimulating treatments.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4630],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why doctor-led matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The under-eye area, where many patients choose polynucleotides, is one of the most delicate and technically demanding areas of the face. The skin is extremely thin, the vascular anatomy is complex, and careful assessment and precise technique are essential to minimise risk and achieve the best outcome.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry emergency equipment and hold full professional indemnity insurance for advanced injectable procedures. However, safety is not only about responding to problems; it is about preventing them. That starts with a thorough assessment, correct product choice and precise technique.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess your skin quality, examine the anatomy around the under-eye area and discuss suitability in detail. In some cases, I may recommend alternative or complementary treatments, such as combining polynucleotides with <strong>clinically formulated pHformula skincare</strong> or <strong>microneedling</strong>, to support skin health more holistically.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4628],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr. Rachel made me feel very comfortable and reassured me every step of the way as I was quite anxious. I had no idea what treatments would work for me, but she was very patient and listened to my concerns. She formulated a plan - I\'ve had 3 treatments so far and can really see a difference. She is truly lovely and caring, and her knowledge and bedside manner are second to none. I cannot praise her enough and would definitely recommend her.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Jill\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"J.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:17:35','2026-04-20 19:17:35','654ca58b-79bc-4833-a45d-6a393b0f5119'),
(8406,8406,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:17:35','2026-04-20 19:17:35','b6c5c252-244f-447b-8915-293f37e9bf5e'),
(8410,8410,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-20 19:17:50','2026-04-20 19:17:50','3fccf25f-015a-4a74-97c8-e6c8c96af273'),
(8411,8411,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters are injectable treatments that deliver hyaluronic acid directly into the dermis to improve skin quality from within. By providing deep, long-lasting hydration and supporting bio-remodelling processes, they help enhance luminosity, elasticity and overall skin health in a way that topical skincare alone cannot achieve.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Skin Redensification\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When patients tell me they have tried countless high-street and luxury serums without seeing real change, I explain a simple truth: most cosmetic skincare is designed to work primarily at the surface of the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The epidermis is the outer protective layer. Beneath this lies the dermis - the living layer of the skin. This is where fibroblasts produce collagen and elastin, where hydration is retained, and where true skin strength, elasticity and resilience are determined. Many over-the-counter products, regardless of price, are not formulated to meaningfully influence this deeper layer.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters bypass this limitation entirely. Using ultra-fine needles or cannula, I deliver non-cross-linked hyaluronic acid directly into the dermis through a series of micro-injections distributed evenly across the treatment area. This allows hydration and bio-remodelling to take place exactly where skin quality is determined.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is also what differentiates skin boosters from dermal fillers. Fillers use cross-linked hyaluronic acid designed to add structure and volume. Skin boosters use non-cross-linked hyaluronic acid that disperses throughout the dermis, attracting water, improving skin density and supporting collagen and elastin production without altering facial shape.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why Doctor-Led Matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;\\\">Skin booster treatments may appear straightforward, but delivering hundreds of precise micro-injections across the face requires detailed anatomical knowledge, clinical judgement and meticulous technique. The difference between excellent outcomes and avoidable complications lies in medical expertise.</span></p><p> </p><p><span style=\\\"background-color:transparent;\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess skin quality, hydration levels, barrier function and overall skin health, review relevant medical history and medications, and determine whether skin boosters are truly the most appropriate option.</span></p><p> </p><p><span style=\\\"background-color:transparent;\\\">In some cases, patients who believe they need skin boosters may benefit more from <strong>polynucleotides</strong> or biostimulators like <strong>JULAINE™ </strong>to support cellular regeneration. Others may require <strong>dermal fillers</strong> to address structural volume loss, or <strong>clinical-grade skincare like pHformula</strong> to optimise the skin barrier before injectable treatment. Making these distinctions requires medical expertise, experience and clinical judgement.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4538],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I am new to treatment an have only had a few meetings / treatments with Dr Rachel but I am really pleased with everything so far. Dr Rachel is very knowledgeable, professional and friendly. She makes you feel very comfortable and confident in her ability to treat. I am looking forward to further visits.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lisa Walker\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.W.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:17:50','2026-04-20 19:17:50','cfd2e9ce-75ba-438c-8c35-4660107bede5'),
(8412,8412,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:17:50','2026-04-20 19:17:50','3616738c-0999-4065-a255-355f7ebeced2'),
(8416,8416,1,'Skin Consultation','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4949]}',1,'2026-04-20 19:18:06','2026-04-20 19:18:06','5aa443ee-d3ac-4beb-9537-0b62777d8dec'),
(8417,8417,1,'Your Comprehensive Skin Consultation','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Your Comprehensive Skin Consultation\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A relaxed, in-depth appointment where I explore your concerns, analyse your skin in detail, and create a personalised plan to support meaningful, long-term improvements in your skin.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The science behind the needle\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your consultation begins with time dedicated to understanding what is bothering you, how your skin makes you feel, and what truly matters to you. Many patients come to me at a point where their confidence is at its lowest - frustrated by persistent concerns such as acne breakouts, scarring, inflamed skin, pigmentation problems, textural irregularities, visible ageing, or skin that feels dull, dry, or fatigued. Skin has a powerful impact on how we see ourselves, and goes far beyond how it looks.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I carry out a thorough face-to-face assessment, exploring your medical and aesthetic history in detail, because your skin is completely unique,  and your plan going forward should be too. Every recommendation is made with your long-term skin health at the centre, ensuring it is safe, clinically appropriate, and genuinely tailored to you.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Using advanced skin analysis, I look beyond what we can see with the naked eye to assess the deeper layers of your skin, including hydration, pigmentation, congestion, and barrier function. This allows us to identify the root causes of your concerns, choose the right treatments in the right order, and monitor your progress over time.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">From here, I create a personalised plan designed specifically for your skin. For some patients, this develops into ongoing, structured support through the Skin Coach Club, while others choose a Radiance Collection programme - both providing clear direction, regular reviews, and a strategic long-term approach to skin health. I take time to explain the science behind each option, expected outcomes, and realistic timeframes, so you feel informed, confident, and fully in control throughout your journey.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4950],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - The woman behind the needle\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GP, I approach skin through a medical lens - diagnosing concerns accurately, recognising when symptoms require medical input, and calibrating treatments safely across all skin tones. I understand contraindications, inflammatory pathways, and how to work with skin biology rather than against it.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I commonly support patients struggling with acne and scarring, stubborn pigmentation, dull or fatigued skin, visible ageing changes, and sensitive or compromised skin barriers.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I partner with pHformula for both home skincare and in-clinic treatments because their approach is firmly science-led and evidence-based. Their patented technologies are designed to deliver active ingredients precisely to where they are needed within the skin, supporting controlled renewal and barrier health rather than aggressively stripping the skin back. This precision-led approach produces consistent, meaningful results - and is a system I trust clinically and use myself.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When it comes to your skin, diagnostic accuracy and formulation quality matter. You deserve informed medical guidance, not guesswork.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4948],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"Dr Rachel is incredible! Her knowledge and expertise are unmatched. She not only knew exactly how to treat me but her friendly and warm approach put me at ease. Wouldn’t trust anybody else with my face! Thank you, Dr Rachel\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Faya Klavas\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"F.K.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:18:06','2026-04-20 19:18:06','e04b3afe-24b3-47a2-98c3-bae3c0ad3c7a'),
(8418,8418,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:18:06','2026-04-20 19:18:06','929f1f3d-8b4d-405e-8b27-b03e5a6ff8cc'),
(8422,8422,1,'Sunekos','sunekos','treatments/sunekos','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to brighten\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[6338]}',1,'2026-04-20 19:18:24','2026-04-20 19:18:24','1f41cf4b-c65a-4aff-8e42-626fd4bd22fc'),
(8423,8423,1,'What Is Sunekos Performa?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Sunekos Performa?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">Sunekos Performa is an advanced injectable treatment developed in Italy, designed to improve skin quality in the delicate under-eye area. Its patented combination of hyaluronic acid and amino acids supports collagen and elastin, helping to improve brightness, texture, and firmness without adding volume. This makes it ideal for patients seeking subtle, natural-looking improvement in skin quality.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - the science of under-eye rejuvenation\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The area around the eyes presents unique challenges. The skin here is exceptionally delicate - often around a quarter of the thickness of facial skin elsewhere - with minimal supporting fat and constant movement. This makes it particularly prone to showing fatigue, poor circulation, pigmentation and early signs of ageing, while also being one of the most visible areas in day-to-day interactions.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">Traditional tear trough fillers can often be challenging in this area because they are designed to replace volume, when volume is not always the main concern. For many patients, the issue is more about skin quality than structural loss. Adding volume to delicate under-eye tissue can increase the risk of puffiness, product visibility, or an unnatural look. Sunekos Performa takes a different approach by focusing on improving the quality and strength of the skin itself.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[3957],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - why doctor-led under-eye treatment matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"color:hsl(0,0%,100%);\\\">The periocular area is one of the most delicate and technically demanding regions to treat. The skin is exceptionally thin, the anatomy is complex, and the vascular and lymphatic networks are intricate. Small differences in assessment or technique can have a significant impact on both results and safety. This is why careful medical assessment and experience matter when treating the eye area.</span></p><p> </p><p><span style=\\\"color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I have a detailed understanding of the anatomy beneath the lower eyelid - including vascular pathways, lymphatic drainage and the supporting structures of the orbit. This knowledge allows treatments to be planned and delivered with precision. While Sunekos Performa is an excellent option for improving skin quality, it is not always the right treatment for every concern. Some patients are better suited to tear trough filler or polynucleotides. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[3956],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"“I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Sunekos has genuinely transformed my under-eye area. The darkness has significantly faded and my skin looks so much healthier and brighter. Dr Rachel’s expertise made me feel completely confident throughout. This treatment has changed how I see myself.”\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Rebecca Heswall\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:18:24','2026-04-20 19:18:24','c193b8c7-9375-4022-b4f1-8ef48ce45141'),
(8424,8424,1,'Still have questions?','still-have-questions',NULL,'{\"66962652-75fe-47de-baec-55e4fc682a2c\":\"Still have questions?\",\"02bbffce-9901-4d78-8735-e9ffcf43516d\":\"I am always happy to help. Please get in touch.\",\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\":\"Book Consultation\",\"beab3711-acd0-4f59-9d50-fd5554a44054\":\"https://www.phorest.com/salon/aestheticsbydrrachel\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\":\"07834 258596\",\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\":true,\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-04-20 19:18:24','2026-04-20 19:18:24','f4d0a53c-2b55-4894-92d8-1ecd3fe4c4ab'),
(8428,8428,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"7a135f87-f576-4091-9795-9b0cd71f04fc\":\"- to hydrate\",\"15c485a1-c1dd-465e-93b2-21f693927c55\":[4893]}',1,'2026-04-20 19:28:02','2026-04-20 19:28:02','d73f31d2-3707-48ee-b95c-a17e42f19d90'),
(8429,8429,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Doctor-Led Aesthetic Medicine\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters are injectable treatments that deliver hyaluronic acid directly into the dermis to improve skin quality from within. By providing deep, long-lasting hydration and supporting bio-remodelling processes, they help enhance luminosity, elasticity and overall skin health in a way that topical skincare alone cannot achieve.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel - The Science of Skin Redensification\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When patients tell me they have tried countless high-street and luxury serums without seeing real change, I explain a simple truth: most cosmetic skincare is designed to work primarily at the surface of the skin.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The epidermis is the outer protective layer. Beneath this lies the dermis - the living layer of the skin. This is where fibroblasts produce collagen and elastin, where hydration is retained, and where true skin strength, elasticity and resilience are determined. Many over-the-counter products, regardless of price, are not formulated to meaningfully influence this deeper layer.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin boosters bypass this limitation entirely. Using ultra-fine needles or cannula, I deliver non-cross-linked hyaluronic acid directly into the dermis through a series of micro-injections distributed evenly across the treatment area. This allows hydration and bio-remodelling to take place exactly where skin quality is determined.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is also what differentiates skin boosters from dermal fillers. Fillers use cross-linked hyaluronic acid designed to add structure and volume. Skin boosters use non-cross-linked hyaluronic acid that disperses throughout the dermis, attracting water, improving skin density and supporting collagen and elastin production without altering facial shape.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[4537],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel  - Why Doctor-Led Matters\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Skin booster treatments may appear straightforward, but delivering hundreds of precise micro-injections across the face requires detailed anatomical knowledge, clinical judgement and meticulous technique. The difference between excellent outcomes and avoidable complications lies in medical expertise.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Before any treatment, I carry out a comprehensive medical consultation. I assess skin quality, hydration levels, barrier function and overall skin health, review relevant medical history and medications, and determine whether skin boosters are truly the most appropriate option.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, patients who believe they need skin boosters may benefit more from <strong>polynucleotides</strong> or biostimulators like <strong>JULAINE™ </strong>to support cellular regeneration. Others may require <strong>dermal fillers</strong> to address structural volume loss, or <strong>clinical-grade skincare like pHformula</strong> to optimise the skin barrier before injectable treatment. Making these distinctions requires medical expertise, experience and clinical judgement.</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[4538],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I am new to treatment an have only had a few meetings / treatments with Dr Rachel but I am really pleased with everything so far. Dr Rachel is very knowledgeable, professional and friendly. She makes you feel very comfortable and confident in her ability to treat. I am looking forward to further visits.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"- Lisa Walker\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Google Review\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.W.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose My Wirral Clinic?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As a GMC-registered doctor I provide medical aesthetic treatments grounded in clinical expertise, careful assessment, and patient safety. My approach is focused on natural, evidence-based results, using only treatments and products I trust to be safe, effective, and subtle. Care is always one-to-one; you will see me from your first consultation through to every treatment review. Located in the heart of the Wirral, I welcome patients from across the Wirral peninsula including Bebington, West Kirby, Heswall, Bromborough and Birkenhead, offering personalised, doctor-led care focused on safe, natural results.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">I am here to help you look and feel your best at every stage of life - because it is not just about looking great, it is about feeling great too.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"https://www.phorest.com/salon/aestheticsbydrrachel\"}',1,'2026-04-20 19:28:02','2026-04-20 19:28:02','2e6a6d0a-e742-41fd-8941-4e9a074462a8'),
(8432,8432,1,'Video Block','video-block',NULL,'{\"366f0eb0-c422-44e2-b37f-e51d412bcac7\":\"twoVideos\",\"214da0db-9e00-4448-aebd-ac608a67c449\":\"https://www.youtube.com/watch?v=l3Wy__9cbFE\",\"e431f461-d094-4773-879d-6698d08f56e5\":\"https://www.youtube.com/watch?v=6YVXe_rnLqM\",\"ebb0ff55-f947-4817-b289-a0e9eac07029\":\"fffaf7\"}',1,'2026-04-20 19:49:23','2026-04-20 19:49:23','98ede8ef-259f-4745-90f6-7ee48fe20a27'),
(8433,8433,1,'About','about','about',NULL,1,'2026-04-20 19:49:23','2026-04-20 19:49:23','f51615a0-5409-4b0a-a2b7-b813ca78ae8d'),
(8434,8434,1,'Video Block','video-block',NULL,'{\"366f0eb0-c422-44e2-b37f-e51d412bcac7\":\"twoVideos\",\"214da0db-9e00-4448-aebd-ac608a67c449\":\"https://www.youtube.com/watch?v=l3Wy__9cbFE\",\"e431f461-d094-4773-879d-6698d08f56e5\":\"https://www.youtube.com/watch?v=6YVXe_rnLqM\",\"ebb0ff55-f947-4817-b289-a0e9eac07029\":\"fffaf7\"}',1,'2026-04-20 19:49:23','2026-04-20 19:49:23','eb1cbfac-640b-4815-8f6a-3aa270906166'),
(8436,8436,1,'About','about','about',NULL,1,'2026-04-20 19:49:42','2026-04-20 19:49:42','b38b8f5e-63a7-4f57-8ae2-a04a062528a1'),
(8437,8437,1,'Privacy Policy','privacy-policy','privacy-policy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[]}',1,'2026-04-20 20:02:54','2026-04-20 20:04:56','8919f5f1-9f27-4eb9-812b-bcc0099972af'),
(8438,8438,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\":[],\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:03:46','2026-04-20 20:04:56','a2448d60-c7ea-4642-bcda-b288549efffe'),
(8439,8439,1,'Privacy Policy','privacy-policy',NULL,NULL,1,'2026-04-20 20:03:53','2026-04-20 20:04:09','64874d50-0ef7-4bbd-a15e-eab0c13f6527'),
(8440,8440,1,'Privacy Policy','privacy-policy',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<h2>Privacy Policy</h2><p> </p><p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a booking on drrachaesthetics.com (the “Site”).<br />This privacy policy also</p><p>This privacy policy explains how Aesthetics By Dr Rachel collects, uses, stores, and protects your personal data in line with the UK General Data Protection Regulation (UK GDPR) and the Data Protection Act 2018.</p><p> </p><p><strong>Personal information we collect</strong><br />When you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information”.</p><p>When you make a booking, we may collect the following data:</p><p>   Your full name, date of birth, contact details, and address<br />   Medical history, allergies, medications, and treatment records<br />   Photographs (clinical documentation and, with consent, for marketing)<br />   Payment and transaction information<br />   Communication history with the clinic</p><p> </p><p><strong>We collect Device Information using the following technologies:</strong><br />– “Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit http://www.allaboutcookies.org.<br />– “Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps.<br />– “Web beacons”, “tags”, and “pixels” are electronic files used to record information about how you browse the Site.</p><p>Additionally when you make a booking through the Site, we collect certain information from you, including your name, address, email address, and phone number. We refer to this information as “Booking Information”.</p><p>When we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Booking Information.</p><p> </p><p><strong>How do we use your personal information?</strong><br />We use the booking Information that we collect generally to fulfill any bookings placed through the Site , and for providing you with invoices and/or order confirmations). Additionally, we use this Order Information to:<br />– Communicate with you;<br />– Screen our orders for potential risk or fraud; and<br />– When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</p><p>We use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).</p><p>For information gathered in clinic, we use your data to:</p><p>We use your data to:</p><p>   Deliver safe and appropriate treatment<br />   Maintain accurate clinical records<br />   Contact you about appointments, aftercare, or follow-ups<br />   Process payments and issue receipts<br />   Respond to enquiries or concerns<br />   Share marketing content (only with your explicit consent)</p><p> </p><p><strong>Lawful basis for processing</strong></p><p>We rely on the following lawful bases:</p><p>   Consent<br />   Contract<br />   Legal obligation<br />   Vital interest (in emergencies)<br />   Legitimate interest (for clinic administration and service improvement)</p><p> </p><p><strong>Sharing you personal Information</strong><br />We share your Personal Information with third parties to help us use your Personal Information, as described above.  We also use Google Analytics to help us understand how our customers use the Site — you can read more about how Google uses your Personal Information here: https://www.google.com/intl/en/policies/privacy/. You can also opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout.</p><p>Finally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.</p><p>We may share your data with:</p><p>   Other healthcare professionals (only where necessary or with consent)<br />   Third-party services (e.g. booking systems, payment processors)<br />   Insurers or regulators where legally required<br />   We do not sell your personal information.</p><p> </p><p><strong>Behavioural advertising</strong><br />As described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.</p><p>You can opt out of targeted advertising by using the links below:<br />– Facebook: https://www.facebook.com/settings/?tab=ads<br />– Google: https://www.google.com/settings/ads/anonymous<br />– Bing: https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads</p><p>Additionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: <a href=\\\"http://optout.aboutads.info/.\\\">http://optout.aboutads.info/.</a></p><p> </p><p><strong>Do not track</strong><br />Please note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.</p><p> </p><p><strong>Your rights</strong><br />If you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.</p><p>Additionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.</p><p>You have the right to:</p><p>   Access your data<br />   Correct inaccurate or incomplete data<br />   Request deletion of your data (where lawful)<br />   Withdraw consent<br />   Object to certain types of processing<br />   Request transfer of your data</p><p>To exercise your rights, contact us using the details below.</p><p> </p><p><strong>Data retention</strong><br />When you place an booking through the Site, we will maintain your Booking Information for our records unless and until you ask us to delete this information.</p><p> </p><p><strong>Changes</strong><br />We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.</p><p> </p><p><strong>Minors</strong><br />The Site is not intended for individuals under the age of 18 .</p><p> </p><p><strong>Contact us</strong><br />For more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e‑mail at rachel@drrachelaesthetics.com or by mail using the details provided below</p><p>Dr Rachel Sinton <br />[Re: Privacy Compliance Officer]</p><p>1 Alexander Close, Wirral, CH61 9QL</p><p>If you are unhappy with how your data is handled, you may contact the Information Commissioner’s Office (ICO):<br />www.ico.org.uk | 0303 123 1113<br /> </p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:03:57','2026-04-20 20:11:42','e51354ce-117e-4fff-b12a-6a5548df6f95'),
(8441,8441,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:04:15','2026-04-20 20:04:15','8e86cfcd-c78d-46ed-8ec3-aff753ef4785'),
(8442,8442,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:04:15','2026-04-20 20:04:15','898268de-addd-4054-ac29-bb3ef9ef82a4'),
(8443,8443,1,'Privacy Policy','privacy-policy',NULL,NULL,1,'2026-04-20 20:04:15','2026-04-20 20:04:15','89ae18e3-02b4-49da-83e3-4598fdcc96d7'),
(8444,8444,1,'Privacy Policy','privacy-policy',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a booking on drrachaesthetics.com (the “Site”).<br />This privacy policy also</p><p>This privacy policy explains how Aesthetics By Dr Rachel collects, uses, stores, and protects your personal data in line with the UK General Data Protection Regulation (UK GDPR) and the Data Protection Act 2018.</p><p><strong>Personal information we collect</strong> <br />When you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information”.</p><p>When you make a booking, we may collect the following data:</p><ul><li>Your full name, date of birth, contact details, and address</li><li>Medical history, allergies, medications, and treatment records</li><li>Photographs (clinical documentation and, with consent, for marketing)</li><li>Payment and transaction information</li><li>Communication history with the clinic</li></ul><p><strong>We collect Device Information using the following technologies:</strong> <br />– “Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit <a href=\\\"http://www.allaboutcookies.org./\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>http://www.allaboutcookies.org.</u></a> <br />– “Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps. <br />– “Web beacons”, “tags”, and “pixels” are electronic files used to record information about how you browse the Site.</p><p>Additionally when you make a booking through the Site, we collect certain information from you, including your name, address, email address, and phone number. We refer to this information as “Booking Information”.</p><p>When we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Booking Information.</p><p><strong>How do we use your personal information?</strong> <br />We use the booking Information that we collect generally to fulfill any bookings placed through the Site , and for providing you with invoices and/or order confirmations). Additionally, we use this Order Information to: <br />– Communicate with you; <br />– Screen our orders for potential risk or fraud; and <br />– When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</p><p>We use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).</p><p>For information gathered in clinic, we use your data to:</p><p>We use your data to:</p><ul><li>Deliver safe and appropriate treatment</li><li>Maintain accurate clinical records</li><li>Contact you about appointments, aftercare, or follow-ups</li><li>Process payments and issue receipts</li><li>Respond to enquiries or concerns</li><li>Share marketing content (only with your explicit consent)</li></ul><p><strong>Lawful basis for processing</strong><br /> </p><p>We rely on the following lawful bases:</p><ul><li>Consent</li><li>Contract</li><li>Legal obligation</li><li>Vital interest (in emergencies)</li><li>Legitimate interest (for clinic administration and service improvement)</li></ul><p><strong>Sharing you personal Information</strong> <br />We share your Personal Information with third parties to help us use your Personal Information, as described above.  We also use Google Analytics to help us understand how our customers use the Site — you can read more about how Google uses your Personal Information here: <a href=\\\"https://www.google.com/intl/en/policies/privacy/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>https://www.google.com/intl/en/policies/privacy/.</u></a> You can also opt-out of Google Analytics here: <a href=\\\"https://tools.google.com/dlpage/gaoptout.\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>https://tools.google.com/dlpage/gaoptout.</u></a></p><p>Finally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.</p><p>We may share your data with:</p><ul><li>Other healthcare professionals (only where necessary or with consent)</li><li>Third-party services (e.g. booking systems, payment processors)</li><li>Insurers or regulators where legally required<br />We do not sell your personal information.</li></ul><p><strong>Behavioural advertising</strong> <br />As described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at <a href=\\\"http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.</u></a></p><p>You can opt out of targeted advertising by using the links below: <br />– Facebook: <a href=\\\"https://www.facebook.com/settings/?tab=ads\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>https://www.facebook.com/settings/?tab=ads</u></a> <br />– Google: <a href=\\\"https://www.google.com/settings/ads/anonymous\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>https://www.google.com/settings/ads/anonymous</u></a> <br />– Bing: <a href=\\\"https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads</u></a></p><p>Additionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: <a href=\\\"http://optout.aboutads.info/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"><u>http://optout.aboutads.info/.</u></a></p><p><strong>Do not track</strong> <br />Please note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.</p><p><strong>Your rights</strong> <br />If you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.</p><p>Additionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.</p><p>You have the right to:</p><ul><li>Access your data</li><li>Correct inaccurate or incomplete data</li><li>Request deletion of your data (where lawful)</li><li>Withdraw consent</li><li>Object to certain types of processing</li><li>Request transfer of your data</li></ul><p>To exercise your rights, contact us using the details below.</p><p><strong>Data retention</strong> <br />When you place an booking through the Site, we will maintain your Booking Information for our records unless and until you ask us to delete this information.</p><p><strong>Changes</strong> <br />We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.</p><p><strong>Minors</strong> <br />The Site is not intended for individuals under the age of 18 .</p><p><strong>Contact us</strong> <br />For more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e‑mail at rachel<a href=\\\"mailto:rachel@drrachelaesthetics.com\\\">@drrachelaesthetics.com</a> or by mail using the details provided below</p><p>Dr Rachel Sinton  <br />[Re: Privacy Compliance Officer]</p><p> 1 Alexander Close, Wirral, CH61 9QL</p><p>If you are unhappy with how your data is handled, you may contact the <strong>Information Commissioner’s Office (ICO):</strong><br /><a href=\\\"http://www.ico.org.uk/\\\">www.ico.org.uk</a> | 0303 123 1113</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:04:15','2026-04-20 20:04:15','f1e0f0e1-b33e-402e-b182-42671599c169'),
(8449,8449,1,'Title','privacy-policy',NULL,NULL,1,'2026-04-20 20:04:56','2026-04-20 20:08:38','7e8f767f-5a21-469b-a650-d7c75e146de9'),
(8450,8450,1,'Privacy Policy','privacy-policy',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Privacy Policy\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"left\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"gold\"}',1,'2026-04-20 20:04:56','2026-04-20 20:04:56','8f4e58b2-09be-4bb7-ad47-5c5c02530a8e'),
(8451,8451,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:04:56','2026-04-20 20:04:56','ca47e223-1800-4bd9-b974-ed5bde640bdc'),
(8452,8452,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:04:56','2026-04-20 20:04:56','0c94a0a9-c65d-4bea-895c-de0635eccfd0'),
(8453,8453,1,'Privacy Policy','privacy-policy',NULL,NULL,1,'2026-04-20 20:04:56','2026-04-20 20:04:56','51f141f3-8f77-4a67-a0c3-eda8a91a7444'),
(8454,8454,1,'Privacy Policy','privacy-policy',NULL,'{\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\":\"Privacy Policy\",\"d786a952-f7f5-459f-8a46-f32ff468d4f6\":\"h2\",\"dc38184a-b41a-44b1-980c-64e7c324f41a\":\"standard\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"left\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"gold\"}',1,'2026-04-20 20:04:56','2026-04-20 20:04:56','59fff396-3d71-4ac1-b2ed-297b577963bd'),
(8459,8459,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:07:44','2026-04-20 20:07:44','336657f6-a0f7-4625-a1ab-ae1974641d2d'),
(8460,8460,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:07:44','2026-04-20 20:07:44','69e2a561-7e45-4e7e-8a6b-3b0117ddcedd'),
(8461,8461,1,'Privacy Policy','privacy-policy',NULL,NULL,1,'2026-04-20 20:07:44','2026-04-20 20:07:44','a50ac871-4356-41a1-97fd-ecce979b3821'),
(8462,8462,1,'Privacy Policy','privacy-policy',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a booking on drrachaesthetics.com (the “Site”).<br />This privacy policy also</p><p>This privacy policy explains how Aesthetics By Dr Rachel collects, uses, stores, and protects your personal data in line with the UK General Data Protection Regulation (UK GDPR) and the Data Protection Act 2018.</p><p><strong>Personal information we collect</strong><br />When you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information”.</p><p>When you make a booking, we may collect the following data:</p><p>   Your full name, date of birth, contact details, and address<br />   Medical history, allergies, medications, and treatment records<br />   Photographs (clinical documentation and, with consent, for marketing)<br />   Payment and transaction information<br />   Communication history with the clinic</p><p><strong>We collect Device Information using the following technologies:</strong><br />– “Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit http://www.allaboutcookies.org.<br />– “Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps.<br />– “Web beacons”, “tags”, and “pixels” are electronic files used to record information about how you browse the Site.</p><p>Additionally when you make a booking through the Site, we collect certain information from you, including your name, address, email address, and phone number. We refer to this information as “Booking Information”.</p><p>When we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Booking Information.</p><p><strong>How do we use your personal information?</strong><br />We use the booking Information that we collect generally to fulfill any bookings placed through the Site , and for providing you with invoices and/or order confirmations). Additionally, we use this Order Information to:<br />– Communicate with you;<br />– Screen our orders for potential risk or fraud; and<br />– When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</p><p>We use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).</p><p>For information gathered in clinic, we use your data to:</p><p>We use your data to:</p><p>   Deliver safe and appropriate treatment<br />   Maintain accurate clinical records<br />   Contact you about appointments, aftercare, or follow-ups<br />   Process payments and issue receipts<br />   Respond to enquiries or concerns<br />   Share marketing content (only with your explicit consent)</p><p><strong>Lawful basis for processing</strong></p><p>We rely on the following lawful bases:</p><p>   Consent<br />   Contract<br />   Legal obligation<br />   Vital interest (in emergencies)<br />   Legitimate interest (for clinic administration and service improvement)</p><p><strong>Sharing you personal Information</strong><br />We share your Personal Information with third parties to help us use your Personal Information, as described above.  We also use Google Analytics to help us understand how our customers use the Site — you can read more about how Google uses your Personal Information here: https://www.google.com/intl/en/policies/privacy/. You can also opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout.</p><p>Finally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.</p><p>We may share your data with:</p><p>   Other healthcare professionals (only where necessary or with consent)<br />   Third-party services (e.g. booking systems, payment processors)<br />   Insurers or regulators where legally required<br />   We do not sell your personal information.</p><p><strong>Behavioural advertising</strong><br />As described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.</p><p>You can opt out of targeted advertising by using the links below:<br />– Facebook: https://www.facebook.com/settings/?tab=ads<br />– Google: https://www.google.com/settings/ads/anonymous<br />– Bing: https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads</p><p>Additionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: http://optout.aboutads.info/.</p><p><strong>Do not track</strong><br />Please note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.</p><p><strong>Your rights</strong><br />If you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.</p><p>Additionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.</p><p>You have the right to:</p><p>   Access your data<br />   Correct inaccurate or incomplete data<br />   Request deletion of your data (where lawful)<br />   Withdraw consent<br />   Object to certain types of processing<br />   Request transfer of your data</p><p>To exercise your rights, contact us using the details below.</p><p><strong>Data retention</strong><br />When you place an booking through the Site, we will maintain your Booking Information for our records unless and until you ask us to delete this information.</p><p><strong>Changes</strong><br />We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.</p><p><strong>Minors</strong><br />The Site is not intended for individuals under the age of 18 .</p><p><strong>Contact us</strong><br />For more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e‑mail at rachel@drrachelaesthetics.com or by mail using the details provided below</p><p>Dr Rachel Sinton <br />[Re: Privacy Compliance Officer]</p><p>1 Alexander Close, Wirral, CH61 9QL</p><p>If you are unhappy with how your data is handled, you may contact the Information Commissioner’s Office (ICO):<br />www.ico.org.uk | 0303 123 1113<br /> </p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:07:44','2026-04-20 20:07:44','9a9da5f6-9028-4112-895f-68414f7a5ff4'),
(8467,8467,1,'Title','title',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>Privacy Policy</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:08:38','2026-04-20 20:10:12','5fc2d2b3-af3c-4394-bef2-ab3dc8051e74'),
(8468,8468,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:08:38','2026-04-20 20:08:38','ee25e595-12ee-4449-b8a8-682a673cae9b'),
(8469,8469,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:08:38','2026-04-20 20:08:38','40125619-9288-43ba-af4f-e676f425f305'),
(8470,8470,1,'Title','privacy-policy',NULL,NULL,1,'2026-04-20 20:08:38','2026-04-20 20:08:38','5b2aeedf-a43a-4d74-952b-e275181d5d13'),
(8471,8471,1,'Title','title',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<h2><span style=\\\"color:hsl(0,0%,0%);\\\">Privacy Policy</span></h2>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:08:38','2026-04-20 20:08:38','ac6d7dc6-b66c-4dd9-b7ef-390151a409c7'),
(8476,8476,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:09:07','2026-04-20 20:09:07','ffaed643-e7b3-42d7-9033-f361bba596d3'),
(8477,8477,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:09:07','2026-04-20 20:09:07','1607140b-5678-43e9-b272-6b7a19ad22d3'),
(8478,8478,1,'Title','privacy-policy',NULL,NULL,1,'2026-04-20 20:09:07','2026-04-20 20:09:07','d1f8989e-d808-4f80-ab19-f4733a421ee8'),
(8479,8479,1,'Title','title',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<h1><span style=\\\"color:hsl(0,0%,0%);\\\">Privacy Policy</span></h1>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:09:07','2026-04-20 20:09:07','a1b33b79-9fe4-4aba-bd0f-4d7efaa6e409'),
(8484,8484,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:09:35','2026-04-20 20:09:35','fc84c129-e77a-41c0-af04-52619f9906a5'),
(8485,8485,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:09:35','2026-04-20 20:09:35','4a7873cf-c59b-4186-af95-dadbd19b3dbe'),
(8486,8486,1,'Title','privacy-policy',NULL,NULL,1,'2026-04-20 20:09:35','2026-04-20 20:09:35','7632972a-ca95-41cd-ba68-2895ec57fc1f'),
(8487,8487,1,'Title','title',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<h1><span style=\\\"color:hsl(0,0%,0%);\\\">Privacy Policy</span></h1>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"xLarge\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:09:35','2026-04-20 20:09:35','dd6846da-534f-4cf9-925c-914b5d2c2a3f'),
(8492,8492,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:10:12','2026-04-20 20:10:12','67fbf7ec-309e-44d4-bc3e-640fb709d175'),
(8493,8493,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:10:12','2026-04-20 20:10:12','10febfdc-cbb1-4dd9-b640-8df49439f9d9'),
(8494,8494,1,'Title','privacy-policy',NULL,NULL,1,'2026-04-20 20:10:12','2026-04-20 20:10:12','dc4189ad-20b5-49a2-a58c-0a0242eaa7b4'),
(8495,8495,1,'Title','title',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>Privacy Policy</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:10:12','2026-04-20 20:10:12','27eb6734-81fa-499f-989f-971b8b0581e7'),
(8500,8500,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:11:05','2026-04-20 20:11:05','dc79e39d-d904-43b4-961f-093474390ee3'),
(8501,8501,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:11:05','2026-04-20 20:11:05','dfb8e460-5d99-4386-bdf5-01b1b00adc54'),
(8502,8502,1,'Privacy Policy','privacy-policy',NULL,NULL,1,'2026-04-20 20:11:05','2026-04-20 20:11:05','73cc6b4c-4497-4cc1-942b-fa0414fcf9a4'),
(8503,8503,1,'Privacy Policy','privacy-policy',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a booking on drrachaesthetics.com (the “Site”).<br />This privacy policy also</p><p>This privacy policy explains how Aesthetics By Dr Rachel collects, uses, stores, and protects your personal data in line with the UK General Data Protection Regulation (UK GDPR) and the Data Protection Act 2018.</p><p><strong>Personal information we collect</strong><br />When you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information”.</p><p>When you make a booking, we may collect the following data:</p><p>   Your full name, date of birth, contact details, and address<br />   Medical history, allergies, medications, and treatment records<br />   Photographs (clinical documentation and, with consent, for marketing)<br />   Payment and transaction information<br />   Communication history with the clinic</p><p> </p><p><strong>We collect Device Information using the following technologies:</strong><br />– “Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit http://www.allaboutcookies.org.<br />– “Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps.<br />– “Web beacons”, “tags”, and “pixels” are electronic files used to record information about how you browse the Site.</p><p>Additionally when you make a booking through the Site, we collect certain information from you, including your name, address, email address, and phone number. We refer to this information as “Booking Information”.</p><p>When we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Booking Information.</p><p> </p><p><strong>How do we use your personal information?</strong><br />We use the booking Information that we collect generally to fulfill any bookings placed through the Site , and for providing you with invoices and/or order confirmations). Additionally, we use this Order Information to:<br />– Communicate with you;<br />– Screen our orders for potential risk or fraud; and<br />– When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</p><p>We use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).</p><p>For information gathered in clinic, we use your data to:</p><p>We use your data to:</p><p>   Deliver safe and appropriate treatment<br />   Maintain accurate clinical records<br />   Contact you about appointments, aftercare, or follow-ups<br />   Process payments and issue receipts<br />   Respond to enquiries or concerns<br />   Share marketing content (only with your explicit consent)</p><p> </p><p><strong>Lawful basis for processing</strong></p><p>We rely on the following lawful bases:</p><p>   Consent<br />   Contract<br />   Legal obligation<br />   Vital interest (in emergencies)<br />   Legitimate interest (for clinic administration and service improvement)</p><p> </p><p><strong>Sharing you personal Information</strong><br />We share your Personal Information with third parties to help us use your Personal Information, as described above.  We also use Google Analytics to help us understand how our customers use the Site — you can read more about how Google uses your Personal Information here: https://www.google.com/intl/en/policies/privacy/. You can also opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout.</p><p>Finally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.</p><p>We may share your data with:</p><p>   Other healthcare professionals (only where necessary or with consent)<br />   Third-party services (e.g. booking systems, payment processors)<br />   Insurers or regulators where legally required<br />   We do not sell your personal information.</p><p> </p><p><strong>Behavioural advertising</strong><br />As described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.</p><p>You can opt out of targeted advertising by using the links below:<br />– Facebook: https://www.facebook.com/settings/?tab=ads<br />– Google: https://www.google.com/settings/ads/anonymous<br />– Bing: https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads</p><p>Additionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: <a href=\\\"http://optout.aboutads.info/.\\\">http://optout.aboutads.info/.</a></p><p> </p><p><strong>Do not track</strong><br />Please note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.</p><p> </p><p><strong>Your rights</strong><br />If you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.</p><p>Additionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.</p><p>You have the right to:</p><p>   Access your data<br />   Correct inaccurate or incomplete data<br />   Request deletion of your data (where lawful)<br />   Withdraw consent<br />   Object to certain types of processing<br />   Request transfer of your data</p><p>To exercise your rights, contact us using the details below.</p><p> </p><p><strong>Data retention</strong><br />When you place an booking through the Site, we will maintain your Booking Information for our records unless and until you ask us to delete this information.</p><p> </p><p><strong>Changes</strong><br />We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.</p><p> </p><p><strong>Minors</strong><br />The Site is not intended for individuals under the age of 18 .</p><p> </p><p><strong>Contact us</strong><br />For more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e‑mail at rachel@drrachelaesthetics.com or by mail using the details provided below</p><p>Dr Rachel Sinton <br />[Re: Privacy Compliance Officer]</p><p>1 Alexander Close, Wirral, CH61 9QL</p><p>If you are unhappy with how your data is handled, you may contact the Information Commissioner’s Office (ICO):<br />www.ico.org.uk | 0303 123 1113<br /> </p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:11:05','2026-04-20 20:11:05','19631674-cbf8-4704-8981-d301dc922235'),
(8508,8508,1,'Privacy Policy','privacy-policy','privacy-policy',NULL,1,'2026-04-20 20:11:42','2026-04-20 20:11:42','ed49c0c8-6a4a-41f7-8dc3-2ee22519046c'),
(8509,8509,1,'Privacy Policy','privacy-policy',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"medium\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"whiteClean\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"50\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"line\",\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"none\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true}',1,'2026-04-20 20:11:42','2026-04-20 20:11:42','9bc9c4df-d741-466b-b121-66a8a80a6b47'),
(8510,8510,1,'Privacy Policy','privacy-policy',NULL,NULL,1,'2026-04-20 20:11:42','2026-04-20 20:11:42','26d73511-606a-4407-942e-c7489cff6f60'),
(8511,8511,1,'Privacy Policy','privacy-policy',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<h2>Privacy Policy</h2><p> </p><p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a booking on drrachaesthetics.com (the “Site”).<br />This privacy policy also</p><p>This privacy policy explains how Aesthetics By Dr Rachel collects, uses, stores, and protects your personal data in line with the UK General Data Protection Regulation (UK GDPR) and the Data Protection Act 2018.</p><p> </p><p><strong>Personal information we collect</strong><br />When you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information”.</p><p>When you make a booking, we may collect the following data:</p><p>   Your full name, date of birth, contact details, and address<br />   Medical history, allergies, medications, and treatment records<br />   Photographs (clinical documentation and, with consent, for marketing)<br />   Payment and transaction information<br />   Communication history with the clinic</p><p> </p><p><strong>We collect Device Information using the following technologies:</strong><br />– “Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit http://www.allaboutcookies.org.<br />– “Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps.<br />– “Web beacons”, “tags”, and “pixels” are electronic files used to record information about how you browse the Site.</p><p>Additionally when you make a booking through the Site, we collect certain information from you, including your name, address, email address, and phone number. We refer to this information as “Booking Information”.</p><p>When we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Booking Information.</p><p> </p><p><strong>How do we use your personal information?</strong><br />We use the booking Information that we collect generally to fulfill any bookings placed through the Site , and for providing you with invoices and/or order confirmations). Additionally, we use this Order Information to:<br />– Communicate with you;<br />– Screen our orders for potential risk or fraud; and<br />– When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</p><p>We use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).</p><p>For information gathered in clinic, we use your data to:</p><p>We use your data to:</p><p>   Deliver safe and appropriate treatment<br />   Maintain accurate clinical records<br />   Contact you about appointments, aftercare, or follow-ups<br />   Process payments and issue receipts<br />   Respond to enquiries or concerns<br />   Share marketing content (only with your explicit consent)</p><p> </p><p><strong>Lawful basis for processing</strong></p><p>We rely on the following lawful bases:</p><p>   Consent<br />   Contract<br />   Legal obligation<br />   Vital interest (in emergencies)<br />   Legitimate interest (for clinic administration and service improvement)</p><p> </p><p><strong>Sharing you personal Information</strong><br />We share your Personal Information with third parties to help us use your Personal Information, as described above.  We also use Google Analytics to help us understand how our customers use the Site — you can read more about how Google uses your Personal Information here: https://www.google.com/intl/en/policies/privacy/. You can also opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout.</p><p>Finally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.</p><p>We may share your data with:</p><p>   Other healthcare professionals (only where necessary or with consent)<br />   Third-party services (e.g. booking systems, payment processors)<br />   Insurers or regulators where legally required<br />   We do not sell your personal information.</p><p> </p><p><strong>Behavioural advertising</strong><br />As described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.</p><p>You can opt out of targeted advertising by using the links below:<br />– Facebook: https://www.facebook.com/settings/?tab=ads<br />– Google: https://www.google.com/settings/ads/anonymous<br />– Bing: https://advertise.bingads.microsoft.com/en-us/resources/policies/personalized-ads</p><p>Additionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: <a href=\\\"http://optout.aboutads.info/.\\\">http://optout.aboutads.info/.</a></p><p> </p><p><strong>Do not track</strong><br />Please note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.</p><p> </p><p><strong>Your rights</strong><br />If you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.</p><p>Additionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.</p><p>You have the right to:</p><p>   Access your data<br />   Correct inaccurate or incomplete data<br />   Request deletion of your data (where lawful)<br />   Withdraw consent<br />   Object to certain types of processing<br />   Request transfer of your data</p><p>To exercise your rights, contact us using the details below.</p><p> </p><p><strong>Data retention</strong><br />When you place an booking through the Site, we will maintain your Booking Information for our records unless and until you ask us to delete this information.</p><p> </p><p><strong>Changes</strong><br />We may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.</p><p> </p><p><strong>Minors</strong><br />The Site is not intended for individuals under the age of 18 .</p><p> </p><p><strong>Contact us</strong><br />For more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e‑mail at rachel@drrachelaesthetics.com or by mail using the details provided below</p><p>Dr Rachel Sinton <br />[Re: Privacy Compliance Officer]</p><p>1 Alexander Close, Wirral, CH61 9QL</p><p>If you are unhappy with how your data is handled, you may contact the Information Commissioner’s Office (ICO):<br />www.ico.org.uk | 0303 123 1113<br /> </p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"left\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"container\"}',1,'2026-04-20 20:11:42','2026-04-20 20:11:42','8cb698f9-e3a9-49cc-ae67-9bf26399799e');
/*!40000 ALTER TABLE `elements_sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `entries`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `entries` WRITE;
/*!40000 ALTER TABLE `entries` DISABLE KEYS */;
INSERT INTO `entries` VALUES
(37,1,NULL,NULL,NULL,1,'2025-11-30 19:26:54',NULL,'live',0,0,'2025-11-30 19:26:54','2025-11-30 19:26:54'),
(38,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-11-30 19:27:45','2025-12-02 17:23:22'),
(43,NULL,NULL,38,6,1,'2025-11-30 19:33:00',NULL,'live',NULL,NULL,'2025-11-30 19:34:01','2025-11-30 19:34:01'),
(44,NULL,NULL,38,6,1,'2025-11-30 19:33:00',NULL,'live',0,0,'2025-11-30 19:34:01','2025-11-30 19:34:01'),
(61,NULL,NULL,38,6,1,'2025-11-30 19:33:00',NULL,'live',NULL,NULL,'2025-11-30 20:06:55','2025-11-30 20:06:55'),
(62,NULL,NULL,38,6,1,'2025-11-30 20:06:00',NULL,'live',0,0,'2025-11-30 20:06:55','2025-11-30 20:06:55'),
(85,6,NULL,NULL,NULL,1,'2025-12-02 14:55:01',NULL,'live',NULL,NULL,'2025-12-02 14:55:01','2025-12-02 14:55:01'),
(86,6,NULL,NULL,NULL,1,'2025-12-02 14:55:13',NULL,'live',NULL,NULL,'2025-12-02 14:55:13','2025-12-02 14:55:13'),
(87,6,NULL,NULL,NULL,3,'2025-12-02 15:31:53',NULL,'live',NULL,NULL,'2025-12-02 15:31:53','2025-12-02 15:31:53'),
(88,6,NULL,NULL,NULL,3,'2025-12-02 15:33:56',NULL,'live',NULL,NULL,'2025-12-02 15:33:56','2025-12-02 15:33:56'),
(89,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 15:34:26','2025-12-02 15:40:41'),
(92,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 15:40:41','2025-12-02 15:40:41'),
(96,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 15:41:19','2025-12-02 15:41:19'),
(99,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 15:42:19','2025-12-02 15:42:45'),
(100,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 15:42:45','2025-12-02 15:42:45'),
(102,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 15:43:24','2025-12-02 15:43:24'),
(103,2,NULL,NULL,NULL,3,'2025-12-02 16:12:22',NULL,'live',NULL,NULL,'2025-12-02 16:12:22','2025-12-02 16:12:22'),
(104,2,NULL,NULL,NULL,3,'2025-12-02 16:12:31',NULL,'live',NULL,NULL,'2025-12-02 16:12:31','2025-12-02 16:12:31'),
(108,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 16:15:56','2025-12-02 16:15:56'),
(110,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 16:16:03','2025-12-02 16:16:03'),
(111,6,NULL,NULL,NULL,3,'2025-12-02 16:16:32',NULL,'live',NULL,NULL,'2025-12-02 16:16:32','2025-12-02 16:16:32'),
(112,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2025-12-02 16:26:08','2025-12-02 16:26:11'),
(113,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2025-12-02 16:26:11','2025-12-02 16:26:11'),
(115,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2025-12-02 16:26:28','2025-12-02 16:26:28'),
(116,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 16:28:15','2025-12-02 16:28:15'),
(120,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 16:47:19','2025-12-02 16:47:19'),
(124,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2025-12-02 16:48:40','2025-12-02 16:48:40'),
(125,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 16:48:44','2025-12-02 16:48:44'),
(127,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 16:48:50','2025-12-02 16:48:50'),
(129,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2025-12-02 17:03:57','2025-12-02 17:03:57'),
(134,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 17:18:36','2025-12-02 17:18:36'),
(136,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 17:18:46','2025-12-02 17:18:46'),
(143,NULL,NULL,38,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-02 17:25:51','2025-12-02 17:25:51'),
(144,NULL,NULL,143,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-02 17:25:51','2025-12-02 17:25:51'),
(145,NULL,NULL,143,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-02 17:25:51','2025-12-02 17:25:51'),
(161,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 17:45:53','2025-12-02 17:45:53'),
(163,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 17:46:07','2025-12-02 17:46:07'),
(244,NULL,NULL,243,6,1,'2025-12-02 22:09:00',NULL,'live',NULL,NULL,'2025-12-02 22:09:04','2025-12-02 22:09:17'),
(245,NULL,NULL,243,6,1,'2025-12-02 22:09:00',NULL,'live',NULL,NULL,'2025-12-02 22:09:19','2025-12-02 22:09:29'),
(246,NULL,NULL,243,19,8,'2025-12-02 22:10:00',NULL,'live',NULL,NULL,'2025-12-02 22:10:27','2025-12-02 22:10:43'),
(247,NULL,NULL,243,19,8,'2025-12-02 22:11:00',NULL,'live',NULL,NULL,'2025-12-02 22:10:44','2025-12-02 22:11:01'),
(250,4,NULL,NULL,NULL,9,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2025-12-03 07:52:32','2026-04-15 15:01:22'),
(251,4,NULL,NULL,NULL,9,'2025-12-03 07:52:00',NULL,'live',NULL,NULL,'2025-12-03 07:52:56','2025-12-03 07:52:56'),
(252,4,NULL,NULL,NULL,9,'2025-04-01 06:54:00',NULL,'live',NULL,NULL,'2025-12-03 07:54:02','2026-04-15 15:19:04'),
(253,4,NULL,NULL,NULL,9,'2025-12-03 07:54:00',NULL,'live',NULL,NULL,'2025-12-03 07:54:20','2025-12-03 07:54:20'),
(255,NULL,NULL,38,7,10,'2025-12-03 08:56:00',NULL,'live',NULL,NULL,'2025-12-03 08:56:07','2025-12-03 08:56:07'),
(262,NULL,NULL,261,22,4,NULL,NULL,'pending',NULL,NULL,'2025-12-03 17:06:52','2025-12-03 17:06:52'),
(263,NULL,NULL,261,22,4,NULL,NULL,'pending',NULL,NULL,'2025-12-03 17:09:02','2025-12-03 17:09:02'),
(267,NULL,NULL,266,22,4,NULL,NULL,'pending',0,0,'2025-12-03 17:10:13','2025-12-03 17:10:13'),
(268,NULL,NULL,267,7,11,NULL,NULL,'pending',0,0,'2025-12-03 17:10:21','2025-12-03 17:10:21'),
(269,NULL,NULL,268,22,4,NULL,NULL,'pending',NULL,NULL,'2025-12-03 17:10:23','2025-12-03 17:10:23'),
(274,NULL,NULL,38,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 17:13:37','2025-12-03 17:13:37'),
(275,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',0,0,'2025-12-03 17:13:37','2025-12-03 17:13:37'),
(302,NULL,NULL,274,6,1,'2025-12-03 19:14:00',NULL,'live',NULL,NULL,'2025-12-03 19:14:29','2025-12-03 19:14:29'),
(319,7,NULL,NULL,NULL,13,'2025-12-04 17:56:00',NULL,'live',NULL,NULL,'2025-12-04 17:55:44','2025-12-04 17:56:51'),
(321,7,NULL,NULL,NULL,13,'2025-12-04 17:56:00',NULL,'live',NULL,NULL,'2025-12-04 17:56:51','2025-12-04 17:56:51'),
(322,7,NULL,NULL,NULL,13,'2025-12-04 17:59:00',NULL,'live',NULL,NULL,'2025-12-04 17:56:55','2025-12-04 18:18:56'),
(323,7,NULL,NULL,NULL,13,'2025-12-04 17:57:00',NULL,'live',NULL,NULL,'2025-12-04 17:57:32','2025-12-04 17:57:32'),
(324,7,NULL,NULL,NULL,13,'2025-12-04 17:57:00',NULL,'live',NULL,NULL,'2025-12-04 17:57:32','2025-12-04 17:57:55'),
(325,7,NULL,NULL,NULL,13,'2025-12-04 17:57:00',NULL,'live',NULL,NULL,'2025-12-04 17:57:55','2025-12-04 17:57:55'),
(326,7,NULL,NULL,NULL,13,'2025-12-04 01:30:00',NULL,'live',NULL,NULL,'2025-12-04 17:58:07','2025-12-04 18:18:04'),
(327,7,NULL,NULL,NULL,13,'2025-12-04 17:58:00',NULL,'live',NULL,NULL,'2025-12-04 17:58:29','2025-12-04 17:58:29'),
(330,NULL,NULL,38,7,14,'2025-12-04 17:59:00',NULL,'live',0,0,'2025-12-04 17:59:30','2025-12-04 17:59:30'),
(337,7,NULL,NULL,NULL,13,'2025-12-04 01:30:00',NULL,'live',NULL,NULL,'2025-12-04 18:18:04','2025-12-04 18:18:04'),
(339,7,NULL,NULL,NULL,13,'2025-12-04 21:30:00',NULL,'pending',NULL,NULL,'2025-12-04 18:18:27','2025-12-04 18:18:27'),
(341,7,NULL,NULL,NULL,13,'2025-12-04 17:59:00',NULL,'live',NULL,NULL,'2025-12-04 18:18:56','2025-12-04 18:18:56'),
(358,NULL,NULL,38,7,15,'2025-12-06 18:45:00',NULL,'live',0,0,'2025-12-06 18:45:14','2025-12-06 18:45:14'),
(359,NULL,NULL,358,51,25,'2025-12-06 18:44:00',NULL,'live',0,0,'2025-12-06 18:45:14','2025-12-06 18:45:14'),
(360,NULL,NULL,359,50,16,'2025-12-06 18:43:00',NULL,'live',0,0,'2025-12-06 18:45:14','2025-12-06 18:45:14'),
(377,NULL,NULL,358,51,25,'2025-12-06 18:56:00',NULL,'live',0,0,'2025-12-06 18:56:45','2025-12-06 18:56:45'),
(378,NULL,NULL,377,50,1,'2025-12-06 18:56:00',NULL,'live',0,0,'2025-12-06 18:56:45','2025-12-06 18:56:45'),
(379,NULL,NULL,377,50,17,'2025-12-06 18:56:00',NULL,'live',0,0,'2025-12-06 18:56:45','2025-12-06 18:56:45'),
(395,NULL,NULL,359,50,16,'2025-12-06 18:43:00',NULL,'live',0,0,'2025-12-06 19:18:57','2025-12-06 19:18:57'),
(408,NULL,NULL,359,50,17,'2025-12-06 19:22:00',NULL,'live',0,0,'2025-12-06 19:23:58','2025-12-06 19:23:58'),
(409,NULL,NULL,359,50,18,'2025-12-06 19:22:00',NULL,'live',0,0,'2025-12-06 19:23:58','2025-12-06 19:23:58'),
(410,NULL,NULL,359,50,22,'2025-12-06 19:23:00',NULL,'live',0,0,'2025-12-06 19:23:58','2025-12-06 19:23:58'),
(411,NULL,NULL,358,51,25,'2025-12-06 19:23:00',NULL,'live',0,0,'2025-12-06 19:23:58','2025-12-06 19:23:58'),
(412,NULL,NULL,411,50,18,'2025-12-06 19:23:00',NULL,'live',0,0,'2025-12-06 19:23:58','2025-12-06 19:23:58'),
(529,NULL,NULL,359,50,20,'2025-12-06 20:30:00',NULL,'live',0,0,'2025-12-06 20:31:20','2025-12-06 20:31:20'),
(530,NULL,NULL,359,50,20,'2025-12-06 20:30:00',NULL,'live',0,0,'2025-12-06 20:31:20','2025-12-06 20:31:20'),
(542,NULL,NULL,359,50,16,'2025-12-06 18:43:00',NULL,'live',0,0,'2025-12-06 20:33:04','2025-12-06 20:33:04'),
(556,NULL,NULL,555,50,1,NULL,NULL,'pending',NULL,NULL,'2025-12-07 00:22:42','2025-12-07 00:22:42'),
(567,NULL,NULL,359,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:32:56','2025-12-07 08:32:56'),
(568,NULL,NULL,359,50,17,'2025-12-07 08:28:00',NULL,'live',0,0,'2025-12-07 08:32:56','2025-12-07 08:32:56'),
(569,NULL,NULL,359,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:32:56','2025-12-07 08:32:56'),
(570,NULL,NULL,359,50,16,'2025-12-07 08:32:00',NULL,'live',0,0,'2025-12-07 08:32:56','2025-12-07 08:32:56'),
(578,NULL,NULL,358,51,25,'2025-12-06 18:44:00',NULL,'live',0,0,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(579,NULL,NULL,578,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(580,NULL,NULL,578,50,17,'2025-12-07 08:28:00',NULL,'live',0,0,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(581,NULL,NULL,578,50,16,'2025-12-07 08:32:00',NULL,'live',0,0,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(582,NULL,NULL,578,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(592,NULL,NULL,593,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:41:47','2025-12-07 08:41:49'),
(593,NULL,NULL,358,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 08:41:49','2025-12-07 08:41:49'),
(594,NULL,NULL,593,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:41:56','2025-12-07 08:41:57'),
(604,NULL,NULL,38,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(605,NULL,NULL,604,51,25,'2025-12-06 18:44:00',NULL,'live',0,0,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(606,NULL,NULL,605,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(607,NULL,NULL,605,50,17,'2025-12-07 08:28:00',NULL,'live',0,0,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(608,NULL,NULL,605,50,16,'2025-12-07 08:32:00',NULL,'live',0,0,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(609,NULL,NULL,605,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(626,NULL,NULL,605,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:48:34','2025-12-07 08:48:34'),
(632,NULL,NULL,604,51,25,'2025-12-06 18:44:00',NULL,'live',0,0,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(634,NULL,NULL,632,50,17,'2025-12-07 08:28:00',NULL,'live',0,0,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(635,NULL,NULL,632,50,16,'2025-12-07 08:32:00',NULL,'live',0,0,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(636,NULL,NULL,632,50,26,'2025-12-07 08:27:00',NULL,'live',0,0,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(648,NULL,NULL,632,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:51:18','2025-12-07 08:51:18'),
(654,NULL,NULL,604,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(655,NULL,NULL,654,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(656,NULL,NULL,654,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(657,NULL,NULL,654,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(658,NULL,NULL,654,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(665,NULL,NULL,5365,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2026-03-31 09:58:12'),
(698,NULL,NULL,5365,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2026-03-31 09:58:12'),
(699,NULL,NULL,5365,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2026-03-31 09:58:12'),
(750,NULL,NULL,38,7,6,'2025-12-07 09:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:27:22','2025-12-07 09:27:22'),
(756,NULL,NULL,755,61,27,NULL,NULL,'pending',NULL,NULL,'2025-12-07 13:55:46','2025-12-07 13:55:46'),
(761,NULL,NULL,38,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(762,NULL,NULL,761,6,1,'2025-12-07 14:21:00',NULL,'live',0,0,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(763,NULL,NULL,761,6,1,'2025-12-07 14:21:00',NULL,'live',0,0,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(764,NULL,NULL,761,6,1,'2025-12-07 14:22:00',NULL,'live',0,0,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(774,NULL,NULL,38,7,7,'2025-12-07 14:35:00',NULL,'live',NULL,NULL,'2025-12-07 14:35:29','2025-12-07 14:35:29'),
(785,NULL,NULL,38,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(786,NULL,NULL,785,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(787,NULL,NULL,786,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(788,NULL,NULL,786,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(789,NULL,NULL,786,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(790,NULL,NULL,786,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(793,NULL,NULL,6060,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2026-04-17 12:19:35'),
(794,NULL,NULL,793,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(795,NULL,NULL,794,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:54','2025-12-07 14:39:54'),
(796,NULL,NULL,794,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:54','2025-12-07 14:39:54'),
(797,NULL,NULL,794,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:54','2025-12-07 14:39:54'),
(798,NULL,NULL,794,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:54','2025-12-07 14:39:54'),
(806,NULL,NULL,761,6,1,'2025-12-07 14:21:00',NULL,'live',0,0,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(840,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2025-12-15 09:01:44','2025-12-15 09:01:44'),
(843,NULL,NULL,38,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-02-02 19:00:14','2026-02-02 19:00:14'),
(849,NULL,NULL,38,7,29,'2026-02-03 08:44:00',NULL,'live',0,0,'2026-02-03 08:44:56','2026-02-03 08:44:56'),
(850,NULL,NULL,849,6,1,'2026-02-03 08:44:00',NULL,'live',0,0,'2026-02-03 08:44:56','2026-02-03 08:44:56'),
(867,NULL,NULL,38,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-02-03 08:58:31','2026-02-03 08:58:31'),
(868,NULL,NULL,867,6,1,'2026-02-03 08:58:00',NULL,'live',0,0,'2026-02-03 08:58:31','2026-02-03 08:58:31'),
(887,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:03:29','2026-02-08 09:21:04'),
(888,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:03:29','2026-02-08 09:03:29'),
(890,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:06:20','2026-02-08 09:06:20'),
(892,8,NULL,NULL,NULL,22,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:13:59','2026-02-08 09:13:59'),
(894,8,NULL,NULL,NULL,22,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:14:32','2026-02-08 09:14:32'),
(895,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:21:04','2026-02-08 09:21:04'),
(901,NULL,NULL,887,7,2,'2026-02-08 09:21:00',NULL,'live',0,0,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(902,NULL,NULL,887,7,28,'2026-02-08 09:21:00',NULL,'live',0,0,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(903,NULL,NULL,887,7,29,'2026-02-08 09:21:00',NULL,'live',0,0,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(904,NULL,NULL,903,6,1,'2026-02-08 09:21:00',NULL,'live',0,0,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(905,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(906,NULL,NULL,905,7,2,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(907,NULL,NULL,905,7,28,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(908,NULL,NULL,905,7,29,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(909,NULL,NULL,908,6,1,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-02-08 09:21:58','2026-02-08 09:21:58'),
(911,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-02-08 09:29:50','2026-02-08 09:29:50'),
(912,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-08 10:03:48','2026-02-08 10:03:48'),
(913,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-08 10:03:48','2026-02-08 10:03:48'),
(1098,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',0,0,'2026-02-21 22:42:22','2026-02-21 22:49:52'),
(1099,NULL,NULL,1098,67,41,'2026-02-21 22:48:00',NULL,'live',0,0,'2026-02-21 22:48:17','2026-02-21 22:48:40'),
(1100,NULL,NULL,1098,67,41,'2026-02-21 22:49:00',NULL,'live',0,0,'2026-02-21 22:48:49','2026-02-21 22:49:25'),
(1101,NULL,NULL,1098,67,41,'2026-02-21 22:49:00',NULL,'live',0,0,'2026-02-21 22:49:27','2026-02-21 22:49:36'),
(1102,NULL,NULL,1098,67,41,'2026-02-21 22:49:00',NULL,'live',0,0,'2026-02-21 22:49:38','2026-02-21 22:49:48'),
(1103,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-02-21 22:49:52','2026-02-21 22:49:52'),
(1104,NULL,NULL,1103,67,41,'2026-02-21 22:48:00',NULL,'live',NULL,NULL,'2026-02-21 22:49:52','2026-02-21 22:49:52'),
(1105,NULL,NULL,1103,67,41,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-02-21 22:49:52','2026-02-21 22:49:52'),
(1106,NULL,NULL,1103,67,41,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-02-21 22:49:52','2026-02-21 22:49:52'),
(1107,NULL,NULL,1103,67,41,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-02-21 22:49:52','2026-02-21 22:49:52'),
(1108,10,NULL,NULL,NULL,40,'2026-02-21 22:56:00',NULL,'live',0,0,'2026-02-21 22:49:56','2026-02-21 22:56:39'),
(1109,NULL,NULL,1108,67,41,'2026-02-21 22:51:00',NULL,'live',0,0,'2026-02-21 22:50:56','2026-02-21 22:51:15'),
(1110,NULL,NULL,1108,67,41,'2026-02-21 22:51:00',NULL,'live',0,0,'2026-02-21 22:51:18','2026-02-21 22:51:27'),
(1111,NULL,NULL,1108,67,41,'2026-02-21 22:51:00',NULL,'live',0,0,'2026-02-21 22:51:28','2026-02-21 22:51:44'),
(1112,NULL,NULL,1108,67,41,'2026-02-21 22:51:00',NULL,'live',0,0,'2026-02-21 22:51:49','2026-02-21 22:51:56'),
(1113,10,NULL,NULL,NULL,40,'2026-02-21 22:56:00',NULL,'live',NULL,NULL,'2026-02-21 22:56:39','2026-02-21 22:56:39'),
(1114,NULL,NULL,1113,67,41,'2026-02-21 22:51:00',NULL,'live',NULL,NULL,'2026-02-21 22:56:39','2026-02-21 22:56:39'),
(1115,NULL,NULL,1113,67,41,'2026-02-21 22:51:00',NULL,'live',NULL,NULL,'2026-02-21 22:56:39','2026-02-21 22:56:39'),
(1116,NULL,NULL,1113,67,41,'2026-02-21 22:51:00',NULL,'live',NULL,NULL,'2026-02-21 22:56:39','2026-02-21 22:56:39'),
(1117,NULL,NULL,1113,67,41,'2026-02-21 22:51:00',NULL,'live',NULL,NULL,'2026-02-21 22:56:39','2026-02-21 22:56:39'),
(1118,10,NULL,NULL,NULL,40,'2026-02-21 22:58:00',NULL,'live',0,0,'2026-02-21 22:56:49','2026-02-21 22:58:49'),
(1119,NULL,NULL,1118,67,41,'2026-02-21 22:58:00',NULL,'live',0,0,'2026-02-21 22:57:36','2026-02-21 22:58:21'),
(1120,NULL,NULL,1118,67,41,'2026-02-21 22:58:00',NULL,'live',0,0,'2026-02-21 22:58:23','2026-02-21 22:58:30'),
(1121,NULL,NULL,1118,67,41,'2026-02-21 22:58:00',NULL,'live',0,0,'2026-02-21 22:58:33','2026-02-21 22:58:41'),
(1122,NULL,NULL,1118,67,41,'2026-02-21 22:58:00',NULL,'live',0,0,'2026-02-21 22:58:43','2026-02-21 22:58:48'),
(1123,10,NULL,NULL,NULL,40,'2026-02-21 22:58:00',NULL,'live',NULL,NULL,'2026-02-21 22:58:49','2026-02-21 22:58:49'),
(1124,NULL,NULL,1123,67,41,'2026-02-21 22:58:00',NULL,'live',NULL,NULL,'2026-02-21 22:58:49','2026-02-21 22:58:49'),
(1125,NULL,NULL,1123,67,41,'2026-02-21 22:58:00',NULL,'live',NULL,NULL,'2026-02-21 22:58:49','2026-02-21 22:58:49'),
(1126,NULL,NULL,1123,67,41,'2026-02-21 22:58:00',NULL,'live',NULL,NULL,'2026-02-21 22:58:49','2026-02-21 22:58:49'),
(1127,NULL,NULL,1123,67,41,'2026-02-21 22:58:00',NULL,'live',NULL,NULL,'2026-02-21 22:58:49','2026-02-21 22:58:49'),
(1128,10,NULL,NULL,NULL,40,'2026-02-21 22:59:00',NULL,'live',0,0,'2026-02-21 22:58:58','2026-02-21 22:59:24'),
(1129,NULL,NULL,1128,67,41,'2026-02-21 22:59:00',NULL,'live',0,0,'2026-02-21 22:59:17','2026-02-21 22:59:22'),
(1130,10,NULL,NULL,NULL,40,'2026-02-21 22:59:00',NULL,'live',NULL,NULL,'2026-02-21 22:59:24','2026-02-21 22:59:24'),
(1131,NULL,NULL,1130,67,41,'2026-02-21 22:59:00',NULL,'live',NULL,NULL,'2026-02-21 22:59:24','2026-02-21 22:59:24'),
(1132,10,NULL,NULL,NULL,40,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-02-21 22:59:46','2026-02-21 23:00:22'),
(1133,NULL,NULL,1132,67,41,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-02-21 23:00:15','2026-02-21 23:00:21'),
(1134,10,NULL,NULL,NULL,40,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-02-21 23:00:22','2026-02-21 23:00:22'),
(1135,NULL,NULL,1134,67,41,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-02-21 23:00:22','2026-02-21 23:00:22'),
(1285,1,NULL,NULL,NULL,1,'2026-02-22 00:41:32',NULL,'live',NULL,NULL,'2026-02-22 00:41:32','2026-02-22 00:41:32'),
(1286,1,NULL,NULL,NULL,4,'2026-02-22 00:42:00',NULL,'live',0,0,'2026-02-22 00:42:05','2026-02-22 00:42:18'),
(1288,1,NULL,NULL,NULL,4,'2026-02-22 00:42:00',NULL,'live',NULL,NULL,'2026-02-22 00:42:18','2026-02-22 00:42:18'),
(1289,11,NULL,NULL,NULL,43,'2026-02-22 00:43:04',NULL,'live',NULL,NULL,'2026-02-22 00:43:04','2026-02-22 00:43:04'),
(1367,NULL,NULL,912,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:16:09','2026-02-22 22:16:09'),
(1368,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-22 22:16:09','2026-02-22 22:16:09'),
(1369,NULL,NULL,1368,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:16:09','2026-02-22 22:16:09'),
(1372,NULL,NULL,912,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-02-22 22:17:14','2026-02-22 22:17:14'),
(1373,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:14','2026-02-22 22:17:14'),
(1374,NULL,NULL,1373,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:14','2026-02-22 22:17:14'),
(1385,NULL,NULL,912,7,39,'2026-02-21 16:18:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1386,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1387,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1388,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1389,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1390,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1391,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1392,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1393,NULL,NULL,1385,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1394,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1395,NULL,NULL,1394,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1396,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1397,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1398,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1399,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1400,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1401,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1402,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1403,NULL,NULL,1395,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 22:17:43','2026-02-22 22:17:43'),
(1407,NULL,NULL,912,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-02-22 22:19:04','2026-02-22 22:19:04'),
(1408,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-22 22:19:04','2026-02-22 22:19:04'),
(1409,NULL,NULL,1408,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:19:04','2026-02-22 22:19:04'),
(1410,NULL,NULL,1408,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-02-22 22:19:04','2026-02-22 22:19:04'),
(1415,1,NULL,NULL,NULL,4,'2026-02-24 13:58:47',NULL,'live',NULL,NULL,'2026-02-24 13:58:47','2026-02-24 13:58:47'),
(1416,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-02-24 14:00:57','2026-02-24 14:00:57'),
(1417,12,NULL,NULL,NULL,5,'2026-02-24 14:02:00',NULL,'live',NULL,NULL,'2026-02-24 14:02:21','2026-02-24 14:02:21'),
(1418,12,NULL,NULL,NULL,5,'2026-02-24 14:02:00',NULL,'live',NULL,NULL,'2026-02-24 14:02:21','2026-02-24 14:02:21'),
(1419,1,NULL,NULL,NULL,4,'2026-02-24 14:06:01',NULL,'live',NULL,NULL,'2026-02-24 14:06:01','2026-02-24 14:06:01'),
(1424,12,NULL,NULL,NULL,5,'2026-02-24 14:02:00',NULL,'live',NULL,NULL,'2026-02-24 14:39:56','2026-02-24 14:39:56'),
(1425,NULL,NULL,1424,7,6,NULL,NULL,'pending',NULL,NULL,'2026-02-24 14:39:56','2026-02-24 14:39:56'),
(1426,6,NULL,NULL,NULL,3,'2026-02-24 14:40:26',NULL,'live',NULL,NULL,'2026-02-24 14:40:26','2026-02-24 14:40:26'),
(1427,7,NULL,NULL,NULL,13,'2026-02-24 14:41:32',NULL,'live',NULL,NULL,'2026-02-24 14:41:32','2026-02-24 14:41:32'),
(1440,11,NULL,NULL,NULL,43,'2026-02-24 14:59:43',NULL,'live',NULL,NULL,'2026-02-24 14:59:43','2026-02-24 14:59:43'),
(1951,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1952,NULL,NULL,1951,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1953,NULL,NULL,1951,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1957,NULL,NULL,1953,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1958,NULL,NULL,1951,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1963,NULL,NULL,1951,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1964,NULL,NULL,1951,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1965,NULL,NULL,1951,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1966,NULL,NULL,1951,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1967,NULL,NULL,1966,63,30,'2026-03-02 21:26:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1968,NULL,NULL,1966,63,30,'2026-03-02 21:26:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1969,NULL,NULL,1966,63,30,'2026-03-02 21:27:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1970,NULL,NULL,1966,63,30,'2026-03-02 21:27:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1971,NULL,NULL,1966,63,30,'2026-03-02 21:28:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1972,NULL,NULL,1966,63,30,'2026-03-02 21:28:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1973,NULL,NULL,1966,63,30,'2026-03-02 21:28:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1974,NULL,NULL,1966,63,30,'2026-03-02 21:28:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1975,NULL,NULL,1966,63,30,'2026-03-02 21:29:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1976,NULL,NULL,1966,63,30,'2026-03-02 21:29:00',NULL,'live',0,0,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1977,NULL,NULL,1951,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1992,NULL,NULL,3707,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-04-20 19:18:25'),
(2004,NULL,NULL,3707,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-04-20 19:18:25'),
(2020,NULL,NULL,1951,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2061,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2064,NULL,NULL,3707,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-04-20 19:18:25'),
(2065,NULL,NULL,3707,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-04-20 19:18:25'),
(2076,NULL,NULL,2065,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2080,NULL,NULL,3707,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:05:29','2026-04-20 19:18:25'),
(3086,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3087,NULL,NULL,3086,7,34,'2026-02-21 15:07:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3088,NULL,NULL,3086,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3089,NULL,NULL,3086,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3090,NULL,NULL,3086,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3091,NULL,NULL,3086,7,44,'2026-03-02 20:03:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3092,NULL,NULL,3086,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3093,NULL,NULL,3086,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3094,NULL,NULL,3093,63,30,'2026-03-03 08:54:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3095,NULL,NULL,3093,63,30,'2026-03-03 08:54:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3096,NULL,NULL,3093,63,30,'2026-03-03 08:54:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3097,NULL,NULL,3093,63,30,'2026-03-03 08:54:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3098,NULL,NULL,3093,63,30,'2026-03-03 08:55:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3099,NULL,NULL,3093,63,30,'2026-03-03 08:55:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3100,NULL,NULL,3093,63,30,'2026-03-03 08:55:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3101,NULL,NULL,3093,63,30,'2026-03-03 08:55:00',NULL,'live',0,0,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3102,NULL,NULL,3086,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 08:56:36','2026-03-03 08:56:36'),
(3116,NULL,NULL,3093,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3117,NULL,NULL,3093,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3118,NULL,NULL,3093,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3119,NULL,NULL,3093,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3120,NULL,NULL,3093,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3121,NULL,NULL,3093,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3122,NULL,NULL,3093,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:12','2026-03-03 09:03:12'),
(3123,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3124,NULL,NULL,3123,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3125,NULL,NULL,3123,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3126,NULL,NULL,3123,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3127,NULL,NULL,3123,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3128,NULL,NULL,3123,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3129,NULL,NULL,3123,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3130,NULL,NULL,3123,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3131,NULL,NULL,3130,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3132,NULL,NULL,3130,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3133,NULL,NULL,3130,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3134,NULL,NULL,3130,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3135,NULL,NULL,3130,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3136,NULL,NULL,3130,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3137,NULL,NULL,3130,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3138,NULL,NULL,3123,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 09:03:13','2026-03-03 09:03:13'),
(3317,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 10:24:16','2026-03-03 10:24:16'),
(3318,NULL,NULL,3317,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 10:24:16','2026-03-03 10:24:16'),
(3333,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 10:25:22','2026-03-03 10:25:22'),
(3334,NULL,NULL,3333,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 10:25:22','2026-03-03 10:25:22'),
(3552,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:30:25','2026-03-13 11:30:25'),
(3553,NULL,NULL,3552,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:30:26','2026-03-13 11:30:26'),
(3555,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:31:02','2026-03-13 11:31:02'),
(3558,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:34:18','2026-03-13 11:34:18'),
(3559,NULL,NULL,3558,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:34:18','2026-03-13 11:34:18'),
(3562,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:35:42','2026-03-13 11:35:42'),
(3563,NULL,NULL,3562,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:35:42','2026-03-13 11:35:42'),
(3566,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:36:45','2026-03-13 11:36:45'),
(3567,NULL,NULL,3566,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:36:45','2026-03-13 11:36:45'),
(3571,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:39:15','2026-03-13 11:39:15'),
(3572,NULL,NULL,3571,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:39:15','2026-03-13 11:39:15'),
(3575,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:39:40','2026-03-13 11:39:40'),
(3576,NULL,NULL,3575,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:39:40','2026-03-13 11:39:40'),
(3579,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:40:37','2026-03-13 11:40:37'),
(3580,NULL,NULL,3579,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:40:37','2026-03-13 11:40:37'),
(3583,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:42:34','2026-03-13 11:42:34'),
(3584,NULL,NULL,3583,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:42:34','2026-03-13 11:42:34'),
(3587,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:43:07','2026-03-13 11:43:07'),
(3588,NULL,NULL,3587,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:43:07','2026-03-13 11:43:07'),
(3591,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:43:37','2026-03-13 11:43:37'),
(3592,NULL,NULL,3591,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:43:37','2026-03-13 11:43:37'),
(3595,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:46:15','2026-03-13 11:46:15'),
(3596,NULL,NULL,3595,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:46:15','2026-03-13 11:46:15'),
(3598,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:46:36','2026-03-13 11:46:36'),
(3601,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:49:10','2026-03-13 11:49:10'),
(3602,NULL,NULL,3601,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:49:10','2026-03-13 11:49:10'),
(3605,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:50:00','2026-03-13 11:50:00'),
(3606,NULL,NULL,3605,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:50:00','2026-03-13 11:50:00'),
(3609,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:50:32','2026-03-13 11:50:32'),
(3610,NULL,NULL,3609,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:50:32','2026-03-13 11:50:32'),
(3613,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:51:33','2026-03-13 11:51:33'),
(3614,NULL,NULL,3613,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:51:33','2026-03-13 11:51:33'),
(3617,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:52:02','2026-03-13 11:52:02'),
(3618,NULL,NULL,3617,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:52:02','2026-03-13 11:52:02'),
(3621,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:52:28','2026-03-13 11:52:28'),
(3622,NULL,NULL,3621,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:52:28','2026-03-13 11:52:28'),
(3625,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:53:11','2026-03-13 11:53:11'),
(3626,NULL,NULL,3625,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:53:11','2026-03-13 11:53:11'),
(3629,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:55:42','2026-03-13 11:55:42'),
(3630,NULL,NULL,3629,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:55:42','2026-03-13 11:55:42'),
(3633,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:55:57','2026-03-13 11:55:57'),
(3634,NULL,NULL,3633,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:55:57','2026-03-13 11:55:57'),
(3637,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 11:58:18','2026-03-13 11:58:18'),
(3638,NULL,NULL,3637,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 11:58:18','2026-03-13 11:58:18'),
(3649,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3650,NULL,NULL,3649,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3651,NULL,NULL,3650,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3652,NULL,NULL,3650,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3653,NULL,NULL,3650,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3654,NULL,NULL,3650,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3655,NULL,NULL,3650,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3656,NULL,NULL,3650,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3657,NULL,NULL,3650,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-03-13 12:04:50','2026-03-13 12:04:50'),
(3660,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 12:06:39','2026-03-13 12:06:39'),
(3661,NULL,NULL,3660,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-13 12:06:39','2026-03-13 12:06:39'),
(3664,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-13 12:07:08','2026-03-13 12:07:08'),
(3665,NULL,NULL,3664,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-13 12:07:08','2026-03-13 12:07:08'),
(3679,NULL,NULL,3707,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-13 12:13:03','2026-04-20 19:18:25'),
(3688,NULL,NULL,3707,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-13 12:15:02','2026-04-20 19:18:25'),
(3692,NULL,NULL,3688,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-13 12:15:02','2026-03-13 12:15:02'),
(3707,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 12:22:20','2026-03-13 12:22:20'),
(3708,NULL,NULL,3707,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-13 12:22:20','2026-03-13 12:22:20'),
(3711,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 12:22:51','2026-03-13 12:22:51'),
(3712,NULL,NULL,3711,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-13 12:22:51','2026-03-13 12:22:51'),
(3715,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 12:25:10','2026-03-13 12:25:10'),
(3716,NULL,NULL,3715,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 12:25:10','2026-03-13 12:25:10'),
(3719,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 12:25:43','2026-03-13 12:25:43'),
(3720,NULL,NULL,3719,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 12:25:43','2026-03-13 12:25:43'),
(3723,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 12:27:05','2026-03-13 12:27:05'),
(3724,NULL,NULL,3723,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 12:27:05','2026-03-13 12:27:05'),
(3727,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:05:35','2026-03-13 13:05:35'),
(3728,NULL,NULL,3727,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 13:05:35','2026-03-13 13:05:35'),
(3731,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:06:01','2026-03-13 13:06:01'),
(3732,NULL,NULL,3731,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 13:06:02','2026-03-13 13:06:02'),
(3737,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:14:19','2026-03-13 13:14:19'),
(3738,NULL,NULL,3737,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-13 13:14:19','2026-03-13 13:14:19'),
(3741,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:15:15','2026-03-13 13:15:15'),
(3742,NULL,NULL,3741,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-13 13:15:15','2026-03-13 13:15:15'),
(3756,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:18:52','2026-03-13 13:18:52'),
(3757,NULL,NULL,3756,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-13 13:18:53','2026-03-13 13:18:53'),
(3768,NULL,NULL,3757,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-13 13:18:53','2026-03-13 13:18:53'),
(3771,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:20:35','2026-03-13 13:20:35'),
(3772,NULL,NULL,3771,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-13 13:20:35','2026-03-13 13:20:35'),
(3775,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:25:08','2026-03-13 13:25:08'),
(3776,NULL,NULL,3775,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-13 13:25:08','2026-03-13 13:25:08'),
(3783,NULL,NULL,1953,64,33,'2026-03-13 13:25:00',NULL,'live',0,0,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3784,NULL,NULL,1953,64,33,'2026-03-13 13:25:00',NULL,'live',0,0,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3785,NULL,NULL,1953,64,33,'2026-03-13 13:26:00',NULL,'live',0,0,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3786,NULL,NULL,1953,64,33,'2026-03-13 13:26:00',NULL,'live',0,0,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3787,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3788,NULL,NULL,3787,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3789,NULL,NULL,3788,64,33,'2026-03-13 13:25:00',NULL,'live',NULL,NULL,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3790,NULL,NULL,3788,64,33,'2026-03-13 13:25:00',NULL,'live',NULL,NULL,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3791,NULL,NULL,3788,64,33,'2026-03-13 13:26:00',NULL,'live',NULL,NULL,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3792,NULL,NULL,3788,64,33,'2026-03-13 13:26:00',NULL,'live',NULL,NULL,'2026-03-13 13:26:17','2026-03-13 13:26:17'),
(3793,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3794,NULL,NULL,3793,7,34,'2026-02-21 15:07:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3795,NULL,NULL,3793,7,31,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3796,NULL,NULL,3795,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3797,NULL,NULL,3795,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3798,NULL,NULL,3795,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3799,NULL,NULL,3795,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3800,NULL,NULL,3795,64,33,'2026-03-13 13:25:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3801,NULL,NULL,3795,64,33,'2026-03-13 13:25:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3802,NULL,NULL,3795,64,33,'2026-03-13 13:26:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3803,NULL,NULL,3795,64,33,'2026-03-13 13:26:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3804,NULL,NULL,3793,7,36,'2026-02-21 15:48:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3805,NULL,NULL,3804,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3806,NULL,NULL,3804,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3807,NULL,NULL,3804,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3808,NULL,NULL,3804,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3809,NULL,NULL,3793,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3810,NULL,NULL,3793,7,38,'2026-02-21 16:00:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3811,NULL,NULL,3793,7,6,'2026-02-21 16:08:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3812,NULL,NULL,3793,7,39,'2026-02-21 16:18:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3813,NULL,NULL,3812,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3814,NULL,NULL,3812,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3815,NULL,NULL,3812,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3816,NULL,NULL,3812,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3817,NULL,NULL,3812,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3818,NULL,NULL,3812,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3819,NULL,NULL,3812,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3820,NULL,NULL,3812,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3821,NULL,NULL,3812,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3822,NULL,NULL,3812,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3823,NULL,NULL,3812,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3824,NULL,NULL,3793,7,44,'2026-03-02 20:03:00',NULL,'live',0,0,'2026-03-13 13:40:59','2026-03-13 13:40:59'),
(3825,NULL,NULL,3793,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-13 13:43:57','2026-03-13 13:43:57'),
(3826,NULL,NULL,3793,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-13 13:45:43','2026-03-13 13:45:43'),
(3827,NULL,NULL,3826,63,30,NULL,NULL,'pending',NULL,NULL,'2026-03-13 13:45:43','2026-03-13 13:45:43'),
(3857,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 19:30:28','2026-03-16 19:30:28'),
(3858,NULL,NULL,3857,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-16 19:30:28','2026-03-16 19:30:28'),
(3859,NULL,NULL,3857,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 19:30:28','2026-03-16 19:30:28'),
(3860,NULL,NULL,3859,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 19:30:28','2026-03-16 19:30:28'),
(3878,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 19:53:23','2026-03-16 19:53:23'),
(3879,NULL,NULL,3878,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-16 19:53:23','2026-03-16 19:53:23'),
(3884,NULL,NULL,3878,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 19:53:23','2026-03-16 19:53:23'),
(3885,NULL,NULL,3878,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-16 19:53:23','2026-03-16 19:53:23'),
(3899,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:02:49','2026-03-16 20:02:49'),
(3900,NULL,NULL,3899,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 20:02:49','2026-03-16 20:02:49'),
(3901,NULL,NULL,3899,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-16 20:02:49','2026-03-16 20:02:49'),
(3906,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-16 20:09:35','2026-03-16 20:19:17'),
(3918,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:17','2026-03-16 20:19:17'),
(3919,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:17','2026-03-16 20:19:17'),
(3920,NULL,NULL,3919,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:17','2026-03-16 20:19:17'),
(3923,NULL,NULL,3920,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:17','2026-03-16 20:19:17'),
(3924,NULL,NULL,3920,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:17','2026-03-16 20:19:17'),
(3926,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:39','2026-03-16 20:19:39'),
(3928,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:19:47','2026-03-16 20:19:47'),
(3929,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-16 20:20:20','2026-03-16 20:22:17'),
(3937,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3938,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3939,NULL,NULL,3938,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3940,NULL,NULL,3939,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3941,NULL,NULL,3939,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3942,NULL,NULL,3939,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3943,NULL,NULL,3939,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3944,NULL,NULL,3938,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 20:22:17','2026-03-16 20:22:17'),
(3947,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:27:20','2026-03-16 20:27:20'),
(3948,NULL,NULL,3947,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-16 20:27:20','2026-03-16 20:27:20'),
(3951,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 20:28:39','2026-03-16 20:28:39'),
(3952,NULL,NULL,3951,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-16 20:28:39','2026-03-16 20:28:39'),
(3960,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 21:36:18','2026-03-16 21:36:18'),
(3961,NULL,NULL,3960,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 21:36:18','2026-03-16 21:36:18'),
(3962,NULL,NULL,3960,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-16 21:36:18','2026-03-16 21:36:18'),
(3963,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 21:36:20','2026-03-16 21:36:20'),
(3968,NULL,NULL,1953,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3969,NULL,NULL,1953,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3970,NULL,NULL,1953,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3971,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3972,NULL,NULL,3971,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3973,NULL,NULL,3972,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3974,NULL,NULL,3972,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3975,NULL,NULL,3972,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3976,NULL,NULL,3972,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-16 21:39:46','2026-03-16 21:39:46'),
(3979,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 21:40:56','2026-03-16 21:40:56'),
(3980,NULL,NULL,3979,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-16 21:40:56','2026-03-16 21:40:56'),
(3982,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 21:46:29','2026-03-16 21:46:29'),
(3983,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-16 21:46:45','2026-03-16 21:46:45'),
(3992,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-16 22:29:01','2026-03-16 22:29:01'),
(3993,NULL,NULL,3992,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:29:01','2026-03-16 22:29:01'),
(3994,NULL,NULL,3992,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:29:01','2026-03-16 22:29:01'),
(3995,NULL,NULL,3992,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:29:01','2026-03-16 22:29:01'),
(3996,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-16 22:29:04','2026-03-16 22:29:04'),
(3998,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-16 22:36:04','2026-03-16 22:36:04'),
(4001,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-16 22:40:44','2026-03-16 22:40:44'),
(4002,NULL,NULL,4001,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:40:44','2026-03-16 22:40:44'),
(4003,NULL,NULL,4001,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:40:44','2026-03-16 22:40:44'),
(4007,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-16 22:42:09','2026-03-16 22:42:09'),
(4008,NULL,NULL,4007,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:42:09','2026-03-16 22:42:09'),
(4011,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-16 22:43:31','2026-03-16 22:43:31'),
(4012,NULL,NULL,4011,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-16 22:43:31','2026-03-16 22:43:31'),
(4016,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-17 10:08:43','2026-03-17 10:08:43'),
(4017,NULL,NULL,4016,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-17 10:08:43','2026-03-17 10:08:43'),
(4021,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-17 11:28:19','2026-03-17 11:28:19'),
(4024,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-17 12:52:41','2026-03-17 12:52:41'),
(4025,NULL,NULL,4024,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-17 12:52:41','2026-03-17 12:52:41'),
(4026,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4027,NULL,NULL,4026,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4028,NULL,NULL,4026,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4029,NULL,NULL,4028,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4030,NULL,NULL,4028,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4031,NULL,NULL,4028,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4032,NULL,NULL,4028,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4033,NULL,NULL,4026,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4034,NULL,NULL,4033,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4035,NULL,NULL,4033,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4036,NULL,NULL,4033,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4037,NULL,NULL,4033,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4038,NULL,NULL,4026,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4039,NULL,NULL,4026,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4040,NULL,NULL,4026,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4041,NULL,NULL,4026,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4042,NULL,NULL,4041,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4043,NULL,NULL,4041,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4044,NULL,NULL,4041,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4045,NULL,NULL,4041,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4046,NULL,NULL,4041,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4047,NULL,NULL,4041,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4048,NULL,NULL,4041,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4049,NULL,NULL,4041,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4050,NULL,NULL,4041,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4051,NULL,NULL,4041,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4052,NULL,NULL,4041,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4053,NULL,NULL,4026,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:16:31','2026-03-18 10:16:31'),
(4054,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4055,NULL,NULL,4054,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4056,NULL,NULL,4054,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4057,NULL,NULL,4056,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4058,NULL,NULL,4056,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4059,NULL,NULL,4056,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4060,NULL,NULL,4056,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4061,NULL,NULL,4054,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4062,NULL,NULL,4061,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4063,NULL,NULL,4061,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4064,NULL,NULL,4061,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4065,NULL,NULL,4061,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4066,NULL,NULL,4054,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4067,NULL,NULL,4054,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4068,NULL,NULL,4054,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4069,NULL,NULL,4054,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4070,NULL,NULL,4069,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4071,NULL,NULL,4069,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4072,NULL,NULL,4069,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4073,NULL,NULL,4069,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4074,NULL,NULL,4069,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4075,NULL,NULL,4069,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4076,NULL,NULL,4069,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4077,NULL,NULL,4069,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4078,NULL,NULL,4069,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4079,NULL,NULL,4069,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4080,NULL,NULL,4069,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4081,NULL,NULL,4054,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-18 10:17:07','2026-03-18 10:17:07'),
(4108,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4109,NULL,NULL,4108,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4110,NULL,NULL,4108,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4111,NULL,NULL,4110,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4112,NULL,NULL,4110,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4113,NULL,NULL,4110,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4114,NULL,NULL,4110,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4115,NULL,NULL,4108,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4116,NULL,NULL,4108,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 11:20:58','2026-03-18 11:20:58'),
(4124,NULL,NULL,5200,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-18 11:45:10','2026-03-29 10:07:48'),
(4125,NULL,NULL,5200,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-18 11:45:10','2026-03-29 10:07:48'),
(4153,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 12:09:17','2026-03-18 12:09:17'),
(4154,NULL,NULL,4153,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 12:09:17','2026-03-18 12:09:17'),
(4171,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 16:28:35','2026-03-18 16:28:35'),
(4172,NULL,NULL,4171,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 16:28:35','2026-03-18 16:28:35'),
(4173,NULL,NULL,4033,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 16:29:25','2026-03-18 16:29:25'),
(4174,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 16:29:26','2026-03-18 16:29:26'),
(4175,NULL,NULL,4174,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 16:29:26','2026-03-18 16:29:26'),
(4176,NULL,NULL,4175,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 16:29:26','2026-03-18 16:29:26'),
(4180,NULL,NULL,4174,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 16:29:26','2026-03-18 16:29:26'),
(4181,NULL,NULL,4174,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 16:29:26','2026-03-18 16:29:26'),
(4184,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 16:30:09','2026-03-18 16:30:09'),
(4185,NULL,NULL,4184,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 16:30:09','2026-03-18 16:30:09'),
(4188,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 16:30:45','2026-03-18 16:30:45'),
(4189,NULL,NULL,4188,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 16:30:45','2026-03-18 16:30:45'),
(4192,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 16:31:16','2026-03-18 16:31:16'),
(4193,NULL,NULL,4192,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 16:31:16','2026-03-18 16:31:16'),
(4199,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:40','2026-03-18 22:34:40'),
(4200,NULL,NULL,4199,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:40','2026-03-18 22:34:40'),
(4201,NULL,NULL,4199,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:40','2026-03-18 22:34:40'),
(4202,NULL,NULL,4199,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:40','2026-03-18 22:34:40'),
(4203,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4204,NULL,NULL,4203,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4205,NULL,NULL,4203,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4206,NULL,NULL,4205,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4207,NULL,NULL,4205,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4208,NULL,NULL,4205,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4209,NULL,NULL,4205,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4210,NULL,NULL,4203,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4211,NULL,NULL,4210,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4212,NULL,NULL,4210,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4213,NULL,NULL,4210,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4214,NULL,NULL,4210,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4215,NULL,NULL,4203,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4216,NULL,NULL,4203,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4217,NULL,NULL,4203,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4218,NULL,NULL,4203,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4220,NULL,NULL,4218,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4221,NULL,NULL,4218,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4223,NULL,NULL,4218,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4224,NULL,NULL,4218,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4225,NULL,NULL,4218,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4226,NULL,NULL,4218,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4227,NULL,NULL,4218,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4228,NULL,NULL,4218,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4229,NULL,NULL,4218,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4230,NULL,NULL,4203,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:34:51','2026-03-18 22:34:51'),
(4244,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4245,NULL,NULL,4244,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4246,NULL,NULL,4244,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4247,NULL,NULL,4246,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4248,NULL,NULL,4246,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4249,NULL,NULL,4246,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4250,NULL,NULL,4246,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4251,NULL,NULL,4244,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4252,NULL,NULL,4251,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4253,NULL,NULL,4251,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4254,NULL,NULL,4251,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4255,NULL,NULL,4251,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4256,NULL,NULL,4244,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4257,NULL,NULL,4244,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4258,NULL,NULL,4244,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4259,NULL,NULL,4244,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4261,NULL,NULL,4259,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4262,NULL,NULL,4259,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4264,NULL,NULL,4259,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4265,NULL,NULL,4259,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4266,NULL,NULL,4259,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4267,NULL,NULL,4259,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4268,NULL,NULL,4259,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4269,NULL,NULL,4259,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:09','2026-03-18 22:49:09'),
(4270,NULL,NULL,4259,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:10','2026-03-18 22:49:10'),
(4271,NULL,NULL,4244,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-18 22:49:10','2026-03-18 22:49:10'),
(4284,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4285,NULL,NULL,4284,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4286,NULL,NULL,4284,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4288,NULL,NULL,4286,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4289,NULL,NULL,4286,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4291,NULL,NULL,4286,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4292,NULL,NULL,4286,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4293,NULL,NULL,4286,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4294,NULL,NULL,4286,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4295,NULL,NULL,4286,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:22','2026-03-18 23:00:22'),
(4296,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:26','2026-03-18 23:00:26'),
(4298,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:00:53','2026-03-18 23:00:53'),
(4301,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:04:29','2026-03-18 23:04:29'),
(4302,NULL,NULL,4301,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 23:04:29','2026-03-18 23:04:29'),
(4303,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4304,NULL,NULL,4303,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4305,NULL,NULL,4303,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4306,NULL,NULL,4305,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4307,NULL,NULL,4305,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4308,NULL,NULL,4305,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4309,NULL,NULL,4305,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4310,NULL,NULL,4303,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4311,NULL,NULL,4310,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4315,NULL,NULL,4303,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4316,NULL,NULL,4303,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4317,NULL,NULL,4303,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4318,NULL,NULL,4303,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4319,NULL,NULL,4318,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4320,NULL,NULL,4318,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4321,NULL,NULL,4318,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4322,NULL,NULL,4318,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4323,NULL,NULL,4318,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4324,NULL,NULL,4318,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4325,NULL,NULL,4318,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4326,NULL,NULL,4318,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4327,NULL,NULL,4318,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4328,NULL,NULL,4303,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:21','2026-03-18 23:06:21'),
(4329,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4330,NULL,NULL,4329,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4331,NULL,NULL,4329,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4332,NULL,NULL,4331,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4333,NULL,NULL,4331,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4334,NULL,NULL,4331,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4335,NULL,NULL,4331,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4336,NULL,NULL,4329,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4337,NULL,NULL,4336,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4341,NULL,NULL,4329,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4342,NULL,NULL,4329,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4343,NULL,NULL,4329,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4344,NULL,NULL,4329,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4345,NULL,NULL,4344,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4346,NULL,NULL,4344,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4347,NULL,NULL,4344,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4348,NULL,NULL,4344,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4349,NULL,NULL,4344,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4350,NULL,NULL,4344,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4351,NULL,NULL,4344,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4352,NULL,NULL,4344,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4353,NULL,NULL,4344,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4354,NULL,NULL,4329,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:06:51','2026-03-18 23:06:51'),
(4376,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4377,NULL,NULL,4376,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4378,NULL,NULL,4376,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4379,NULL,NULL,4378,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4380,NULL,NULL,4378,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4381,NULL,NULL,4378,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4382,NULL,NULL,4378,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4383,NULL,NULL,4376,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4384,NULL,NULL,4383,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:10','2026-03-18 23:26:10'),
(4388,NULL,NULL,4376,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:11','2026-03-18 23:26:11'),
(4389,NULL,NULL,4376,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-18 23:26:11','2026-03-18 23:26:11'),
(4402,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4403,NULL,NULL,4402,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4404,NULL,NULL,4403,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4405,NULL,NULL,4403,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4406,NULL,NULL,4403,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4407,NULL,NULL,4403,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4408,NULL,NULL,4403,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4409,NULL,NULL,4403,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4410,NULL,NULL,4403,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4411,NULL,NULL,4403,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4412,NULL,NULL,4403,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-18 23:30:34','2026-03-18 23:30:34'),
(4418,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4419,NULL,NULL,4418,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4420,NULL,NULL,4418,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4421,NULL,NULL,4420,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4422,NULL,NULL,4420,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4423,NULL,NULL,4420,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4424,NULL,NULL,4420,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4425,NULL,NULL,4418,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4426,NULL,NULL,4425,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4427,NULL,NULL,4425,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4428,NULL,NULL,4425,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4429,NULL,NULL,4425,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4430,NULL,NULL,4418,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4431,NULL,NULL,4418,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4432,NULL,NULL,4418,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4433,NULL,NULL,4418,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4435,NULL,NULL,4433,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4436,NULL,NULL,4433,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:35','2026-03-19 10:14:35'),
(4444,NULL,NULL,4433,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 10:14:36','2026-03-19 10:14:36'),
(4445,NULL,NULL,4418,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 10:14:36','2026-03-19 10:14:36'),
(4473,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4474,NULL,NULL,4473,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4475,NULL,NULL,4473,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4476,NULL,NULL,4475,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4477,NULL,NULL,4475,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4478,NULL,NULL,4475,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4479,NULL,NULL,4475,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4480,NULL,NULL,4473,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4481,NULL,NULL,4480,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4482,NULL,NULL,4480,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4483,NULL,NULL,4480,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4484,NULL,NULL,4480,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4485,NULL,NULL,4473,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4486,NULL,NULL,4473,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4487,NULL,NULL,4473,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4488,NULL,NULL,4473,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4490,NULL,NULL,4488,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4491,NULL,NULL,4488,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4499,NULL,NULL,4473,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:09','2026-03-19 10:32:09'),
(4501,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 10:32:28','2026-03-19 10:32:28'),
(4502,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:21','2026-03-19 10:33:21'),
(4503,NULL,NULL,4502,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:21','2026-03-19 10:33:21'),
(4504,NULL,NULL,4502,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:21','2026-03-19 10:33:21'),
(4505,NULL,NULL,4504,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:21','2026-03-19 10:33:21'),
(4506,NULL,NULL,4504,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4507,NULL,NULL,4504,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4508,NULL,NULL,4504,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4509,NULL,NULL,4502,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4510,NULL,NULL,4509,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4511,NULL,NULL,4509,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4512,NULL,NULL,4509,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4513,NULL,NULL,4509,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4514,NULL,NULL,4502,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4515,NULL,NULL,4502,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4516,NULL,NULL,4502,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4517,NULL,NULL,4502,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4518,NULL,NULL,4517,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4519,NULL,NULL,4517,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4520,NULL,NULL,4517,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4521,NULL,NULL,4517,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4522,NULL,NULL,4517,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4523,NULL,NULL,4517,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4524,NULL,NULL,4517,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4525,NULL,NULL,4517,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4526,NULL,NULL,4517,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4527,NULL,NULL,4517,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4528,NULL,NULL,4517,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4529,NULL,NULL,4502,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 10:33:22','2026-03-19 10:33:22'),
(4533,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 10:57:48','2026-03-19 10:57:48'),
(4534,NULL,NULL,4533,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 10:57:48','2026-03-19 10:57:48'),
(4535,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 10:57:56','2026-03-19 10:57:56'),
(4564,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4565,NULL,NULL,4564,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4566,NULL,NULL,4564,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4567,NULL,NULL,4566,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4568,NULL,NULL,4566,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4569,NULL,NULL,4566,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4570,NULL,NULL,4566,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4571,NULL,NULL,4564,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4572,NULL,NULL,4571,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4573,NULL,NULL,4571,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4574,NULL,NULL,4571,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4575,NULL,NULL,4571,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4576,NULL,NULL,4564,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4577,NULL,NULL,4564,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4578,NULL,NULL,4564,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4579,NULL,NULL,4564,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4580,NULL,NULL,4579,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4581,NULL,NULL,4579,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4582,NULL,NULL,4579,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4583,NULL,NULL,4579,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4584,NULL,NULL,4579,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4585,NULL,NULL,4579,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4586,NULL,NULL,4579,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4587,NULL,NULL,4579,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4588,NULL,NULL,4579,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4589,NULL,NULL,4579,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4590,NULL,NULL,4564,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 15:56:54','2026-03-19 15:56:54'),
(4592,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 15:57:10','2026-03-19 15:57:10'),
(4593,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4594,NULL,NULL,4593,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4595,NULL,NULL,4593,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4596,NULL,NULL,4595,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4597,NULL,NULL,4595,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4598,NULL,NULL,4595,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4599,NULL,NULL,4595,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4600,NULL,NULL,4593,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4601,NULL,NULL,4600,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4602,NULL,NULL,4600,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4603,NULL,NULL,4600,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4604,NULL,NULL,4600,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4605,NULL,NULL,4593,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4606,NULL,NULL,4593,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4607,NULL,NULL,4593,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4608,NULL,NULL,4593,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4609,NULL,NULL,4608,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4610,NULL,NULL,4608,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4611,NULL,NULL,4608,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4612,NULL,NULL,4608,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4613,NULL,NULL,4608,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4614,NULL,NULL,4608,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4615,NULL,NULL,4608,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4616,NULL,NULL,4608,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4617,NULL,NULL,4608,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4618,NULL,NULL,4608,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4619,NULL,NULL,4608,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4620,NULL,NULL,4593,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 15:59:49','2026-03-19 15:59:49'),
(4636,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4637,NULL,NULL,4636,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4638,NULL,NULL,4636,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4639,NULL,NULL,4638,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4640,NULL,NULL,4638,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4641,NULL,NULL,4638,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4642,NULL,NULL,4638,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4643,NULL,NULL,4636,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4644,NULL,NULL,4643,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4645,NULL,NULL,4643,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4646,NULL,NULL,4643,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4647,NULL,NULL,4643,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4648,NULL,NULL,4636,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4649,NULL,NULL,4636,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4650,NULL,NULL,4636,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4651,NULL,NULL,4636,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4652,NULL,NULL,4651,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4653,NULL,NULL,4651,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4654,NULL,NULL,4651,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4655,NULL,NULL,4651,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4656,NULL,NULL,4651,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4657,NULL,NULL,4651,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4658,NULL,NULL,4651,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4659,NULL,NULL,4651,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4660,NULL,NULL,4651,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4661,NULL,NULL,4651,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4662,NULL,NULL,4651,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4663,NULL,NULL,4636,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:32','2026-03-19 16:04:32'),
(4664,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 16:04:35','2026-03-19 16:04:35'),
(4681,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4682,NULL,NULL,4681,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4683,NULL,NULL,4682,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4684,NULL,NULL,4682,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4685,NULL,NULL,4682,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4686,NULL,NULL,4682,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4687,NULL,NULL,4681,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4688,NULL,NULL,4681,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4689,NULL,NULL,4681,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4690,NULL,NULL,4689,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4691,NULL,NULL,4689,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4692,NULL,NULL,4689,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4693,NULL,NULL,4689,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4694,NULL,NULL,4689,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4695,NULL,NULL,4689,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4696,NULL,NULL,4689,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:24','2026-03-19 16:30:24'),
(4697,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 16:30:27','2026-03-19 16:30:27'),
(4700,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 18:36:32','2026-03-19 18:36:32'),
(4701,NULL,NULL,4700,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 18:36:32','2026-03-19 18:36:32'),
(4702,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4703,NULL,NULL,4702,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4704,NULL,NULL,4702,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4705,NULL,NULL,4704,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4706,NULL,NULL,4704,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4707,NULL,NULL,4704,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4708,NULL,NULL,4704,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4709,NULL,NULL,4702,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4710,NULL,NULL,4709,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 18:39:02','2026-03-19 18:39:02'),
(4711,NULL,NULL,4709,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4712,NULL,NULL,4709,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4713,NULL,NULL,4709,66,35,'2026-03-18 12:05:00',NULL,'live',0,0,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4714,NULL,NULL,4702,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4715,NULL,NULL,4702,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4716,NULL,NULL,4702,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4717,NULL,NULL,4702,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4719,NULL,NULL,4717,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4720,NULL,NULL,4717,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4722,NULL,NULL,4717,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4723,NULL,NULL,4717,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4725,NULL,NULL,4702,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:03','2026-03-19 18:39:03'),
(4726,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4727,NULL,NULL,4726,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4728,NULL,NULL,4726,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4729,NULL,NULL,4728,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4730,NULL,NULL,4728,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4731,NULL,NULL,4728,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4732,NULL,NULL,4728,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4733,NULL,NULL,4726,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4734,NULL,NULL,4733,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4735,NULL,NULL,4733,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4736,NULL,NULL,4733,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4737,NULL,NULL,4733,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4738,NULL,NULL,4726,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4739,NULL,NULL,4726,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4740,NULL,NULL,4726,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4741,NULL,NULL,4726,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4743,NULL,NULL,4741,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4744,NULL,NULL,4741,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4746,NULL,NULL,4741,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4747,NULL,NULL,4741,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4749,NULL,NULL,4726,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 18:39:39','2026-03-19 18:39:39'),
(4780,NULL,NULL,4717,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4781,NULL,NULL,4717,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4782,NULL,NULL,4717,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4783,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4784,NULL,NULL,4783,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4785,NULL,NULL,4783,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4786,NULL,NULL,4785,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4787,NULL,NULL,4785,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4788,NULL,NULL,4785,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4789,NULL,NULL,4785,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4790,NULL,NULL,4783,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4791,NULL,NULL,4783,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4792,NULL,NULL,4783,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4793,NULL,NULL,4783,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4795,NULL,NULL,4793,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4796,NULL,NULL,4793,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4798,NULL,NULL,4793,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4799,NULL,NULL,4793,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4801,NULL,NULL,4793,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4802,NULL,NULL,4793,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4803,NULL,NULL,4793,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:07:57','2026-03-19 19:07:57'),
(4804,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:00','2026-03-19 19:08:00'),
(4805,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4806,NULL,NULL,4805,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4807,NULL,NULL,4805,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4808,NULL,NULL,4807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4809,NULL,NULL,4807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4810,NULL,NULL,4807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4811,NULL,NULL,4807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4812,NULL,NULL,4805,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4813,NULL,NULL,4805,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4814,NULL,NULL,4805,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4815,NULL,NULL,4805,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4816,NULL,NULL,4805,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4817,NULL,NULL,4816,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4818,NULL,NULL,4816,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4819,NULL,NULL,4816,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4820,NULL,NULL,4816,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4821,NULL,NULL,4816,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4822,NULL,NULL,4816,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4823,NULL,NULL,4816,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4824,NULL,NULL,4816,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4825,NULL,NULL,4816,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4826,NULL,NULL,4816,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4827,NULL,NULL,4805,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 19:08:52','2026-03-19 19:08:52'),
(4828,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4829,NULL,NULL,4828,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4830,NULL,NULL,4828,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4831,NULL,NULL,4830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4832,NULL,NULL,4830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4833,NULL,NULL,4830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4834,NULL,NULL,4830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4835,NULL,NULL,4828,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4836,NULL,NULL,4828,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4837,NULL,NULL,4828,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4838,NULL,NULL,4828,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4839,NULL,NULL,4828,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4840,NULL,NULL,4839,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4841,NULL,NULL,4839,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:14','2026-03-19 19:09:14'),
(4842,NULL,NULL,4839,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4843,NULL,NULL,4839,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4844,NULL,NULL,4839,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4845,NULL,NULL,4839,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4846,NULL,NULL,4839,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4847,NULL,NULL,4839,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4848,NULL,NULL,4839,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4849,NULL,NULL,4839,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4850,NULL,NULL,4828,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 19:09:15','2026-03-19 19:09:15'),
(4869,NULL,NULL,4812,66,35,'2026-03-19 19:12:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4870,NULL,NULL,4812,66,35,'2026-03-19 19:13:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4871,NULL,NULL,4812,66,35,'2026-03-19 19:14:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4872,NULL,NULL,4812,66,35,'2026-03-19 19:14:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4873,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4874,NULL,NULL,4873,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4875,NULL,NULL,4873,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4876,NULL,NULL,4875,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4877,NULL,NULL,4875,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4878,NULL,NULL,4875,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4879,NULL,NULL,4875,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4880,NULL,NULL,4873,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4881,NULL,NULL,4880,66,35,'2026-03-19 19:12:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4882,NULL,NULL,4880,66,35,'2026-03-19 19:13:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4883,NULL,NULL,4880,66,35,'2026-03-19 19:14:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4884,NULL,NULL,4880,66,35,'2026-03-19 19:14:00',NULL,'live',NULL,NULL,'2026-03-19 19:15:03','2026-03-19 19:15:03'),
(4890,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:23:50','2026-03-19 19:23:50'),
(4891,NULL,NULL,4890,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 19:23:50','2026-03-19 19:23:50'),
(4892,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:23:52','2026-03-19 19:23:52'),
(4895,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:41:04','2026-03-19 19:41:04'),
(4896,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4897,NULL,NULL,4896,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4898,NULL,NULL,4896,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4899,NULL,NULL,4898,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4900,NULL,NULL,4898,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4901,NULL,NULL,4898,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4902,NULL,NULL,4898,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4903,NULL,NULL,4896,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4904,NULL,NULL,4903,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4905,NULL,NULL,4903,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4906,NULL,NULL,4903,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4907,NULL,NULL,4903,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4908,NULL,NULL,4896,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4909,NULL,NULL,4896,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4910,NULL,NULL,4896,7,6,'2026-02-21 16:08:00',NULL,'live',0,0,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4911,NULL,NULL,4896,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4912,NULL,NULL,4911,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4913,NULL,NULL,4911,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4914,NULL,NULL,4911,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4915,NULL,NULL,4911,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4916,NULL,NULL,4911,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4917,NULL,NULL,4911,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4918,NULL,NULL,4911,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4919,NULL,NULL,4911,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4920,NULL,NULL,4911,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4921,NULL,NULL,4911,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4922,NULL,NULL,4911,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4923,NULL,NULL,4896,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 19:45:54','2026-03-19 19:45:54'),
(4952,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4953,NULL,NULL,4952,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4954,NULL,NULL,4952,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4955,NULL,NULL,4954,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4956,NULL,NULL,4954,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4957,NULL,NULL,4954,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4958,NULL,NULL,4954,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4959,NULL,NULL,4952,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4960,NULL,NULL,4959,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4961,NULL,NULL,4959,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4962,NULL,NULL,4959,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4963,NULL,NULL,4959,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4964,NULL,NULL,4952,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4965,NULL,NULL,4952,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4966,NULL,NULL,4952,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4967,NULL,NULL,4952,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4968,NULL,NULL,4967,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4969,NULL,NULL,4967,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4970,NULL,NULL,4967,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4971,NULL,NULL,4967,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4972,NULL,NULL,4967,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4973,NULL,NULL,4967,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4974,NULL,NULL,4967,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4975,NULL,NULL,4967,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4976,NULL,NULL,4967,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4977,NULL,NULL,4967,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4978,NULL,NULL,4952,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:19','2026-03-19 20:05:19'),
(4979,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 20:05:21','2026-03-19 20:05:21'),
(4982,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-19 20:07:42','2026-03-19 20:07:42'),
(4995,NULL,NULL,654,50,1,'2025-12-08 10:21:00',NULL,'live',0,0,'2026-03-19 22:01:59','2026-03-19 22:01:59'),
(5014,11,NULL,NULL,NULL,43,'2026-03-19 22:06:00',NULL,'live',NULL,NULL,'2026-03-19 22:06:00','2026-03-19 22:06:00'),
(5087,NULL,NULL,3093,63,30,'2026-03-19 22:43:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5088,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5089,NULL,NULL,5088,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5090,NULL,NULL,5088,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5091,NULL,NULL,5088,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5092,NULL,NULL,5088,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5093,NULL,NULL,5092,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5094,NULL,NULL,5092,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5095,NULL,NULL,5092,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5096,NULL,NULL,5092,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5097,NULL,NULL,5092,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5098,NULL,NULL,5092,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5099,NULL,NULL,5092,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5100,NULL,NULL,5092,63,30,'2026-03-19 22:43:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:23','2026-03-19 22:43:23'),
(5101,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 22:43:31','2026-03-19 22:43:31'),
(5105,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:36','2026-03-19 22:45:36'),
(5106,NULL,NULL,5105,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:36','2026-03-19 22:45:36'),
(5107,NULL,NULL,5105,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:36','2026-03-19 22:45:36'),
(5108,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5109,NULL,NULL,5108,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5110,NULL,NULL,5108,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5111,NULL,NULL,5108,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5112,NULL,NULL,5108,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5113,NULL,NULL,5108,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5114,NULL,NULL,5113,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5117,NULL,NULL,5113,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5118,NULL,NULL,5113,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5119,NULL,NULL,5113,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5120,NULL,NULL,5113,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5121,NULL,NULL,5113,63,30,'2026-03-19 22:43:00',NULL,'live',0,0,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5122,NULL,NULL,5108,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 22:45:52','2026-03-19 22:45:52'),
(5123,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:15','2026-03-19 22:46:15'),
(5124,NULL,NULL,5123,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:15','2026-03-19 22:46:15'),
(5125,NULL,NULL,5123,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5126,NULL,NULL,5123,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5127,NULL,NULL,5123,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5128,NULL,NULL,5123,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5129,NULL,NULL,5128,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5132,NULL,NULL,5128,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5133,NULL,NULL,5128,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5134,NULL,NULL,5128,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5135,NULL,NULL,5128,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5136,NULL,NULL,5128,63,30,'2026-03-19 22:43:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5137,NULL,NULL,5123,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-19 22:46:16','2026-03-19 22:46:16'),
(5143,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 23:02:46','2026-03-19 23:02:46'),
(5144,NULL,NULL,5143,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:02:46','2026-03-19 23:02:46'),
(5145,NULL,NULL,5143,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:02:46','2026-03-19 23:02:46'),
(5146,NULL,NULL,5143,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:02:46','2026-03-19 23:02:46'),
(5149,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 23:03:27','2026-03-19 23:03:27'),
(5150,NULL,NULL,5149,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:03:27','2026-03-19 23:03:27'),
(5151,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-19 23:07:26','2026-03-19 23:07:26'),
(5161,NULL,NULL,887,7,2,'2026-03-19 23:21:00',NULL,'live',0,0,'2026-03-19 23:23:38','2026-03-19 23:23:38'),
(5162,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-03-19 23:23:38','2026-03-19 23:23:38'),
(5163,NULL,NULL,5162,7,2,'2026-03-19 23:21:00',NULL,'live',NULL,NULL,'2026-03-19 23:23:38','2026-03-19 23:23:38'),
(5164,NULL,NULL,5162,7,29,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-03-19 23:23:38','2026-03-19 23:23:38'),
(5166,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-03-19 23:23:58','2026-03-19 23:23:58'),
(5167,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-03-19 23:24:02','2026-03-19 23:24:02'),
(5178,NULL,NULL,912,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:40:52','2026-03-19 23:40:52'),
(5179,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-03-19 23:40:52','2026-03-19 23:40:52'),
(5180,NULL,NULL,5179,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:40:52','2026-03-19 23:40:52'),
(5181,NULL,NULL,5179,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-19 23:40:52','2026-03-19 23:40:52'),
(5182,NULL,NULL,5179,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-19 23:40:52','2026-03-19 23:40:52'),
(5183,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-03-19 23:40:55','2026-03-19 23:40:55'),
(5192,NULL,NULL,867,6,1,'2026-03-20 00:43:00',NULL,'live',NULL,NULL,'2026-03-20 00:44:45','2026-03-20 00:44:45'),
(5195,NULL,NULL,5843,6,1,'2026-03-20 00:43:00',NULL,'live',NULL,NULL,'2026-03-20 00:44:45','2026-04-13 12:45:35'),
(5200,NULL,NULL,6060,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-20 09:47:55','2026-04-17 12:19:35'),
(5237,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 10:12:38','2026-03-20 10:12:38'),
(5238,NULL,NULL,5237,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-20 10:12:38','2026-03-20 10:12:38'),
(5239,11,NULL,NULL,NULL,43,'2026-03-20 10:16:11',NULL,'live',NULL,NULL,'2026-03-20 10:16:11','2026-03-20 10:16:11'),
(5240,11,NULL,NULL,NULL,43,'2026-03-20 10:16:35',NULL,'live',NULL,NULL,'2026-03-20 10:16:35','2026-03-20 10:16:35'),
(5241,11,NULL,NULL,NULL,43,'2026-03-20 10:18:24',NULL,'live',NULL,NULL,'2026-03-20 10:18:24','2026-03-20 10:18:24'),
(5256,NULL,NULL,1286,7,2,'2026-03-20 10:46:00',NULL,'live',0,0,'2026-03-20 10:46:55','2026-03-20 10:46:55'),
(5257,1,NULL,NULL,NULL,4,'2026-02-22 00:42:00',NULL,'live',NULL,NULL,'2026-03-20 10:46:55','2026-03-20 10:46:55'),
(5258,NULL,NULL,5257,7,2,'2026-03-20 10:46:00',NULL,'live',NULL,NULL,'2026-03-20 10:46:55','2026-03-20 10:46:55'),
(5263,NULL,NULL,1286,7,7,'2026-03-20 10:49:00',NULL,'live',0,0,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5264,NULL,NULL,1286,7,36,'2026-03-20 10:50:00',NULL,'live',0,0,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5265,NULL,NULL,5264,66,35,'2026-03-20 10:50:00',NULL,'live',0,0,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5266,1,NULL,NULL,NULL,4,'2026-02-22 00:42:00',NULL,'live',NULL,NULL,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5267,NULL,NULL,5266,7,7,'2026-03-20 10:49:00',NULL,'live',NULL,NULL,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5268,NULL,NULL,5266,7,36,'2026-03-20 10:50:00',NULL,'live',NULL,NULL,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5269,NULL,NULL,5268,66,35,'2026-03-20 10:50:00',NULL,'live',NULL,NULL,'2026-03-20 10:50:16','2026-03-20 10:50:16'),
(5364,NULL,NULL,6060,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-03-20 11:36:02','2026-04-17 12:19:35'),
(5365,NULL,NULL,5364,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-03-20 11:36:02','2026-03-20 11:36:02'),
(5366,NULL,NULL,5365,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2026-03-20 11:36:02','2026-03-20 11:36:02'),
(5369,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-03-20 12:05:01','2026-03-20 12:05:01'),
(5370,NULL,NULL,5369,7,29,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-03-20 12:05:01','2026-03-20 12:05:01'),
(5391,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:15:42','2026-03-20 17:16:40'),
(5392,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:16:40','2026-03-20 17:16:40'),
(5397,NULL,NULL,5391,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 17:24:58','2026-03-20 17:24:58'),
(5398,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:24:58','2026-03-20 17:24:58'),
(5399,NULL,NULL,5398,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 17:24:58','2026-03-20 17:24:58'),
(5402,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:49:51','2026-03-20 17:49:51'),
(5403,NULL,NULL,5402,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 17:49:51','2026-03-20 17:49:51'),
(5404,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:49:57','2026-03-20 17:49:57'),
(5405,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:50:10','2026-03-20 17:50:10'),
(5406,NULL,NULL,5405,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 17:50:10','2026-03-20 17:50:10'),
(5407,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:50:25','2026-03-20 17:50:25'),
(5408,NULL,NULL,5407,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 17:50:25','2026-03-20 17:50:25'),
(5412,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:55:59','2026-03-20 17:55:59'),
(5413,NULL,NULL,5412,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 17:55:59','2026-03-20 17:55:59'),
(5414,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 17:56:02','2026-03-20 17:56:02'),
(5418,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 18:00:13','2026-03-20 18:00:13'),
(5419,NULL,NULL,5418,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:00:13','2026-03-20 18:00:13'),
(5420,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 18:00:15','2026-03-20 18:00:15'),
(5423,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 18:00:39','2026-03-20 18:00:39'),
(5424,NULL,NULL,5423,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:00:39','2026-03-20 18:00:39'),
(5427,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 18:05:03','2026-03-20 18:05:03'),
(5428,NULL,NULL,5427,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:05:03','2026-03-20 18:05:03'),
(5429,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 18:05:06','2026-03-20 18:05:06'),
(5432,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-20 18:05:19','2026-03-20 18:05:19'),
(5433,NULL,NULL,5432,7,37,'2026-03-20 17:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:05:19','2026-03-20 18:05:19'),
(5449,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:16:59','2026-03-20 18:16:59'),
(5450,NULL,NULL,5449,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-20 18:16:59','2026-03-20 18:16:59'),
(5451,NULL,NULL,5449,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:17:00','2026-03-20 18:17:00'),
(5462,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:18:40','2026-03-20 18:18:40'),
(5476,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5477,NULL,NULL,5476,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5478,NULL,NULL,5477,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5479,NULL,NULL,5477,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5480,NULL,NULL,5477,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5481,NULL,NULL,5477,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5482,NULL,NULL,5477,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5483,NULL,NULL,5477,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5484,NULL,NULL,5477,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5485,NULL,NULL,5477,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5486,NULL,NULL,5477,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5487,NULL,NULL,5477,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:23:57','2026-03-20 18:23:57'),
(5501,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5502,NULL,NULL,5501,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5503,NULL,NULL,5502,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5504,NULL,NULL,5502,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5505,NULL,NULL,5502,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5506,NULL,NULL,5502,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5507,NULL,NULL,5502,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5508,NULL,NULL,5502,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5509,NULL,NULL,5502,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5510,NULL,NULL,5502,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5511,NULL,NULL,5502,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5512,NULL,NULL,5502,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5513,NULL,NULL,5502,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:29:19','2026-03-20 18:29:19'),
(5525,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5526,NULL,NULL,5525,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5528,NULL,NULL,5526,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5529,NULL,NULL,5526,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5531,NULL,NULL,5526,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5532,NULL,NULL,5526,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5533,NULL,NULL,5526,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5534,NULL,NULL,5526,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5535,NULL,NULL,5526,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:34:52','2026-03-20 18:34:52'),
(5549,NULL,NULL,4318,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5550,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5551,NULL,NULL,5550,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5552,NULL,NULL,5551,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5553,NULL,NULL,5551,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5554,NULL,NULL,5551,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5555,NULL,NULL,5551,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5556,NULL,NULL,5551,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5557,NULL,NULL,5551,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5558,NULL,NULL,5551,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5559,NULL,NULL,5551,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5560,NULL,NULL,5551,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5561,NULL,NULL,5551,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 18:41:36','2026-03-20 18:41:36'),
(5567,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:51:27','2026-03-20 18:51:27'),
(5568,NULL,NULL,5567,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:51:27','2026-03-20 18:51:27'),
(5570,NULL,NULL,5568,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:51:27','2026-03-20 18:51:27'),
(5571,NULL,NULL,5568,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:51:27','2026-03-20 18:51:27'),
(5576,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 18:57:13','2026-03-20 18:57:13'),
(5577,NULL,NULL,5576,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 18:57:13','2026-03-20 18:57:13'),
(5578,NULL,NULL,5577,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 18:57:13','2026-03-20 18:57:13'),
(5580,NULL,NULL,4433,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-20 18:57:33','2026-03-20 19:03:00'),
(5594,NULL,NULL,4433,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5598,NULL,NULL,4433,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5600,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5601,NULL,NULL,5600,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5603,NULL,NULL,5601,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5604,NULL,NULL,5601,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5605,NULL,NULL,5601,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5606,NULL,NULL,5601,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5610,NULL,NULL,5601,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 19:03:00','2026-03-20 19:03:00'),
(5617,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 19:05:26','2026-03-20 19:05:26'),
(5618,NULL,NULL,5617,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 19:05:26','2026-03-20 19:05:26'),
(5619,NULL,NULL,5618,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:05:26','2026-03-20 19:05:26'),
(5620,NULL,NULL,5618,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:05:26','2026-03-20 19:05:26'),
(5621,NULL,NULL,5618,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:05:26','2026-03-20 19:05:26'),
(5633,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5634,NULL,NULL,5633,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5635,NULL,NULL,5634,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5636,NULL,NULL,5634,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5637,NULL,NULL,5634,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5638,NULL,NULL,5634,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5639,NULL,NULL,5634,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5640,NULL,NULL,5634,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5641,NULL,NULL,5634,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5642,NULL,NULL,5634,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-20 19:14:32','2026-03-20 19:14:32'),
(5655,NULL,NULL,4608,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5656,NULL,NULL,4608,63,30,'2026-03-20 19:57:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5657,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5658,NULL,NULL,5657,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5659,NULL,NULL,5658,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5660,NULL,NULL,5658,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5661,NULL,NULL,5658,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5662,NULL,NULL,5658,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5663,NULL,NULL,5658,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5664,NULL,NULL,5658,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5665,NULL,NULL,5658,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5666,NULL,NULL,5658,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5667,NULL,NULL,5658,63,30,'2026-03-20 19:57:00',NULL,'live',NULL,NULL,'2026-03-20 19:57:20','2026-03-20 19:57:20'),
(5680,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:02','2026-03-20 20:04:02'),
(5681,NULL,NULL,5680,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:02','2026-03-20 20:04:02'),
(5683,NULL,NULL,5681,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:02','2026-03-20 20:04:02'),
(5684,NULL,NULL,5681,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:02','2026-03-20 20:04:02'),
(5686,NULL,NULL,5681,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:02','2026-03-20 20:04:02'),
(5687,NULL,NULL,5681,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:02','2026-03-20 20:04:02'),
(5689,NULL,NULL,5681,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:03','2026-03-20 20:04:03'),
(5690,NULL,NULL,5681,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:03','2026-03-20 20:04:03'),
(5691,NULL,NULL,5681,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-20 20:04:03','2026-03-20 20:04:03'),
(5708,NULL,NULL,4816,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5709,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5710,NULL,NULL,5709,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5711,NULL,NULL,5710,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5712,NULL,NULL,5710,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5713,NULL,NULL,5710,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5714,NULL,NULL,5710,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5715,NULL,NULL,5710,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5716,NULL,NULL,5710,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5717,NULL,NULL,5710,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5718,NULL,NULL,5710,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5719,NULL,NULL,5710,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5720,NULL,NULL,5710,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5721,NULL,NULL,5710,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-03-20 20:12:09','2026-03-20 20:12:09'),
(5728,NULL,NULL,1286,7,7,'2026-03-20 10:49:00',NULL,'live',NULL,NULL,'2026-03-20 20:19:34','2026-03-20 20:19:34'),
(5732,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-03-20 20:22:43','2026-03-20 20:22:43'),
(5733,NULL,NULL,5732,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-20 20:22:43','2026-03-20 20:22:43'),
(5734,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-03-20 20:22:45','2026-03-20 20:22:45'),
(5746,NULL,NULL,4203,7,45,'2026-03-23 16:54:00',NULL,'live',0,0,'2026-03-23 16:54:29','2026-03-23 16:54:29'),
(5747,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-23 16:54:29','2026-03-23 16:54:29'),
(5748,NULL,NULL,5747,7,45,'2026-03-23 16:54:00',NULL,'live',NULL,NULL,'2026-03-23 16:54:29','2026-03-23 16:54:29'),
(5750,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-23 16:57:55','2026-03-23 16:57:55'),
(5752,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-23 16:58:03','2026-03-23 16:58:03'),
(5754,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-23 17:01:38','2026-03-23 17:01:38'),
(5756,11,NULL,NULL,NULL,43,'2026-03-20 17:16:00',NULL,'live',NULL,NULL,'2026-03-23 17:02:10','2026-03-23 17:02:10'),
(5760,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-03-24 15:26:21','2026-03-24 15:26:21'),
(5762,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-03-24 15:27:00','2026-03-24 15:27:00'),
(5763,10,NULL,NULL,NULL,40,'2026-03-25 11:33:47',NULL,'live',0,0,'2026-03-25 11:33:47','2026-03-25 11:33:47'),
(5765,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-25 11:41:07','2026-03-25 11:41:07'),
(5766,10,NULL,NULL,NULL,40,'2026-03-25 11:54:30',NULL,'live',0,0,'2026-03-25 11:54:30','2026-03-25 11:54:30'),
(5767,10,NULL,NULL,NULL,46,'2026-03-25 11:56:03',NULL,'live',0,0,'2026-03-25 11:56:03','2026-03-25 11:57:02'),
(5768,11,NULL,NULL,NULL,43,'2026-03-25 11:57:35',NULL,'live',NULL,NULL,'2026-03-25 11:57:35','2026-03-25 11:57:35'),
(5769,7,NULL,NULL,NULL,13,'2026-03-25 11:57:45',NULL,'live',NULL,NULL,'2026-03-25 11:57:45','2026-03-25 11:57:45'),
(5770,10,NULL,NULL,NULL,46,'2026-03-25 11:58:00',NULL,'live',0,0,'2026-03-25 11:57:56','2026-03-25 11:58:34'),
(5771,10,NULL,NULL,NULL,46,'2026-03-25 11:58:00',NULL,'live',NULL,NULL,'2026-03-25 11:58:34','2026-03-25 11:58:34'),
(5772,10,NULL,NULL,NULL,46,'2026-03-25 11:59:00',NULL,'live',0,0,'2026-03-25 11:58:44','2026-03-25 11:59:10'),
(5773,10,NULL,NULL,NULL,46,'2026-03-25 11:59:00',NULL,'live',NULL,NULL,'2026-03-25 11:59:10','2026-03-25 11:59:10'),
(5776,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-25 17:07:07','2026-03-25 17:07:07'),
(5777,NULL,NULL,5776,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-25 17:07:07','2026-03-25 17:07:07'),
(5778,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-25 17:09:02','2026-03-25 17:09:02'),
(5779,10,NULL,NULL,NULL,46,'2026-03-25 17:38:00',NULL,'live',0,0,'2026-03-25 17:38:15','2026-03-25 17:38:44'),
(5780,10,NULL,NULL,NULL,46,'2026-03-25 17:38:00',NULL,'live',NULL,NULL,'2026-03-25 17:38:44','2026-03-25 17:38:44'),
(5781,10,NULL,NULL,NULL,40,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-03-25 17:42:59','2026-03-25 17:42:59'),
(5782,10,NULL,NULL,NULL,46,'2026-03-25 11:59:00',NULL,'live',NULL,NULL,'2026-03-25 17:43:01','2026-03-25 17:43:01'),
(5784,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-03-25 17:43:34','2026-03-25 17:43:34'),
(5785,10,NULL,NULL,NULL,46,'2026-03-25 11:59:00',NULL,'live',NULL,NULL,'2026-03-25 17:43:37','2026-03-25 17:43:37'),
(5787,10,NULL,NULL,NULL,46,'2026-03-25 17:38:00',NULL,'live',NULL,NULL,'2026-03-25 17:44:06','2026-03-25 17:44:06'),
(5788,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'2026-03-25 17:45:23','2026-03-25 17:45:23'),
(5790,10,NULL,NULL,NULL,46,'2026-03-25 17:38:00',NULL,'live',NULL,NULL,'2026-03-25 17:46:42','2026-03-25 17:46:42'),
(5792,10,NULL,NULL,NULL,40,'2026-02-21 22:58:00',NULL,'live',NULL,NULL,'2026-03-25 17:48:36','2026-03-25 17:48:36'),
(5793,10,NULL,NULL,NULL,46,'2026-03-25 17:38:00',NULL,'live',NULL,NULL,'2026-03-25 17:48:38','2026-03-25 17:48:38'),
(5794,10,NULL,NULL,NULL,46,'2026-03-25 17:53:24',NULL,'live',0,0,'2026-03-25 17:53:24','2026-03-25 17:53:27'),
(5795,10,NULL,NULL,NULL,46,'2026-03-25 17:54:00',NULL,'live',NULL,NULL,'2026-03-25 17:54:16','2026-03-25 17:54:46'),
(5796,10,NULL,NULL,NULL,46,'2026-03-25 17:54:00',NULL,'live',NULL,NULL,'2026-03-25 17:54:46','2026-03-25 17:54:46'),
(5819,NULL,NULL,6048,6,1,'2025-12-03 19:14:00',NULL,'live',NULL,NULL,'2026-03-26 08:31:58','2026-04-16 14:52:41'),
(5823,NULL,NULL,6060,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-26 08:32:42','2026-04-17 12:19:35'),
(5843,NULL,NULL,6060,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-03-26 08:36:40','2026-04-17 12:19:35'),
(5846,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:36:59','2026-03-26 08:36:59'),
(5847,NULL,NULL,5846,7,29,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-03-26 08:36:59','2026-03-26 08:36:59'),
(5850,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:27','2026-03-26 08:39:27'),
(5851,NULL,NULL,5850,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:27','2026-03-26 08:39:27'),
(5854,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:36','2026-03-26 08:39:36'),
(5855,NULL,NULL,5854,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:36','2026-03-26 08:39:36'),
(5858,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:47','2026-03-26 08:39:47'),
(5859,NULL,NULL,5858,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:47','2026-03-26 08:39:47'),
(5862,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:57','2026-03-26 08:39:57'),
(5863,NULL,NULL,5862,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:39:57','2026-03-26 08:39:57'),
(5866,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:08','2026-03-26 08:40:08'),
(5867,NULL,NULL,5866,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:08','2026-03-26 08:40:08'),
(5870,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:16','2026-03-26 08:40:16'),
(5871,NULL,NULL,5870,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:16','2026-03-26 08:40:16'),
(5874,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:25','2026-03-26 08:40:25'),
(5875,NULL,NULL,5874,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:26','2026-03-26 08:40:26'),
(5878,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:34','2026-03-26 08:40:34'),
(5879,NULL,NULL,5878,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:34','2026-03-26 08:40:34'),
(5881,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5882,NULL,NULL,5881,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5883,NULL,NULL,5881,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5884,NULL,NULL,5883,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5885,NULL,NULL,5883,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5886,NULL,NULL,5883,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5887,NULL,NULL,5883,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5888,NULL,NULL,5883,64,33,'2026-03-13 13:25:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5889,NULL,NULL,5883,64,33,'2026-03-13 13:25:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5890,NULL,NULL,5883,64,33,'2026-03-13 13:26:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5891,NULL,NULL,5883,64,33,'2026-03-13 13:26:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5892,NULL,NULL,5881,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5893,NULL,NULL,5892,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5894,NULL,NULL,5892,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5895,NULL,NULL,5892,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5896,NULL,NULL,5892,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5897,NULL,NULL,5881,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5898,NULL,NULL,5881,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5899,NULL,NULL,5881,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5900,NULL,NULL,5881,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5901,NULL,NULL,5900,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5902,NULL,NULL,5900,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5903,NULL,NULL,5900,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5904,NULL,NULL,5900,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5905,NULL,NULL,5900,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5906,NULL,NULL,5900,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5907,NULL,NULL,5900,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5908,NULL,NULL,5900,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5909,NULL,NULL,5900,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5910,NULL,NULL,5900,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5911,NULL,NULL,5900,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5912,NULL,NULL,5881,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:46','2026-03-26 08:40:46'),
(5915,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:56','2026-03-26 08:40:56'),
(5916,NULL,NULL,5915,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:40:56','2026-03-26 08:40:56'),
(5919,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:04','2026-03-26 08:41:04'),
(5920,NULL,NULL,5919,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:04','2026-03-26 08:41:04'),
(5923,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:22','2026-03-26 08:41:22'),
(5924,NULL,NULL,5923,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:22','2026-03-26 08:41:22'),
(5927,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:34','2026-03-26 08:41:34'),
(5928,NULL,NULL,5927,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:34','2026-03-26 08:41:34'),
(5931,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:42','2026-03-26 08:41:42'),
(5932,NULL,NULL,5931,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-26 08:41:42','2026-03-26 08:41:42'),
(5935,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:43:19','2026-03-26 08:43:19'),
(5936,NULL,NULL,5935,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:43:19','2026-03-26 08:43:19'),
(5939,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:43:54','2026-03-26 08:43:54'),
(5940,NULL,NULL,5939,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:43:54','2026-03-26 08:43:54'),
(5943,NULL,NULL,4896,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:44:23','2026-03-26 08:44:23'),
(5944,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:44:23','2026-03-26 08:44:23'),
(5945,NULL,NULL,5944,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:44:23','2026-03-26 08:44:23'),
(5946,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:44:28','2026-03-26 08:44:28'),
(5949,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:45:01','2026-03-26 08:45:01'),
(5950,NULL,NULL,5949,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:45:01','2026-03-26 08:45:01'),
(5953,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:45:27','2026-03-26 08:45:27'),
(5954,NULL,NULL,5953,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:45:27','2026-03-26 08:45:27'),
(5957,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:46:03','2026-03-26 08:46:03'),
(5958,NULL,NULL,5957,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:46:03','2026-03-26 08:46:03'),
(5961,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:46:27','2026-03-26 08:46:27'),
(5962,NULL,NULL,5961,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:46:27','2026-03-26 08:46:27'),
(5965,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:46:49','2026-03-26 08:46:49'),
(5966,NULL,NULL,5965,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:46:49','2026-03-26 08:46:49'),
(5969,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:47:54','2026-03-26 08:47:54'),
(5970,NULL,NULL,5969,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:47:54','2026-03-26 08:47:54'),
(5973,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:49:51','2026-03-26 08:49:51'),
(5974,NULL,NULL,5973,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:49:51','2026-03-26 08:49:51'),
(5977,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:50:21','2026-03-26 08:50:21'),
(5978,NULL,NULL,5977,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:50:21','2026-03-26 08:50:21'),
(5981,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:05','2026-03-26 08:51:05'),
(5982,NULL,NULL,5981,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:05','2026-03-26 08:51:05'),
(5985,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:18','2026-03-26 08:51:18'),
(5986,NULL,NULL,5985,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:18','2026-03-26 08:51:18'),
(5989,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:41','2026-03-26 08:51:41'),
(5990,NULL,NULL,5989,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:41','2026-03-26 08:51:41'),
(5993,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:52','2026-03-26 08:51:52'),
(5994,NULL,NULL,5993,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:51:52','2026-03-26 08:51:52'),
(5997,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:03','2026-03-26 08:52:03'),
(5998,NULL,NULL,5997,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:03','2026-03-26 08:52:03'),
(6001,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:14','2026-03-26 08:52:14'),
(6002,NULL,NULL,6001,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:14','2026-03-26 08:52:14'),
(6005,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:24','2026-03-26 08:52:24'),
(6006,NULL,NULL,6005,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:24','2026-03-26 08:52:24'),
(6009,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:34','2026-03-26 08:52:34'),
(6010,NULL,NULL,6009,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:34','2026-03-26 08:52:34'),
(6013,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:45','2026-03-26 08:52:45'),
(6014,NULL,NULL,6013,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:45','2026-03-26 08:52:45'),
(6017,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:56','2026-03-26 08:52:56'),
(6018,NULL,NULL,6017,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:52:56','2026-03-26 08:52:56'),
(6021,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:53:08','2026-03-26 08:53:08'),
(6022,NULL,NULL,6021,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:53:08','2026-03-26 08:53:08'),
(6025,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:53:37','2026-03-26 08:53:37'),
(6026,NULL,NULL,6025,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-26 08:53:37','2026-03-26 08:53:37'),
(6030,NULL,NULL,6060,7,6,'2025-12-07 09:27:00',NULL,'live',NULL,NULL,'2026-03-26 08:54:11','2026-04-17 12:19:35'),
(6034,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 08:58:14','2026-03-26 08:58:14'),
(6035,NULL,NULL,6034,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-26 08:58:14','2026-03-26 08:58:14'),
(6043,NULL,NULL,6060,7,7,'2025-12-07 14:35:00',NULL,'live',NULL,NULL,'2026-03-26 09:58:08','2026-04-17 12:19:35'),
(6048,NULL,NULL,6060,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-26 09:59:19','2026-04-17 12:19:35'),
(6053,NULL,NULL,6060,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-26 10:00:30','2026-04-17 12:19:35'),
(6056,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-03-26 10:00:59','2026-03-26 10:00:59'),
(6057,NULL,NULL,6056,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-26 10:00:59','2026-03-26 10:00:59'),
(6060,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-26 10:01:24','2026-03-26 10:01:24'),
(6061,NULL,NULL,6060,7,10,'2025-12-03 08:56:00',NULL,'live',NULL,NULL,'2026-03-26 10:01:24','2026-03-26 10:01:24'),
(6063,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:22:10','2026-03-26 10:22:10'),
(6065,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:23:33','2026-03-26 10:23:33'),
(6067,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:23:52','2026-03-26 10:23:52'),
(6069,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:24:07','2026-03-26 10:24:07'),
(6071,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:24:32','2026-03-26 10:24:32'),
(6073,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:24:56','2026-03-26 10:24:56'),
(6075,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:25:19','2026-03-26 10:25:19'),
(6077,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:25:39','2026-03-26 10:25:39'),
(6078,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:26:08','2026-03-26 10:26:08'),
(6080,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:26:23','2026-03-26 10:26:23'),
(6089,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-26 10:35:57','2026-03-26 10:35:57'),
(6090,NULL,NULL,6089,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-26 10:35:57','2026-03-26 10:35:57'),
(6095,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-26 10:36:18','2026-03-26 10:36:18'),
(6096,NULL,NULL,6095,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-26 10:36:18','2026-03-26 10:36:18'),
(6099,7,NULL,NULL,NULL,13,'2025-12-04 01:30:00',NULL,'live',NULL,NULL,'2026-03-26 10:40:38','2026-03-26 10:40:38'),
(6101,7,NULL,NULL,NULL,13,'2025-12-04 17:56:00',NULL,'live',NULL,NULL,'2026-03-26 10:41:15','2026-03-26 10:41:15'),
(6103,7,NULL,NULL,NULL,13,'2025-12-04 17:57:00',NULL,'live',NULL,NULL,'2026-03-26 10:41:54','2026-03-26 10:41:54'),
(6105,7,NULL,NULL,NULL,13,'2025-12-04 17:59:00',NULL,'live',NULL,NULL,'2026-03-26 10:42:34','2026-03-26 10:42:34'),
(6107,7,NULL,NULL,NULL,13,'2025-12-04 01:30:00',NULL,'live',NULL,NULL,'2026-03-26 10:43:06','2026-03-26 10:43:06'),
(6109,7,NULL,NULL,NULL,13,'2025-12-04 17:57:00',NULL,'live',NULL,NULL,'2026-03-26 10:44:18','2026-03-26 10:44:18'),
(6111,7,NULL,NULL,NULL,13,'2025-12-04 17:56:00',NULL,'live',NULL,NULL,'2026-03-26 10:45:00','2026-03-26 10:45:00'),
(6113,7,NULL,NULL,NULL,13,'2025-12-04 17:56:00',NULL,'live',NULL,NULL,'2026-03-26 10:46:59','2026-03-26 10:46:59'),
(6115,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-26 10:47:41','2026-03-26 10:47:41'),
(6120,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-27 11:41:20','2026-03-27 11:41:20'),
(6121,NULL,NULL,6120,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-03-27 11:41:20','2026-03-27 11:41:20'),
(6122,NULL,NULL,6121,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-03-27 11:41:20','2026-03-27 11:41:20'),
(6123,NULL,NULL,6122,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2026-03-27 11:41:20','2026-03-27 11:41:20'),
(6128,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-27 11:42:35','2026-03-27 11:42:35'),
(6129,NULL,NULL,6128,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-03-27 11:42:35','2026-03-27 11:42:35'),
(6130,NULL,NULL,6129,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-03-27 11:42:35','2026-03-27 11:42:35'),
(6131,NULL,NULL,6130,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2026-03-27 11:42:35','2026-03-27 11:42:35'),
(6134,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-27 11:44:14','2026-03-27 11:44:14'),
(6135,NULL,NULL,6134,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 11:44:14','2026-03-27 11:44:14'),
(6138,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-27 11:44:36','2026-03-27 11:44:36'),
(6139,NULL,NULL,6138,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 11:44:36','2026-03-27 11:44:36'),
(6143,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-27 11:52:22','2026-03-27 11:52:22'),
(6144,NULL,NULL,6143,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-27 11:52:22','2026-03-27 11:52:22'),
(6149,10,NULL,NULL,NULL,40,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-03-27 13:23:57','2026-03-27 13:23:57'),
(6150,NULL,NULL,6149,67,41,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-03-27 13:23:57','2026-03-27 13:23:57'),
(6151,10,NULL,NULL,NULL,46,'2026-03-25 17:54:00',NULL,'live',NULL,NULL,'2026-03-27 13:24:03','2026-03-27 13:24:03'),
(6153,10,NULL,NULL,NULL,40,'2026-02-21 23:00:00',NULL,'live',NULL,NULL,'2026-03-27 13:24:23','2026-03-27 13:24:23'),
(6155,10,NULL,NULL,NULL,46,'2026-03-25 17:54:00',NULL,'live',NULL,NULL,'2026-03-27 13:24:42','2026-03-27 13:24:42'),
(6156,10,NULL,NULL,NULL,46,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-27 13:25:02','2026-03-27 13:28:42'),
(6157,10,NULL,NULL,NULL,40,'2026-03-27 13:26:00',NULL,'live',NULL,NULL,'2026-03-27 13:25:20','2026-03-27 13:26:29'),
(6158,NULL,NULL,6157,67,41,'2026-03-27 13:25:00',NULL,'live',NULL,NULL,'2026-03-27 13:25:31','2026-03-27 13:25:45'),
(6159,NULL,NULL,6157,67,41,'2026-03-27 13:26:00',NULL,'live',NULL,NULL,'2026-03-27 13:25:47','2026-03-27 13:26:00'),
(6160,NULL,NULL,6157,67,41,'2026-03-27 13:26:00',NULL,'live',NULL,NULL,'2026-03-27 13:26:02','2026-03-27 13:26:10'),
(6161,NULL,NULL,6157,67,41,NULL,NULL,'pending',NULL,NULL,'2026-03-27 13:26:12','2026-03-27 13:26:12'),
(6162,10,NULL,NULL,NULL,40,'2026-03-27 13:26:00',NULL,'live',NULL,NULL,'2026-03-27 13:26:29','2026-03-27 13:26:29'),
(6163,NULL,NULL,6162,67,41,'2026-03-27 13:25:00',NULL,'live',NULL,NULL,'2026-03-27 13:26:29','2026-03-27 13:26:29'),
(6164,NULL,NULL,6162,67,41,'2026-03-27 13:26:00',NULL,'live',NULL,NULL,'2026-03-27 13:26:29','2026-03-27 13:26:29'),
(6165,NULL,NULL,6162,67,41,'2026-03-27 13:26:00',NULL,'live',NULL,NULL,'2026-03-27 13:26:29','2026-03-27 13:26:29'),
(6166,10,NULL,NULL,NULL,40,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-27 13:26:47','2026-03-27 13:28:30'),
(6167,NULL,NULL,6166,67,41,'2026-03-27 13:27:00',NULL,'live',NULL,NULL,'2026-03-27 13:27:23','2026-03-27 13:27:32'),
(6168,NULL,NULL,6166,67,41,'2026-03-27 13:27:00',NULL,'live',NULL,NULL,'2026-03-27 13:27:39','2026-03-27 13:27:46'),
(6169,NULL,NULL,6166,67,41,NULL,NULL,'pending',0,0,'2026-03-27 13:27:54','2026-03-27 13:27:54'),
(6170,10,NULL,NULL,NULL,40,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-27 13:28:30','2026-03-27 13:28:30'),
(6171,NULL,NULL,6170,67,41,'2026-03-27 13:27:00',NULL,'live',NULL,NULL,'2026-03-27 13:28:30','2026-03-27 13:28:30'),
(6172,NULL,NULL,6170,67,41,'2026-03-27 13:27:00',NULL,'live',NULL,NULL,'2026-03-27 13:28:30','2026-03-27 13:28:30'),
(6173,10,NULL,NULL,NULL,46,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-27 13:28:42','2026-03-27 13:28:42'),
(6174,10,NULL,NULL,NULL,40,'2026-03-27 13:57:00',NULL,'live',NULL,NULL,'2026-03-27 13:57:18','2026-03-27 13:57:32'),
(6175,NULL,NULL,6174,67,41,'2026-03-27 13:57:00',NULL,'live',NULL,NULL,'2026-03-27 13:57:23','2026-03-27 13:57:31'),
(6176,10,NULL,NULL,NULL,40,'2026-03-27 13:57:00',NULL,'live',NULL,NULL,'2026-03-27 13:57:32','2026-03-27 13:57:32'),
(6177,NULL,NULL,6176,67,41,'2026-03-27 13:57:00',NULL,'live',NULL,NULL,'2026-03-27 13:57:32','2026-03-27 13:57:32'),
(6179,10,NULL,NULL,NULL,40,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 13:57:43','2026-03-27 14:00:40'),
(6180,NULL,NULL,6179,67,41,'2026-03-27 13:58:00',NULL,'live',0,0,'2026-03-27 13:58:37','2026-03-27 13:58:49'),
(6181,NULL,NULL,6179,67,41,'2026-03-27 13:59:00',NULL,'live',NULL,NULL,'2026-03-27 13:59:02','2026-03-27 13:59:20'),
(6182,NULL,NULL,6179,67,41,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 13:59:27','2026-03-27 14:00:00'),
(6183,NULL,NULL,6179,67,41,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 14:00:28','2026-03-27 14:00:38'),
(6184,10,NULL,NULL,NULL,40,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 14:00:40','2026-03-27 14:00:40'),
(6185,NULL,NULL,6184,67,41,'2026-03-27 13:58:00',NULL,'live',NULL,NULL,'2026-03-27 14:00:40','2026-03-27 14:00:40'),
(6186,NULL,NULL,6184,67,41,'2026-03-27 13:59:00',NULL,'live',NULL,NULL,'2026-03-27 14:00:40','2026-03-27 14:00:40'),
(6187,NULL,NULL,6184,67,41,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 14:00:40','2026-03-27 14:00:40'),
(6188,NULL,NULL,6184,67,41,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 14:00:40','2026-03-27 14:00:40'),
(6189,10,NULL,NULL,NULL,46,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-27 14:02:42','2026-03-27 14:02:42'),
(6192,10,NULL,NULL,NULL,40,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 14:16:53','2026-03-27 14:16:53'),
(6193,NULL,NULL,6192,67,41,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-27 14:16:53','2026-03-27 14:16:53'),
(6196,10,NULL,NULL,NULL,40,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:18:41','2026-03-27 14:19:56'),
(6197,NULL,NULL,6196,67,41,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:18:52','2026-03-27 14:19:09'),
(6198,NULL,NULL,6196,67,41,'2026-03-27 14:19:00',NULL,'live',0,0,'2026-03-27 14:19:19','2026-03-27 14:19:27'),
(6199,NULL,NULL,6196,67,41,'2026-03-27 14:19:00',NULL,'live',0,0,'2026-03-27 14:19:32','2026-03-27 14:19:45'),
(6200,10,NULL,NULL,NULL,40,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:19:56','2026-03-27 14:19:56'),
(6201,NULL,NULL,6200,67,41,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:19:56','2026-03-27 14:19:56'),
(6202,NULL,NULL,6200,67,41,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:19:56','2026-03-27 14:19:56'),
(6203,NULL,NULL,6200,67,41,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:19:56','2026-03-27 14:19:56'),
(6207,NULL,NULL,6196,67,41,'2026-03-27 14:20:00',NULL,'live',NULL,NULL,'2026-03-27 14:20:36','2026-03-27 14:20:36'),
(6208,10,NULL,NULL,NULL,40,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-27 14:20:36','2026-03-27 14:20:36'),
(6209,NULL,NULL,6208,67,41,'2026-03-27 14:20:00',NULL,'live',NULL,NULL,'2026-03-27 14:20:36','2026-03-27 14:20:36'),
(6210,10,NULL,NULL,NULL,46,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-27 14:20:48','2026-03-27 14:20:48'),
(6211,10,NULL,NULL,NULL,46,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-27 14:20:52','2026-03-27 14:33:18'),
(6212,10,NULL,NULL,NULL,40,'2026-03-27 14:21:00',NULL,'live',NULL,NULL,'2026-03-27 14:21:27','2026-03-27 14:21:57'),
(6213,NULL,NULL,6212,67,41,'2026-03-27 14:21:00',NULL,'live',NULL,NULL,'2026-03-27 14:21:31','2026-03-27 14:21:49'),
(6214,10,NULL,NULL,NULL,40,'2026-03-27 14:21:00',NULL,'live',NULL,NULL,'2026-03-27 14:21:58','2026-03-27 14:21:58'),
(6215,NULL,NULL,6214,67,41,'2026-03-27 14:21:00',NULL,'live',NULL,NULL,'2026-03-27 14:21:58','2026-03-27 14:21:58'),
(6216,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-27 14:22:02','2026-03-27 14:23:11'),
(6217,NULL,NULL,6216,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 14:22:09','2026-03-27 14:22:21'),
(6218,NULL,NULL,6216,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 14:22:29','2026-03-27 14:22:41'),
(6219,NULL,NULL,6216,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 14:22:46','2026-03-27 14:22:56'),
(6220,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-27 14:23:11','2026-03-27 14:23:11'),
(6221,NULL,NULL,6220,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 14:23:11','2026-03-27 14:23:11'),
(6222,NULL,NULL,6220,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 14:23:11','2026-03-27 14:23:11'),
(6223,NULL,NULL,6220,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-27 14:23:11','2026-03-27 14:23:11'),
(6224,10,NULL,NULL,NULL,40,'2026-03-27 14:26:00',NULL,'live',NULL,NULL,'2026-03-27 14:25:17','2026-03-27 14:26:44'),
(6225,NULL,NULL,6224,67,41,'2026-03-27 14:25:00',NULL,'live',NULL,NULL,'2026-03-27 14:25:38','2026-03-27 14:25:45'),
(6226,NULL,NULL,6224,67,41,'2026-03-27 14:25:00',NULL,'live',NULL,NULL,'2026-03-27 14:25:47','2026-03-27 14:25:59'),
(6227,NULL,NULL,6224,67,41,'2026-03-27 14:26:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:06','2026-03-27 14:26:24'),
(6228,10,NULL,NULL,NULL,40,'2026-03-27 14:26:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:44','2026-03-27 14:26:44'),
(6229,NULL,NULL,6228,67,41,'2026-03-27 14:25:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:44','2026-03-27 14:26:44'),
(6230,NULL,NULL,6228,67,41,'2026-03-27 14:25:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:44','2026-03-27 14:26:44'),
(6231,NULL,NULL,6228,67,41,'2026-03-27 14:26:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:44','2026-03-27 14:26:44'),
(6232,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:51','2026-03-27 14:33:15'),
(6233,NULL,NULL,6232,67,41,'2026-03-27 14:28:00',NULL,'live',NULL,NULL,'2026-03-27 14:26:57','2026-03-27 14:28:17'),
(6234,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-27 14:33:15','2026-03-27 14:33:15'),
(6235,NULL,NULL,6234,67,41,'2026-03-27 14:28:00',NULL,'live',NULL,NULL,'2026-03-27 14:33:15','2026-03-27 14:33:15'),
(6236,10,NULL,NULL,NULL,46,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-27 14:33:18','2026-03-27 14:33:18'),
(6242,NULL,NULL,6232,67,41,'2026-03-27 14:46:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6243,NULL,NULL,6232,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6244,NULL,NULL,6232,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6245,NULL,NULL,6232,67,41,'2026-03-27 14:48:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6246,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6247,NULL,NULL,6246,67,41,'2026-03-27 14:46:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6248,NULL,NULL,6246,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6249,NULL,NULL,6246,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6250,NULL,NULL,6246,67,41,'2026-03-27 14:48:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:19','2026-03-27 14:48:19'),
(6251,10,NULL,NULL,NULL,46,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:23','2026-03-27 14:48:23'),
(6252,10,NULL,NULL,NULL,46,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:25','2026-03-27 14:50:26'),
(6253,10,NULL,NULL,NULL,40,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:42','2026-03-27 14:49:54'),
(6254,NULL,NULL,6253,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:48:51','2026-03-27 14:49:04'),
(6255,NULL,NULL,6253,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:10','2026-03-27 14:49:18'),
(6256,NULL,NULL,6253,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:19','2026-03-27 14:49:30'),
(6257,NULL,NULL,6253,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:31','2026-03-27 14:49:41'),
(6258,NULL,NULL,6253,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:45','2026-03-27 14:49:52'),
(6259,10,NULL,NULL,NULL,40,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:54','2026-03-27 14:49:54'),
(6260,NULL,NULL,6259,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:54','2026-03-27 14:49:54'),
(6261,NULL,NULL,6259,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:54','2026-03-27 14:49:54'),
(6262,NULL,NULL,6259,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:54','2026-03-27 14:49:54'),
(6263,NULL,NULL,6259,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:55','2026-03-27 14:49:55'),
(6264,NULL,NULL,6259,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-27 14:49:55','2026-03-27 14:49:55'),
(6265,10,NULL,NULL,NULL,40,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:02','2026-03-27 14:50:22'),
(6266,NULL,NULL,6265,67,41,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:04','2026-03-27 14:50:12'),
(6267,NULL,NULL,6265,67,41,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:13','2026-03-27 14:50:21'),
(6268,10,NULL,NULL,NULL,40,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:22','2026-03-27 14:50:22'),
(6269,NULL,NULL,6268,67,41,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:22','2026-03-27 14:50:22'),
(6270,NULL,NULL,6268,67,41,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:22','2026-03-27 14:50:22'),
(6271,10,NULL,NULL,NULL,46,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-27 14:50:26','2026-03-27 14:50:26'),
(6274,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 10:07:47','2026-03-29 10:07:47'),
(6275,NULL,NULL,6274,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-29 10:07:47','2026-03-29 10:07:47'),
(6278,NULL,NULL,38,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-03-29 10:42:40','2026-03-29 10:42:40'),
(6279,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 10:42:40','2026-03-29 10:42:40'),
(6280,NULL,NULL,6279,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-03-29 10:42:40','2026-03-29 10:42:40'),
(6283,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 10:49:24','2026-03-29 10:49:24'),
(6284,NULL,NULL,6283,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-03-29 10:49:24','2026-03-29 10:49:24'),
(6287,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 10:52:16','2026-03-29 10:52:16'),
(6288,NULL,NULL,6287,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-03-29 10:52:16','2026-03-29 10:52:16'),
(6291,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 10:53:27','2026-03-29 10:53:27'),
(6292,NULL,NULL,6291,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-03-29 10:53:27','2026-03-29 10:53:27'),
(6295,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 10:53:43','2026-03-29 10:53:43'),
(6296,NULL,NULL,6295,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-29 10:53:43','2026-03-29 10:53:43'),
(6299,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 11:46:49','2026-03-29 11:46:49'),
(6300,NULL,NULL,6299,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-29 11:46:49','2026-03-29 11:46:49'),
(6303,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 11:55:05','2026-03-29 11:55:05'),
(6304,NULL,NULL,6303,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-29 11:55:05','2026-03-29 11:55:05'),
(6307,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-29 11:55:36','2026-03-29 11:55:36'),
(6308,NULL,NULL,6307,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-29 11:55:36','2026-03-29 11:55:36'),
(6311,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 10:18:17','2026-03-30 10:18:17'),
(6312,NULL,NULL,6311,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-30 10:18:17','2026-03-30 10:18:17'),
(6315,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 10:56:54','2026-03-30 10:56:54'),
(6316,NULL,NULL,6315,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-30 10:56:54','2026-03-30 10:56:54'),
(6320,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 10:57:29','2026-03-30 10:57:29'),
(6321,NULL,NULL,6320,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-30 10:57:29','2026-03-30 10:57:29'),
(6327,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 10:57:52','2026-03-30 10:57:52'),
(6328,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 10:58:01','2026-03-30 10:58:01'),
(6332,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 16:48:43','2026-03-30 16:48:43'),
(6333,NULL,NULL,6332,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-30 16:48:43','2026-03-30 16:48:43'),
(6334,NULL,NULL,6332,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-03-30 16:48:43','2026-03-30 16:48:43'),
(6336,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-30 16:49:56','2026-03-30 16:49:56'),
(6340,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-30 18:01:13','2026-03-30 18:01:13'),
(6342,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-30 18:01:34','2026-03-30 18:01:34'),
(6343,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-30 18:02:28','2026-03-30 18:02:28'),
(6346,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-30 18:31:48','2026-03-30 18:31:48'),
(6350,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:17:00','2026-03-31 09:17:00'),
(6351,NULL,NULL,6350,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:17:01','2026-03-31 09:17:01'),
(6352,10,NULL,NULL,NULL,40,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-31 09:18:49','2026-03-31 09:18:49'),
(6355,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:20:18','2026-03-31 09:20:18'),
(6356,NULL,NULL,6355,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-31 09:20:18','2026-03-31 09:20:18'),
(6359,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:21:10','2026-03-31 09:21:10'),
(6360,NULL,NULL,6359,67,41,'2026-03-27 14:46:00',NULL,'live',NULL,NULL,'2026-03-31 09:21:10','2026-03-31 09:21:10'),
(6363,10,NULL,NULL,NULL,40,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-31 09:22:14','2026-03-31 09:22:14'),
(6364,NULL,NULL,6363,67,41,'2026-03-27 14:49:00',NULL,'live',NULL,NULL,'2026-03-31 09:22:14','2026-03-31 09:22:14'),
(6365,10,NULL,NULL,NULL,46,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-31 09:22:16','2026-03-31 09:22:16'),
(6367,10,NULL,NULL,NULL,40,'2026-03-27 14:00:00',NULL,'live',NULL,NULL,'2026-03-31 09:22:48','2026-03-31 09:22:48'),
(6370,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:23:36','2026-03-31 09:23:36'),
(6371,NULL,NULL,6370,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:23:36','2026-03-31 09:23:36'),
(6374,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:24:13','2026-03-31 09:24:13'),
(6375,NULL,NULL,6374,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:24:13','2026-03-31 09:24:13'),
(6378,10,NULL,NULL,NULL,40,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-31 09:25:13','2026-03-31 09:25:13'),
(6379,NULL,NULL,6378,67,41,'2026-03-27 14:20:00',NULL,'live',NULL,NULL,'2026-03-31 09:25:13','2026-03-31 09:25:13'),
(6381,10,NULL,NULL,NULL,46,'2026-03-25 17:54:00',NULL,'live',NULL,NULL,'2026-03-31 09:25:43','2026-03-31 09:25:43'),
(6383,10,NULL,NULL,NULL,46,'2026-03-27 13:28:00',NULL,'live',NULL,NULL,'2026-03-31 09:26:35','2026-03-31 09:26:35'),
(6385,10,NULL,NULL,NULL,46,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:26:59','2026-03-31 09:26:59'),
(6387,10,NULL,NULL,NULL,40,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-31 09:28:32','2026-03-31 09:28:32'),
(6389,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:29:27','2026-03-31 09:29:27'),
(6392,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:29:58','2026-03-31 09:29:58'),
(6393,NULL,NULL,6392,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:29:58','2026-03-31 09:29:58'),
(6400,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:30:41','2026-03-31 09:30:41'),
(6401,NULL,NULL,6400,67,41,'2026-03-27 14:28:00',NULL,'live',NULL,NULL,'2026-03-31 09:30:41','2026-03-31 09:30:41'),
(6402,NULL,NULL,6400,67,41,'2026-03-27 14:46:00',NULL,'live',NULL,NULL,'2026-03-31 09:30:41','2026-03-31 09:30:41'),
(6403,NULL,NULL,6400,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-31 09:30:41','2026-03-31 09:30:41'),
(6404,NULL,NULL,6400,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-31 09:30:41','2026-03-31 09:30:41'),
(6405,NULL,NULL,6400,67,41,'2026-03-27 14:48:00',NULL,'live',NULL,NULL,'2026-03-31 09:30:41','2026-03-31 09:30:41'),
(6408,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:33:06','2026-03-31 09:33:06'),
(6409,NULL,NULL,6408,67,41,'2026-03-27 14:28:00',NULL,'live',NULL,NULL,'2026-03-31 09:33:06','2026-03-31 09:33:06'),
(6411,10,NULL,NULL,NULL,46,'2026-03-27 14:50:00',NULL,'live',NULL,NULL,'2026-03-31 09:33:52','2026-03-31 09:33:52'),
(6414,10,NULL,NULL,NULL,40,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-31 09:34:32','2026-03-31 09:34:32'),
(6415,NULL,NULL,6414,67,41,'2026-03-27 14:19:00',NULL,'live',NULL,NULL,'2026-03-31 09:34:32','2026-03-31 09:34:32'),
(6418,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-03-31 09:35:14','2026-03-31 09:35:14'),
(6419,NULL,NULL,6418,67,41,'2026-03-27 14:47:00',NULL,'live',NULL,NULL,'2026-03-31 09:35:14','2026-03-31 09:35:14'),
(6422,10,NULL,NULL,NULL,40,'2026-03-27 14:26:00',NULL,'live',NULL,NULL,'2026-03-31 09:36:10','2026-03-31 09:36:10'),
(6423,NULL,NULL,6422,67,41,'2026-03-27 14:26:00',NULL,'live',NULL,NULL,'2026-03-31 09:36:10','2026-03-31 09:36:10'),
(6426,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:37:18','2026-03-31 09:37:18'),
(6427,NULL,NULL,6426,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:37:18','2026-03-31 09:37:18'),
(6430,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:38:35','2026-03-31 09:38:35'),
(6431,NULL,NULL,6430,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:38:35','2026-03-31 09:38:35'),
(6434,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:39:18','2026-03-31 09:39:18'),
(6435,NULL,NULL,6434,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:39:18','2026-03-31 09:39:18'),
(6438,10,NULL,NULL,NULL,40,'2026-03-27 14:23:00',NULL,'live',NULL,NULL,'2026-03-31 09:40:07','2026-03-31 09:40:07'),
(6439,NULL,NULL,6438,67,41,'2026-03-27 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:40:07','2026-03-31 09:40:07'),
(6444,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:41:19','2026-03-31 09:41:19'),
(6445,NULL,NULL,6444,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-03-31 09:41:19','2026-03-31 09:41:19'),
(6446,NULL,NULL,6445,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-03-31 09:41:19','2026-03-31 09:41:19'),
(6447,NULL,NULL,6446,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2026-03-31 09:41:19','2026-03-31 09:41:19'),
(6448,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',0,0,'2026-03-31 09:43:42','2026-03-31 09:53:06'),
(6459,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6460,NULL,NULL,274,22,12,'2026-03-26 10:35:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6461,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6462,NULL,NULL,274,22,12,'2025-12-03 18:17:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6463,NULL,NULL,274,22,12,'2025-12-03 19:16:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6464,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6465,NULL,NULL,6464,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6466,NULL,NULL,6465,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6467,NULL,NULL,6465,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6468,NULL,NULL,6465,22,12,'2026-03-26 10:35:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6469,NULL,NULL,6465,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6470,NULL,NULL,6465,22,12,'2025-12-03 18:17:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6471,NULL,NULL,6465,22,12,'2025-12-03 19:16:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:06','2026-03-31 09:53:06'),
(6472,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:53:10','2026-03-31 09:53:10'),
(6475,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:54:30','2026-03-31 09:54:30'),
(6476,NULL,NULL,6475,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-31 09:54:30','2026-03-31 09:54:30'),
(6480,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:55:41','2026-03-31 09:55:41'),
(6481,NULL,NULL,6480,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 09:55:41','2026-03-31 09:55:41'),
(6484,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:58:11','2026-03-31 09:58:11'),
(6485,NULL,NULL,6484,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-03-31 09:58:11','2026-03-31 09:58:11'),
(6487,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 09:58:47','2026-03-31 09:58:47'),
(6488,NULL,NULL,6487,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-03-31 09:58:47','2026-03-31 09:58:47'),
(6496,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6497,NULL,NULL,6496,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6498,NULL,NULL,6497,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6499,NULL,NULL,6498,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6500,NULL,NULL,6496,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6501,NULL,NULL,6500,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6502,NULL,NULL,6501,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2026-03-31 10:00:26','2026-03-31 10:00:26'),
(6507,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 10:11:57','2026-03-31 10:11:57'),
(6508,NULL,NULL,6507,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 10:11:57','2026-03-31 10:11:57'),
(6511,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 10:12:25','2026-03-31 10:12:25'),
(6512,NULL,NULL,6511,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 10:12:25','2026-03-31 10:12:25'),
(6515,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 10:12:55','2026-03-31 10:12:55'),
(6516,NULL,NULL,6515,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 10:12:55','2026-03-31 10:12:55'),
(6519,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 10:14:31','2026-03-31 10:14:31'),
(6520,NULL,NULL,6519,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-03-31 10:14:31','2026-03-31 10:14:31'),
(6523,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-03-31 17:20:17','2026-03-31 17:20:17'),
(6524,NULL,NULL,6523,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-03-31 17:20:17','2026-03-31 17:20:17'),
(6528,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-01 09:45:16','2026-04-01 09:45:16'),
(6529,NULL,NULL,6528,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-04-01 09:45:16','2026-04-01 09:45:16'),
(6530,NULL,NULL,6528,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-04-01 09:45:16','2026-04-01 09:45:16'),
(6539,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 10:07:09','2026-04-01 10:07:09'),
(6540,NULL,NULL,6539,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:07:09','2026-04-01 10:07:09'),
(6541,NULL,NULL,6539,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:07:09','2026-04-01 10:07:09'),
(6542,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 10:07:12','2026-04-01 10:07:12'),
(6546,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 10:08:29','2026-04-01 10:08:29'),
(6547,NULL,NULL,6546,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:08:29','2026-04-01 10:08:29'),
(6548,NULL,NULL,6546,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:08:29','2026-04-01 10:08:29'),
(6549,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 10:08:33','2026-04-01 10:08:33'),
(6550,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6551,NULL,NULL,6550,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6552,NULL,NULL,6550,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6553,NULL,NULL,6550,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6554,NULL,NULL,6550,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6555,NULL,NULL,6550,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6556,NULL,NULL,6555,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6557,NULL,NULL,6555,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6558,NULL,NULL,6555,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6559,NULL,NULL,6555,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6560,NULL,NULL,6555,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6561,NULL,NULL,6555,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6563,NULL,NULL,6555,63,30,'2026-03-19 22:43:00',NULL,'live',0,0,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6564,NULL,NULL,6550,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 10:09:16','2026-04-01 10:09:16'),
(6568,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6569,NULL,NULL,6568,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6570,NULL,NULL,6568,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6571,NULL,NULL,6568,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6572,NULL,NULL,6568,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6573,NULL,NULL,6568,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6574,NULL,NULL,6573,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6575,NULL,NULL,6573,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6576,NULL,NULL,6573,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6577,NULL,NULL,6573,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6578,NULL,NULL,6573,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6579,NULL,NULL,6573,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6581,NULL,NULL,6573,63,30,'2026-03-19 22:43:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6582,NULL,NULL,6568,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 10:12:10','2026-04-01 10:12:10'),
(6590,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-01 10:45:35','2026-04-01 10:45:35'),
(6591,NULL,NULL,6590,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-04-01 10:45:35','2026-04-01 10:45:35'),
(6599,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-01 14:52:28','2026-04-01 14:52:28'),
(6600,NULL,NULL,6599,7,28,'2026-02-02 19:00:00',NULL,'live',NULL,NULL,'2026-04-01 14:52:28','2026-04-01 14:52:28'),
(6606,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:05','2026-04-01 14:56:05'),
(6607,NULL,NULL,6606,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:06','2026-04-01 14:56:06'),
(6608,NULL,NULL,6607,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:06','2026-04-01 14:56:06'),
(6611,NULL,NULL,6607,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:06','2026-04-01 14:56:06'),
(6612,NULL,NULL,6607,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:06','2026-04-01 14:56:06'),
(6613,NULL,NULL,6607,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:06','2026-04-01 14:56:06'),
(6614,NULL,NULL,6607,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-01 14:56:06','2026-04-01 14:56:06'),
(6617,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-01 14:59:54','2026-04-01 14:59:54'),
(6618,NULL,NULL,6617,7,47,'2026-03-29 10:42:00',NULL,'live',NULL,NULL,'2026-04-01 14:59:54','2026-04-01 14:59:54'),
(6621,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2026-04-01 15:06:48','2026-04-01 15:06:48'),
(6623,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2026-04-01 15:07:49','2026-04-01 15:07:49'),
(6634,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6635,NULL,NULL,6634,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6636,NULL,NULL,6634,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6637,NULL,NULL,6634,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6638,NULL,NULL,6634,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6639,NULL,NULL,6638,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6640,NULL,NULL,6638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6641,NULL,NULL,6638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6642,NULL,NULL,6638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6643,NULL,NULL,6638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6644,NULL,NULL,6638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 15:20:20','2026-04-01 15:20:20'),
(6646,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:25','2026-04-01 15:23:25'),
(6647,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:43','2026-04-01 15:23:43'),
(6648,NULL,NULL,6647,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:43','2026-04-01 15:23:43'),
(6649,NULL,NULL,6647,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:43','2026-04-01 15:23:43'),
(6650,NULL,NULL,6647,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6651,NULL,NULL,6647,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6652,NULL,NULL,6647,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6653,NULL,NULL,6652,63,30,'2026-03-03 09:01:00',NULL,'live',0,0,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6654,NULL,NULL,6652,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6657,NULL,NULL,6652,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6660,NULL,NULL,6647,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 15:23:44','2026-04-01 15:23:44'),
(6661,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:02','2026-04-01 16:58:02'),
(6662,NULL,NULL,6661,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:02','2026-04-01 16:58:02'),
(6663,NULL,NULL,6661,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6664,NULL,NULL,6661,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6665,NULL,NULL,6661,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6666,NULL,NULL,6661,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6667,NULL,NULL,6666,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6668,NULL,NULL,6666,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6671,NULL,NULL,6666,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6674,NULL,NULL,6661,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 16:58:03','2026-04-01 16:58:03'),
(6679,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 17:11:07','2026-04-01 17:11:07'),
(6680,NULL,NULL,6679,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 17:11:07','2026-04-01 17:11:07'),
(6681,NULL,NULL,6679,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 17:11:07','2026-04-01 17:11:07'),
(6698,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6699,NULL,NULL,6698,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6700,NULL,NULL,6698,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6701,NULL,NULL,6698,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6702,NULL,NULL,6698,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6703,NULL,NULL,6702,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6704,NULL,NULL,6702,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6707,NULL,NULL,6702,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:22','2026-04-01 18:00:22'),
(6711,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:00:41','2026-04-01 18:00:41'),
(6712,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6713,NULL,NULL,6712,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6714,NULL,NULL,6712,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6715,NULL,NULL,6712,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6716,NULL,NULL,6712,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6717,NULL,NULL,6712,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6718,NULL,NULL,6717,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6719,NULL,NULL,6717,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6720,NULL,NULL,6717,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6721,NULL,NULL,6717,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6722,NULL,NULL,6717,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6723,NULL,NULL,6717,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6724,NULL,NULL,6717,63,30,'2026-03-03 09:03:00',NULL,'live',0,0,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6725,NULL,NULL,6712,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 18:04:12','2026-04-01 18:04:12'),
(6743,NULL,NULL,6717,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:04','2026-04-01 18:42:04'),
(6744,NULL,NULL,6717,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:04','2026-04-01 18:42:04'),
(6745,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:07','2026-04-01 18:42:07'),
(6746,NULL,NULL,6745,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:07','2026-04-01 18:42:07'),
(6747,NULL,NULL,6745,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:07','2026-04-01 18:42:07'),
(6748,NULL,NULL,6745,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6749,NULL,NULL,6745,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6750,NULL,NULL,6745,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6751,NULL,NULL,6750,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6752,NULL,NULL,6750,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6753,NULL,NULL,6750,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6754,NULL,NULL,6750,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6755,NULL,NULL,6750,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6756,NULL,NULL,6750,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6757,NULL,NULL,6745,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:08','2026-04-01 18:42:08'),
(6758,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:12','2026-04-01 18:42:12'),
(6759,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6760,NULL,NULL,6759,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6761,NULL,NULL,6759,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6762,NULL,NULL,6759,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6763,NULL,NULL,6759,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6764,NULL,NULL,6759,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6765,NULL,NULL,6764,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6766,NULL,NULL,6764,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6767,NULL,NULL,6764,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6768,NULL,NULL,6764,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6769,NULL,NULL,6764,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6770,NULL,NULL,6764,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6771,NULL,NULL,6759,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 18:42:39','2026-04-01 18:42:39'),
(6772,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6773,NULL,NULL,6772,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6774,NULL,NULL,6772,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6775,NULL,NULL,6772,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6776,NULL,NULL,6772,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6777,NULL,NULL,6772,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6778,NULL,NULL,6777,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6779,NULL,NULL,6777,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6780,NULL,NULL,6777,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6781,NULL,NULL,6777,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6782,NULL,NULL,6777,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6783,NULL,NULL,6777,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6784,NULL,NULL,6772,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 18:43:00','2026-04-01 18:43:00'),
(6804,NULL,NULL,6764,63,30,'2026-04-01 19:09:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6805,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6806,NULL,NULL,6805,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6807,NULL,NULL,6805,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6808,NULL,NULL,6805,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6809,NULL,NULL,6805,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6810,NULL,NULL,6809,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6811,NULL,NULL,6809,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6812,NULL,NULL,6809,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6813,NULL,NULL,6809,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6814,NULL,NULL,6809,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6815,NULL,NULL,6809,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6816,NULL,NULL,6809,63,30,'2026-04-01 19:09:00',NULL,'live',NULL,NULL,'2026-04-01 19:10:02','2026-04-01 19:10:02'),
(6817,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:18:01','2026-04-01 19:18:01'),
(6818,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:05','2026-04-01 19:19:05'),
(6819,NULL,NULL,6818,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:05','2026-04-01 19:19:05'),
(6820,NULL,NULL,6818,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:05','2026-04-01 19:19:05'),
(6821,NULL,NULL,6818,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:05','2026-04-01 19:19:05'),
(6822,NULL,NULL,6818,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:06','2026-04-01 19:19:06'),
(6823,NULL,NULL,6818,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:06','2026-04-01 19:19:06'),
(6824,NULL,NULL,6823,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:06','2026-04-01 19:19:06'),
(6825,NULL,NULL,6823,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:06','2026-04-01 19:19:06'),
(6830,NULL,NULL,6818,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:06','2026-04-01 19:19:06'),
(6831,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6832,NULL,NULL,6831,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6833,NULL,NULL,6831,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6834,NULL,NULL,6831,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6835,NULL,NULL,6831,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6836,NULL,NULL,6831,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6837,NULL,NULL,6836,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6838,NULL,NULL,6836,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6843,NULL,NULL,6831,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-01 19:19:31','2026-04-01 19:19:31'),
(6845,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:22:42','2026-04-01 19:22:42'),
(6864,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6865,NULL,NULL,6864,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6866,NULL,NULL,6864,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6867,NULL,NULL,6864,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6868,NULL,NULL,6864,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6869,NULL,NULL,6868,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6870,NULL,NULL,6868,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-01 19:44:58','2026-04-01 19:44:58'),
(6875,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-01 19:45:02','2026-04-01 19:45:02'),
(6878,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:42:06','2026-04-02 08:42:06'),
(6879,NULL,NULL,6878,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:42:06','2026-04-02 08:42:06'),
(6882,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:42:34','2026-04-02 08:42:34'),
(6883,NULL,NULL,6882,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:42:34','2026-04-02 08:42:34'),
(6892,NULL,NULL,912,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:49:29','2026-04-02 08:49:29'),
(6893,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:49:29','2026-04-02 08:49:29'),
(6894,NULL,NULL,6893,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:49:29','2026-04-02 08:49:29'),
(6895,NULL,NULL,6893,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:49:29','2026-04-02 08:49:29'),
(6896,NULL,NULL,6893,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:49:29','2026-04-02 08:49:29'),
(6897,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:49:31','2026-04-02 08:49:31'),
(6900,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:51:27','2026-04-02 08:51:27'),
(6901,NULL,NULL,6900,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:51:27','2026-04-02 08:51:27'),
(6904,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:52:45','2026-04-02 08:52:45'),
(6905,NULL,NULL,6904,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:52:45','2026-04-02 08:52:45'),
(6908,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:53:13','2026-04-02 08:53:13'),
(6909,NULL,NULL,6908,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:53:13','2026-04-02 08:53:13'),
(6912,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:53:37','2026-04-02 08:53:37'),
(6913,NULL,NULL,6912,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:53:37','2026-04-02 08:53:37'),
(6916,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:54:45','2026-04-02 08:54:45'),
(6917,NULL,NULL,6916,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-02 08:54:45','2026-04-02 08:54:45'),
(6919,10,NULL,NULL,NULL,40,'2026-03-27 14:33:00',NULL,'live',NULL,NULL,'2026-04-02 08:56:55','2026-04-02 08:56:55'),
(6922,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-04-02 08:57:51','2026-04-02 08:57:51'),
(6923,NULL,NULL,6922,7,29,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-04-02 08:57:51','2026-04-02 08:57:51'),
(6926,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-04-02 09:00:44','2026-04-02 09:00:44'),
(6927,NULL,NULL,6926,7,29,'2026-02-08 09:21:00',NULL,'live',NULL,NULL,'2026-04-02 09:00:45','2026-04-02 09:00:45'),
(6929,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-02 09:10:40','2026-04-02 09:10:40'),
(6932,NULL,NULL,6931,51,25,NULL,NULL,'pending',NULL,NULL,'2026-04-02 09:17:00','2026-04-02 09:17:00'),
(6933,NULL,NULL,6932,50,16,NULL,NULL,'pending',NULL,NULL,'2026-04-02 09:17:07','2026-04-02 09:17:07'),
(6934,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6935,NULL,NULL,6934,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6936,NULL,NULL,6934,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6937,NULL,NULL,6934,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6938,NULL,NULL,6934,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6939,NULL,NULL,6934,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6944,NULL,NULL,6939,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6945,NULL,NULL,6939,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6946,NULL,NULL,6934,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-03 10:33:52','2026-04-03 10:33:52'),
(6947,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6948,NULL,NULL,6947,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6949,NULL,NULL,6947,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6950,NULL,NULL,6947,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6951,NULL,NULL,6947,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6952,NULL,NULL,6947,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6957,NULL,NULL,6952,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6958,NULL,NULL,6952,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6959,NULL,NULL,6947,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-03 10:34:12','2026-04-03 10:34:12'),
(6979,NULL,NULL,6939,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6980,NULL,NULL,6939,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6981,NULL,NULL,6939,63,30,'2026-04-03 10:56:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6982,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6983,NULL,NULL,6982,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6984,NULL,NULL,6982,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6985,NULL,NULL,6982,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6986,NULL,NULL,6982,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6991,NULL,NULL,6986,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6992,NULL,NULL,6986,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6993,NULL,NULL,6986,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6994,NULL,NULL,6986,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6995,NULL,NULL,6986,63,30,'2026-04-03 10:56:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:14','2026-04-03 10:56:14'),
(6996,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 10:56:18','2026-04-03 10:56:18'),
(6997,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(6998,NULL,NULL,6997,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(6999,NULL,NULL,6997,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7000,NULL,NULL,6997,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7001,NULL,NULL,6997,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7002,NULL,NULL,6997,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7004,NULL,NULL,7002,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7005,NULL,NULL,7002,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7006,NULL,NULL,7002,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7007,NULL,NULL,7002,63,30,'2026-04-01 18:41:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7008,NULL,NULL,7002,63,30,'2026-04-01 18:41:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7009,NULL,NULL,7002,63,30,'2026-04-03 10:55:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7010,NULL,NULL,7002,63,30,'2026-04-03 10:55:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7011,NULL,NULL,7002,63,30,'2026-04-03 10:56:00',NULL,'live',0,0,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7012,NULL,NULL,6997,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-03 10:57:41','2026-04-03 10:57:41'),
(7017,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7018,NULL,NULL,7017,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7019,NULL,NULL,7017,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7020,NULL,NULL,7017,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7021,NULL,NULL,7017,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7022,NULL,NULL,7017,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7024,NULL,NULL,7022,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7025,NULL,NULL,7022,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7026,NULL,NULL,7022,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7027,NULL,NULL,7022,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7028,NULL,NULL,7022,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7029,NULL,NULL,7022,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7030,NULL,NULL,7022,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7031,NULL,NULL,7022,63,30,'2026-04-03 10:56:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7032,NULL,NULL,7017,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-03 10:58:41','2026-04-03 10:58:41'),
(7053,NULL,NULL,7002,63,30,'2026-04-03 11:14:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:10','2026-04-03 11:17:10'),
(7058,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:11','2026-04-03 11:17:11'),
(7059,NULL,NULL,7058,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:11','2026-04-03 11:17:11'),
(7060,NULL,NULL,7058,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:11','2026-04-03 11:17:11'),
(7061,NULL,NULL,7058,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:11','2026-04-03 11:17:11'),
(7062,NULL,NULL,7058,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:11','2026-04-03 11:17:11'),
(7068,NULL,NULL,7062,63,30,'2026-04-03 11:14:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:11','2026-04-03 11:17:11'),
(7073,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:17:26','2026-04-03 11:17:26'),
(7074,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7075,NULL,NULL,7074,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7076,NULL,NULL,7074,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7077,NULL,NULL,7074,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7078,NULL,NULL,7074,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7079,NULL,NULL,7074,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7080,NULL,NULL,7079,63,30,'2026-03-03 09:01:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7081,NULL,NULL,7079,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7082,NULL,NULL,7079,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7083,NULL,NULL,7079,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7084,NULL,NULL,7079,63,30,'2026-04-01 18:41:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7085,NULL,NULL,7079,63,30,'2026-04-01 18:41:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7086,NULL,NULL,7079,63,30,'2026-04-03 10:55:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7087,NULL,NULL,7079,63,30,'2026-04-03 10:55:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7088,NULL,NULL,7079,63,30,'2026-04-03 10:56:00',NULL,'live',0,0,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7089,NULL,NULL,7074,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-03 11:25:38','2026-04-03 11:25:38'),
(7091,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:27:01','2026-04-03 11:27:01'),
(7093,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:27:18','2026-04-03 11:27:18'),
(7094,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7095,NULL,NULL,7094,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7096,NULL,NULL,7094,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7097,NULL,NULL,7094,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7098,NULL,NULL,7094,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7099,NULL,NULL,7094,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7100,NULL,NULL,7099,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7101,NULL,NULL,7099,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7102,NULL,NULL,7099,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7103,NULL,NULL,7099,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7104,NULL,NULL,7099,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7105,NULL,NULL,7099,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7106,NULL,NULL,7099,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7107,NULL,NULL,7099,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7108,NULL,NULL,7099,63,30,'2026-04-03 10:56:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7109,NULL,NULL,7094,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-03 11:52:20','2026-04-03 11:52:20'),
(7115,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 11:55:15','2026-04-03 11:55:15'),
(7131,NULL,NULL,7079,63,30,'2026-04-03 12:14:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:57','2026-04-03 12:19:57'),
(7134,NULL,NULL,7079,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:57','2026-04-03 12:19:57'),
(7135,NULL,NULL,7079,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:57','2026-04-03 12:19:57'),
(7136,NULL,NULL,7079,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:57','2026-04-03 12:19:57'),
(7137,NULL,NULL,7079,63,30,'2026-04-03 12:19:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:57','2026-04-03 12:19:57'),
(7139,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:57','2026-04-03 12:19:57'),
(7140,NULL,NULL,7139,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7141,NULL,NULL,7139,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7142,NULL,NULL,7139,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7143,NULL,NULL,7139,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7144,NULL,NULL,7143,63,30,'2026-04-03 12:14:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7147,NULL,NULL,7143,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7148,NULL,NULL,7143,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7149,NULL,NULL,7143,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7150,NULL,NULL,7143,63,30,'2026-04-03 12:19:00',NULL,'live',NULL,NULL,'2026-04-03 12:19:58','2026-04-03 12:19:58'),
(7152,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-03 12:20:01','2026-04-03 12:20:01'),
(7153,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-03 12:20:16','2026-04-03 12:20:16'),
(7164,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-03 14:05:01','2026-04-03 14:05:01'),
(7165,NULL,NULL,7164,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 14:05:01','2026-04-03 14:05:01'),
(7168,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-03 14:06:16','2026-04-03 14:06:16'),
(7169,NULL,NULL,7168,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-04-03 14:06:16','2026-04-03 14:06:16'),
(7172,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-03 14:06:48','2026-04-03 14:06:48'),
(7173,NULL,NULL,7172,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 14:06:48','2026-04-03 14:06:48'),
(7176,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-03 14:07:22','2026-04-03 14:07:22'),
(7177,NULL,NULL,7176,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 14:07:22','2026-04-03 14:07:22'),
(7181,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-03 14:09:43','2026-04-03 14:09:43'),
(7182,NULL,NULL,7181,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 14:09:43','2026-04-03 14:09:43'),
(7183,NULL,NULL,7181,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 14:09:43','2026-04-03 14:09:43'),
(7186,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-03 14:10:18','2026-04-03 14:10:18'),
(7187,NULL,NULL,7186,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-03 14:10:18','2026-04-03 14:10:18'),
(7190,NULL,NULL,912,7,48,'2026-04-06 08:35:00',NULL,'live',0,0,'2026-04-06 08:35:57','2026-04-06 08:35:57'),
(7191,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-06 08:35:57','2026-04-06 08:35:57'),
(7192,NULL,NULL,7191,7,48,'2026-04-06 08:35:00',NULL,'live',NULL,NULL,'2026-04-06 08:35:57','2026-04-06 08:35:57'),
(7195,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:02:55','2026-04-06 09:02:55'),
(7196,NULL,NULL,7195,7,48,'2026-04-06 08:35:00',NULL,'live',NULL,NULL,'2026-04-06 09:02:55','2026-04-06 09:02:55'),
(7199,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:22:51','2026-04-06 09:22:51'),
(7200,NULL,NULL,7199,7,48,'2026-04-06 08:35:00',NULL,'live',NULL,NULL,'2026-04-06 09:22:51','2026-04-06 09:22:51'),
(7202,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:29:37','2026-04-06 09:29:37'),
(7205,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:49:38','2026-04-06 09:49:38'),
(7206,NULL,NULL,7205,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:49:38','2026-04-06 09:49:38'),
(7209,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:50:31','2026-04-06 09:50:31'),
(7210,NULL,NULL,7209,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:50:31','2026-04-06 09:50:31'),
(7218,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:01','2026-04-06 09:54:01'),
(7219,NULL,NULL,7218,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:01','2026-04-06 09:54:01'),
(7222,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:13','2026-04-06 09:54:13'),
(7223,NULL,NULL,7222,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:13','2026-04-06 09:54:13'),
(7226,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:27','2026-04-06 09:54:27'),
(7227,NULL,NULL,7226,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:27','2026-04-06 09:54:27'),
(7230,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:39','2026-04-06 09:54:39'),
(7231,NULL,NULL,7230,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:39','2026-04-06 09:54:39'),
(7234,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:51','2026-04-06 09:54:51'),
(7235,NULL,NULL,7234,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:54:51','2026-04-06 09:54:51'),
(7238,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:01','2026-04-06 09:55:01'),
(7239,NULL,NULL,7238,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:01','2026-04-06 09:55:01'),
(7242,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:10','2026-04-06 09:55:10'),
(7243,NULL,NULL,7242,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:10','2026-04-06 09:55:10'),
(7246,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:23','2026-04-06 09:55:23'),
(7247,NULL,NULL,7246,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:23','2026-04-06 09:55:23'),
(7250,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:47','2026-04-06 09:55:47'),
(7251,NULL,NULL,7250,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:47','2026-04-06 09:55:47'),
(7254,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:57','2026-04-06 09:55:57'),
(7255,NULL,NULL,7254,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:55:57','2026-04-06 09:55:57'),
(7258,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:08','2026-04-06 09:56:08'),
(7259,NULL,NULL,7258,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:08','2026-04-06 09:56:08'),
(7262,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:18','2026-04-06 09:56:18'),
(7263,NULL,NULL,7262,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:18','2026-04-06 09:56:18'),
(7266,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:29','2026-04-06 09:56:29'),
(7267,NULL,NULL,7266,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:29','2026-04-06 09:56:29'),
(7270,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:41','2026-04-06 09:56:41'),
(7271,NULL,NULL,7270,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:41','2026-04-06 09:56:41'),
(7274,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:53','2026-04-06 09:56:53'),
(7275,NULL,NULL,7274,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:56:53','2026-04-06 09:56:53'),
(7278,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:57:04','2026-04-06 09:57:04'),
(7279,NULL,NULL,7278,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:57:04','2026-04-06 09:57:04'),
(7282,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:57:14','2026-04-06 09:57:14'),
(7283,NULL,NULL,7282,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:57:14','2026-04-06 09:57:14'),
(7286,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-06 09:57:25','2026-04-06 09:57:25'),
(7287,NULL,NULL,7286,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 09:57:25','2026-04-06 09:57:25'),
(7297,NULL,NULL,4033,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7298,NULL,NULL,4033,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7299,NULL,NULL,4033,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7300,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7301,NULL,NULL,7300,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7302,NULL,NULL,7301,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7303,NULL,NULL,7301,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7304,NULL,NULL,7301,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7305,NULL,NULL,7301,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7306,NULL,NULL,7300,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7307,NULL,NULL,7300,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:39','2026-04-06 13:44:39'),
(7308,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 13:44:43','2026-04-06 13:44:43'),
(7316,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:30','2026-04-06 14:05:30'),
(7317,NULL,NULL,7316,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:30','2026-04-06 14:05:30'),
(7318,NULL,NULL,7317,66,35,'2026-03-19 19:12:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:30','2026-04-06 14:05:30'),
(7319,NULL,NULL,7316,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:30','2026-04-06 14:05:30'),
(7320,NULL,NULL,7316,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:30','2026-04-06 14:05:30'),
(7321,NULL,NULL,7316,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:30','2026-04-06 14:05:30'),
(7322,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:35','2026-04-06 14:05:35'),
(7325,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:50','2026-04-06 14:05:50'),
(7326,NULL,NULL,7325,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 14:05:50','2026-04-06 14:05:50'),
(7329,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:41:30','2026-04-06 15:41:30'),
(7330,NULL,NULL,7329,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 15:41:30','2026-04-06 15:41:30'),
(7331,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:41:33','2026-04-06 15:41:33'),
(7340,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:44:54','2026-04-06 15:44:54'),
(7341,NULL,NULL,7340,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:44:54','2026-04-06 15:44:54'),
(7342,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:44:57','2026-04-06 15:44:57'),
(7345,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:45:24','2026-04-06 15:45:24'),
(7346,NULL,NULL,7345,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-06 15:45:24','2026-04-06 15:45:24'),
(7347,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:45:28','2026-04-06 15:45:28'),
(7356,NULL,NULL,4425,66,35,'2026-04-06 15:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7357,NULL,NULL,4425,66,35,'2026-04-06 15:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7358,NULL,NULL,4425,66,35,'2026-04-06 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7359,NULL,NULL,4425,66,35,'2026-04-06 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7360,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7361,NULL,NULL,7360,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7362,NULL,NULL,7361,66,35,'2026-04-06 15:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7363,NULL,NULL,7361,66,35,'2026-04-06 15:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7364,NULL,NULL,7361,66,35,'2026-04-06 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7365,NULL,NULL,7361,66,35,'2026-04-06 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:48:42','2026-04-06 15:48:42'),
(7372,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:49:45','2026-04-06 15:49:45'),
(7373,NULL,NULL,7372,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:49:45','2026-04-06 15:49:45'),
(7374,NULL,NULL,7373,66,35,'2026-04-06 15:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:49:45','2026-04-06 15:49:45'),
(7375,NULL,NULL,7373,66,35,'2026-04-06 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:49:45','2026-04-06 15:49:45'),
(7376,NULL,NULL,7373,66,35,'2026-04-06 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:49:46','2026-04-06 15:49:46'),
(7377,NULL,NULL,7373,66,35,'2026-04-06 15:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:49:46','2026-04-06 15:49:46'),
(7380,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:53:50','2026-04-06 15:53:50'),
(7381,NULL,NULL,7380,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:53:50','2026-04-06 15:53:50'),
(7384,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 15:54:53','2026-04-06 15:54:53'),
(7385,NULL,NULL,7384,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 15:54:53','2026-04-06 15:54:53'),
(7390,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:27:46','2026-04-06 20:27:46'),
(7391,NULL,NULL,7390,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-06 20:27:46','2026-04-06 20:27:46'),
(7392,NULL,NULL,7390,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-06 20:27:46','2026-04-06 20:27:46'),
(7393,NULL,NULL,7390,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-06 20:27:46','2026-04-06 20:27:46'),
(7394,NULL,NULL,7390,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 20:27:46','2026-04-06 20:27:46'),
(7395,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:27:50','2026-04-06 20:27:50'),
(7401,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:30:42','2026-04-06 20:30:42'),
(7402,NULL,NULL,7401,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-06 20:30:42','2026-04-06 20:30:42'),
(7403,NULL,NULL,7402,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-06 20:30:42','2026-04-06 20:30:42'),
(7404,NULL,NULL,7402,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-06 20:30:42','2026-04-06 20:30:42'),
(7405,NULL,NULL,7401,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 20:30:42','2026-04-06 20:30:42'),
(7412,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:15','2026-04-06 20:50:15'),
(7413,NULL,NULL,7412,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:15','2026-04-06 20:50:15'),
(7414,NULL,NULL,7413,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:15','2026-04-06 20:50:15'),
(7415,NULL,NULL,7413,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:15','2026-04-06 20:50:15'),
(7416,NULL,NULL,7413,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:15','2026-04-06 20:50:15'),
(7417,NULL,NULL,7413,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:15','2026-04-06 20:50:15'),
(7418,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:50:18','2026-04-06 20:50:18'),
(7422,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:53:52','2026-04-06 20:53:52'),
(7423,NULL,NULL,7422,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-06 20:53:52','2026-04-06 20:53:52'),
(7424,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:53:55','2026-04-06 20:53:55'),
(7429,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:58:45','2026-04-06 20:58:45'),
(7430,NULL,NULL,7429,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 20:58:45','2026-04-06 20:58:45'),
(7431,NULL,NULL,7430,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 20:58:45','2026-04-06 20:58:45'),
(7432,NULL,NULL,7429,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-06 20:58:45','2026-04-06 20:58:45'),
(7433,NULL,NULL,7429,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-06 20:58:45','2026-04-06 20:58:45'),
(7434,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 20:58:49','2026-04-06 20:58:49'),
(7444,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7445,NULL,NULL,7444,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7446,NULL,NULL,7444,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7447,NULL,NULL,7446,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7448,NULL,NULL,7446,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7449,NULL,NULL,7446,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7450,NULL,NULL,7446,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7451,NULL,NULL,7444,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7452,NULL,NULL,7444,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:07','2026-04-06 21:12:07'),
(7453,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 21:12:10','2026-04-06 21:12:10'),
(7465,NULL,NULL,4310,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7466,NULL,NULL,4310,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7467,NULL,NULL,4310,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7468,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7469,NULL,NULL,7468,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7470,NULL,NULL,7469,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7471,NULL,NULL,7468,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7472,NULL,NULL,7471,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7473,NULL,NULL,7471,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:55','2026-04-06 21:26:55'),
(7474,NULL,NULL,7471,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:56','2026-04-06 21:26:56'),
(7475,NULL,NULL,7471,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:56','2026-04-06 21:26:56'),
(7476,NULL,NULL,7468,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:56','2026-04-06 21:26:56'),
(7477,NULL,NULL,7468,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:56','2026-04-06 21:26:56'),
(7478,NULL,NULL,7468,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:56','2026-04-06 21:26:56'),
(7479,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-06 21:26:59','2026-04-06 21:26:59'),
(7482,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 08:18:03','2026-04-07 08:18:03'),
(7483,NULL,NULL,7482,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 08:18:03','2026-04-07 08:18:03'),
(7486,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 09:16:09','2026-04-07 09:16:09'),
(7487,NULL,NULL,7486,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 09:16:09','2026-04-07 09:16:09'),
(7488,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 09:16:12','2026-04-07 09:16:12'),
(7491,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 09:17:32','2026-04-07 09:17:32'),
(7492,NULL,NULL,7491,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 09:17:32','2026-04-07 09:17:32'),
(7495,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 09:17:53','2026-04-07 09:17:53'),
(7496,NULL,NULL,7495,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 09:17:53','2026-04-07 09:17:53'),
(7499,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 09:18:17','2026-04-07 09:18:17'),
(7500,NULL,NULL,7499,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 09:18:17','2026-04-07 09:18:17'),
(7507,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 19:20:04','2026-04-07 19:20:04'),
(7508,NULL,NULL,7507,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 19:20:04','2026-04-07 19:20:04'),
(7509,NULL,NULL,7507,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 19:20:04','2026-04-07 19:20:04'),
(7510,NULL,NULL,7507,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-07 19:20:04','2026-04-07 19:20:04'),
(7511,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-07 19:20:08','2026-04-07 19:20:08'),
(7512,NULL,NULL,6939,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-13 08:46:57','2026-04-13 08:55:16'),
(7524,NULL,NULL,6939,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7525,NULL,NULL,6939,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7526,NULL,NULL,6939,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7527,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7528,NULL,NULL,7527,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7529,NULL,NULL,7528,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7530,NULL,NULL,7528,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7531,NULL,NULL,7528,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7532,NULL,NULL,7528,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7533,NULL,NULL,7528,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7534,NULL,NULL,7528,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7535,NULL,NULL,7528,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:16','2026-04-13 08:55:16'),
(7536,NULL,NULL,7528,63,30,'2026-04-03 10:55:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:17','2026-04-13 08:55:17'),
(7537,NULL,NULL,7528,63,30,'2026-04-03 10:56:00',NULL,'live',NULL,NULL,'2026-04-13 08:55:17','2026-04-13 08:55:17'),
(7541,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:13:54','2026-04-13 09:13:54'),
(7542,NULL,NULL,7541,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 09:13:54','2026-04-13 09:13:54'),
(7543,NULL,NULL,7542,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 09:13:54','2026-04-13 09:13:54'),
(7547,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:16:00','2026-04-13 09:16:00'),
(7548,NULL,NULL,7547,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 09:16:00','2026-04-13 09:16:00'),
(7549,NULL,NULL,7548,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:16:00','2026-04-13 09:16:00'),
(7553,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:17:20','2026-04-13 09:17:20'),
(7554,NULL,NULL,7553,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 09:17:20','2026-04-13 09:17:20'),
(7555,NULL,NULL,7554,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:17:20','2026-04-13 09:17:20'),
(7556,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:18:56','2026-04-13 09:18:56'),
(7560,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:21:43','2026-04-13 09:21:43'),
(7561,NULL,NULL,7560,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 09:21:43','2026-04-13 09:21:43'),
(7564,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:22:47','2026-04-13 09:22:47'),
(7565,NULL,NULL,7564,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 09:22:47','2026-04-13 09:22:47'),
(7566,NULL,NULL,4717,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 09:23:49','2026-04-13 09:29:39'),
(7582,NULL,NULL,4717,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7583,NULL,NULL,4717,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7584,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7585,NULL,NULL,7584,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7586,NULL,NULL,7585,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7587,NULL,NULL,7584,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7588,NULL,NULL,7584,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7589,NULL,NULL,7588,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7590,NULL,NULL,7588,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7591,NULL,NULL,7588,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7592,NULL,NULL,7588,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7593,NULL,NULL,7588,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7594,NULL,NULL,7588,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7595,NULL,NULL,7588,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7596,NULL,NULL,7588,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7597,NULL,NULL,7588,63,30,'2026-03-19 19:04:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7598,NULL,NULL,7588,63,30,'2026-03-19 19:05:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:39','2026-04-13 09:29:39'),
(7599,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:29:49','2026-04-13 09:29:49'),
(7605,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:34:35','2026-04-13 09:34:35'),
(7606,NULL,NULL,7605,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 09:34:35','2026-04-13 09:34:35'),
(7607,NULL,NULL,7606,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:34:35','2026-04-13 09:34:35'),
(7608,NULL,NULL,7606,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 09:34:35','2026-04-13 09:34:35'),
(7612,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:36:40','2026-04-13 09:36:40'),
(7613,NULL,NULL,7612,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 09:36:40','2026-04-13 09:36:40'),
(7614,NULL,NULL,7613,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 09:36:40','2026-04-13 09:36:40'),
(7615,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 09:36:42','2026-04-13 09:36:42'),
(7618,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 09:39:48','2026-04-13 09:39:48'),
(7619,NULL,NULL,7618,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 09:39:48','2026-04-13 09:39:48'),
(7634,NULL,NULL,6555,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7635,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7636,NULL,NULL,7635,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7637,NULL,NULL,7635,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7638,NULL,NULL,7635,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7639,NULL,NULL,7638,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7640,NULL,NULL,7638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7641,NULL,NULL,7638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7642,NULL,NULL,7638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7643,NULL,NULL,7638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7644,NULL,NULL,7638,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7645,NULL,NULL,7638,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:04','2026-04-13 10:30:04'),
(7646,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 10:30:07','2026-04-13 10:30:07'),
(7653,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 10:36:07','2026-04-13 10:36:07'),
(7654,NULL,NULL,7653,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 10:36:07','2026-04-13 10:36:07'),
(7655,NULL,NULL,7654,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:36:07','2026-04-13 10:36:07'),
(7656,NULL,NULL,7654,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:36:07','2026-04-13 10:36:07'),
(7657,NULL,NULL,7654,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:36:07','2026-04-13 10:36:07'),
(7658,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 10:36:09','2026-04-13 10:36:09'),
(7659,NULL,NULL,1966,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-04-13 10:38:36','2026-04-13 10:46:44'),
(7661,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 10:39:04','2026-04-13 10:46:44'),
(7662,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 10:40:32','2026-04-13 10:46:44'),
(7663,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 10:40:55','2026-04-13 10:46:44'),
(7664,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 10:41:14','2026-04-13 10:46:44'),
(7665,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-04-13 10:41:42','2026-04-13 10:46:44'),
(7673,NULL,NULL,1966,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7674,NULL,NULL,1966,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7675,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7676,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7677,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7678,NULL,NULL,7677,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7679,NULL,NULL,7677,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7680,NULL,NULL,7679,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7681,NULL,NULL,7679,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7682,NULL,NULL,7679,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7683,NULL,NULL,7679,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7684,NULL,NULL,7679,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7685,NULL,NULL,7679,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7686,NULL,NULL,7679,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7687,NULL,NULL,7679,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7688,NULL,NULL,7679,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7689,NULL,NULL,7679,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 10:46:44','2026-04-13 10:46:44'),
(7690,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 10:47:11','2026-04-13 10:47:11'),
(7691,NULL,NULL,7002,63,30,'2026-04-03 11:12:00',NULL,'live',0,0,'2026-04-13 11:11:38','2026-04-13 11:22:17'),
(7693,NULL,NULL,7002,63,30,'2026-03-03 09:01:00',NULL,'live',0,0,'2026-04-13 11:11:56','2026-04-13 11:22:17'),
(7694,NULL,NULL,7002,63,30,'2026-04-03 11:12:00',NULL,'live',0,0,'2026-04-13 11:12:16','2026-04-13 11:22:17'),
(7695,NULL,NULL,7002,63,30,'2026-04-03 11:11:00',NULL,'live',0,0,'2026-04-13 11:12:49','2026-04-13 11:22:17'),
(7696,NULL,NULL,7002,63,30,'2026-04-03 11:16:00',NULL,'live',0,0,'2026-04-13 11:13:20','2026-04-13 11:22:17'),
(7704,NULL,NULL,7002,63,30,'2026-04-03 11:12:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7705,NULL,NULL,7002,63,30,'2026-04-03 11:15:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7706,NULL,NULL,7002,63,30,'2026-04-03 11:15:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7707,NULL,NULL,7002,63,30,'2026-04-03 11:16:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7708,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7709,NULL,NULL,7708,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7710,NULL,NULL,7709,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7711,NULL,NULL,7709,63,30,'2026-04-03 11:11:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7712,NULL,NULL,7709,63,30,'2026-04-03 11:12:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7713,NULL,NULL,7709,63,30,'2026-04-03 11:12:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7714,NULL,NULL,7709,63,30,'2026-04-03 11:12:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7715,NULL,NULL,7709,63,30,'2026-04-03 11:14:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7716,NULL,NULL,7709,63,30,'2026-04-03 11:15:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7717,NULL,NULL,7709,63,30,'2026-04-03 11:15:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7718,NULL,NULL,7709,63,30,'2026-04-03 11:16:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7719,NULL,NULL,7709,63,30,'2026-04-03 11:16:00',NULL,'live',NULL,NULL,'2026-04-13 11:22:17','2026-04-13 11:22:17'),
(7726,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 12:24:04','2026-04-13 12:24:04'),
(7727,NULL,NULL,7726,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:24:04','2026-04-13 12:24:04'),
(7728,NULL,NULL,7727,63,30,'2026-04-03 11:15:00',NULL,'live',NULL,NULL,'2026-04-13 12:24:04','2026-04-13 12:24:04'),
(7732,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-13 12:26:24','2026-04-13 12:26:24'),
(7733,NULL,NULL,7732,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:26:24','2026-04-13 12:26:24'),
(7734,NULL,NULL,7733,63,30,'2026-04-03 11:14:00',NULL,'live',NULL,NULL,'2026-04-13 12:26:24','2026-04-13 12:26:24'),
(7737,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 12:27:25','2026-04-13 12:27:25'),
(7738,NULL,NULL,7737,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:27:25','2026-04-13 12:27:25'),
(7747,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7748,NULL,NULL,7747,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7749,NULL,NULL,7748,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7750,NULL,NULL,7748,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7751,NULL,NULL,7748,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7752,NULL,NULL,7748,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7753,NULL,NULL,7748,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:44:41','2026-04-13 12:44:41'),
(7758,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-13 12:45:34','2026-04-13 12:45:34'),
(7759,NULL,NULL,7758,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2026-04-13 12:45:34','2026-04-13 12:45:34'),
(7760,NULL,NULL,7759,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2026-04-13 12:45:34','2026-04-13 12:45:34'),
(7761,NULL,NULL,7760,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2026-04-13 12:45:34','2026-04-13 12:45:34'),
(7765,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 12:47:41','2026-04-13 12:47:41'),
(7766,NULL,NULL,7765,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-13 12:47:41','2026-04-13 12:47:41'),
(7767,NULL,NULL,7766,66,35,'2026-03-18 12:05:00',NULL,'live',NULL,NULL,'2026-04-13 12:47:41','2026-04-13 12:47:41'),
(7768,NULL,NULL,7765,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:47:41','2026-04-13 12:47:41'),
(7781,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7782,NULL,NULL,7781,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7784,NULL,NULL,7782,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7785,NULL,NULL,7782,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7787,NULL,NULL,7782,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7788,NULL,NULL,7782,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7789,NULL,NULL,7782,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7790,NULL,NULL,7782,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:48:59','2026-04-13 12:48:59'),
(7794,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 12:50:11','2026-04-13 12:50:11'),
(7795,NULL,NULL,7794,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:50:11','2026-04-13 12:50:11'),
(7796,NULL,NULL,7795,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:50:11','2026-04-13 12:50:11'),
(7797,NULL,NULL,4218,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-04-13 12:52:12','2026-04-13 12:54:27'),
(7809,NULL,NULL,4218,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7810,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7811,NULL,NULL,7810,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7812,NULL,NULL,7810,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7813,NULL,NULL,7812,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7814,NULL,NULL,7812,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7815,NULL,NULL,7812,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7816,NULL,NULL,7812,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7817,NULL,NULL,7812,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7818,NULL,NULL,7812,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7819,NULL,NULL,7812,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7820,NULL,NULL,7812,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 12:54:27','2026-04-13 12:54:27'),
(7821,NULL,NULL,4433,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-04-13 12:55:23','2026-04-13 13:01:09'),
(7823,NULL,NULL,4433,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 12:55:58','2026-04-13 13:01:09'),
(7824,NULL,NULL,4433,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-04-13 12:56:33','2026-04-13 13:01:09'),
(7826,NULL,NULL,4433,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-04-13 12:57:36','2026-04-13 13:01:09'),
(7837,NULL,NULL,4433,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7838,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7839,NULL,NULL,7838,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7840,NULL,NULL,7838,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7841,NULL,NULL,7838,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7842,NULL,NULL,7841,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7843,NULL,NULL,7841,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7844,NULL,NULL,7841,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7845,NULL,NULL,7841,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7846,NULL,NULL,7841,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7847,NULL,NULL,7841,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7848,NULL,NULL,7841,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7849,NULL,NULL,7841,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7850,NULL,NULL,7841,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7851,NULL,NULL,7841,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-04-13 13:01:09','2026-04-13 13:01:09'),
(7853,4,NULL,NULL,NULL,9,'2025-12-03 07:52:00',NULL,'live',NULL,NULL,'2026-04-15 14:53:22','2026-04-15 14:53:22'),
(7855,4,NULL,NULL,NULL,9,'2025-12-03 07:52:00',NULL,'live',NULL,NULL,'2026-04-15 15:00:52','2026-04-15 15:00:52'),
(7857,4,NULL,NULL,NULL,9,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-04-15 15:01:22','2026-04-15 15:01:22'),
(7860,4,NULL,NULL,NULL,9,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-04-15 15:02:17','2026-04-15 15:02:17'),
(7862,4,NULL,NULL,NULL,9,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-04-15 15:03:09','2026-04-15 15:03:09'),
(7864,4,NULL,NULL,NULL,9,'2025-12-03 07:54:00',NULL,'live',NULL,NULL,'2026-04-15 15:18:25','2026-04-15 15:18:25'),
(7865,4,NULL,NULL,NULL,9,'2025-12-03 07:54:00',NULL,'live',NULL,NULL,'2026-04-15 15:18:28','2026-04-15 15:18:28'),
(7867,4,NULL,NULL,NULL,9,'2025-04-01 06:54:00',NULL,'live',NULL,NULL,'2026-04-15 15:19:04','2026-04-15 15:19:04'),
(7868,4,NULL,NULL,NULL,9,'2025-04-01 06:54:00',NULL,'live',NULL,NULL,'2026-04-15 15:19:14','2026-04-15 15:19:14'),
(7870,4,NULL,NULL,NULL,9,'2025-04-01 06:54:00',NULL,'live',NULL,NULL,'2026-04-15 15:19:53','2026-04-15 15:19:53'),
(7871,4,NULL,NULL,NULL,9,'2026-04-15 15:23:00',NULL,'live',NULL,NULL,'2026-04-15 15:20:34','2026-04-15 15:23:08'),
(7872,4,NULL,NULL,NULL,9,'2026-04-15 15:23:00',NULL,'live',NULL,NULL,'2026-04-15 15:23:08','2026-04-15 15:23:08'),
(7874,4,NULL,NULL,NULL,9,'2026-04-15 15:23:00',NULL,'live',NULL,NULL,'2026-04-15 15:24:51','2026-04-15 15:24:51'),
(7875,4,NULL,NULL,NULL,9,'2026-04-15 15:23:00',NULL,'live',NULL,NULL,'2026-04-15 15:24:53','2026-04-15 15:24:53'),
(7878,4,NULL,NULL,NULL,9,'2026-04-15 15:23:00',NULL,'live',NULL,NULL,'2026-04-15 15:26:00','2026-04-15 15:26:00'),
(7880,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-15 17:06:15','2026-04-15 17:06:15'),
(7881,NULL,NULL,7880,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-15 17:06:15','2026-04-15 17:06:15'),
(7882,NULL,NULL,7880,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-15 17:06:15','2026-04-15 17:06:15'),
(7883,NULL,NULL,7882,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-15 17:06:15','2026-04-15 17:06:15'),
(7891,NULL,NULL,4702,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-15 17:20:20','2026-04-15 17:20:20'),
(7892,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-15 17:20:20','2026-04-15 17:20:20'),
(7893,NULL,NULL,7892,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-15 17:20:20','2026-04-15 17:20:20'),
(7894,NULL,NULL,7892,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-04-15 17:20:20','2026-04-15 17:20:20'),
(7895,NULL,NULL,7892,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-15 17:20:20','2026-04-15 17:20:20'),
(7896,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-15 17:20:22','2026-04-15 17:20:22'),
(7910,NULL,NULL,4709,66,35,'2026-04-15 17:21:00',NULL,'live',NULL,NULL,'2026-04-15 17:26:19','2026-04-15 17:26:19'),
(7911,NULL,NULL,4709,66,35,'2026-04-15 17:21:00',NULL,'live',NULL,NULL,'2026-04-15 17:26:19','2026-04-15 17:26:19'),
(7912,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-15 17:26:19','2026-04-15 17:26:19'),
(7913,NULL,NULL,7912,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-04-15 17:26:19','2026-04-15 17:26:19'),
(7914,NULL,NULL,7913,66,35,'2026-04-15 17:21:00',NULL,'live',NULL,NULL,'2026-04-15 17:26:19','2026-04-15 17:26:19'),
(7915,NULL,NULL,7913,66,35,'2026-04-15 17:21:00',NULL,'live',NULL,NULL,'2026-04-15 17:26:19','2026-04-15 17:26:19'),
(7916,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-15 17:27:05','2026-04-15 17:27:05'),
(7919,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-16 12:10:18','2026-04-16 12:10:18'),
(7920,NULL,NULL,7919,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-04-16 12:10:18','2026-04-16 12:10:18'),
(7924,NULL,NULL,887,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-04-16 12:11:07','2026-04-16 12:11:07'),
(7925,NULL,NULL,7924,6,1,'2026-03-20 00:43:00',NULL,'live',NULL,NULL,'2026-04-16 12:11:07','2026-04-16 12:11:07'),
(7926,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-04-16 12:11:07','2026-04-16 12:11:07'),
(7927,NULL,NULL,7926,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-04-16 12:11:07','2026-04-16 12:11:07'),
(7928,NULL,NULL,7927,6,1,'2026-03-20 00:43:00',NULL,'live',NULL,NULL,'2026-04-16 12:11:07','2026-04-16 12:11:07'),
(7929,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-04-16 12:11:09','2026-04-16 12:11:09'),
(7932,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-16 12:20:07','2026-04-16 12:20:07'),
(7933,NULL,NULL,7932,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 12:20:07','2026-04-16 12:20:07'),
(7938,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 12:36:18','2026-04-16 12:36:18'),
(7939,NULL,NULL,7938,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 12:36:18','2026-04-16 12:36:18'),
(7940,NULL,NULL,7938,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 12:36:18','2026-04-16 12:36:18'),
(7941,NULL,NULL,7940,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-16 12:36:18','2026-04-16 12:36:18'),
(7945,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 12:41:20','2026-04-16 12:41:20'),
(7946,NULL,NULL,7945,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 12:41:20','2026-04-16 12:41:20'),
(7949,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 12:44:03','2026-04-16 12:44:03'),
(7950,NULL,NULL,7949,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 12:44:04','2026-04-16 12:44:04'),
(7959,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7960,NULL,NULL,7959,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7961,NULL,NULL,7959,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7962,NULL,NULL,7961,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7963,NULL,NULL,7961,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7964,NULL,NULL,7961,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7965,NULL,NULL,7961,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7966,NULL,NULL,7961,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:02','2026-04-16 12:49:02'),
(7967,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 12:49:06','2026-04-16 12:49:06'),
(7996,NULL,NULL,6652,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:33','2026-04-16 13:20:33'),
(7997,NULL,NULL,6652,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:33','2026-04-16 13:20:33'),
(7998,NULL,NULL,6652,63,30,'2026-04-16 13:12:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:33','2026-04-16 13:20:33'),
(7999,NULL,NULL,6652,63,30,'2026-04-16 13:14:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:33','2026-04-16 13:20:33'),
(8000,NULL,NULL,6652,63,30,'2026-04-16 13:15:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:33','2026-04-16 13:20:33'),
(8001,NULL,NULL,6652,63,30,'2026-04-16 13:17:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8002,NULL,NULL,6652,63,30,'2026-04-16 13:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8003,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8004,NULL,NULL,8003,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8005,NULL,NULL,8003,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8006,NULL,NULL,8003,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8007,NULL,NULL,8003,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8008,NULL,NULL,8007,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8009,NULL,NULL,8007,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8010,NULL,NULL,8007,63,30,'2026-04-16 13:12:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8011,NULL,NULL,8007,63,30,'2026-04-16 13:14:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8012,NULL,NULL,8007,63,30,'2026-04-16 13:15:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8013,NULL,NULL,8007,63,30,'2026-04-16 13:17:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8014,NULL,NULL,8007,63,30,'2026-04-16 13:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:20:34','2026-04-16 13:20:34'),
(8015,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:21:16','2026-04-16 13:21:16'),
(8016,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:21:19','2026-04-16 13:21:19'),
(8020,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:27:28','2026-04-16 13:27:28'),
(8021,NULL,NULL,8020,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:27:28','2026-04-16 13:27:28'),
(8022,NULL,NULL,8021,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:27:28','2026-04-16 13:27:28'),
(8023,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:27:32','2026-04-16 13:27:32'),
(8027,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:28:51','2026-04-16 13:28:51'),
(8028,NULL,NULL,8027,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:28:51','2026-04-16 13:28:51'),
(8029,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:40:55','2026-04-16 13:40:55'),
(8043,NULL,NULL,6823,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8044,NULL,NULL,6823,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8045,NULL,NULL,6823,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8046,NULL,NULL,6823,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8047,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8048,NULL,NULL,8047,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8049,NULL,NULL,8047,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8050,NULL,NULL,8047,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8051,NULL,NULL,8047,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8052,NULL,NULL,8051,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8053,NULL,NULL,8051,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8054,NULL,NULL,8051,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8055,NULL,NULL,8051,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8056,NULL,NULL,8051,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8057,NULL,NULL,8051,63,30,'2026-04-01 18:41:00',NULL,'live',NULL,NULL,'2026-04-16 13:51:08','2026-04-16 13:51:08'),
(8060,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:55:16','2026-04-16 13:55:16'),
(8061,NULL,NULL,8060,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 13:55:16','2026-04-16 13:55:16'),
(8064,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:55:58','2026-04-16 13:55:58'),
(8065,NULL,NULL,8064,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:55:58','2026-04-16 13:55:58'),
(8066,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 13:56:02','2026-04-16 13:56:02'),
(8071,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-16 13:57:12','2026-04-16 13:57:12'),
(8072,NULL,NULL,8071,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 13:57:12','2026-04-16 13:57:12'),
(8073,NULL,NULL,8072,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-04-16 13:57:12','2026-04-16 13:57:12'),
(8074,NULL,NULL,8072,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-04-16 13:57:12','2026-04-16 13:57:12'),
(8079,NULL,NULL,5113,63,30,'2026-03-03 09:02:00',NULL,'live',0,0,'2026-04-16 14:01:29','2026-04-16 14:17:03'),
(8089,NULL,NULL,5113,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:03','2026-04-16 14:17:03'),
(8090,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:03','2026-04-16 14:17:03'),
(8091,NULL,NULL,8090,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8092,NULL,NULL,8090,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8093,NULL,NULL,8090,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8094,NULL,NULL,8090,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8095,NULL,NULL,8094,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8096,NULL,NULL,8094,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8097,NULL,NULL,8094,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8098,NULL,NULL,8094,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8099,NULL,NULL,8094,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8100,NULL,NULL,8094,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8101,NULL,NULL,8094,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:04','2026-04-16 14:17:04'),
(8102,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 14:17:06','2026-04-16 14:17:06'),
(8117,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8118,NULL,NULL,8117,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8119,NULL,NULL,8117,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8120,NULL,NULL,8117,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8121,NULL,NULL,8120,63,30,'2026-03-03 09:01:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8122,NULL,NULL,8120,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8123,NULL,NULL,8120,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8124,NULL,NULL,8120,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8125,NULL,NULL,8120,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:57','2026-04-16 14:33:57'),
(8126,NULL,NULL,8120,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:58','2026-04-16 14:33:58'),
(8127,NULL,NULL,8120,63,30,'2026-03-03 09:03:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:58','2026-04-16 14:33:58'),
(8128,NULL,NULL,8120,63,30,'2026-03-19 22:43:00',NULL,'live',NULL,NULL,'2026-04-16 14:33:58','2026-04-16 14:33:58'),
(8132,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-16 14:35:29','2026-04-16 14:35:29'),
(8133,NULL,NULL,8132,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-04-16 14:35:29','2026-04-16 14:35:29'),
(8134,NULL,NULL,8133,22,12,'2025-12-03 18:17:00',NULL,'live',NULL,NULL,'2026-04-16 14:35:29','2026-04-16 14:35:29'),
(8138,NULL,NULL,7079,63,30,'2026-04-03 12:17:00',NULL,'live',0,0,'2026-04-16 14:36:50','2026-04-16 14:47:37'),
(8139,NULL,NULL,7079,63,30,'2026-04-03 12:19:00',NULL,'live',0,0,'2026-04-16 14:37:12','2026-04-16 14:47:37'),
(8151,NULL,NULL,7079,63,30,'2026-04-03 12:15:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8152,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8153,NULL,NULL,8152,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8154,NULL,NULL,8152,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8155,NULL,NULL,8152,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8156,NULL,NULL,8152,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8157,NULL,NULL,8156,63,30,'2026-04-03 12:14:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8158,NULL,NULL,8156,63,30,'2026-04-03 12:15:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8159,NULL,NULL,8156,63,30,'2026-04-03 12:17:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8160,NULL,NULL,8156,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8161,NULL,NULL,8156,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8162,NULL,NULL,8156,63,30,'2026-04-03 12:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8163,NULL,NULL,8156,63,30,'2026-04-03 12:19:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8164,NULL,NULL,8156,63,30,'2026-04-03 12:19:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:37','2026-04-16 14:47:37'),
(8165,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 14:47:40','2026-04-16 14:47:40'),
(8169,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-16 14:51:26','2026-04-16 14:51:26'),
(8170,NULL,NULL,8169,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-04-16 14:51:26','2026-04-16 14:51:26'),
(8171,NULL,NULL,8170,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-04-16 14:51:26','2026-04-16 14:51:26'),
(8176,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-16 14:52:31','2026-04-16 14:52:31'),
(8177,NULL,NULL,8176,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-04-16 14:52:31','2026-04-16 14:52:31'),
(8178,NULL,NULL,8177,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-04-16 14:52:31','2026-04-16 14:52:31'),
(8179,NULL,NULL,8177,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-04-16 14:52:31','2026-04-16 14:52:31'),
(8183,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-16 14:54:00','2026-04-16 14:54:00'),
(8184,NULL,NULL,8183,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-04-16 14:54:00','2026-04-16 14:54:00'),
(8185,NULL,NULL,8184,6,1,'2025-12-03 19:14:00',NULL,'live',NULL,NULL,'2026-04-16 14:54:00','2026-04-16 14:54:00'),
(8190,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-16 14:56:08','2026-04-16 14:56:08'),
(8191,NULL,NULL,8190,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-04-16 14:56:08','2026-04-16 14:56:08'),
(8192,NULL,NULL,8191,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:56:08','2026-04-16 14:56:08'),
(8193,NULL,NULL,8191,63,30,'2026-03-03 09:02:00',NULL,'live',NULL,NULL,'2026-04-16 14:56:08','2026-04-16 14:56:08'),
(8197,6,NULL,NULL,NULL,3,'2025-12-02 16:26:00',NULL,'live',NULL,NULL,'2026-04-17 11:47:28','2026-04-17 11:47:28'),
(8201,6,NULL,NULL,NULL,3,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2026-04-17 11:54:44','2026-04-17 11:54:44'),
(8205,6,NULL,NULL,NULL,3,'2025-12-02 15:40:00',NULL,'live',NULL,NULL,'2026-04-17 12:06:35','2026-04-17 12:06:35'),
(8211,8,NULL,NULL,NULL,5,'2026-02-08 09:03:00',NULL,'live',NULL,NULL,'2026-04-17 12:13:21','2026-04-17 12:13:21'),
(8212,NULL,NULL,8211,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-04-17 12:13:21','2026-04-17 12:13:21'),
(8213,NULL,NULL,8212,6,1,'2026-03-20 00:43:00',NULL,'live',NULL,NULL,'2026-04-17 12:13:21','2026-04-17 12:13:21'),
(8218,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-04-17 12:19:21','2026-04-17 12:19:21'),
(8219,NULL,NULL,8218,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-04-17 12:19:21','2026-04-17 12:19:21'),
(8220,NULL,NULL,8219,6,1,'2026-03-20 00:43:00',NULL,'live',NULL,NULL,'2026-04-17 12:19:22','2026-04-17 12:19:22'),
(8223,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:23:55','2026-04-17 12:23:55'),
(8224,NULL,NULL,8223,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:23:55','2026-04-17 12:23:55'),
(8227,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:07','2026-04-17 12:24:07'),
(8228,NULL,NULL,8227,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:07','2026-04-17 12:24:07'),
(8231,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:16','2026-04-17 12:24:16'),
(8232,NULL,NULL,8231,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:16','2026-04-17 12:24:16'),
(8235,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:25','2026-04-17 12:24:25'),
(8236,NULL,NULL,8235,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:25','2026-04-17 12:24:25'),
(8239,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:36','2026-04-17 12:24:36'),
(8240,NULL,NULL,8239,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:36','2026-04-17 12:24:36'),
(8243,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:44','2026-04-17 12:24:44'),
(8244,NULL,NULL,8243,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:44','2026-04-17 12:24:44'),
(8247,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:54','2026-04-17 12:24:54'),
(8248,NULL,NULL,8247,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:24:54','2026-04-17 12:24:54'),
(8251,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:25:05','2026-04-17 12:25:05'),
(8252,NULL,NULL,8251,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:25:05','2026-04-17 12:25:05'),
(8255,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:25:15','2026-04-17 12:25:15'),
(8256,NULL,NULL,8255,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:25:15','2026-04-17 12:25:15'),
(8259,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 12:25:24','2026-04-17 12:25:24'),
(8260,NULL,NULL,8259,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 12:25:24','2026-04-17 12:25:24'),
(8263,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:14:57','2026-04-17 16:14:57'),
(8264,NULL,NULL,8263,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:14:57','2026-04-17 16:14:57'),
(8267,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:19:31','2026-04-17 16:19:31'),
(8268,NULL,NULL,8267,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:19:31','2026-04-17 16:19:31'),
(8271,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:23:19','2026-04-17 16:23:19'),
(8272,NULL,NULL,8271,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:23:19','2026-04-17 16:23:19'),
(8275,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:27:55','2026-04-17 16:27:55'),
(8276,NULL,NULL,8275,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:27:55','2026-04-17 16:27:55'),
(8279,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:25','2026-04-17 16:28:25'),
(8280,NULL,NULL,8279,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:25','2026-04-17 16:28:25'),
(8283,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:38','2026-04-17 16:28:38'),
(8284,NULL,NULL,8283,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:38','2026-04-17 16:28:38'),
(8287,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:49','2026-04-17 16:28:49'),
(8288,NULL,NULL,8287,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:49','2026-04-17 16:28:49'),
(8291,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:58','2026-04-17 16:28:58'),
(8292,NULL,NULL,8291,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:28:58','2026-04-17 16:28:58'),
(8295,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:09','2026-04-17 16:29:09'),
(8296,NULL,NULL,8295,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:09','2026-04-17 16:29:09'),
(8299,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:19','2026-04-17 16:29:19'),
(8300,NULL,NULL,8299,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:19','2026-04-17 16:29:19'),
(8303,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:29','2026-04-17 16:29:29'),
(8304,NULL,NULL,8303,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:29','2026-04-17 16:29:29'),
(8307,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:38','2026-04-17 16:29:38'),
(8308,NULL,NULL,8307,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:38','2026-04-17 16:29:38'),
(8311,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:46','2026-04-17 16:29:46'),
(8312,NULL,NULL,8311,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:46','2026-04-17 16:29:46'),
(8315,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:55','2026-04-17 16:29:55'),
(8316,NULL,NULL,8315,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-04-17 16:29:55','2026-04-17 16:29:55'),
(8319,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-17 16:33:14','2026-04-17 16:33:14'),
(8320,NULL,NULL,8319,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-17 16:33:14','2026-04-17 16:33:14'),
(8323,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:03:57','2026-04-20 19:03:57'),
(8324,NULL,NULL,8323,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:03:57','2026-04-20 19:03:57'),
(8327,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:04:59','2026-04-20 19:04:59'),
(8328,NULL,NULL,8327,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:04:59','2026-04-20 19:04:59'),
(8331,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:12','2026-04-20 19:05:12'),
(8332,NULL,NULL,8331,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:12','2026-04-20 19:05:12'),
(8335,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:23','2026-04-20 19:05:23'),
(8336,NULL,NULL,8335,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:23','2026-04-20 19:05:23'),
(8339,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:34','2026-04-20 19:05:34'),
(8340,NULL,NULL,8339,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:34','2026-04-20 19:05:34'),
(8343,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:48','2026-04-20 19:05:48'),
(8344,NULL,NULL,8343,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:05:48','2026-04-20 19:05:48'),
(8347,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:08:02','2026-04-20 19:08:02'),
(8348,NULL,NULL,8347,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:08:02','2026-04-20 19:08:02'),
(8351,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:08:22','2026-04-20 19:08:22'),
(8352,NULL,NULL,8351,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:08:22','2026-04-20 19:08:22'),
(8355,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:09:20','2026-04-20 19:09:20'),
(8356,NULL,NULL,8355,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:09:20','2026-04-20 19:09:20'),
(8359,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:13:53','2026-04-20 19:13:53'),
(8360,NULL,NULL,8359,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:13:53','2026-04-20 19:13:53'),
(8363,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-04-20 19:14:16','2026-04-20 19:14:16'),
(8364,NULL,NULL,8363,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:14:16','2026-04-20 19:14:16'),
(8368,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:15:07','2026-04-20 19:15:07'),
(8369,NULL,NULL,8368,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:15:07','2026-04-20 19:15:07'),
(8370,NULL,NULL,8368,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:15:07','2026-04-20 19:15:07'),
(8374,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:15:28','2026-04-20 19:15:28'),
(8375,NULL,NULL,8374,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:15:28','2026-04-20 19:15:28'),
(8376,NULL,NULL,8374,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:15:28','2026-04-20 19:15:28'),
(8380,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:16:22','2026-04-20 19:16:22'),
(8381,NULL,NULL,8380,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:16:22','2026-04-20 19:16:22'),
(8382,NULL,NULL,8380,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:16:22','2026-04-20 19:16:22'),
(8386,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:16:43','2026-04-20 19:16:43'),
(8387,NULL,NULL,8386,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:16:43','2026-04-20 19:16:43'),
(8388,NULL,NULL,8386,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:16:43','2026-04-20 19:16:43'),
(8392,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:00','2026-04-20 19:17:00'),
(8393,NULL,NULL,8392,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:00','2026-04-20 19:17:00'),
(8394,NULL,NULL,8392,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:00','2026-04-20 19:17:00'),
(8398,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:18','2026-04-20 19:17:18'),
(8399,NULL,NULL,8398,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:18','2026-04-20 19:17:18'),
(8400,NULL,NULL,8398,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:18','2026-04-20 19:17:18'),
(8404,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:35','2026-04-20 19:17:35'),
(8405,NULL,NULL,8404,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:35','2026-04-20 19:17:35'),
(8406,NULL,NULL,8404,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:35','2026-04-20 19:17:35'),
(8410,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:50','2026-04-20 19:17:50'),
(8411,NULL,NULL,8410,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:50','2026-04-20 19:17:50'),
(8412,NULL,NULL,8410,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:17:50','2026-04-20 19:17:50'),
(8416,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:18:06','2026-04-20 19:18:06'),
(8417,NULL,NULL,8416,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:18:06','2026-04-20 19:18:06'),
(8418,NULL,NULL,8416,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:18:06','2026-04-20 19:18:06'),
(8422,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:18:24','2026-04-20 19:18:24'),
(8423,NULL,NULL,8422,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:18:24','2026-04-20 19:18:24'),
(8424,NULL,NULL,8422,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:18:24','2026-04-20 19:18:24'),
(8428,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-04-20 19:28:02','2026-04-20 19:28:02'),
(8429,NULL,NULL,8428,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-04-20 19:28:02','2026-04-20 19:28:02'),
(8432,NULL,NULL,912,7,48,'2026-04-20 19:49:00',NULL,'live',NULL,NULL,'2026-04-20 19:49:23','2026-04-20 19:49:23'),
(8433,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:49:23','2026-04-20 19:49:23'),
(8434,NULL,NULL,8433,7,48,'2026-04-20 19:49:00',NULL,'live',NULL,NULL,'2026-04-20 19:49:23','2026-04-20 19:49:23'),
(8436,9,NULL,NULL,NULL,5,'2026-02-08 10:03:00',NULL,'live',NULL,NULL,'2026-04-20 19:49:42','2026-04-20 19:49:42'),
(8437,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:02:54','2026-04-20 20:04:15'),
(8438,NULL,NULL,8437,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:03:46','2026-04-20 20:04:12'),
(8439,NULL,NULL,8438,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:03:53','2026-04-20 20:04:09'),
(8440,NULL,NULL,8439,50,16,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:03:57','2026-04-20 20:04:06'),
(8441,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:15','2026-04-20 20:04:15'),
(8442,NULL,NULL,8441,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:15','2026-04-20 20:04:15'),
(8443,NULL,NULL,8442,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:15','2026-04-20 20:04:15'),
(8444,NULL,NULL,8443,50,16,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:15','2026-04-20 20:04:15'),
(8449,NULL,NULL,8438,51,25,'2026-04-20 20:04:00',NULL,'live',0,0,'2026-04-20 20:04:56','2026-04-20 20:04:56'),
(8450,NULL,NULL,8449,50,17,'2026-04-20 20:04:00',NULL,'live',0,0,'2026-04-20 20:04:56','2026-04-20 20:04:56'),
(8451,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:56','2026-04-20 20:04:56'),
(8452,NULL,NULL,8451,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:56','2026-04-20 20:04:56'),
(8453,NULL,NULL,8452,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:56','2026-04-20 20:04:56'),
(8454,NULL,NULL,8453,50,17,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:04:56','2026-04-20 20:04:56'),
(8459,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:07:44','2026-04-20 20:07:44'),
(8460,NULL,NULL,8459,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:07:44','2026-04-20 20:07:44'),
(8461,NULL,NULL,8460,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:07:44','2026-04-20 20:07:44'),
(8462,NULL,NULL,8461,50,16,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:07:44','2026-04-20 20:07:44'),
(8467,NULL,NULL,8449,50,16,'2026-04-20 20:08:00',NULL,'live',0,0,'2026-04-20 20:08:38','2026-04-20 20:08:38'),
(8468,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:08:38','2026-04-20 20:08:38'),
(8469,NULL,NULL,8468,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:08:38','2026-04-20 20:08:38'),
(8470,NULL,NULL,8469,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:08:38','2026-04-20 20:08:38'),
(8471,NULL,NULL,8470,50,16,'2026-04-20 20:08:00',NULL,'live',NULL,NULL,'2026-04-20 20:08:38','2026-04-20 20:08:38'),
(8476,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:07','2026-04-20 20:09:07'),
(8477,NULL,NULL,8476,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:07','2026-04-20 20:09:07'),
(8478,NULL,NULL,8477,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:07','2026-04-20 20:09:07'),
(8479,NULL,NULL,8478,50,16,'2026-04-20 20:08:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:07','2026-04-20 20:09:07'),
(8484,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:35','2026-04-20 20:09:35'),
(8485,NULL,NULL,8484,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:35','2026-04-20 20:09:35'),
(8486,NULL,NULL,8485,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:35','2026-04-20 20:09:35'),
(8487,NULL,NULL,8486,50,16,'2026-04-20 20:08:00',NULL,'live',NULL,NULL,'2026-04-20 20:09:35','2026-04-20 20:09:35'),
(8492,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:10:12','2026-04-20 20:10:12'),
(8493,NULL,NULL,8492,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:10:12','2026-04-20 20:10:12'),
(8494,NULL,NULL,8493,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:10:12','2026-04-20 20:10:12'),
(8495,NULL,NULL,8494,50,16,'2026-04-20 20:08:00',NULL,'live',NULL,NULL,'2026-04-20 20:10:12','2026-04-20 20:10:12'),
(8500,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:05','2026-04-20 20:11:05'),
(8501,NULL,NULL,8500,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:05','2026-04-20 20:11:05'),
(8502,NULL,NULL,8501,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:05','2026-04-20 20:11:05'),
(8503,NULL,NULL,8502,50,16,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:05','2026-04-20 20:11:05'),
(8508,1,NULL,NULL,NULL,4,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:42','2026-04-20 20:11:42'),
(8509,NULL,NULL,8508,7,15,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:42','2026-04-20 20:11:42'),
(8510,NULL,NULL,8509,51,25,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:42','2026-04-20 20:11:42'),
(8511,NULL,NULL,8510,50,16,'2026-04-20 20:04:00',NULL,'live',NULL,NULL,'2026-04-20 20:11:42','2026-04-20 20:11:42');
/*!40000 ALTER TABLE `entries` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `entries_authors`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `entries_authors` WRITE;
/*!40000 ALTER TABLE `entries_authors` DISABLE KEYS */;
INSERT INTO `entries_authors` VALUES
(37,1,1),
(85,1,1),
(86,1,1),
(87,1,1),
(88,1,1),
(89,1,1),
(92,1,1),
(96,1,1),
(99,1,1),
(100,1,1),
(102,1,1),
(103,1,1),
(104,1,1),
(108,1,1),
(110,1,1),
(111,1,1),
(112,1,1),
(113,1,1),
(115,1,1),
(116,1,1),
(120,1,1),
(124,1,1),
(125,1,1),
(127,1,1),
(129,1,1),
(134,1,1),
(136,1,1),
(161,1,1),
(163,1,1),
(250,1,1),
(251,1,1),
(252,1,1),
(253,1,1),
(319,1,1),
(321,1,1),
(322,1,1),
(323,1,1),
(324,1,1),
(325,1,1),
(326,1,1),
(327,1,1),
(337,1,1),
(339,1,1),
(341,1,1),
(840,1,1),
(1098,1,1),
(1103,1,1),
(1108,1,1),
(1113,1,1),
(1118,1,1),
(1123,1,1),
(1128,1,1),
(1130,1,1),
(1132,1,1),
(1134,1,1),
(1285,1,1),
(1286,1,1),
(1288,1,1),
(1289,1,1),
(1415,1,1),
(1419,1,1),
(1426,1,1),
(1427,1,1),
(1440,1,1),
(1951,1,1),
(3086,1,1),
(3123,1,1),
(3317,1,1),
(3333,1,1),
(3552,1,1),
(3555,1,1),
(3558,1,1),
(3562,1,1),
(3566,1,1),
(3571,1,1),
(3575,1,1),
(3579,1,1),
(3583,1,1),
(3587,1,1),
(3591,1,1),
(3595,1,1),
(3598,1,1),
(3601,1,1),
(3605,1,1),
(3609,1,1),
(3613,1,1),
(3617,1,1),
(3621,1,1),
(3625,1,1),
(3629,1,1),
(3633,1,1),
(3637,1,1),
(3649,1,1),
(3660,1,1),
(3664,1,1),
(3707,1,1),
(3711,1,1),
(3715,1,1),
(3719,1,1),
(3723,1,1),
(3727,1,1),
(3731,1,1),
(3737,1,1),
(3741,1,1),
(3756,1,1),
(3771,1,1),
(3775,1,1),
(3787,1,1),
(3793,1,1),
(3857,1,1),
(3878,1,1),
(3899,1,1),
(3919,1,1),
(3926,1,1),
(3928,1,1),
(3938,1,1),
(3947,1,1),
(3951,1,1),
(3960,1,1),
(3963,1,1),
(3971,1,1),
(3979,1,1),
(3982,1,1),
(3983,1,1),
(3992,1,1),
(3996,1,1),
(3998,1,1),
(4001,1,1),
(4007,1,1),
(4011,1,1),
(4016,1,1),
(4021,1,1),
(4024,1,1),
(4026,1,1),
(4054,1,1),
(4108,1,1),
(4153,1,1),
(4171,1,1),
(4174,1,1),
(4184,1,1),
(4188,1,1),
(4192,1,1),
(4199,1,1),
(4203,1,1),
(4244,1,1),
(4284,1,1),
(4296,1,1),
(4298,1,1),
(4301,1,1),
(4303,1,1),
(4329,1,1),
(4376,1,1),
(4402,1,1),
(4418,1,1),
(4473,1,1),
(4501,1,1),
(4502,1,1),
(4533,1,1),
(4535,1,1),
(4564,1,1),
(4592,1,1),
(4593,1,1),
(4636,1,1),
(4664,1,1),
(4681,1,1),
(4697,1,1),
(4700,1,1),
(4702,1,1),
(4726,1,1),
(4783,1,1),
(4804,1,1),
(4805,1,1),
(4828,1,1),
(4873,1,1),
(4890,1,1),
(4892,1,1),
(4895,1,1),
(4896,1,1),
(4952,1,1),
(4979,1,1),
(4982,1,1),
(5014,1,1),
(5088,1,1),
(5101,1,1),
(5105,1,1),
(5108,1,1),
(5123,1,1),
(5143,1,1),
(5149,1,1),
(5151,1,1),
(5237,1,1),
(5239,1,1),
(5240,1,1),
(5241,1,1),
(5257,1,1),
(5266,1,1),
(5391,1,1),
(5392,1,1),
(5398,1,1),
(5402,1,1),
(5404,1,1),
(5405,1,1),
(5407,1,1),
(5412,1,1),
(5414,1,1),
(5418,1,1),
(5420,1,1),
(5423,1,1),
(5427,1,1),
(5429,1,1),
(5432,1,1),
(5449,1,1),
(5462,1,1),
(5476,1,1),
(5501,1,1),
(5525,1,1),
(5550,1,1),
(5567,1,1),
(5576,1,1),
(5600,1,1),
(5617,1,1),
(5633,1,1),
(5657,1,1),
(5680,1,1),
(5709,1,1),
(5747,1,1),
(5750,1,1),
(5752,1,1),
(5754,1,1),
(5756,1,1),
(5760,1,1),
(5762,1,1),
(5763,1,1),
(5765,1,1),
(5766,1,1),
(5767,1,1),
(5768,1,1),
(5769,1,1),
(5770,1,1),
(5771,1,1),
(5772,1,1),
(5773,1,1),
(5776,1,1),
(5778,1,1),
(5779,1,1),
(5780,1,1),
(5781,1,1),
(5782,1,1),
(5784,1,1),
(5785,1,1),
(5787,1,1),
(5788,1,1),
(5790,1,1),
(5792,1,1),
(5793,1,1),
(5794,1,1),
(5795,1,1),
(5796,1,1),
(5850,1,1),
(5854,1,1),
(5858,1,1),
(5862,1,1),
(5866,1,1),
(5870,1,1),
(5874,1,1),
(5878,1,1),
(5881,1,1),
(5915,1,1),
(5919,1,1),
(5923,1,1),
(5927,1,1),
(5931,1,1),
(5935,1,1),
(5939,1,1),
(5944,1,1),
(5946,1,1),
(5949,1,1),
(5953,1,1),
(5957,1,1),
(5961,1,1),
(5965,1,1),
(5969,1,1),
(5973,1,1),
(5977,1,1),
(5981,1,1),
(5985,1,1),
(5989,1,1),
(5993,1,1),
(5997,1,1),
(6001,1,1),
(6005,1,1),
(6009,1,1),
(6013,1,1),
(6017,1,1),
(6021,1,1),
(6025,1,1),
(6034,1,1),
(6063,1,1),
(6065,1,1),
(6067,1,1),
(6069,1,1),
(6071,1,1),
(6073,1,1),
(6075,1,1),
(6077,1,1),
(6078,1,1),
(6080,1,1),
(6099,1,1),
(6101,1,1),
(6103,1,1),
(6105,1,1),
(6107,1,1),
(6109,1,1),
(6111,1,1),
(6113,1,1),
(6115,1,1),
(6149,1,1),
(6151,1,1),
(6153,1,1),
(6155,1,1),
(6156,1,1),
(6157,1,1),
(6162,1,1),
(6166,1,1),
(6170,1,1),
(6173,1,1),
(6174,1,1),
(6176,1,1),
(6179,1,1),
(6184,1,1),
(6189,1,1),
(6192,1,1),
(6196,1,1),
(6200,1,1),
(6208,1,1),
(6210,1,1),
(6211,1,1),
(6212,1,1),
(6214,1,1),
(6216,1,1),
(6220,1,1),
(6224,1,1),
(6228,1,1),
(6232,1,1),
(6234,1,1),
(6236,1,1),
(6246,1,1),
(6251,1,1),
(6252,1,1),
(6253,1,1),
(6259,1,1),
(6265,1,1),
(6268,1,1),
(6271,1,1),
(6340,1,1),
(6342,1,1),
(6343,1,1),
(6346,1,1),
(6352,1,1),
(6355,1,1),
(6359,1,1),
(6363,1,1),
(6365,1,1),
(6367,1,1),
(6370,1,1),
(6374,1,1),
(6378,1,1),
(6381,1,1),
(6383,1,1),
(6385,1,1),
(6387,1,1),
(6389,1,1),
(6392,1,1),
(6400,1,1),
(6408,1,1),
(6411,1,1),
(6414,1,1),
(6418,1,1),
(6422,1,1),
(6426,1,1),
(6430,1,1),
(6434,1,1),
(6438,1,1),
(6539,1,1),
(6542,1,1),
(6546,1,1),
(6549,1,1),
(6550,1,1),
(6568,1,1),
(6606,1,1),
(6621,1,1),
(6623,1,1),
(6634,1,1),
(6646,1,1),
(6647,1,1),
(6661,1,1),
(6679,1,1),
(6698,1,1),
(6711,1,1),
(6712,1,1),
(6745,1,1),
(6758,1,1),
(6759,1,1),
(6772,1,1),
(6805,1,1),
(6817,1,1),
(6818,1,1),
(6831,1,1),
(6845,1,1),
(6864,1,1),
(6875,1,1),
(6919,1,1),
(6929,1,1),
(6934,1,1),
(6947,1,1),
(6982,1,1),
(6996,1,1),
(6997,1,1),
(7017,1,1),
(7058,1,1),
(7073,1,1),
(7074,1,1),
(7091,1,1),
(7093,1,1),
(7094,1,1),
(7115,1,1),
(7139,1,1),
(7152,1,1),
(7153,1,1),
(7205,1,1),
(7209,1,1),
(7218,1,1),
(7222,1,1),
(7226,1,1),
(7230,1,1),
(7234,1,1),
(7238,1,1),
(7242,1,1),
(7246,1,1),
(7250,1,1),
(7254,1,1),
(7258,1,1),
(7262,1,1),
(7266,1,1),
(7270,1,1),
(7274,1,1),
(7278,1,1),
(7282,1,1),
(7286,1,1),
(7300,1,1),
(7308,1,1),
(7316,1,1),
(7322,1,1),
(7325,1,1),
(7329,1,1),
(7331,1,1),
(7340,1,1),
(7342,1,1),
(7345,1,1),
(7347,1,1),
(7360,1,1),
(7372,1,1),
(7380,1,1),
(7384,1,1),
(7390,1,1),
(7395,1,1),
(7401,1,1),
(7412,1,1),
(7418,1,1),
(7422,1,1),
(7424,1,1),
(7429,1,1),
(7434,1,1),
(7444,1,1),
(7453,1,1),
(7468,1,1),
(7479,1,1),
(7482,1,1),
(7486,1,1),
(7488,1,1),
(7491,1,1),
(7495,1,1),
(7499,1,1),
(7507,1,1),
(7511,1,1),
(7527,1,1),
(7541,1,1),
(7547,1,1),
(7553,1,1),
(7556,1,1),
(7560,1,1),
(7564,1,1),
(7584,1,1),
(7599,1,1),
(7605,1,1),
(7612,1,1),
(7615,1,1),
(7618,1,1),
(7635,1,1),
(7646,1,1),
(7653,1,1),
(7658,1,1),
(7677,1,1),
(7690,1,1),
(7708,1,1),
(7726,1,1),
(7732,1,1),
(7737,1,1),
(7747,1,1),
(7765,1,1),
(7781,1,1),
(7794,1,1),
(7810,1,1),
(7838,1,1),
(7853,1,1),
(7855,1,1),
(7857,1,1),
(7860,1,1),
(7862,1,1),
(7864,1,1),
(7865,1,1),
(7867,1,1),
(7868,1,1),
(7870,1,1),
(7871,1,1),
(7872,1,1),
(7874,1,1),
(7875,1,1),
(7878,1,1),
(7880,1,1),
(7892,1,1),
(7896,1,1),
(7912,1,1),
(7916,1,1),
(7938,1,1),
(7945,1,1),
(7949,1,1),
(7959,1,1),
(7967,1,1),
(8003,1,1),
(8015,1,1),
(8016,1,1),
(8020,1,1),
(8023,1,1),
(8027,1,1),
(8029,1,1),
(8047,1,1),
(8060,1,1),
(8064,1,1),
(8066,1,1),
(8071,1,1),
(8090,1,1),
(8102,1,1),
(8117,1,1),
(8152,1,1),
(8165,1,1),
(8190,1,1),
(8197,1,1),
(8201,1,1),
(8205,1,1),
(8223,1,1),
(8227,1,1),
(8231,1,1),
(8235,1,1),
(8239,1,1),
(8243,1,1),
(8247,1,1),
(8251,1,1),
(8255,1,1),
(8259,1,1),
(8263,1,1),
(8267,1,1),
(8271,1,1),
(8275,1,1),
(8279,1,1),
(8283,1,1),
(8287,1,1),
(8291,1,1),
(8295,1,1),
(8299,1,1),
(8303,1,1),
(8307,1,1),
(8311,1,1),
(8315,1,1),
(8319,1,1),
(8323,1,1),
(8327,1,1),
(8331,1,1),
(8335,1,1),
(8339,1,1),
(8343,1,1),
(8347,1,1),
(8351,1,1),
(8355,1,1),
(8359,1,1),
(8363,1,1),
(8368,1,1),
(8374,1,1),
(8380,1,1),
(8386,1,1),
(8392,1,1),
(8398,1,1),
(8404,1,1),
(8410,1,1),
(8416,1,1),
(8422,1,1),
(8428,1,1),
(8437,1,1),
(8441,1,1),
(8451,1,1),
(8459,1,1),
(8468,1,1),
(8476,1,1),
(8484,1,1),
(8492,1,1),
(8500,1,1),
(8508,1,1);
/*!40000 ALTER TABLE `entries_authors` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `entrytypes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `entrytypes` WRITE;
/*!40000 ALTER TABLE `entrytypes` DISABLE KEYS */;
INSERT INTO `entrytypes` VALUES
(1,3,'Call to Action','callToAction','Call to Action Buttons','link','lime','{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-11-30 11:46:58','2025-11-30 11:46:58',NULL,'3d095a62-0ba8-4def-88a7-ad2e35d53fce',0),
(2,4,'Hero Section','heroSection','Hero Section','sword',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-11-30 19:15:27','2025-11-30 19:15:27',NULL,'4d901f07-e203-40c2-81e4-09b9ca404552',0),
(3,5,'Transformations','transformations',NULL,'face-grin',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-02 14:56:21','2025-12-02 15:33:36',NULL,'668312b7-a3ca-482b-9f09-61e12e43feab',0),
(4,6,'Treatment','treatment',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-02 16:15:08','2025-12-02 16:15:08',NULL,'3eca23a8-0dc8-4705-bc99-88ed8c52c67d',0),
(5,7,'Page Builder','pageBuilder',NULL,'screwdriver-wrench',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-02 17:23:03','2025-12-02 17:23:03',NULL,'e89d0915-68d1-43b8-beb5-92b66d73884e',0),
(6,8,'Featured transformations','featuredTransformations',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-02 19:23:49','2025-12-02 19:23:49',NULL,'53906bea-a5c6-4385-82e5-c89e27ac267b',0),
(7,9,'Treatments Grid','treatmentsGrid',NULL,'grid-2-plus',NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-02 20:29:53','2025-12-02 20:29:53',NULL,'072a4948-ed72-4bec-8817-90115344274e',0),
(8,12,'Footer Socials','footerSocials',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-02 22:01:53','2025-12-02 22:01:53',NULL,'4abd8145-07f0-4c4c-bd28-d130696c6013',0),
(9,14,'Blog','blog',NULL,'feather-pointed',NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-03 07:31:05','2025-12-03 07:31:05',NULL,'bfa7f962-3b34-407d-a1b8-218e82ea2a0b',0),
(10,15,'Blog Grid','blogGrid',NULL,'grid-2-plus',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-03 08:53:17','2025-12-03 08:53:17',NULL,'54df986c-6d9a-49a7-8f54-33871ccfd5c6',0),
(11,16,'How It Works','howItWorks',NULL,'timeline',NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-03 16:49:03','2025-12-03 16:49:30',NULL,'fb7fcf38-d4f2-4c7f-aac3-719daca80e85',0),
(12,17,'Step Type','step',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-03 17:03:48','2025-12-03 19:00:44',NULL,'7727022a-2c1e-4699-8d36-3c9777b0a4e6',0),
(13,18,'Testimonials','testimonials',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-04 17:10:21','2025-12-04 17:49:19',NULL,'e92185c7-a67c-4325-98ef-b8a6d2edbd1d',0),
(14,19,'Testimonials Grid','testimonialsGrid',NULL,'grid-2-plus',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-04 17:54:28','2025-12-04 17:54:28',NULL,'b6a30616-2a75-4a5e-997a-a06c3596ad23',0),
(15,20,'Flexible Section Type','flexibleSectionType',NULL,'objects-column',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-04 19:16:40','2025-12-07 08:41:06',NULL,'ab324fbc-2f80-4c93-99e4-cf7bda8d98d8',0),
(16,21,'Rich Text','richText',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:04:25','2025-12-06 10:04:25',NULL,'f8d21671-c310-4d72-8089-6f8ea9a21cfc',0),
(17,22,'Heading','heading',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-06 10:08:42','2025-12-06 10:08:42',NULL,'9ab60243-add9-4782-b48b-04f98b59f374',0),
(18,23,'image','image',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:14:31','2025-12-06 10:14:31',NULL,'29d763f0-b99e-4d96-a353-1c17eab89a2d',0),
(19,24,'Icon + Text','iconText',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:20:18','2025-12-06 10:20:18',NULL,'1691e92d-8d2f-4344-b3e5-2bdf8a0595c3',0),
(20,25,'Spacer','spacer',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:24:19','2025-12-06 10:24:19',NULL,'1d1a1969-ec9c-475c-bb15-08cd6dffd195',0),
(21,26,'Quote','quote',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:27:57','2025-12-06 10:27:57',NULL,'396eb574-8f32-4bce-bcb0-2ac242ba6e5b',0),
(22,27,'CTA Banner','ctaBanner',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-06 10:30:27','2025-12-06 10:30:27',NULL,'925b43fe-a66a-4a29-94b1-05ef478160ea',0),
(23,28,'Video','video',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:34:17','2025-12-06 10:34:17',NULL,'66c57356-7f34-4425-bf45-6da256fd496d',0),
(24,29,'Statistics','statistics',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2025-12-06 10:36:28','2025-12-06 10:36:28',NULL,'f22ad779-6d76-496c-b910-0e08523a5492',0),
(25,30,'Column','column',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-06 10:36:46','2025-12-06 10:36:46',NULL,'33acef61-26dd-4d37-8a02-5f903e07ac2a',0),
(26,31,'Divider','divider',NULL,'horizontal-rule',NULL,'{title}',0,'site',NULL,NULL,0,'site',NULL,0,'2025-12-07 08:18:38','2025-12-07 08:18:38',NULL,'76fcee0a-a302-4817-8d2e-74b446967ecd',0),
(27,32,'About Doctor','aboutDoctor',NULL,'address-card',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2025-12-07 13:44:02','2025-12-07 13:44:02',NULL,'33f0b780-c7d3-4e20-94e5-83bbd5f30e48',0),
(28,33,'Instagram','instagramCta',NULL,'instagram',NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2026-02-02 18:58:34','2026-02-02 18:58:34',NULL,'3c3901be-445f-43a2-aac3-836a5a5cdfba',0),
(29,34,'Location Contact','locationContact',NULL,'map-pin','cyan','{title}',1,'site',NULL,NULL,0,'site',NULL,0,'2026-02-03 08:41:43','2026-02-03 08:41:43',NULL,'318e492e-01cc-4b53-86ef-7186a7f4cee4',0),
(30,35,'FAQ Item','faqItem',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-20 13:36:59','2026-02-20 13:36:59',NULL,'b8e64025-f821-4cb6-aa16-7b5951f8f01e',0),
(31,36,'Treatment Overview','treatmentOverview',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-20 13:49:33','2026-02-20 13:49:33',NULL,'45e1951f-373a-4e27-8d30-3cfa1bb82857',0),
(32,37,'Overview Card','overviewCard',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-20 14:12:34','2026-02-20 14:12:34',NULL,'8fe1fdea-baec-48ee-b98e-6dc941fa6808',0),
(33,38,'Disclaimer Item','disclaimerItem',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-20 14:17:58','2026-02-20 14:17:58',NULL,'ea1062cb-4d63-4f41-ba26-c8937a0ba86b',0),
(34,39,'Treatment Hero','treatmentHero',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-20 14:42:18','2026-02-20 14:42:18',NULL,'cd83f1fe-45e5-4082-9590-93ec1fb4a261',0),
(35,40,'Benefit Card','benefitCard',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 13:14:21','2026-02-21 13:14:21',NULL,'228a8acf-c542-4ca9-a1a2-e736335ae4bb',0),
(36,41,'Why Choose Treatment','whyChooseTreatment',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 13:16:49','2026-02-21 13:16:49',NULL,'73bbd50d-5a76-4478-ab66-7b936845b6d8',0),
(37,42,'What Is Treatment','whatIsTreatment',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 14:21:06','2026-02-21 14:21:06',NULL,'fb561bc6-1aeb-445e-b520-0e208a6c38b8',0),
(38,43,'Who Should Consider','whoShouldConsiderSection',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 14:52:38','2026-02-21 14:52:38',NULL,'edb418c0-89d3-419b-897b-dcb54ef07062',0),
(39,44,'FAQ List','faqList',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 16:14:22','2026-02-21 16:14:22',NULL,'28c66742-a424-4cbd-ad18-079d8881f9ae',0),
(40,45,'Price Section','priceSection',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 21:49:52','2026-02-21 21:49:52',NULL,'bbecd3da-a558-43ea-aee4-74458a6e88f6',0),
(41,46,'Price row','priceRow',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-02-21 22:01:44','2026-02-21 22:01:44',NULL,'c1319250-2c2b-4d15-a2da-30fa401e02da',0),
(42,47,'Conditions','conditions',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2026-02-22 00:01:31','2026-02-22 00:05:29',NULL,'72a3e7c8-2eeb-41b3-a2c7-018b46e8913d',0),
(43,48,'Case Studies','caseStudies',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2026-02-22 00:36:31','2026-02-22 00:36:31',NULL,'9d5f9d7a-c338-4faf-8a54-834d4d403703',0),
(44,49,'Call To Action Section','callToActionSection',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-03-02 20:02:06','2026-03-02 20:02:06',NULL,'3c3edcaf-67eb-492e-8460-c077662649ee',0),
(45,50,'Featured Case Studies','featuredCaseStudies',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,1,'site',NULL,1,'2026-03-23 12:32:20','2026-03-23 12:32:20',NULL,'f365f324-7c4f-4031-96d3-704d3aa3f4b9',0),
(46,51,'Price Group','priceGroup',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-03-25 11:32:58','2026-03-25 11:32:58',NULL,'a599255c-9623-461c-957c-ae0c5798c2a5',0),
(47,52,'Featured Testimonial','featuredTestimonial',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-03-29 10:40:29','2026-03-29 10:40:29',NULL,'2fc1070c-46b5-4221-948d-e3693438e735',0),
(48,53,'Video Section','videoSection',NULL,NULL,NULL,'{title}',1,'site',NULL,NULL,0,'site',NULL,1,'2026-04-06 08:34:53','2026-04-06 08:34:53',NULL,'bfb7ac1d-af5b-4148-9942-8cb360b7a33c',0);
/*!40000 ALTER TABLE `entrytypes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `fieldlayouts`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `fieldlayouts` WRITE;
/*!40000 ALTER TABLE `fieldlayouts` DISABLE KEYS */;
INSERT INTO `fieldlayouts` VALUES
(1,'verbb\\navigation\\elements\\Node','{\"tabs\":[{\"name\":\"Node\",\"uid\":\"d661556d-212f-4e69-81ba-9652b961ac05\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-11-29T12:55:45+00:00\",\"uid\":\"0d18559f-9164-4aba-a77f-279e620ca072\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NodeTypeElements\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"dateAdded\":\"2025-11-29T12:55:45+00:00\",\"uid\":\"ca851184-2c88-4753-847b-9200f9c5e18f\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NewWindowField\",\"attribute\":\"newWindow\",\"requirable\":true,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-29T12:55:45+00:00\",\"uid\":\"a7ec5323-8fdc-4e43-bbed-74d4e47608ed\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T11:53:06+00:00\",\"uid\":\"741b290b-1284-44cf-803c-46a7844d69e4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b9d341c8-9a1f-4ad6-9e8a-085c440d7e11\",\"editCondition\":null}]},{\"name\":\"Advanced\",\"uid\":\"6df6598b-56d3-4d7b-b9a8-a15c673b9c9c\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\UrlSuffixField\",\"attribute\":\"urlSuffix\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"maxlength\":null,\"autofocus\":false,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-29T12:55:45+00:00\",\"uid\":\"23dbc68b-b414-42eb-a851-deb4c689b56c\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\ClassesField\",\"attribute\":\"classes\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"maxlength\":null,\"autofocus\":false,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-29T12:55:45+00:00\",\"uid\":\"1c9b9549-afac-44c9-9f00-cfb6ce958c97\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\CustomAttributesField\",\"attribute\":\"customAttributes\",\"requirable\":true,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-29T12:55:45+00:00\",\"uid\":\"4e6b6a94-c914-4278-abbb-534bd0264e61\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-11-29 12:58:00','2026-03-03 08:13:59',NULL,'d3e1d668-1a75-4c32-9113-56e33e046150'),
(2,'craft\\elements\\Asset','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"6c130099-11e0-4f67-bde0-eb3ca641f907\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\assets\\\\AssetTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-11-30T11:04:22+00:00\",\"uid\":\"b1f3bc03-b9a5-4aef-908a-b3d4e28b6132\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\assets\\\\AltField\",\"attribute\":\"alt\",\"requirable\":true,\"class\":null,\"rows\":null,\"cols\":null,\"name\":null,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T11:07:44+00:00\",\"uid\":\"3ad23e0a-12f7-4d93-b35b-bba84dc004e4\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-11-30 11:07:44','2026-03-03 08:13:59',NULL,'72b6a773-5b5f-44e9-9d6a-51de24196994'),
(3,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"e6eae254-f3e3-423c-89d2-9075821e880c\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-11-30T11:44:02+00:00\",\"uid\":\"f1781990-559b-4d18-ab3c-c72f504e8689\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"linkText\",\"label\":\"Link text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T11:46:58+00:00\",\"uid\":\"28396760-6b42-4e26-91fe-691bb1d0f638\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"urlAddress\",\"label\":\"URL Address\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T11:46:58+00:00\",\"uid\":\"34edbdad-80cc-455a-8024-e4ad5cc55f12\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T11:46:58+00:00\",\"uid\":\"306c8a8b-7513-4a3f-82c5-7797d86388ed\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b9d341c8-9a1f-4ad6-9e8a-085c440d7e11\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-11-30 11:46:58','2026-03-03 08:13:59',NULL,'da06470b-097e-4a30-a73d-c7659b1ddb57'),
(4,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"ef9c32d8-8ed0-4a7f-aed3-675abe5e8d7b\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-11-30T19:11:51+00:00\",\"uid\":\"4e750348-a78f-41f1-b9f6-9936131cf92c\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Heading Second Line\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:32:11+00:00\",\"uid\":\"12def3da-8ca1-48fa-891d-c3798b3b46e9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Heading Second Line\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:57:12+00:00\",\"uid\":\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Subtitle\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:15:27+00:00\",\"uid\":\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"textArea2\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:15:27+00:00\",\"uid\":\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:15:27+00:00\",\"uid\":\"d1187881-9f88-406c-a476-52d43ed1ca77\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:06:23+00:00\",\"uid\":\"e491edbd-c23e-4f68-a29b-405630bd8368\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"46742ca3-f2c3-408c-87e7-c0191d86f70e\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Background Image\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:15:27+00:00\",\"uid\":\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\",\"userCondition\":null,\"elementCondition\":{\"elementType\":\"craft\\\\elements\\\\Entry\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\",\"conditionRules\":[{\"class\":\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\",\"uid\":\"5e71ccaf-60e8-4ee6-8baf-db03dbe7b62a\",\"value\":false,\"fieldUid\":\"46742ca3-f2c3-408c-87e7-c0191d86f70e\",\"layoutElementUid\":\"e491edbd-c23e-4f68-a29b-405630bd8368\"}]},\"fieldUid\":\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heroYoutubeUrl\",\"label\":\"Hero YouTube Embed\",\"instructions\":\"Paste the youtube video link only\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:06:23+00:00\",\"uid\":\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\",\"userCondition\":null,\"elementCondition\":{\"elementType\":\"craft\\\\elements\\\\Entry\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\",\"conditionRules\":[{\"class\":\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\",\"uid\":\"20ebccbd-49ca-4957-8c1f-2db2e1914517\",\"value\":true,\"fieldUid\":\"46742ca3-f2c3-408c-87e7-c0191d86f70e\",\"layoutElementUid\":\"e491edbd-c23e-4f68-a29b-405630bd8368\"}]},\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:15:27+00:00\",\"uid\":\"238ce99e-fad8-4e55-b39c-58e5e5704123\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2025-11-30 19:15:27','2026-03-29 10:08:11',NULL,'11582838-4ce5-4a66-a634-992cd6e68189'),
(5,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"1885e3e7-6169-4b09-89f2-45f0862a82de\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T14:54:33+00:00\",\"uid\":\"068dad7a-bdaa-4133-b10a-9d8ad919a217\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T14:56:21+00:00\",\"uid\":\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"59b98af3-0c7d-4ef0-bd5e-cb771b4b4915\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T15:34:17+00:00\",\"uid\":\"d5803862-14af-411a-83a8-0734f3d68687\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"4b3e5070-9588-413c-bedc-097215932500\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T14:56:21+00:00\",\"uid\":\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T14:56:21+00:00\",\"uid\":\"521ddd96-4b77-4908-ae99-90bb9fa46eda\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"5a893fb8-7c34-4a8e-9964-9191b14ab476\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 14:56:21','2026-03-03 08:13:59',NULL,'2cc74c01-01d5-4d77-8019-1f3a48b82808'),
(6,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"23252237-0b39-4f56-8912-e058b73c9dd4\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T16:13:32+00:00\",\"uid\":\"f206aebf-e51a-45cb-a234-08a2c92c8630\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"gridCardText\",\"label\":\"Grid Card Text\",\"instructions\":\"The short text shown under the treatment title in the “Explore My Services” cards on homepage.\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-26T10:21:22+00:00\",\"uid\":\"7a135f87-f576-4091-9795-9b0cd71f04fc\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:01:47+00:00\",\"uid\":\"15c485a1-c1dd-465e-93b2-21f693927c55\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:54:22+00:00\",\"uid\":\"29d63d2b-11ad-46b5-a496-080579503dd7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"509a8ddb-54bf-42d0-b022-428404fd505b\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2025-12-02 16:15:08','2026-03-26 10:21:22',NULL,'1a560c6d-5c39-48a9-aaa4-313521a961d4'),
(7,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"8f6d9694-f119-4ec2-a934-ae3a5d525a4b\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T17:21:14+00:00\",\"uid\":\"f4f30cb9-cdfd-439b-b683-5857f0cdbb49\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T17:23:03+00:00\",\"uid\":\"162f8255-7c25-4ad1-8848-780feda02831\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"509a8ddb-54bf-42d0-b022-428404fd505b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 17:23:03','2026-03-03 08:13:59',NULL,'98c528a0-0cf6-481b-beaa-0b07b9e4f1a2'),
(8,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"ea73eb20-51b1-40b5-b3eb-cb0ff5de9f81\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T19:22:33+00:00\",\"uid\":\"3ef097f1-68d8-4be7-967f-cd8ead31df39\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T19:58:15+00:00\",\"uid\":\"b711d73c-2e12-484e-aa49-7fbd53b17a66\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Subheading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:00:02+00:00\",\"uid\":\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T19:58:15+00:00\",\"uid\":\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T19:23:49+00:00\",\"uid\":\"49644737-b16a-4ec0-9507-72c7d47013c5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a91ded5-d5f6-4f89-bd3b-5bb0647cef14\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 19:23:49','2026-03-03 08:13:59',NULL,'a9956cba-7a9f-4088-85e8-12e950d98a64'),
(9,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"afe05cea-28d6-424f-bf15-102f5c02796b\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T20:22:17+00:00\",\"uid\":\"67f6e391-bbd8-48e4-8539-972646860f1d\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Top Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:29:53+00:00\",\"uid\":\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:29:53+00:00\",\"uid\":\"11aa40c7-103c-4706-ace9-3f450871c29f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:29:53+00:00\",\"uid\":\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:29:53+00:00\",\"uid\":\"16daf059-c7fd-4b72-a424-158e791ae13c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"df77759d-bc11-4545-8c34-f63e1bbd65b2\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:29:53+00:00\",\"uid\":\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a906962a-296e-41d6-a082-1398608c0ead\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T20:29:53+00:00\",\"uid\":\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"729f8778-8c61-4d5c-acc7-bc33102dff1f\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2025-12-02 20:29:53','2026-03-26 10:20:12',NULL,'90cc5e62-a7f3-40f0-b390-6d6ec8a28419'),
(10,'verbb\\navigation\\elements\\Node','{\"tabs\":[{\"name\":\"Node\",\"uid\":\"cce2c6a6-d5e5-49ff-a0d6-849d04e3815e\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:12+00:00\",\"uid\":\"12171856-795c-4c32-84e5-bf39cc946df3\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NodeTypeElements\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"dateAdded\":\"2025-12-02T21:40:12+00:00\",\"uid\":\"5d87bae9-3340-4f0d-8bb5-a86b27fe3e10\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NewWindowField\",\"attribute\":\"newWindow\",\"requirable\":true,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:12+00:00\",\"uid\":\"de33bbdd-f8b9-459d-b774-f7af844a8d90\",\"userCondition\":null,\"elementCondition\":null}]},{\"name\":\"Advanced\",\"uid\":\"578d05c6-e67a-47e6-9946-ef16b1f81418\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\UrlSuffixField\",\"attribute\":\"urlSuffix\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"maxlength\":null,\"autofocus\":false,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:12+00:00\",\"uid\":\"ce46af40-e190-42ff-b54f-23cd47ebce8c\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\ClassesField\",\"attribute\":\"classes\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"maxlength\":null,\"autofocus\":false,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:12+00:00\",\"uid\":\"d320a421-b5a9-4a64-90c8-0321680395f8\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\CustomAttributesField\",\"attribute\":\"customAttributes\",\"requirable\":true,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:12+00:00\",\"uid\":\"df578b94-afcb-4f78-a532-fed72535491d\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 21:41:44','2026-03-03 08:13:59',NULL,'258435e5-284c-49ea-bdf2-5e5449003d83'),
(11,'verbb\\navigation\\elements\\Node','{\"tabs\":[{\"name\":\"Node\",\"uid\":\"b3385036-fb89-47c4-b7c2-3128ca9807a7\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"62cd91c3-dfa8-494a-acc8-1402071dfb0a\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NodeTypeElements\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"f46b0009-4a03-4a6e-8bcc-de932167ee8e\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NewWindowField\",\"attribute\":\"newWindow\",\"requirable\":true,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"068f167b-1ecd-4df7-bd3e-c2b1e65de732\",\"userCondition\":null,\"elementCondition\":null}]},{\"name\":\"Advanced\",\"uid\":\"80be4228-e6c2-4caa-90ce-70f77758ef8d\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\UrlSuffixField\",\"attribute\":\"urlSuffix\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"maxlength\":null,\"autofocus\":false,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"0e87a997-cfaa-4668-aedd-a718bd8a9018\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\ClassesField\",\"attribute\":\"classes\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"maxlength\":null,\"autofocus\":false,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"84e6f7e1-3909-46e0-ab71-5722dfae87d4\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"verbb\\\\navigation\\\\fieldlayoutelements\\\\CustomAttributesField\",\"attribute\":\"customAttributes\",\"requirable\":true,\"mandatory\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"translatable\":false,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"9443ac0b-45cb-417d-b1dc-448f1c4bab2e\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2025-12-02 21:41:54','2026-03-26 10:28:17',NULL,'c5a57365-de62-452c-b043-1ce1f717ae19'),
(12,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"0b857613-d1ea-4fca-9758-d4ba789360ff\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-02T21:59:36+00:00\",\"uid\":\"7c5ad1af-ac51-4576-8b74-a0bf3aa67b64\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:01:53+00:00\",\"uid\":\"2c8d3384-fdaf-45a9-8e0e-73f881e9509a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"c91f3372-1fd1-4bfb-b8f3-5432da853217\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:01:53+00:00\",\"uid\":\"4c5c639e-d111-4970-819b-5bcf7873db6f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 22:01:53','2026-03-03 08:13:59',NULL,'c23aeb02-7f17-4de7-94a2-08214fdff6a7'),
(13,'craft\\elements\\GlobalSet','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"b37cf40a-ef27-4fbe-b748-6663185d8632\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Logo\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"2d269704-a7ab-430b-8fb7-4f5ecf43619e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Footer Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"44163978-09b5-41d9-aeca-b7f4d159c399\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"d52bc6ac-8ada-42a7-9c76-379e9782c630\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"e700606a-2f59-4f03-ad43-3a19658d4d03\",\"editCondition\":null,\"elementEditCondition\":null}]},{\"name\":\"Get In Touch\",\"uid\":\"c5ceea8a-85ce-4bc5-b8a4-689068dc6d42\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Phone Number\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"ad69a4ab-be0f-40af-9893-7061bb208954\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Contact Mode\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-17T16:35:44+00:00\",\"uid\":\"612708a4-b3a5-4d5e-8788-4ef7dbe19d09\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"5255cd18-4f37-4112-b6bb-070514da0eae\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Email\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"2ee1436c-9bfd-4b8b-85d5-08ac782d324c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"textArea2\",\"label\":\"Address\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"15ee367f-1e67-4016-853e-efc16011c1ec\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Google Maps Link\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"12fa2947-f2ff-44bd-b309-abed952bde15\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null,\"elementEditCondition\":null}]},{\"name\":\"Copyright Texts\",\"uid\":\"336c4fa8-28cd-4500-b43e-fc04318d65d2\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText3\",\"label\":\"Copyright Text\",\"instructions\":\"© {{ now|date(\'Y\') }} Website. All rights reserved.\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:04:25+00:00\",\"uid\":\"c49634d8-fde6-459c-bd26-9cb8d58aad59\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null}]},{\"name\":\"Legal links\",\"uid\":\"7ba7f09b-e018-475c-bd57-488e46559450\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-02T22:08:59+00:00\",\"uid\":\"3c47aec6-c53d-4246-a947-9b263c5f6167\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2025-12-02 22:04:25','2026-04-17 16:35:44',NULL,'b9338d7d-f13a-4d94-9291-f6c2486e6879'),
(14,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"f80df571-8a36-4d57-923a-6e30e4754678\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-03T07:28:55+00:00\",\"uid\":\"5cd46adf-4b48-40d7-891c-5533345b7387\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T07:31:05+00:00\",\"uid\":\"966e4d54-8540-4d35-be11-59c9ca1f49b0\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T07:31:05+00:00\",\"uid\":\"83e6b444-62be-401e-aadc-b5db0004e217\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-03 07:31:05','2026-03-03 08:13:59',NULL,'af153483-ea14-40b8-9d98-19885f33d008'),
(15,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"4c57994c-b80d-4028-a6a8-f92a020620ff\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-03T08:45:31+00:00\",\"uid\":\"fb436266-ddd3-4014-92db-abf3083c24e1\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Top Label\",\"instructions\":\"Small uppercase label that appears above the heading (e.g., \\\"Latest Insights\\\"\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T08:53:17+00:00\",\"uid\":\"33ee3a3d-d49b-4235-989e-7b6f0c31f998\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText\",\"label\":\"Heading\",\"instructions\":\"Main heading for the section (e.g., \\\"From Our Blog\\\")\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T08:53:17+00:00\",\"uid\":\"6fcbabcf-457e-47c2-873c-dc1bab02fd18\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Description\",\"instructions\":\"Optional description text below the heading\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T08:53:17+00:00\",\"uid\":\"7a8d453a-db94-47f8-8c2b-ebf52865b100\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T08:53:17+00:00\",\"uid\":\"01b1237d-1cd3-4827-875c-d66daeca276e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"df77759d-bc11-4545-8c34-f63e1bbd65b2\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"numberOfPosts\",\"label\":\"Number Of Posts\",\"instructions\":\"How many posts to display (only used when Display Type is \\\"Show Limited Number\\\")\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T08:53:17+00:00\",\"uid\":\"cbe6df6b-a65b-4c4e-8479-114280ffa9c8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a906962a-296e-41d6-a082-1398608c0ead\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T08:53:47+00:00\",\"uid\":\"8158a403-41e9-4258-bf1a-91c53020cc0b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"3562e3e8-953b-4bf9-a05b-29bebbeb4fb9\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-03 08:53:17','2026-03-03 08:13:59',NULL,'3b15ebf4-0656-441e-ba45-077425f0a388'),
(16,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"2c65f7be-df79-49fc-ae39-f40d562dd7e0\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-03T16:45:08+00:00\",\"uid\":\"967163c5-3f46-4843-bb04-3de28c426958\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Top Label\",\"instructions\":\"Small uppercase label (e.g., \\\"How It Works\\\", \\\"The Process\\\")\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T16:49:03+00:00\",\"uid\":\"4911f493-aeb6-4573-a3c1-3dc0b0940146\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Heading\",\"instructions\":\"Main heading for the section (e.g., \\\"From consultation to results...\\\")\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T16:49:03+00:00\",\"uid\":\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Description\",\"instructions\":\"Optional description text below the heading\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T16:49:03+00:00\",\"uid\":\"94cb851d-aef5-4e2e-883b-a555e92d6cd0\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T16:52:01+00:00\",\"uid\":\"ceffcd5c-99fd-407b-ad8e-814ebcf245fa\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"48a6b377-0807-4f30-abf3-84f1acd358ce\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T19:14:00+00:00\",\"uid\":\"11bf274a-ace0-4e3c-b321-ae01246cd640\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-03 16:49:03','2026-03-03 08:13:59',NULL,'90b5cd6c-dfe9-45f0-887a-bbefe645dfc1'),
(17,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"ab37688c-1e5a-4c5b-a02b-de9590033ad4\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-03T16:51:06+00:00\",\"uid\":\"ad0ae070-0f9c-4ed7-9dab-0eb4f1d48d53\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"stepTitle\",\"label\":\"Step Title\",\"instructions\":\"Title for this step (e.g., \\\"Initial Consultation\\\", \\\"Treatment Plan\\\")\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T17:03:48+00:00\",\"uid\":\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"stepDescription\",\"label\":\"Step Description\",\"instructions\":\"Description of what happens in this step\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T17:03:48+00:00\",\"uid\":\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showButton\",\"label\":\"Show Button\",\"instructions\":\"Toggle to show/hide a CTA button at the bottom\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-03T17:03:48+00:00\",\"uid\":\"6c588796-bb27-4fdf-9590-a50a0e275ca7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-03 17:03:48','2026-03-03 08:13:59',NULL,'a917c1de-5ddb-4aa1-87e3-146bd4343052'),
(18,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"a333403b-fda7-47e8-aa21-58550998cd5f\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-04T17:06:32+00:00\",\"uid\":\"6f2dbc65-dc85-4b55-b270-1d360cca98e7\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Name\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:10:21+00:00\",\"uid\":\"16de76fd-a825-41df-9b9d-8fe41ce48ada\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Treatment\",\"instructions\":\"What treatment did the client had?\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:10:21+00:00\",\"uid\":\"fc67ba9e-5144-49e5-9c18-5fea452bce42\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Testimonail message\",\"instructions\":\"Client testimonial message\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:10:21+00:00\",\"uid\":\"67df7d0c-ae22-4046-8a69-b0f66abff507\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Client photo\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:10:56+00:00\",\"uid\":\"90b06f70-ec9f-49d9-b838-cef50698ec38\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-04 17:10:21','2026-03-03 08:13:59',NULL,'9eabb24f-9dcc-4bb8-8628-4380ebce68ab'),
(19,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"8776cdec-7284-47c2-8c5b-d806efbc3b3b\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-04T17:48:23+00:00\",\"uid\":\"197021d0-64df-45f5-a3ec-4d65243d4bd5\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"topLabel\",\"label\":\"Top Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"28fc0304-69b6-43ac-8c99-e2c875a4a532\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heading\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"06865648-84b5-46f3-8fd0-48993e09ff0b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"subheading\",\"label\":\"Subheading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"259a67ea-0a0e-4406-97b8-7bbb2932f72d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"displayMode\",\"label\":\"Display Mode\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"214c0ead-2e2c-4485-9e17-5ad3c84ae9d5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"df77759d-bc11-4545-8c34-f63e1bbd65b2\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"limit\",\"label\":\"Limit\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"1469dd96-fe49-4499-9d14-f4336216d9f9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a906962a-296e-41d6-a082-1398608c0ead\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"0bc96d1c-7d25-4448-9f0a-aa33ea239a34\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"45b2b61e-fd67-48d4-8ce2-35e95068be62\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showGoogleBadge\",\"label\":\"Show Google Badge\",\"instructions\":\"Shows/hides the Google Reviews badge\\r\\n\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T17:54:28+00:00\",\"uid\":\"a25ceaa8-9edc-4eb2-a59d-a1340895067d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Google Reviews URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T18:13:12+00:00\",\"uid\":\"5dbdee7d-8d17-44c9-8581-679879c315ca\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"numberOfReviews\",\"label\":\"Number of Reviews\",\"instructions\":\"How many reviews in total are in Google Reviews\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-04T18:15:52+00:00\",\"uid\":\"4977ef85-8f70-4b78-8499-ac4fe3031f69\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a906962a-296e-41d6-a082-1398608c0ead\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-04 17:54:28','2026-03-03 08:13:59',NULL,'72570930-932a-4eef-a4bb-645070bc1747'),
(20,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Layout Settings\",\"uid\":\"ac592331-1540-4151-ac51-a1802edc70fa\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"LAYOUT SETTINGS\",\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"9308617c-ffbc-477a-acb9-d9d633900a38\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\LineBreak\",\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"c20f37c9-e3ae-4a36-a060-735afa1bc610\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:16:40+00:00\",\"uid\":\"c6ba37df-5856-4b99-abff-ee5ac2023dee\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"2742df1d-cef9-4fbb-863e-bae8865170f9\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:16:40+00:00\",\"uid\":\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d732a944-da30-458b-be66-3d165633012d\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:16:40+00:00\",\"uid\":\"15d88486-9f10-4200-8468-69effb7550d6\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"62672829-7d44-40d2-b9bd-02ee01a752a3\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:16:40+00:00\",\"uid\":\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"592ab577-259f-4a99-a41b-952ec300da4b\",\"editCondition\":null}]},{\"name\":\"Content Columns\",\"uid\":\"15654743-83c5-4751-9166-5e2b3e66a9cb\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"CONTENT AREAS\",\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"1ce92725-f02b-40b2-9873-35f4a4e51901\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\LineBreak\",\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"b00af29d-42ce-47a6-8117-747c5a9ebfd7\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-07T08:41:05+00:00\",\"uid\":\"e274dc29-adc9-4481-af46-1dc6bb770fe4\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:39:06+00:00\",\"uid\":\"7b267ef7-86ed-4004-9260-e710ae7fb28e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"109e9e12-5487-40f4-b216-9f942305125d\",\"editCondition\":null}]},{\"name\":\"Color & Background\",\"uid\":\"07ed9637-eab5-4e0d-a799-21dd1471884a\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"COLOR SCHEME SETTINGS\",\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"c22ddc37-5921-47b4-bc2a-66f8d2d9f62d\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\LineBreak\",\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"7d4012c9-2f82-41d8-9dee-ba8cefe9266c\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"4a83aae4-2c1f-4a29-beff-16feb9d628ce\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"backgroundImage\",\"label\":\"Background Image\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"backgroundOverlay\",\"label\":\"Background Overlay\",\"instructions\":\"Adds a dark overlay over background image\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"12ab5942-8eb1-4e8d-af73-0d67149caea5\",\"userCondition\":null,\"elementCondition\":{\"elementType\":\"craft\\\\elements\\\\Entry\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\",\"conditionRules\":[{\"class\":\"craft\\\\fields\\\\conditions\\\\RelationalFieldConditionRule\",\"uid\":\"6e61caa4-c529-444f-b719-5181c9d7904a\",\"operator\":\"notempty\",\"elementIds\":[],\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"layoutElementUid\":\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\"}]},\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\",\"userCondition\":null,\"elementCondition\":{\"elementType\":\"craft\\\\elements\\\\Entry\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\",\"conditionRules\":[{\"class\":\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\",\"uid\":\"34bbe814-798c-48d7-ac2d-7caadff5061c\",\"value\":true,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"layoutElementUid\":\"12ab5942-8eb1-4e8d-af73-0d67149caea5\"}]},\"fieldUid\":\"7b95f861-a264-4830-a26c-4640458dbde2\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"dateAdded\":\"2025-12-04T19:29:53+00:00\",\"uid\":\"08c9532b-900d-4f33-8644-fbd2b4a0448e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"858b871b-ca80-493b-b96a-32663892e6bd\",\"editCondition\":null}]},{\"name\":\"Spacing & Width\",\"uid\":\"2403eff2-36ca-4b7d-b049-1425e9609942\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"SPACING & WIDTH SETTINGS\",\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"d79e2454-bdce-499b-b742-3588f7a75724\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\LineBreak\",\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"4c06ec8c-d55c-4123-b712-bc2c64741f34\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"909cef3c-eb8f-41dc-859a-4fef188161a6\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"f7c46ae8-7a7a-469f-8279-f8e6017b717f\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"paddingBottom\",\"label\":\"Section Padding Bottom\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"03a38015-ace3-4900-9eb7-553ae2371d19\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"f7c46ae8-7a7a-469f-8279-f8e6017b717f\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"addTopDivider\",\"label\":\"Add Top Divider\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"24a9c864-a05b-496f-92d0-6072f45d84fe\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"775f6523-487c-4213-829e-be87bd6546f0\",\"editCondition\":null}]},{\"name\":\"Advanced\",\"uid\":\"4b73d7c9-aab1-42dd-806d-a76d2b632b36\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"ADVANCED SETTINGS\",\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"500aa93f-6f88-4b27-89ca-239f5bbe5d64\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\LineBreak\",\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"b221d6a4-bd08-4b53-9540-e6f987ce0403\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\",\"userCondition\":null,\"elementCondition\":{\"elementType\":\"craft\\\\elements\\\\Entry\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\",\"conditionRules\":[{\"class\":\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\",\"uid\":\"ad6d7ad6-b29f-4d29-ac97-b74c1388b042\",\"value\":true,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"layoutElementUid\":\"24a9c864-a05b-496f-92d0-6072f45d84fe\"}]},\"fieldUid\":\"81563d83-c326-4c43-b097-a04688342405\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionIdAnchor\",\"label\":\"Section ID\",\"instructions\":\"For anchor links (e.g., \\\"about-us\\\")\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"ede60280-5b1f-46f4-ba48-87483c912289\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"customClasses\",\"label\":\"Custom CSS Classes\",\"instructions\":\"For advanced styling\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"18334eca-71b2-4090-ac35-20abdb207c33\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"3c1a81fc-6fae-4278-8d85-367a118abfbb\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showMobile\",\"label\":\"Show on Mobile\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T18:43:17+00:00\",\"uid\":\"d41d3f08-74c0-46b1-804a-884be4a6fffa\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"3c1a81fc-6fae-4278-8d85-367a118abfbb\",\"editCondition\":null}]},{\"name\":\"How To Use\",\"uid\":\"581b1987-0817-4468-8faf-2cbd0b08718e\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\Template\",\"template\":\"_entry-types/flexibleSectionType.twig\",\"templateMode\":\"site\",\"width\":100,\"dateAdded\":\"2025-12-07T00:06:32+00:00\",\"uid\":\"042c09e5-5c3b-4ca6-b5c0-df9078e611d2\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-04 19:16:40','2026-03-03 08:13:59',NULL,'f6e11286-c47e-45f7-984a-9159d544e377'),
(21,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"1bbbc0ec-079f-4423-992d-7f769d8b72cb\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T09:57:21+00:00\",\"uid\":\"86ca3abe-1470-4d16-a9da-2df5e4aa39ea\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:04:25+00:00\",\"uid\":\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"6ab27a91-bd1e-456b-aa68-b220eb7a8fd8\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:04:25+00:00\",\"uid\":\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"28299698-73d7-4cd3-9e87-ca3b6cb9e3b3\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:04:25+00:00\",\"uid\":\"d65d1c35-ed40-465c-8613-98206b6c0d67\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"1f8e8ef2-1c2c-4228-96d5-7af284255ba0\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:04:25+00:00\",\"uid\":\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a39e2e1e-4a2c-4632-b6e2-10f242572d5f\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:04:25','2026-03-03 08:13:59',NULL,'5159dea3-2450-44fd-8562-13a824ede638'),
(22,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"9c223264-cddb-4125-a891-2d2d96d9a260\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:04:27+00:00\",\"uid\":\"7693b2be-928a-4ba8-b542-0471511e3361\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"headingText\",\"label\":\"Heading Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:42+00:00\",\"uid\":\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:42+00:00\",\"uid\":\"d786a952-f7f5-459f-8a46-f32ff468d4f6\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"913d69e2-6c95-4e17-a8dd-e16598492091\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:42+00:00\",\"uid\":\"dc38184a-b41a-44b1-980c-64e7c324f41a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:42+00:00\",\"uid\":\"e143d6ba-f2c7-4712-922a-18c4986f97a5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"1f8e8ef2-1c2c-4228-96d5-7af284255ba0\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"addUnderline\",\"label\":\"Add Underline\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:42+00:00\",\"uid\":\"e0f06b72-a283-4059-ad08-76e79c84e85e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:42+00:00\",\"uid\":\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"4ae0713a-c032-477f-9cfa-9dded22631fb\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:08:42','2026-03-03 08:13:59',NULL,'97bdf04b-47d2-4bce-966c-3947719becc2'),
(23,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"f44e40b4-b2c2-40f4-ab17-4e37d6da6b94\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:08:37+00:00\",\"uid\":\"c61c6972-b927-457d-9e11-f4fe452e27a0\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:14:31+00:00\",\"uid\":\"6f6aeaf6-c34d-47b7-a6c1-7da174fe58ed\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"edf56846-fce6-475b-81c3-7237f63d0a83\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:14:31+00:00\",\"uid\":\"8630c735-6b35-4179-a62f-cb5a5eeafa83\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a51ad288-48e6-40a1-9fe6-85c1ae2947a3\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:14:31+00:00\",\"uid\":\"31831217-1d9a-4a1e-bb5e-cab96c9fc65d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:14:31+00:00\",\"uid\":\"b01a8273-3669-4c90-b79a-e4721c29434e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"2ae532dc-e56d-4b4e-98da-300c62edff20\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"addShadow\",\"label\":\"Add Shadow\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:14:31+00:00\",\"uid\":\"a93a1121-2f17-4072-8021-3405bb9b4467\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"caption\",\"label\":\"Caption\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:14:31+00:00\",\"uid\":\"e022b58a-9fe5-47af-a775-76e84e0b011f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:14:31','2026-03-03 08:13:59',NULL,'70cca859-bf26-4b7d-8963-ef1320b40c66'),
(24,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"088246b4-477b-49b7-ad57-a93a05be825e\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:13:50+00:00\",\"uid\":\"131d50e0-1294-40f7-8709-5f3c89ac6ab9\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"iconAsset\",\"label\":\"Icon\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:20:18+00:00\",\"uid\":\"33fd0b3d-18dd-42d6-859a-7aaa23d7d267\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"iconPosition\",\"label\":\"Icon Position\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:20:18+00:00\",\"uid\":\"36e11556-e75b-47a3-8549-d8578a343647\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:20:18+00:00\",\"uid\":\"98fdd6d6-1f52-4cbb-b5b8-fe12791f8f5a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"fd862905-7ebc-4c67-8a1a-4ec5084d1fae\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:20:18+00:00\",\"uid\":\"120d4842-2b72-43ef-9287-a835ba8f98a3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"fbe942b3-1780-471a-a255-482d04f0ba66\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heading\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:20:18+00:00\",\"uid\":\"27dcd3ec-6cd1-4987-a7a3-635678824525\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"description\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:20:18+00:00\",\"uid\":\"a048e295-af29-4f7e-89a7-45de41784f83\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:20:18','2026-03-03 08:13:59',NULL,'c5352fa1-069e-4f9b-983f-757c1a8ae26d'),
(25,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"0b5bb90f-0837-4022-8511-cda4925faac1\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:19:20+00:00\",\"uid\":\"ea303a15-49e4-4317-b9bf-322d5b08fe14\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:24:19+00:00\",\"uid\":\"65cd5ed5-c924-4fa9-aea7-ca7349a71e47\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"0ef98093-5a9d-410d-a094-b2e111e0c6d1\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:24:19','2026-03-03 08:13:59',NULL,'838bb9bd-c37f-475c-afef-4e5be909e3ae'),
(26,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"782de208-01ac-4585-9efc-deedcc1cfe57\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:23:58+00:00\",\"uid\":\"049d133e-5737-4355-87cc-3fb4cd04fa2a\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"quoteText\",\"label\":\"Quote Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:27:57+00:00\",\"uid\":\"896859cd-857f-4861-ae0b-4fd6cfee14c6\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"quoteAuthor\",\"label\":\"Quote Author\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:27:57+00:00\",\"uid\":\"f480e246-0957-4cdd-9ac5-1341e3baf0c3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"quoteRole\",\"label\":\"Quote Role\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:27:57+00:00\",\"uid\":\"008e08fd-671b-47d8-8b2a-9feeeb6e7f98\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:27:57+00:00\",\"uid\":\"74cf31d2-4156-4bbf-9a00-1ec37db212e7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b3f660e6-d7ee-4793-b5c1-480690617dbc\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:27:57','2026-03-03 08:13:59',NULL,'67391463-22e8-4d4c-bd56-961436be540f'),
(27,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"53fff9e5-db4b-4204-b445-d9910e995e69\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:27:04+00:00\",\"uid\":\"c6dbaed8-9073-4fc7-bf33-31a2d499bb1f\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"ctaHeading\",\"label\":\"CTA Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:30:27+00:00\",\"uid\":\"14c2af89-da53-4d01-ae06-433c386d36c3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"ctaDescription\",\"label\":\"CTA Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:30:27+00:00\",\"uid\":\"4c134696-2755-4438-9b8a-5b95d32d3cb6\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"ctaButtonText\",\"label\":\"CTA Butoon Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:30:27+00:00\",\"uid\":\"7185c98c-c9bb-46f3-b785-e1e137bf4fce\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"ctaButtonUrl\",\"label\":\"CTA Button URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:30:27+00:00\",\"uid\":\"59d47b20-e597-4c63-8a0a-700e4fd4e0b1\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:30:27+00:00\",\"uid\":\"52f962b8-3d4a-4f5e-8e56-eb9108a237b7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"4626b440-5a67-45f1-a605-bbf880f31698\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:30:27','2026-03-03 08:13:59',NULL,'eccebe4c-1c2b-43e1-98d8-20c8257aef82'),
(28,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"b1d81038-1726-4897-b038-4c419b5d8eb8\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:29:44+00:00\",\"uid\":\"f533fe04-be47-4460-8bc5-d709edbba0d0\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:34:17+00:00\",\"uid\":\"8d5d0f0e-ba78-4aec-a975-896b5c0bfc97\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"fd1f951e-5f19-4d51-be00-8ac77a0a3dc8\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"videoUrl\",\"label\":\"Video URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:34:17+00:00\",\"uid\":\"ed6925bd-d64c-43fe-a367-7401b365a902\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:34:17+00:00\",\"uid\":\"baf34967-b125-4a4e-8a96-cf8c1681807f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"950833d2-d383-4899-bcf9-0189d600e24d\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"videoPoster\",\"label\":\"Video Poster\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:34:17+00:00\",\"uid\":\"31d5fcd7-a495-4c74-b74c-69b111cac764\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:34:17+00:00\",\"uid\":\"9206e4a3-b6b5-433e-8cb9-9ae29e23809d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a0e04847-3252-4444-9421-4fd5317d45de\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:34:17','2026-03-03 08:13:59',NULL,'4f8f3122-5576-4373-80f5-f35db245f4b2'),
(29,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"9e4f1dcd-b748-4047-aa16-f6a88efa3c76\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T10:33:23+00:00\",\"uid\":\"4a09023e-7515-4c92-b543-1c4e7de52f9d\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"statNumber\",\"label\":\"Stat Number\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:36:28+00:00\",\"uid\":\"652a22bb-1a5a-4287-a2fa-a5c519acb706\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"statLabel\",\"label\":\"Stat Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:36:28+00:00\",\"uid\":\"399a20b9-7e99-4731-90e5-c32e8906f85d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"statIcon\",\"label\":\"Stat Icon\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:36:28+00:00\",\"uid\":\"cf331026-3ff7-4176-932d-64366b48c99f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"c91f3372-1fd1-4bfb-b8f3-5432da853217\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"statSize\",\"label\":\"Stat Size\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:36:28+00:00\",\"uid\":\"897c6a9c-bfe0-416a-8c27-a42ed012b46b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"28299698-73d7-4cd3-9e87-ca3b6cb9e3b3\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:36:28','2026-03-03 08:13:59',NULL,'f912cf5f-cfc6-48d5-948f-4871d84b5480'),
(30,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"3b009ad1-9bc6-4325-b41b-4f69692998eb\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-06T09:55:20+00:00\",\"uid\":\"0414767f-6c38-434b-bde1-6124fdeef10c\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-06T10:36:46+00:00\",\"uid\":\"efc59f9e-ed22-476e-a4bb-ce8ebd251340\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"eb896b6f-bcb1-4fae-9998-a59cd8810a7a\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-06 10:36:46','2026-03-03 08:13:59',NULL,'aa2a4783-a598-4e7e-8b57-e750cc73cfd0'),
(31,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"8c67469c-af00-44d2-b6ff-c5de79f483e7\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T08:18:38+00:00\",\"uid\":\"e376cfa3-16b2-41b2-b6c8-bf077d006110\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"943e5167-350b-4d8b-b45c-796076d68a2b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T08:18:38+00:00\",\"uid\":\"bba64c5f-ac72-420f-a677-ed6defbb3b82\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ee1cc83b-5b4e-4514-85b3-075cee380875\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T08:18:38+00:00\",\"uid\":\"1a19c91a-121e-4f3c-b097-a360b3243240\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"caa7cec3-0dfe-41aa-a5d6-499b0bf216f0\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T08:18:38+00:00\",\"uid\":\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"047fdd15-181a-45a8-b054-bf13b0d2bfb5\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"spacingAbove\",\"label\":\"Spacing Above\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T08:18:38+00:00\",\"uid\":\"a15df883-dc8f-4e20-af61-cedce78c133b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"0ef98093-5a9d-410d-a094-b2e111e0c6d1\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"spacingBelow\",\"label\":\"Spacing Below\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T08:18:38+00:00\",\"uid\":\"8b2111a4-335b-497f-94da-aaed1b3e0328\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"0ef98093-5a9d-410d-a094-b2e111e0c6d1\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-07 08:18:38','2026-03-03 08:13:59',NULL,'43a087d6-3caf-4c46-a9c6-1a96ead40d01'),
(32,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"56e06f4e-5217-4f6f-b986-1c4e812c567a\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2025-12-07T13:42:16+00:00\",\"uid\":\"5bf57255-244c-47d5-b741-e591c6d9a0e9\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"099020e5-c897-49cc-b679-3ec70fecd44b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b6e437a2-3082-4ab0-9f08-862af0b650b1\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heading\",\"label\":\"Heading\",\"instructions\":\"Main heading text (e.g., \'Dr Rachel – the woman behind the needle of The Aesthetic Clinic\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"682128f9-a862-4496-8c65-4d0449904510\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"description\",\"label\":\"Description\",\"instructions\":\"Main content paragraphs about the doctor\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"6ab27a91-bd1e-456b-aa68-b220eb7a8fd8\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":\"Doctor\'s photo (recommended: portrait orientation, high quality)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"0f4b4599-37ec-4e32-951d-314472221e14\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"4a83aae4-2c1f-4a29-beff-16feb9d628ce\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"3b49b148-2424-4f38-b0f2-631cf577bc4b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showImageFrame\",\"label\":\"Show Image Frame\",\"instructions\":\"Show the image frame\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T23:21:52+00:00\",\"uid\":\"cedb678d-86a4-4d73-865d-e821937bc248\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"3c1a81fc-6fae-4278-8d85-367a118abfbb\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2025-12-07T14:18:29+00:00\",\"uid\":\"b5c7b570-446c-4de6-a9bb-cd9581c73e24\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-07 13:44:02','2026-03-03 08:13:59',NULL,'2a3a452c-9a84-4db3-a2ce-5142560340d9'),
(33,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"c4dbe476-ebb1-4604-91f1-c3b2df612774\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-02T18:55:27+00:00\",\"uid\":\"f7695675-60c2-4b85-8046-2faceed3f3c7\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"topLabel\",\"label\":\"Top label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T12:51:18+00:00\",\"uid\":\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heading\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T12:51:18+00:00\",\"uid\":\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"subtitle\",\"label\":\"Subtitle\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T12:51:18+00:00\",\"uid\":\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"instagramHandle\",\"label\":\"Instagram Handle\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T12:51:18+00:00\",\"uid\":\"014f7791-0f8d-4cf9-827e-dca775844565\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"instagramUrl\",\"label\":\"Instagram URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T12:51:18+00:00\",\"uid\":\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"imageAssets\",\"label\":\"Image Assets\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T12:51:18+00:00\",\"uid\":\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"edf56846-fce6-475b-81c3-7237f63d0a83\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"instagramLive\",\"label\":\"Instagram Live\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T11:44:45+00:00\",\"uid\":\"893c100e-74db-4ce2-a4bc-b61c5e66812a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-02-02 18:58:34','2026-03-29 11:44:45',NULL,'9bbf523a-1591-475f-8961-a5890414b2d9'),
(34,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"6aa3c6d2-360f-476f-b8b2-d2d42369e82a\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-03T08:33:50+00:00\",\"uid\":\"ed3c6262-26e6-4e59-ad23-b9d3986ddb19\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"topLabel\",\"label\":\"Top Label\",\"instructions\":\"Small label above heading (e.g., \'Visit Us\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heading\",\"label\":\"Heading\",\"instructions\":\"Main section heading (e.g., \'Find Our Clinic\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"71564ec2-e644-438f-834f-491192e8b8be\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"locationAddress\",\"label\":\"Location Address\",\"instructions\":\"Full clinic address (supports HTML line breaks)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"openingHours\",\"label\":\"Opening Hours\",\"instructions\":\"Opening hours (one per line, e.g., \'Mon - Fri: 9:00 AM - 7:00 PM\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"phoneNumber\",\"label\":\"Phone Number\",\"instructions\":\"Contact phone number (e.g., \'07834 258 596\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"3686df1e-4be2-483f-ab92-1295ff5058c9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"email\",\"label\":\"Email\",\"instructions\":\"Contact email address\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"mapEmbedUrl\",\"label\":\"Map Embed URL\",\"instructions\":\"Google Maps embed URL (get from Google Maps → Share → Embed a map)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"729977b5-e42b-44bc-b4c2-3300364e9e1d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"ctaButtonUrl\",\"label\":\"CTA Button URL\",\"instructions\":\"URL for the call-to-action button\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-03T08:41:43+00:00\",\"uid\":\"6b2619db-9295-4ee6-b7b9-fbb64c012746\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-03 08:41:43','2026-03-03 08:13:59',NULL,'9ce573d9-478c-4aa1-bba1-5673423f48dc'),
(35,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"7eb2ce31-215f-437c-a590-ca7ad10cedb4\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-20T13:31:49+00:00\",\"uid\":\"e87bf0dd-627f-418d-a7aa-ec51ebc2b92b\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"question\",\"label\":\"Question\",\"instructions\":\"Enter the FAQ question\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T13:36:59+00:00\",\"uid\":\"df226ae8-fb69-4583-a72e-59db675487cd\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"answer\",\"label\":\"Answer\",\"instructions\":\"Enter the FAQ answer\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-20T10:11:28+00:00\",\"uid\":\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-02-20 13:36:59','2026-03-20 10:11:28',NULL,'3634baa3-14f5-4142-baee-ed3658c6a48a'),
(36,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"5e1eed26-1a24-4e3f-adc2-e552fda024af\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-20T13:48:18+00:00\",\"uid\":\"9d969fea-d9af-4ddc-9958-97ed5b2c27ad\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"overviewLabel\",\"label\":\"Overview Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T15:37:18+00:00\",\"uid\":\"27981bad-5628-40c6-8263-ab2118bca482\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"overviewTitle\",\"label\":\"Overview Title\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T15:37:18+00:00\",\"uid\":\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:18:19+00:00\",\"uid\":\"73dce444-eee4-4675-a8d9-a73001443f8d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"8f8ff810-b5a0-4df9-8e17-6666ba92ba4b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T15:42:50+00:00\",\"uid\":\"707b0270-058e-4815-8353-a09c723e049b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b18a7136-6cdd-4a0b-a094-b82bc3f945d4\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-20 13:49:33','2026-03-03 08:13:59',NULL,'a934aeaa-d055-4aad-b5da-1358322ee001'),
(37,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"f4f19732-cedf-4661-9f19-80a0d2b65ed4\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-20T13:56:59+00:00\",\"uid\":\"fd2186c1-9d87-453b-8aed-f7a61bf5ec54\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"iconCard\",\"label\":\"Icon\",\"instructions\":\"FontAwesome icon class (e.g. \'fa-solid fa-sterlng-sign\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:12:34+00:00\",\"uid\":\"4c4b22bb-5fe8-416c-8823-615a5318a82f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"titleCard\",\"label\":\"Title\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:12:34+00:00\",\"uid\":\"7b421ddd-f8ff-42a3-8082-c778636c4b86\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"value\",\"label\":\"Value\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:12:34+00:00\",\"uid\":\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"description\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:12:34+00:00\",\"uid\":\"0f7cd089-87a8-4797-9e78-54d87e5faefd\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-20 14:12:34','2026-03-03 08:13:59',NULL,'2b18cc12-ecdb-43ef-8a5c-4ae3a0890817'),
(38,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"c5ae4fce-d7de-42c2-9195-107063a25b2b\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-20T14:16:32+00:00\",\"uid\":\"da86aab3-4b15-4648-9f55-9e6f092ba0db\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"text\",\"label\":\"Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:17:58+00:00\",\"uid\":\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-20 14:17:58','2026-03-03 08:13:59',NULL,'1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0'),
(39,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"b1a140f0-14a7-4c74-a966-6102f753a269\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-20T14:36:22+00:00\",\"uid\":\"3d572f7d-2dcc-41b1-b9e3-1a379b1330e1\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"treatmentTitle\",\"label\":\"Treatment Title\",\"instructions\":\"Main title (e.g., \'Botox & Dermal Fillers\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"733c704a-1ef5-425f-82bb-2c7ed16220f6\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"location\",\"label\":\"Location\",\"instructions\":\"Location subtitle (e.g. \'Harley Street\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"14363a43-2d96-4339-9c8f-1176bb7ac41a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"description\",\"label\":\"Description\",\"instructions\":\"Hero description text\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"da1cef0a-85ef-4a87-845c-ae060c5f178a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"backgroundImage\",\"label\":\"Background Image\",\"instructions\":\"Optional background image (shown with low opacity)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"93738b02-f267-4516-b95a-6418676ff545\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T23:31:04+00:00\",\"uid\":\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonText\",\"label\":\"Primary Button Text\",\"instructions\":\"Text for primary CTA Button\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonUrl\",\"label\":\"Primary Button URL\",\"instructions\":\"URL for primary button\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"5db50043-52e9-4e56-ba19-ac40464d29e4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"secondaryButtonText\",\"label\":\"Secondary Button Text\",\"instructions\":\"Text For Secondary button (e.g. phone number)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"5db102a4-8437-416e-be95-5eab08c6ded8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showSecondaryButton\",\"label\":\"Show Secondary Button\",\"instructions\":\"Toggle to show/hide secondary button\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-20T14:42:18+00:00\",\"uid\":\"a5274579-8206-47e3-8cdd-64cbb42cfa04\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"3c1a81fc-6fae-4278-8d85-367a118abfbb\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Contact Mode\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-17T16:14:39+00:00\",\"uid\":\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"5255cd18-4f37-4112-b6bb-070514da0eae\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-02-20 14:42:18','2026-04-17 16:22:57',NULL,'0fec84a5-1cf5-4f6e-b1e7-467438dd1089'),
(40,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"1989f317-0be8-4183-8792-929466f2c147\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T12:56:22+00:00\",\"uid\":\"a91c9091-42dd-415f-9bce-a29a8d02ff50\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"iconCard\",\"label\":\"Icon\",\"instructions\":\"Fontawesome icon class (e.g. \'fa-solid fa-chart-column\')\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T13:14:21+00:00\",\"uid\":\"1ae5caab-db45-4566-bedb-13220889b058\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"titleCard\",\"label\":\"Title\",\"instructions\":\"Card title\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T13:14:21+00:00\",\"uid\":\"6ca65211-02ec-4f68-960c-39eb200c7e18\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"description\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T13:14:21+00:00\",\"uid\":\"28708981-cf62-4bc8-916e-3de90d2c1149\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 13:14:21','2026-03-03 08:13:59',NULL,'4241ae24-2157-4a43-995d-74889a70248d'),
(41,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"fc63fd6c-bda2-4fe9-8f2c-748799d93b11\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T12:52:45+00:00\",\"uid\":\"0b54d292-a257-48b6-a929-6091948fa80d\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T13:16:49+00:00\",\"uid\":\"6f4c8f61-5636-4286-821a-9523fa0e924f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"fbe1b888-6820-4ee6-be6f-fad5554a897b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionLabel\",\"label\":\"Section Label\",\"instructions\":\"Text above heading\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T13:16:49+00:00\",\"uid\":\"f8e6258b-90c5-4137-bace-60c62639da4a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionTitle\",\"label\":\"Section Title\",\"instructions\":\"Main title (e.g. Why Choose This Treatment)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T13:16:49+00:00\",\"uid\":\"3cbe2fed-6999-4764-ab9a-308f0b982499\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionDescription\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T15:49:21+00:00\",\"uid\":\"45c80109-3898-433b-96cc-3838022d84f9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 13:16:49','2026-03-03 08:13:59',NULL,'ae0d8925-821f-4114-9eef-14f68a9bc09f'),
(42,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"9f2e4157-4725-48fb-90d1-50a6d8401e88\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T13:33:33+00:00\",\"uid\":\"eee98747-56e0-4076-b4d9-5580ac29acd9\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"88d36765-b596-489f-bf13-613ff1c13f68\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"946fbcbf-aac7-480d-bfba-27044e947a80\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionLabel\",\"label\":\"Section Label\",\"instructions\":\"Label above heading\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"a8216afd-a278-431d-9241-249a8482c463\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectioTitle\",\"label\":\"Section title\",\"instructions\":\"Title (e.g. What is Prohilo)\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionDescription\",\"label\":\"Description\",\"instructions\":\"Section description\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"8f4ed747-6538-42b3-9204-10e4e72f859a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T23:38:32+00:00\",\"uid\":\"9551510c-7e7c-4050-86b6-7d7743d053b7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Block 1 (text left, image right)\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"c9c517a3-44d4-4086-b7de-0d6456e3a468\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"868dcb3d-2902-453b-9560-448fd1da73ff\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block1Heading\",\"label\":\"Block 1 Heading\",\"instructions\":\"Heading e.g. \\\"Dr Samantha - the woman behind the needle\\\"\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block1Paragraph1\",\"label\":\"Block 1 Paragraph 1\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"09b096a5-3744-49b5-aca3-68c5a759cee3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block1Paragraph2\",\"label\":\"Block 1 Paragraph 2\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"aa302180-85b3-4ce4-a24d-7851a05f80b3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block1Image\",\"label\":\"Block 1 Image \",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"00524f8a-98d9-4f47-b5d0-b4c407115118\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"59b98af3-0c7d-4ef0-bd5e-cb771b4b4915\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-22T22:26:48+00:00\",\"uid\":\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"4b5c5181-3923-4781-a0bb-ad5b5eabb1fe\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Block 2 (image left, text right)\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"40bdd2e7-9774-463d-8e9a-165e2dc2ad8f\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"3455ce2d-a0b7-481a-ade5-2cc46899d210\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block2Heading\",\"label\":\"Block 2 Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"556a3ac6-956d-48f1-b64a-184871e63dde\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block2Paragraph1\",\"label\":\"Block 2 Paragraph 1\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"c38db626-85ba-4201-9240-e8c2b19beb5e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block2Paragraph2\",\"label\":\"Block 2 Paragraph 2\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"26816f50-cf23-4107-b380-4cc8fc57871b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"block2Image\",\"label\":\"Block 2 Image\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"7509c6f1-b682-433b-9708-0d83e83f3a1f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Testimonial\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"a0953453-4058-4a73-9ed2-d177b187c0ef\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"fbe98654-7308-408c-b864-abe0c416ef34\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"testimonialQuote\",\"label\":\"Testimonial Quote\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T18:35:54+00:00\",\"uid\":\"0e712616-4ff7-45e0-bd93-b25da08757d3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"testimonialAuthorName\",\"label\":\"Author Name\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"testimonialTreatmentName\",\"label\":\"Treatment Name\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"2b3e1715-32ff-447b-9460-6469aeb01c95\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"testimonialInitials\",\"label\":\"Author Initials\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"662abfc6-cb86-492b-a40d-00775916402e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"testimonialStarCount\",\"label\":\"Star Count\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"780ba720-3833-46e6-89d7-7d24cc606852\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a906962a-296e-41d6-a082-1398608c0ead\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Call To Action\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"f93f8425-84bf-4512-88ce-92cb70327e97\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"ff9b4de1-1692-401f-98b3-f233e558a958\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"harleyHeading\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"80b2559f-f6ea-4425-a80c-d4905608eff9\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"harleyDescription\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"2e2b47ba-c967-4b16-8293-07e5c74319fe\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"11ca9eb3-65b9-4075-8327-16d3eaf68026\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"harleyButtonText\",\"label\":\"Button Name\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"bae8aad6-de36-441f-bb76-34f1e3a478b2\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"harleyButtonUrl\",\"label\":\"Button URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:21:06+00:00\",\"uid\":\"3ca08555-77e8-454e-8700-705a90cc539c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 14:21:06','2026-03-03 08:13:59',NULL,'026a14d1-fc1b-4767-aeaa-3cf150485bb8'),
(43,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"4894de7a-8b84-4bac-aa21-f84d733ae537\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T14:25:00+00:00\",\"uid\":\"683f594f-117c-4b2e-9de5-dc7d0b2a7edc\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionLabel\",\"label\":\"Section Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:52:38+00:00\",\"uid\":\"b813f809-47c0-4f2e-9d84-af3f38d219d8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionHeading\",\"label\":\"Section Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:52:38+00:00\",\"uid\":\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionContent\",\"label\":\"Section Content\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:52:38+00:00\",\"uid\":\"e7f2072c-cd79-4083-a671-932331be040a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionImage\",\"label\":\"Section Image\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T14:52:38+00:00\",\"uid\":\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 14:52:38','2026-03-03 08:13:59',NULL,'e27aff52-61ea-4faa-a22d-5e9fd7bde8ac'),
(44,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"86cc4e31-f0f9-4991-a356-3ab1a4143143\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T16:12:48+00:00\",\"uid\":\"84329c78-48fb-4f8f-9500-98d1561af0ed\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"faqsTitle\",\"label\":\"FAQs Title\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T16:16:49+00:00\",\"uid\":\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"faqsDescription\",\"label\":\"FAQs Descriptuon\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T16:16:49+00:00\",\"uid\":\"13b81fd6-015d-4533-92c8-003014ed992f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T16:14:22+00:00\",\"uid\":\"4573ea0a-fba5-43ea-9ffe-aa0440e2c854\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ef4c617e-94ef-4a32-8406-24a92a9e9a82\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 16:14:22','2026-03-03 08:13:59',NULL,'eb5887ed-ad87-4271-90e1-4fc3c3be4603'),
(45,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"97722891-21ae-48d5-a519-a9ac68397ae0\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T21:48:08+00:00\",\"uid\":\"ed8ce1c4-7232-4f75-a88f-ae09db48eb41\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionDescription\",\"label\":\"Section description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:37:00+00:00\",\"uid\":\"25b468f4-fac1-403c-a17f-13e13e0e9b60\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:37:00+00:00\",\"uid\":\"042d0ccf-eca5-4519-a10e-ef2bb83920f3\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"33126ba0-77bf-4fda-aec5-cf3893199a82\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"linkText\",\"label\":\"Link text\",\"instructions\":\"For e.g. \\\"Read more about this treatment\\\"\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:37:00+00:00\",\"uid\":\"7d345954-18f1-422e-8882-8ad6f88da558\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:37:00+00:00\",\"uid\":\"714e1431-03c0-455c-8957-dd9d22173d46\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b7236eb7-32e2-438c-a8c1-80c2d52e82db\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"linkUrl\",\"label\":\"Link URL\",\"instructions\":\"if `Link URL` has a selected entry, its URL is used; otherwise `Related treatment` is used. \",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:37:00+00:00\",\"uid\":\"9287da5b-f2ab-477a-beb5-7dea375cd6a5\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 21:49:52','2026-03-03 08:13:59',NULL,'c8dd5fc7-992a-48a6-9148-79caab81029e'),
(46,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"bf6d1833-c148-4f82-9bc3-37a34eaaf687\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-21T21:57:59+00:00\",\"uid\":\"002254c0-5ee5-48c7-9803-71eab8ebb3a4\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"itemLabel\",\"label\":\"Treatment name\",\"instructions\":\"Treatment name\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:01:44+00:00\",\"uid\":\"b9fb345b-3128-4265-b3bd-58b1d523a332\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"itemPrice\",\"label\":\"Price\",\"instructions\":\"Treatment price\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-21T22:01:44+00:00\",\"uid\":\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"additionalText\",\"label\":\"Additional text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-27T14:11:08+00:00\",\"uid\":\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-02-21 22:01:44','2026-03-27 14:11:08',NULL,'93185d2e-0e62-417c-bf89-b2120bc51ad7'),
(47,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"992cd5e6-68fe-4f32-b091-2d5b8b71fc43\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-22T00:00:17+00:00\",\"uid\":\"e364010f-ec19-41ff-80d5-38d15e9d4d8a\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-22T00:01:31+00:00\",\"uid\":\"532dac3c-d10a-4183-93e4-92dc9b29362b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-22T00:01:31+00:00\",\"uid\":\"00bc2085-e013-4955-9a8c-9713f15eac95\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"509a8ddb-54bf-42d0-b022-428404fd505b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-22 00:01:31','2026-03-03 08:13:59',NULL,'b3e850fa-6c7e-4232-a382-b5ee294644f1'),
(48,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"6b3c6c36-7c95-472b-9077-52ab975809af\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-02-22T00:34:42+00:00\",\"uid\":\"e7cedc6d-0fa9-4132-803b-d627d59ff883\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-22T00:36:31+00:00\",\"uid\":\"46e8d394-7104-4044-85de-cc44d6cab29b\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"7a129363-bf45-498a-9747-02d8a372898c\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-02-22T00:36:31+00:00\",\"uid\":\"bb4602f1-c627-4a21-a59f-0b7e68875849\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"509a8ddb-54bf-42d0-b022-428404fd505b\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-22 00:36:31','2026-03-03 08:13:59',NULL,'a7db6a11-8a4d-4345-ba39-715ea610cd04'),
(49,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"9851b5e5-edd7-4117-aee2-50a76d446ccc\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-03-02T19:55:48+00:00\",\"uid\":\"8c982580-a2f6-4ddd-b514-64b03f732be1\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionHeading\",\"label\":\"Section Heading\",\"instructions\":\"for e.g. \\\"Still have questions?\\\"\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"66962652-75fe-47de-baec-55e4fc682a2c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionDescription\",\"label\":\"Section description\",\"instructions\":\"Example: “Our team is here to help. Get in touch for personalized advice.”\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"02bbffce-9901-4d78-8735-e9ffcf43516d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonText\",\"label\":\"Primary Button Text\",\"instructions\":\"Example: “Book Consultation”\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonUrl\",\"label\":\"Primary button URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"beab3711-acd0-4f59-9d50-fd5554a44054\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"contactNumber\",\"label\":\"Contact Number\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-06T09:48:58+00:00\",\"uid\":\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-06T09:48:58+00:00\",\"uid\":\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"5255cd18-4f37-4112-b6bb-070514da0eae\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showSecondaryButton\",\"label\":\"Show Secondary Button\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"209bc342-909a-4162-b9dc-50fad3dd2f69\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"922aab16-db12-4e15-a3ef-88a4c9de0705\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-03-02 20:02:06','2026-04-06 09:48:58',NULL,'3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad'),
(50,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"7cd0f8d1-5789-4f52-a7ec-af100df21d72\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-03-23T12:26:45+00:00\",\"uid\":\"48ae300d-39b1-436f-8ad3-60575ca18633\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-23T12:32:20+00:00\",\"uid\":\"9f2ce07b-8d36-41a1-b7fe-29b615c2ba65\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"212a20ff-39e0-48f2-b54a-da7435fcfd30\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-23T12:32:20+00:00\",\"uid\":\"8df94f7e-f0c5-428c-8f81-cc6ba16d377f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Top Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-23T12:32:20+00:00\",\"uid\":\"409e9b77-c808-42a3-88a1-ee3c1ab263b2\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"textArea\",\"label\":\"Text Area\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-23T12:32:20+00:00\",\"uid\":\"833ae5d2-84c5-44b6-b45d-eb054ea65443\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"excerpt\",\"label\":\"Excerpt\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-23T12:32:20+00:00\",\"uid\":\"46976c59-a4eb-4cd7-8297-2d2cbfae5fb7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText3\",\"label\":\"Background Hex\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-23T12:32:20+00:00\",\"uid\":\"c19407df-037d-4b50-a26f-5b98ec499e2c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-03-23 12:32:20','2026-03-23 12:32:20',NULL,'3d5fd6a0-87b3-4e03-a08e-00a09e5832c8'),
(51,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"0103b931-87ba-4824-80dd-a3f46608ee4c\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-03-25T11:29:50+00:00\",\"uid\":\"f17107f1-5cd4-4054-9ef3-6e55cb1f0255\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"groupTitle\",\"label\":\"Group Title\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-25T11:32:58+00:00\",\"uid\":\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"groupDescription\",\"label\":\"Group Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-25T11:32:58+00:00\",\"uid\":\"299c38c6-3179-443f-bc02-f3198c3b9b23\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-25T11:32:58+00:00\",\"uid\":\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"5a0747b5-c1cc-4f6f-a103-e9256508f69c\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-03-25 11:32:58','2026-03-25 11:32:58',NULL,'fe4fa8b8-f829-4fb8-a025-eac33c33956d'),
(52,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"347d5d38-e542-4835-a997-be608e4f6b63\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-03-29T10:37:07+00:00\",\"uid\":\"0875ec43-bd94-4bdf-a27d-9ce6e5f14cd2\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"topLabel\",\"label\":\"Top Label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:40:29+00:00\",\"uid\":\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heading\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:40:29+00:00\",\"uid\":\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"clientPhoto\",\"label\":\"Client photo\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:40:29+00:00\",\"uid\":\"31620f43-2492-427c-9f97-a712da1d3271\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"quote\",\"label\":\"Quote\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:40:29+00:00\",\"uid\":\"072dcb8d-a55a-47b9-802d-e817056095ba\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"clientName\",\"label\":\"Client name\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:40:29+00:00\",\"uid\":\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"treatmentLabel\",\"label\":\"Treatment label\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:40:29+00:00\",\"uid\":\"234d8da9-a1aa-46f3-aa79-a2863797bca4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"liveReviews\",\"label\":\"Live Reviews\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-03-29T10:52:05+00:00\",\"uid\":\"a1fc5688-356a-440e-bb6d-d1b273378a1f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-03-29 10:40:29','2026-03-29 10:52:05',NULL,'fa96f084-ca41-49c9-bc18-cde17d177b49'),
(53,'craft\\elements\\Entry','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"b43ad0fc-04ba-4d04-8ef0-c01c3029a7b0\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-04-06T08:31:47+00:00\",\"uid\":\"c34bb962-e0e2-4521-829f-e3c4095f68ca\",\"userCondition\":null,\"elementCondition\":null,\"required\":true},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionHeading\",\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-06T08:34:53+00:00\",\"uid\":\"0e99218a-a088-4a59-8372-12392a9ed2a1\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"sectionDescription\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-06T08:34:53+00:00\",\"uid\":\"2ef2608f-2abf-4e80-9c32-a5f6f6c843da\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-20T19:47:43+00:00\",\"uid\":\"366f0eb0-c422-44e2-b37f-e51d412bcac7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heroYoutubeUrl\",\"label\":\"YouTube URL\",\"instructions\":\"Add the YouTube link for the video here\",\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-06T08:34:53+00:00\",\"uid\":\"214da0db-9e00-4448-aebd-ac608a67c449\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"heroYoutubeUrl2\",\"label\":\"YouTube URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-20T19:47:43+00:00\",\"uid\":\"e431f461-d094-4773-879d-6698d08f56e5\",\"userCondition\":null,\"elementCondition\":{\"elementType\":\"craft\\\\elements\\\\Entry\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\",\"conditionRules\":[{\"class\":\"craft\\\\fields\\\\conditions\\\\OptionsFieldConditionRule\",\"uid\":\"f727172f-122d-4235-af09-48135d626481\",\"operator\":\"in\",\"values\":[\"twoVideos\"],\"fieldUid\":\"57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec\",\"layoutElementUid\":\"366f0eb0-c422-44e2-b37f-e51d412bcac7\"}]},\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null,\"elementEditCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-06T08:34:53+00:00\",\"uid\":\"ebb0ff55-f947-4817-b289-a0e9eac07029\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\",\"editCondition\":null,\"elementEditCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-04-06 08:34:53','2026-04-20 19:47:43',NULL,'5078e74a-726c-409f-9bb0-54f075d859f6'),
(54,'craft\\elements\\User','{\"tabs\":[{\"name\":\"Content\",\"uid\":\"e0006b56-f9d7-472f-bae9-9c8b739718c3\",\"userCondition\":null,\"elementCondition\":null,\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\users\\\\UsernameField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-04-20T19:31:47+00:00\",\"uid\":\"5e03a677-2149-40fc-920c-4a5ec77dba15\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\users\\\\FullNameField\",\"attribute\":\"fullName\",\"requirable\":true,\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"dateAdded\":\"2026-04-20T19:31:47+00:00\",\"uid\":\"d0fd9a03-bb88-45b4-a078-15b544bc7c36\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\users\\\\PhotoField\",\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"width\":100,\"dateAdded\":\"2026-04-20T19:31:47+00:00\",\"uid\":\"ccf2632e-dbe4-4004-a80d-fe07d85952a1\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\users\\\\EmailField\",\"inputType\":null,\"autocomplete\":false,\"class\":null,\"size\":null,\"name\":null,\"autocorrect\":true,\"autocapitalize\":true,\"disabled\":false,\"readonly\":false,\"title\":null,\"placeholder\":null,\"step\":null,\"min\":null,\"max\":null,\"requirable\":false,\"id\":null,\"containerAttributes\":[],\"inputContainerAttributes\":[],\"labelAttributes\":[],\"orientation\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"width\":100,\"dateAdded\":\"2026-04-20T19:31:47+00:00\",\"uid\":\"1007c497-3567-4507-bc70-63fea129d4e8\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"thumbFieldKey\":null,\"cardThumbAlignment\":\"end\"}','2026-04-20 19:34:36','2026-04-20 19:36:05',NULL,'983b2587-333a-485f-964e-29dfd623774e');
/*!40000 ALTER TABLE `fieldlayouts` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `fields` WRITE;
/*!40000 ALTER TABLE `fields` DISABLE KEYS */;
INSERT INTO `fields` VALUES
(1,'Button Type','buttonType','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Normal Link\",\"value\":\"normal\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Call To Action\",\"value\":\"cta\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Call To Action Alt\",\"value\":\"ctaAlt\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-11-29 13:00:53','2025-11-29 13:00:53',NULL,'b9d341c8-9a1f-4ad6-9e8a-085c440d7e11'),
(2,'Image','image','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Assets','{\"restrictLocation\":false,\"restrictedLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"restrictedLocationSubpath\":null,\"allowSubfolders\":false,\"restrictedDefaultUploadSubpath\":null,\"defaultUploadLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"defaultUploadLocationSubpath\":null,\"allowUploads\":true,\"restrictFiles\":true,\"allowedKinds\":[\"audio\",\"image\",\"pdf\",\"video\"],\"showUnpermittedVolumes\":false,\"showUnpermittedFiles\":false,\"previewMode\":\"full\",\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":null,\"minRelations\":null,\"selectionLabel\":null,\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":true,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-11-30 11:42:05','2025-11-30 19:40:09',NULL,'ae553c7f-84c3-474d-8d0b-cfb7d073ab5f'),
(3,'Plain Text ','plainText','global',NULL,NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2025-11-30 11:42:25','2025-11-30 11:42:25',NULL,'9fc3a933-4142-4602-8609-0c4f426e043b'),
(4,'Text Area','textArea','global',NULL,NULL,0,'none',NULL,'craft\\ckeditor\\Field','{\"availableTransforms\":\"\",\"availableVolumes\":\"*\",\"characterLimit\":null,\"ckeConfig\":\"f3801245-1cac-46df-bf78-b4697ba88015\",\"createButtonLabel\":null,\"defaultTransform\":null,\"expandEntryButtons\":false,\"fullGraphqlData\":true,\"parseEmbeds\":false,\"purifierConfig\":null,\"purifyHtml\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"showWordCount\":false,\"sourceEditingGroups\":[\"__ADMINS__\"],\"wordLimit\":null}','2025-11-30 11:43:21','2026-03-02 18:15:46',NULL,'11ca9eb3-65b9-4075-8327-16d3eaf68026'),
(5,'URL','buttonUrl','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Link','{\"advancedFields\":[\"target\",\"title\"],\"fullGraphqlData\":true,\"maxLength\":355,\"showLabelField\":false,\"typeSettings\":{\"entry\":{\"sources\":\"*\",\"showUnpermittedSections\":\"\",\"showUnpermittedEntries\":\"\"},\"url\":{\"allowRootRelativeUrls\":\"1\",\"allowAnchors\":\"1\",\"allowCustomSchemes\":\"\"}},\"types\":[\"entry\",\"url\"]}','2025-11-30 11:44:19','2026-03-20 10:33:57',NULL,'452dafb1-1a42-4c98-a977-363c723ec58c'),
(6,'Call to Action','ctaButtons','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":\"Add New Button\",\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":true,\"viewMode\":\"cards\"}','2025-11-30 11:48:42','2025-11-30 11:48:42',NULL,'ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe'),
(7,'Page Builder','pagebuilder','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":\"New Section\",\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"4d901f07-e203-40c2-81e4-09b9ca404552\",\"group\":\"General\"},{\"uid\":\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\",\"group\":\"General\"},{\"uid\":\"53906bea-a5c6-4385-82e5-c89e27ac267b\",\"group\":\"General\"},{\"uid\":\"072a4948-ed72-4bec-8817-90115344274e\",\"group\":\"General\"},{\"uid\":\"54df986c-6d9a-49a7-8f54-33871ccfd5c6\",\"group\":\"General\"},{\"uid\":\"fb7fcf38-d4f2-4c7f-aac3-719daca80e85\",\"group\":\"General\"},{\"uid\":\"2fc1070c-46b5-4221-948d-e3693438e735\",\"group\":\"General\"},{\"uid\":\"b6a30616-2a75-4a5e-997a-a06c3596ad23\",\"group\":\"General\"},{\"uid\":\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\",\"group\":\"General\"},{\"uid\":\"33f0b780-c7d3-4e20-94e5-83bbd5f30e48\",\"group\":\"General\"},{\"uid\":\"3c3901be-445f-43a2-aac3-836a5a5cdfba\",\"group\":\"General\"},{\"uid\":\"318e492e-01cc-4b53-86ef-7186a7f4cee4\",\"group\":\"General\"},{\"uid\":\"cd83f1fe-45e5-4082-9590-93ec1fb4a261\",\"group\":\"General\"},{\"uid\":\"45e1951f-373a-4e27-8d30-3cfa1bb82857\",\"group\":\"General\"},{\"uid\":\"73bbd50d-5a76-4478-ab66-7b936845b6d8\",\"group\":\"General\"},{\"uid\":\"fb561bc6-1aeb-445e-b520-0e208a6c38b8\",\"group\":\"General\"},{\"uid\":\"edb418c0-89d3-419b-897b-dcb54ef07062\",\"group\":\"General\"},{\"uid\":\"28c66742-a424-4cbd-ad18-079d8881f9ae\",\"group\":\"General\"},{\"uid\":\"3c3edcaf-67eb-492e-8460-c077662649ee\",\"group\":\"General\"},{\"uid\":\"f365f324-7c4f-4031-96d3-704d3aa3f4b9\",\"group\":\"General\"},{\"uid\":\"bfb7ac1d-af5b-4148-9942-8cb360b7a33c\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":true,\"viewMode\":\"cards-grid\"}','2025-11-30 19:06:01','2026-04-06 08:35:12',NULL,'509a8ddb-54bf-42d0-b022-428404fd505b'),
(8,'Image Position','imagePosition','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Left\",\"value\":\"left\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Right\",\"value\":\"right\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Center\",\"value\":\"center\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-11-30 19:15:20','2025-12-06 20:19:17',NULL,'e3025ceb-44cc-4ae0-b8bb-f05c4be26b27'),
(9,'Related Treatment','relatedTreatment','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":10,\"minRelations\":null,\"selectionLabel\":\"Choose Treatment\",\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":true,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:d4de9e34-cb7e-4113-989b-f14f4c3536d3\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-02 14:21:10','2025-12-02 15:43:00','2025-12-02 19:32:15','5a893fb8-7c34-4a8e-9964-9191b14ab476'),
(10,'Before Image','beforeImage','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"branchLimit\":null,\"defaultPlacement\":\"end\",\"defaultUploadLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"defaultUploadLocationSubpath\":\"\\/transformations\",\"maintainHierarchy\":false,\"maxRelations\":1,\"minRelations\":null,\"previewMode\":\"full\",\"restrictFiles\":true,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"restrictedLocationSubpath\":null,\"selectionLabel\":\"Add Before Image\",\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"sources\":[\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-02 14:41:31','2025-12-02 14:41:31',NULL,'59b98af3-0c7d-4ef0-bd5e-cb771b4b4915'),
(11,'After Image','afterImage','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"branchLimit\":null,\"defaultPlacement\":\"end\",\"defaultUploadLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"defaultUploadLocationSubpath\":\"\\/transformations\",\"maintainHierarchy\":false,\"maxRelations\":1,\"minRelations\":null,\"previewMode\":\"full\",\"restrictFiles\":true,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"restrictedLocationSubpath\":null,\"selectionLabel\":\"Add After Image\",\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"sources\":[\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-02 14:42:23','2025-12-02 15:35:46',NULL,'4b3e5070-9588-413c-bedc-097215932500'),
(12,'Featured on Homepage','featuredOnHomepage','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":false,\"offLabel\":\"NO\",\"onLabel\":\"YES\"}','2025-12-02 14:42:58','2025-12-02 14:42:58',NULL,'922aab16-db12-4e15-a3ef-88a4c9de0705'),
(13,'Featured Transformations','featuredTransformations','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":6,\"minRelations\":null,\"selectionLabel\":\"Choose Transformations to Feature\",\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":true,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:cbc5061d-a74e-463d-ab5e-7c5fd4103496\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-02 16:10:22','2025-12-02 19:32:27',NULL,'7a91ded5-d5f6-4f89-bd3b-5bb0647cef14'),
(14,'Display Type','displayType','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Show All \",\"value\":\"all\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Show Selected \",\"value\":\"selected\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Show Limited Number\",\"value\":\"limited\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-02 20:28:16','2025-12-03 08:51:00',NULL,'df77759d-bc11-4545-8c34-f63e1bbd65b2'),
(15,'Number of Treatments','numberOfTreatments','global',NULL,'How many treatments to display (leave empty for all)',0,'none',NULL,'craft\\fields\\Number','{\"decimals\":0,\"defaultValue\":null,\"max\":null,\"min\":0,\"prefix\":null,\"previewCurrency\":null,\"previewFormat\":\"decimal\",\"size\":null,\"step\":null,\"suffix\":null}','2025-12-02 20:28:59','2025-12-02 20:28:59',NULL,'a906962a-296e-41d6-a082-1398608c0ead'),
(16,'Selected Treatments','selectedTreatments','global',NULL,'Manually select and order treatments to display',0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":null,\"minRelations\":null,\"selectionLabel\":null,\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:d4de9e34-cb7e-4113-989b-f14f4c3536d3\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-02 20:29:50','2025-12-02 20:29:50',NULL,'729f8778-8c61-4d5c-acc7-bc33102dff1f'),
(17,'Featured image','featuredImage','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"branchLimit\":null,\"defaultPlacement\":\"end\",\"defaultUploadLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"defaultUploadLocationSubpath\":null,\"maintainHierarchy\":false,\"maxRelations\":1,\"minRelations\":0,\"previewMode\":\"full\",\"restrictFiles\":true,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"restrictedLocationSubpath\":null,\"selectionLabel\":null,\"showCardsInGrid\":false,\"showSearchInput\":false,\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"sources\":[\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-02 20:40:19','2025-12-06 18:44:57',NULL,'7a129363-bf45-498a-9747-02d8a372898c'),
(18,'Icon','socialIcon','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Icon','{\"fullGraphqlData\":true,\"includeProIcons\":false}','2025-12-02 22:01:43','2025-12-02 22:01:43',NULL,'c91f3372-1fd1-4bfb-b8f3-5432da853217'),
(19,'Footer Socials','footerSocials','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":\"Add Social\",\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"4abd8145-07f0-4c4c-bd28-d130696c6013\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":false,\"viewMode\":\"cards\"}','2025-12-02 22:01:57','2025-12-02 22:06:42',NULL,'e700606a-2f59-4f03-ad43-3a19658d4d03'),
(20,'WISYWIG','wisywig','global',NULL,NULL,0,'none',NULL,'craft\\ckeditor\\Field','{\"ckeConfig\":\"f3801245-1cac-46df-bf78-b4697ba88015\",\"wordLimit\":null,\"characterLimit\":null,\"showWordCount\":true,\"parseEmbeds\":false,\"availableVolumes\":\"*\",\"availableTransforms\":\"\",\"defaultTransform\":null,\"sourceEditingGroups\":[\"__ADMINS__\"],\"showUnpermittedVolumes\":false,\"showUnpermittedFiles\":false,\"fullGraphqlData\":true,\"createButtonLabel\":null,\"expandEntryButtons\":true,\"purifierConfig\":null,\"purifyHtml\":true,\"entryTypes\":[{\"uid\":\"bfa7f962-3b34-407d-a1b8-218e82ea2a0b\"}]}','2025-12-03 07:31:03','2025-12-03 07:59:23',NULL,'261227ce-d2bf-499b-91a8-2cd83c94d6d7'),
(21,'Selected Posts','selectedPosts','global',NULL,'Manually select and order blog posts to display (only used when Display Type is \"Show Selected Posts\")',0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":20,\"minRelations\":null,\"selectionLabel\":null,\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:f19eafef-7292-4716-a258-d9bf85bfc10b\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-03 08:53:01','2025-12-03 08:53:01',NULL,'3562e3e8-953b-4bf9-a05b-29bebbeb4fb9'),
(22,'Steps','steps','global',NULL,'Add as many steps as you need. They will auto-number (01, 02, 03...) and alternate colors',0,'site',NULL,'craft\\fields\\Matrix','{\"minEntries\":null,\"maxEntries\":null,\"enableVersioning\":false,\"viewMode\":\"cards\",\"showCardsInGrid\":false,\"includeTableView\":false,\"defaultTableColumns\":[],\"defaultIndexViewMode\":\"cards\",\"pageSize\":50,\"createButtonLabel\":null,\"propagationMethod\":\"all\",\"propagationKeyFormat\":null,\"siteSettings\":{\"36505853-1fbd-4631-856c-a5b50c2c059f\":[]},\"entryTypes\":[{\"uid\":\"7727022a-2c1e-4699-8d36-3c9777b0a4e6\",\"group\":\"General\"}]}','2025-12-03 16:51:58','2025-12-03 19:06:32',NULL,'48a6b377-0807-4f30-abf3-84f1acd358ce'),
(23,'Selected Testimonials','selectedTestimonials','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":null,\"minRelations\":null,\"selectionLabel\":\"Add Testimonial\",\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:a76886f6-a966-4056-995c-ac7bda316a07\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-04 17:53:10','2025-12-04 17:53:10',NULL,'45b2b61e-fd67-48d4-8ce2-35e95068be62'),
(24,'Column Layout','columnLayout','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Single Column\",\"value\":\"singleColumn\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Two Columns (50\\/50)\",\"value\":\"twoColumns5050\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Two Columns (33\\/67)\",\"value\":\"twoColumns3367\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Two Columns (67\\/33)\",\"value\":\"twoColumns6733\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Three Columns (Equal)\",\"value\":\"threeColumnsEqual\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Four Columns (Equal)\",\"value\":\"fourColumnsEqual\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:10:06','2025-12-04 19:10:06',NULL,'2742df1d-cef9-4fbb-863e-bae8865170f9'),
(25,'Mobile Layout','mobileLayout','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Stack on Mobile\",\"value\":\"stack\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Maintain Columns\",\"value\":\"maintain\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Reverse Order\",\"value\":\"reverse\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:13:20','2025-12-04 19:13:20',NULL,'d732a944-da30-458b-be66-3d165633012d'),
(26,'Vertical Alignment','verticalAlignment','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Align Top\",\"value\":\"top\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Align Center\",\"value\":\"center\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Align Bottom\",\"value\":\"bottom\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Stretch Full Height\",\"value\":\"stretch\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:15:12','2025-12-04 19:15:12',NULL,'592ab577-259f-4a99-a41b-952ec300da4b'),
(27,'Gap Size','gapSize','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"No Gap\",\"value\":\"none\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Small (1rem)\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium (2rem)\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Large (3rem)\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"X-Large (4rem)\",\"value\":\"xlarge\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:16:21','2025-12-04 19:16:37',NULL,'62672829-7d44-40d2-b9bd-02ee01a752a3'),
(28,'Background Scheme','backgroundScheme','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Navy Dark (navy bg, white text, gold accents)\",\"value\":\"navyDark\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Cream Light (cream bg, navy text, gold buttons)\",\"value\":\"creamLight\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"White Clean (white bg, navy text)\",\"value\":\"whiteClean\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Beige Warm (beige bg, navy text)\",\"value\":\"beigeWarm\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Gold Luxury (gold accents, navy text)\",\"value\":\"goldLuxury\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Gradient Navy (navy gradient, white text)\",\"value\":\"gradientNavy\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Gradient Gold (gold gradient, navy text)\",\"value\":\"gradientGold\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Transparent\",\"value\":\"transparent\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:20:52','2025-12-04 19:20:52',NULL,'4a83aae4-2c1f-4a29-beff-16feb9d628ce'),
(29,'Background Overlay Opacity','overlayOpacity','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"10%\",\"value\":\"10\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"20%\",\"value\":\"20\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"30%\",\"value\":\"30\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"40%\",\"value\":\"40\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"50%\",\"value\":\"50\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"60%\",\"value\":\"60\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"70%\",\"value\":\"70\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"80%\",\"value\":\"80\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"90%\",\"value\":\"90\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:26:02','2025-12-04 19:26:02',NULL,'7b95f861-a264-4830-a26c-4640458dbde2'),
(30,'Text Color Override','textColorOverride','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Auto (follows scheme)\",\"value\":\"auto\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Navy\",\"value\":\"navy\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"White\",\"value\":\"white\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Gold\",\"value\":\"gold\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Charcoal\",\"value\":\"charcoal\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Charcoal Light\",\"value\":\"charcoalLight\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-04 19:27:55','2025-12-04 19:27:55',NULL,'858b871b-ca80-493b-b96a-32663892e6bd'),
(31,'Flexible Section','flexibleSection','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"minEntries\":null,\"maxEntries\":null,\"enableVersioning\":false,\"viewMode\":\"cards\",\"showCardsInGrid\":true,\"includeTableView\":false,\"defaultTableColumns\":[],\"defaultIndexViewMode\":\"cards\",\"pageSize\":50,\"createButtonLabel\":null,\"propagationMethod\":\"all\",\"propagationKeyFormat\":null,\"siteSettings\":{\"36505853-1fbd-4631-856c-a5b50c2c059f\":[]},\"entryTypes\":[{\"uid\":\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\",\"group\":\"General\"}]}','2025-12-04 19:29:55','2025-12-04 22:52:44',NULL,'4aa7c64f-460a-4bb3-81dd-f76576f7bce7'),
(32,'Content','content','global',NULL,NULL,0,'none',NULL,'craft\\ckeditor\\Field','{\"availableTransforms\":\"\",\"availableVolumes\":\"*\",\"characterLimit\":null,\"ckeConfig\":\"f3801245-1cac-46df-bf78-b4697ba88015\",\"createButtonLabel\":null,\"defaultTransform\":null,\"entryTypes\":[{\"uid\":\"bfa7f962-3b34-407d-a1b8-218e82ea2a0b\"},{\"uid\":\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\"},{\"uid\":\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\"},{\"uid\":\"54df986c-6d9a-49a7-8f54-33871ccfd5c6\"},{\"uid\":\"53906bea-a5c6-4385-82e5-c89e27ac267b\"},{\"uid\":\"4abd8145-07f0-4c4c-bd28-d130696c6013\"},{\"uid\":\"4d901f07-e203-40c2-81e4-09b9ca404552\"},{\"uid\":\"fb7fcf38-d4f2-4c7f-aac3-719daca80e85\"},{\"uid\":\"e89d0915-68d1-43b8-beb5-92b66d73884e\"},{\"uid\":\"7727022a-2c1e-4699-8d36-3c9777b0a4e6\"},{\"uid\":\"b6a30616-2a75-4a5e-997a-a06c3596ad23\"},{\"uid\":\"e92185c7-a67c-4325-98ef-b8a6d2edbd1d\"},{\"uid\":\"668312b7-a3ca-482b-9f09-61e12e43feab\"},{\"uid\":\"3eca23a8-0dc8-4705-bc99-88ed8c52c67d\"},{\"uid\":\"072a4948-ed72-4bec-8817-90115344274e\"}],\"expandEntryButtons\":false,\"fullGraphqlData\":true,\"parseEmbeds\":false,\"purifierConfig\":null,\"purifyHtml\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"showWordCount\":false,\"sourceEditingGroups\":[\"__ADMINS__\"],\"wordLimit\":null}','2025-12-06 10:00:01','2025-12-07 08:35:43',NULL,'6ab27a91-bd1e-456b-aa68-b220eb7a8fd8'),
(33,'Font Size','fontSize','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"options\":[{\"label\":\"Small\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Base\",\"value\":\"base\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Large\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"X-Large\",\"value\":\"xLarge\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}],\"customOptions\":false}','2025-12-06 10:01:35','2025-12-06 10:36:16',NULL,'28299698-73d7-4cd3-9e87-ca3b6cb9e3b3'),
(34,'Text Align','textAlign','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Left\",\"value\":\"left\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Center\",\"value\":\"center\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Right\",\"value\":\"right\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:02:56','2025-12-06 10:02:56',NULL,'1f8e8ef2-1c2c-4228-96d5-7af284255ba0'),
(35,'Max Width','maxWidth','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Full Width\",\"value\":\"full\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Container\",\"value\":\"container\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Narrow\",\"value\":\"narrow\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Prose\",\"value\":\"prose\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:04:18','2025-12-06 10:04:18',NULL,'a39e2e1e-4a2c-4632-b6e2-10f242572d5f'),
(36,'Heading Level','headingLevel','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"H1\",\"value\":\"h1\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"H2\",\"value\":\"h2\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"H3\",\"value\":\"h3\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"H4\",\"value\":\"h4\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"H5\",\"value\":\"h5\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:06:48','2025-12-06 10:06:48',NULL,'913d69e2-6c95-4e17-a8dd-e16598492091'),
(37,'Heading Style','headingStyle','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Display\",\"value\":\"display\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Standard\",\"value\":\"standard\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Subtitle\",\"value\":\"subtitle\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:07:21','2025-12-06 10:07:21',NULL,'8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45'),
(38,'Underline Color','underlineColor','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Gold\",\"value\":\"gold\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Navy\",\"value\":\"navy\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"White\",\"value\":\"white\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:08:39','2025-12-06 10:08:39',NULL,'4ae0713a-c032-477f-9cfa-9dded22631fb'),
(39,'Image Assets','imageAsset','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":null,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"defaultUploadLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"defaultUploadLocationSubpath\":null,\"maintainHierarchy\":false,\"maxRelations\":null,\"minRelations\":null,\"previewMode\":\"full\",\"restrictFiles\":false,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"restrictedLocationSubpath\":null,\"selectionLabel\":null,\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"sources\":[\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-06 10:10:42','2025-12-06 10:10:42',NULL,'edf56846-fce6-475b-81c3-7237f63d0a83'),
(40,'Image Size','imageSize','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Small\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Large\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Full Width\",\"value\":\"full\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:11:35','2025-12-06 10:11:35',NULL,'a51ad288-48e6-40a1-9fe6-85c1ae2947a3'),
(41,'Border Radius','borderRadius','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"None\",\"value\":\"none\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Small\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Large\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Full (Circle)\",\"value\":\"full\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:13:54','2025-12-06 10:13:54',NULL,'2ae532dc-e56d-4b4e-98da-300c62edff20'),
(42,'Icon Size','iconSize','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Small\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Large\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:18:02','2025-12-06 10:18:02',NULL,'fd862905-7ebc-4c67-8a1a-4ec5084d1fae'),
(43,'Icon Color','iconColor','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Auto\",\"value\":\"auto\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Gold\",\"value\":\"gold\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Navy\",\"value\":\"navy\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"White\",\"value\":\"white\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:19:09','2025-12-06 10:19:09',NULL,'fbe942b3-1780-471a-a255-482d04f0ba66'),
(44,'Spacer Size','spacerSize','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"X-Small (1rem)\",\"value\":\"xs\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Small (2rem)\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium (3rem)\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Large (4rem)\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"X-Large (6rem)\",\"value\":\"xlarge\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"XX-Large (8rem)\",\"value\":\"xxlarge\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:24:12','2025-12-06 10:24:12',NULL,'0ef98093-5a9d-410d-a094-b2e111e0c6d1'),
(45,'Quote Style','quoteStyle','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Default\",\"value\":\"default\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Large Featured\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Minimal\",\"value\":\"minimal\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:27:49','2025-12-06 10:27:49',NULL,'b3f660e6-d7ee-4793-b5c1-480690617dbc'),
(46,'CTA Style','ctaStyle','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Default\",\"value\":\"default\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Gradient\",\"value\":\"gradient\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Bordered\",\"value\":\"bordered\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:30:24','2025-12-06 10:30:24',NULL,'4626b440-5a67-45f1-a605-bbf880f31698'),
(47,'Video Type','videoType','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"YouTube\",\"value\":\"youtube\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Vimeo\",\"value\":\"vimeo\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Local File\",\"value\":\"local\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:31:26','2025-12-06 10:31:26',NULL,'fd1f951e-5f19-4d51-be00-8ac77a0a3dc8'),
(48,'Video File','videoFile','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":[\"video\"],\"branchLimit\":null,\"defaultPlacement\":\"end\",\"defaultUploadLocationSource\":null,\"defaultUploadLocationSubpath\":null,\"maintainHierarchy\":false,\"maxRelations\":null,\"minRelations\":null,\"previewMode\":\"full\",\"restrictFiles\":true,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\",\"restrictedLocationSubpath\":null,\"selectionLabel\":null,\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2025-12-06 10:32:33','2025-12-06 10:32:33',NULL,'950833d2-d383-4899-bcf9-0189d600e24d'),
(49,'Video Aspect Ratio','videoAspectRatio','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"16:9\",\"value\":\"16-9\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"4:3\",\"value\":\"4-3\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"1:1\",\"value\":\"1-1\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 10:34:14','2025-12-06 10:34:14',NULL,'a0e04847-3252-4444-9421-4fd5317d45de'),
(50,'Content Elements','contentElements','global',NULL,'The actual content blocks',0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":null,\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"f8d21671-c310-4d72-8089-6f8ea9a21cfc\",\"group\":\"General\"},{\"uid\":\"9ab60243-add9-4782-b48b-04f98b59f374\",\"group\":\"General\"},{\"uid\":\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\",\"group\":\"General\"},{\"uid\":\"29d763f0-b99e-4d96-a353-1c17eab89a2d\",\"group\":\"General\"},{\"uid\":\"1691e92d-8d2f-4344-b3e5-2bdf8a0595c3\",\"group\":\"General\"},{\"uid\":\"1d1a1969-ec9c-475c-bb15-08cd6dffd195\",\"group\":\"General\"},{\"uid\":\"396eb574-8f32-4bce-bcb0-2ac242ba6e5b\",\"group\":\"General\"},{\"uid\":\"925b43fe-a66a-4a29-94b1-05ef478160ea\",\"group\":\"General\"},{\"uid\":\"66c57356-7f34-4425-bf45-6da256fd496d\",\"group\":\"General\"},{\"uid\":\"f22ad779-6d76-496c-b910-0e08523a5492\",\"group\":\"General\"},{\"uid\":\"76fcee0a-a302-4817-8d2e-74b446967ecd\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":true,\"viewMode\":\"cards\"}','2025-12-06 10:36:32','2025-12-07 08:18:40',NULL,'eb896b6f-bcb1-4fae-9998-a59cd8810a7a'),
(51,'Content Columns','contentColumns','global',NULL,'Each entry represents one column',0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":\"New Column\",\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"33acef61-26dd-4d37-8a02-5f903e07ac2a\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":true,\"viewMode\":\"cards\"}','2025-12-06 10:38:13','2025-12-07 00:22:00',NULL,'109e9e12-5487-40f4-b216-9f942305125d'),
(52,'Container Width','containerWidth','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Full Width Background + Container Content\",\"value\":\"fullBgContainer\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Full Width Background + Full Width Content\",\"value\":\"fullBgFull\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Container Width Background + Content\",\"value\":\"containerBoth\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Narrow Container\",\"value\":\"narrowContainer\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 18:14:33','2025-12-06 18:14:33',NULL,'909cef3c-eb8f-41dc-859a-4fef188161a6'),
(53,'Section Padding Top','paddingTop','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"None\",\"value\":\"none\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Small (2rem)\",\"value\":\"small\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium (4rem)\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Large (6rem)\",\"value\":\"large\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"X-Large (8rem)\",\"value\":\"xlarge\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 18:36:26','2025-12-06 18:36:26',NULL,'f7c46ae8-7a7a-469f-8279-f8e6017b717f'),
(54,'Divider Style','dividerStyle','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Simple Line\",\"value\":\"line\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Wave\",\"value\":\"wave\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Curve\",\"value\":\"curve\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Zigzag\",\"value\":\"zigzag\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 18:40:06','2025-12-06 18:45:09',NULL,'775f6523-487c-4213-829e-be87bd6546f0'),
(55,'Show on Desktop','showDesktop','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":true,\"offLabel\":\"Hide\",\"onLabel\":\"Show\"}','2025-12-06 18:41:13','2025-12-06 18:41:13',NULL,'3c1a81fc-6fae-4278-8d85-367a118abfbb'),
(56,'Animation Style','animationStyle','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"None\",\"value\":\"none\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Fade In\",\"value\":\"fadeIn\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Slide Up\",\"value\":\"slideUp\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Slide from Left\",\"value\":\"slideLeft\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Slide from Right\",\"value\":\"slideRight\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-06 18:42:38','2025-12-06 18:42:38',NULL,'81563d83-c326-4c43-b097-a04688342405'),
(57,'Divider Style','dividerStyle2','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Simple Line\",\"value\":\"line\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Thick Line\",\"value\":\"thick\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Dotted Line\",\"value\":\"dotted\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-07 08:13:11','2025-12-07 08:13:11',NULL,'943e5167-350b-4d8b-b45c-796076d68a2b'),
(58,'Divider Width','dividerWidth','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Full Width\",\"value\":\"full\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Short (centered)\",\"value\":\"short\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Medium (centered)\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"}]}','2025-12-07 08:14:04','2025-12-07 08:14:04',NULL,'ee1cc83b-5b4e-4514-85b3-075cee380875'),
(59,'Divider Color','dividerColor','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Auto (follows text color)\",\"value\":\"auto\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Gold\",\"value\":\"gold\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Navy\",\"value\":\"navy\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"White\",\"value\":\"white\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Charcoal\",\"value\":\"charcoal\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-07 08:14:58','2025-12-07 08:14:58',NULL,'caa7cec3-0dfe-41aa-a5d6-499b0bf216f0'),
(60,'Divider Thickness','dividerThickness','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"Thin (1px)\",\"value\":\"thin\",\"icon\":\"\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Medium (2px)\",\"value\":\"medium\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Thick (3px)\",\"value\":\"thick\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"}]}','2025-12-07 08:15:57','2025-12-07 08:15:57',NULL,'047fdd15-181a-45a8-b054-bf13b0d2bfb5'),
(61,'About Doctor','aboutDoctor','global',NULL,'Meet Your Doctor section with image, content, and credentials',0,'site',NULL,'craft\\fields\\Matrix','{\"minEntries\":null,\"maxEntries\":null,\"enableVersioning\":false,\"viewMode\":\"cards\",\"showCardsInGrid\":false,\"includeTableView\":false,\"defaultTableColumns\":[],\"defaultIndexViewMode\":\"cards\",\"pageSize\":50,\"createButtonLabel\":null,\"propagationMethod\":\"all\",\"propagationKeyFormat\":null,\"siteSettings\":{\"36505853-1fbd-4631-856c-a5b50c2c059f\":[]},\"entryTypes\":[{\"uid\":\"33f0b780-c7d3-4e20-94e5-83bbd5f30e48\",\"group\":\"General\"}]}','2025-12-07 13:45:06','2025-12-07 13:54:49',NULL,'c66f8859-ed4e-45e4-b2a7-1580cb064ccc'),
(62,'Section Label','sectionLabel','global',NULL,'The label shown above the heading (e.g., \'Meet Your Doctor\')',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2025-12-07 14:16:34','2025-12-07 14:16:34',NULL,'b6e437a2-3082-4ab0-9f08-862af0b650b1'),
(63,'FAQs','faqs','global',NULL,'Add FAQ questions and answers for this treatment',0,'site',NULL,'craft\\fields\\Matrix','{\"minEntries\":null,\"maxEntries\":null,\"enableVersioning\":false,\"viewMode\":\"cards\",\"showCardsInGrid\":false,\"includeTableView\":false,\"defaultTableColumns\":[],\"defaultIndexViewMode\":\"cards\",\"pageSize\":50,\"createButtonLabel\":null,\"propagationMethod\":\"all\",\"propagationKeyFormat\":null,\"siteSettings\":{\"36505853-1fbd-4631-856c-a5b50c2c059f\":[]},\"entryTypes\":[{\"uid\":\"b8e64025-f821-4cb6-aa16-7b5951f8f01e\",\"group\":\"General\"}]}','2026-02-20 13:37:03','2026-03-20 10:11:31',NULL,'ef4c617e-94ef-4a32-8406-24a92a9e9a82'),
(64,'DisclaimerItems','disclaimerItems','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":null,\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"ea1062cb-4d63-4f41-ba26-c8937a0ba86b\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":false,\"viewMode\":\"cards\"}','2026-02-20 14:17:59','2026-02-20 14:17:59',NULL,'b18a7136-6cdd-4a0b-a094-b82bc3f945d4'),
(65,'Overview Card','overviewCard','global',NULL,'Add cards showing treatment details',0,'site',NULL,'craft\\fields\\Matrix','{\"minEntries\":null,\"maxEntries\":null,\"enableVersioning\":false,\"viewMode\":\"cards\",\"showCardsInGrid\":false,\"includeTableView\":false,\"defaultTableColumns\":[],\"defaultIndexViewMode\":\"cards\",\"pageSize\":50,\"createButtonLabel\":null,\"propagationMethod\":\"all\",\"propagationKeyFormat\":null,\"siteSettings\":{\"36505853-1fbd-4631-856c-a5b50c2c059f\":[]},\"entryTypes\":[{\"uid\":\"8fe1fdea-baec-48ee-b98e-6dc941fa6808\",\"group\":\"General\"}]}','2026-02-20 14:18:03','2026-02-21 15:42:42',NULL,'8f8ff810-b5a0-4df9-8e17-6666ba92ba4b'),
(66,'Benefit Cards','benefitCards','global',NULL,'Add cards for the treatment benefits ',0,'site',NULL,'craft\\fields\\Matrix','{\"createButtonLabel\":null,\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"228a8acf-c542-4ca9-a1a2-e736335ae4bb\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":false,\"viewMode\":\"cards\"}','2026-02-21 13:14:24','2026-02-21 13:14:24',NULL,'fbe1b888-6820-4ee6-be6f-fad5554a897b'),
(67,'Price rows','priceRows','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"minEntries\":null,\"maxEntries\":null,\"enableVersioning\":false,\"viewMode\":\"cards\",\"showCardsInGrid\":false,\"includeTableView\":false,\"defaultTableColumns\":[],\"defaultIndexViewMode\":\"cards\",\"pageSize\":50,\"createButtonLabel\":null,\"propagationMethod\":\"all\",\"propagationKeyFormat\":null,\"siteSettings\":{\"36505853-1fbd-4631-856c-a5b50c2c059f\":[]},\"entryTypes\":[{\"uid\":\"c1319250-2c2b-4d15-a2da-30fa401e02da\",\"group\":\"General\"}]}','2026-02-21 22:30:11','2026-03-27 14:15:32',NULL,'33126ba0-77bf-4fda-aec5-cf3893199a82'),
(68,'Related treatment','linkEntry','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":1,\"minRelations\":0,\"selectionLabel\":\"Related to treatment \",\"showCardsInGrid\":false,\"showSearchInput\":true,\"showSiteMenu\":true,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:d4de9e34-cb7e-4113-989b-f14f4c3536d3\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2026-02-21 22:35:01','2026-02-21 22:53:04',NULL,'b7236eb7-32e2-438c-a8c1-80c2d52e82db'),
(69,'Section Background','treatmentHeroBackground','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"White\",\"value\":\"white\",\"icon\":\"\",\"color\":\"#feffff\",\"default\":\"\"},{\"label\":\"EBD5CB\",\"value\":\"ebd5cb\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"FFFAF7\",\"value\":\"fffaf7\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"Navy\",\"value\":\"bg-navy\",\"icon\":\"\",\"color\":\"\",\"default\":\"\"},{\"label\":\"F2E5DE\",\"value\":\"F2E5DE\",\"icon\":\"\",\"color\":\"#f1f1f1\",\"default\":\"\"}]}','2026-02-21 23:30:58','2026-03-13 11:55:33',NULL,'eb509daa-6f9f-4a37-99b9-4564ce8baceb'),
(70,'Show Image Frame','showImageFrame','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":false,\"offLabel\":\"OFF\",\"onLabel\":\"ON\"}','2026-02-22 22:25:10','2026-02-22 22:25:10',NULL,'4b5c5181-3923-4781-a0bb-ad5b5eabb1fe'),
(71,'Text Area - Simple','textAreaSimple','global',NULL,NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"initialRows\":4,\"multiline\":true,\"placeholder\":null,\"uiMode\":\"normal\"}','2026-03-02 18:33:44','2026-03-02 18:34:58',NULL,'d03c1783-dc97-44b5-a9b6-41eb20ef7386'),
(72,'Featured Case Studiess','featuredCaseStudies','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":3,\"minRelations\":1,\"selectionLabel\":\"Add Case Study\",\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:89f97553-241f-489b-921a-493ca7be1fbf\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"cards\"}','2026-03-23 12:27:21','2026-03-23 12:27:21',NULL,'212a20ff-39e0-48f2-b54a-da7435fcfd30'),
(73,'Price Sections','priceSections','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"branchLimit\":null,\"defaultPlacement\":\"end\",\"maintainHierarchy\":false,\"maxRelations\":null,\"minRelations\":null,\"selectionLabel\":\"Add Section\",\"showSearchInput\":true,\"showSiteMenu\":false,\"showUnpermittedEntries\":false,\"showUnpermittedSections\":false,\"sources\":[\"section:fe38ddc7-9164-4903-9f4e-c01f9d5126d8\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"cards\"}','2026-03-25 11:32:44','2026-03-25 11:32:44',NULL,'5a0747b5-c1cc-4f6f-a103-e9256508f69c'),
(74,'Use Hero Video','useHeroVideo','global',NULL,'Use YouTube video',0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":false,\"offLabel\":\"No\",\"onLabel\":\"Yes\",\"showLabelsInCards\":false}','2026-03-29 10:04:02','2026-03-29 10:04:02',NULL,'46742ca3-f2c3-408c-87e7-c0191d86f70e'),
(75,'Contact Mode: Message','contactModeMessage','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":false,\"offLabel\":\"Call\",\"onLabel\":\"Message\",\"showLabelsInCards\":true}','2026-04-06 09:42:25','2026-04-06 09:42:25',NULL,'5255cd18-4f37-4112-b6bb-070514da0eae'),
(76,'Video Layout','videoLayout','global',NULL,NULL,0,'none',NULL,'craft\\fields\\Dropdown','{\"customOptions\":false,\"options\":[{\"label\":\"One Video\",\"value\":\"oneVideo\",\"icon\":\"1\",\"color\":\"\",\"default\":\"1\"},{\"label\":\"Two Videos\",\"value\":\"twoVideos\",\"icon\":\"2\",\"color\":\"\",\"default\":\"\"}]}','2026-04-20 19:46:00','2026-04-20 19:46:00',NULL,'57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec');
/*!40000 ALTER TABLE `fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_crm_fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_crm_fields` WRITE;
/*!40000 ALTER TABLE `freeform_crm_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_crm_fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_email_marketing_fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_email_marketing_fields` WRITE;
/*!40000 ALTER TABLE `freeform_email_marketing_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_email_marketing_fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_email_marketing_lists`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_email_marketing_lists` WRITE;
/*!40000 ALTER TABLE `freeform_email_marketing_lists` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_email_marketing_lists` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_export_notifications`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_export_notifications` WRITE;
/*!40000 ALTER TABLE `freeform_export_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_export_notifications` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_export_profiles`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_export_profiles` WRITE;
/*!40000 ALTER TABLE `freeform_export_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_export_profiles` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_export_settings`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_export_settings` WRITE;
/*!40000 ALTER TABLE `freeform_export_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_export_settings` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_favorite_fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_favorite_fields` WRITE;
/*!40000 ALTER TABLE `freeform_favorite_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_favorite_fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_feed_messages`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_feed_messages` WRITE;
/*!40000 ALTER TABLE `freeform_feed_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_feed_messages` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_feeds`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_feeds` WRITE;
/*!40000 ALTER TABLE `freeform_feeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_feeds` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_fields_type_groups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_fields_type_groups` WRITE;
/*!40000 ALTER TABLE `freeform_fields_type_groups` DISABLE KEYS */;
INSERT INTO `freeform_fields_type_groups` VALUES
(1,'#007add','Text','[\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\TextField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\TextareaField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\EmailField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\NumberField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\PhoneField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\DatetimeField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\WebsiteField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\RegexField\"]','2026-03-20 11:44:30','2026-03-20 11:44:30','dfdd2b77-b94e-4cf4-8e46-882ec4be97b9'),
(2,'#9013fe','Options','[\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\DropdownField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\MultipleSelectField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\CheckboxField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\CheckboxesField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\RadiosField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\OpinionScaleField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\RatingField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\CardsField\"]','2026-03-20 11:44:30','2026-03-20 11:44:30','d25f18a0-e880-4549-a222-825e7a8eef10'),
(3,'#f5a623','Files','[\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\FileUploadField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\FileDragAndDropField\"]','2026-03-20 11:44:30','2026-03-20 11:44:30','a17491fd-7d96-4836-a673-35e6d4001f3c'),
(4,'#5d9901','Special','[\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\GroupField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\TableField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\ConfirmationField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\PasswordField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\CalculationField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\SignatureField\"]','2026-03-20 11:44:30','2026-03-20 11:44:30','3cc32262-7133-4575-a8b7-cf4159aa759f'),
(5,'#000000','Content','[\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\HtmlField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\RichTextField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\ImageField\"]','2026-03-20 11:44:30','2026-03-20 11:44:30','2af405d3-4eb1-4461-ac3e-ec041ba002f0'),
(6,'#9b9b9b','Hidden','[\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\HiddenField\",\"Solspace\\\\Freeform\\\\Fields\\\\Implementations\\\\Pro\\\\InvisibleField\"]','2026-03-20 11:44:30','2026-03-20 11:44:30','7483f305-310b-47d3-9fe6-bc850efa1ff6');
/*!40000 ALTER TABLE `freeform_fields_type_groups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms` WRITE;
/*!40000 ALTER TABLE `freeform_forms` DISABLE KEYS */;
INSERT INTO `freeform_forms` VALUES
(1,'Solspace\\Freeform\\Form\\Types\\Regular','Contact','contactForm',0,'{\"behavior\":{\"ajax\":false,\"successBehavior\":\"reload\",\"duplicateCheck\":\"no_limit\",\"showProcessingSpinner\":true,\"successTemplate\":\"\",\"stopSubmissionsAfter\":null,\"showProcessingText\":true,\"returnUrl\":\"\",\"processingText\":\"Processing...\",\"successMessage\":\"Form has been submitted successfully!\",\"errorMessage\":\"Sorry, there was an error submitting the form. Please try again.\"},\"general\":{\"name\":\"Contact\",\"storeData\":true,\"handle\":\"contactForm\",\"defaultStatus\":2,\"type\":\"Solspace\\\\Freeform\\\\Form\\\\Types\\\\Regular\",\"collectIpAddresses\":true,\"sites\":[\"1\"],\"allowUsersToOptIn\":false,\"translations\":false,\"optInCheckbox\":null,\"submissionTitle\":\"{{ dateCreated|date(\\\"Y-m-d H:i:s\\\") }}\",\"formattingTemplate\":\"basic-light\\/index.twig\",\"description\":\"\",\"color\":\"#94BEEF\",\"attributes\":{\"form\":{},\"row\":{},\"success\":{},\"errors\":{}}}}',NULL,1,1,NULL,'2026-03-20 11:44:53','2026-04-02 09:02:32','6da2223e-dcef-4a0c-817d-2d67e41abd1a');
/*!40000 ALTER TABLE `freeform_forms` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_fields` WRITE;
/*!40000 ALTER TABLE `freeform_forms_fields` DISABLE KEYS */;
INSERT INTO `freeform_forms_fields` VALUES
(1,1,'Solspace\\Freeform\\Fields\\Implementations\\TextField','{\"label\":\"Your name\",\"encrypted\":false,\"handle\":\"yourName\",\"fieldType\":null,\"instructions\":\"\",\"attributes\":{\"input\":{},\"label\":{},\"instructions\":{},\"container\":{},\"error\":{},\"option\":{},\"optionLabel\":{}},\"placeholder\":\"Enter your name\",\"required\":true,\"requiredMessage\":null,\"defaultValue\":null,\"maxLength\":null}',1,0,'2026-03-20 11:47:17','2026-03-20 11:48:52','69391e14-b6d9-4075-af61-5a0591f39ea0'),
(2,1,'Solspace\\Freeform\\Fields\\Implementations\\TextField','{\"label\":\"Your mobile number\",\"encrypted\":false,\"handle\":\"yourNumber\",\"fieldType\":null,\"instructions\":\"\",\"attributes\":{\"input\":{},\"label\":{},\"instructions\":{},\"container\":{},\"error\":{},\"option\":{},\"optionLabel\":{}},\"placeholder\":\"Enter your number\",\"required\":true,\"requiredMessage\":null,\"defaultValue\":null,\"maxLength\":null}',2,0,'2026-03-20 11:47:17','2026-04-02 09:02:32','a6fb5772-58b3-49d8-857f-a51929fdb0b6'),
(3,1,'Solspace\\Freeform\\Fields\\Implementations\\EmailField','{\"label\":\"Email\",\"encrypted\":false,\"handle\":\"email\",\"fieldType\":null,\"instructions\":\"\",\"attributes\":{\"input\":{},\"label\":{},\"instructions\":{},\"container\":{},\"error\":{},\"option\":{},\"optionLabel\":{}},\"placeholder\":\"Enter your email\",\"required\":true,\"requiredMessage\":null,\"defaultValue\":null,\"maxLength\":null}',3,0,'2026-03-20 11:47:17','2026-03-20 11:48:52','54a55bff-8423-4265-8ba3-509b611d7d00'),
(4,1,'Solspace\\Freeform\\Fields\\Implementations\\TextareaField','{\"defaultValue\":null,\"label\":\"Your message\",\"encrypted\":false,\"rows\":7,\"handle\":\"yourMessage\",\"fieldType\":null,\"instructions\":\"\",\"attributes\":{\"input\":{},\"label\":{},\"instructions\":{},\"container\":{},\"error\":{},\"option\":{},\"optionLabel\":{}},\"placeholder\":\"Please write your message\",\"required\":true,\"requiredMessage\":null,\"maxLength\":null}',4,0,'2026-03-20 11:47:17','2026-03-20 11:57:33','fa0c3066-e053-4c7b-a1b3-ee0e6d477d14'),
(6,1,'Solspace\\Freeform\\Fields\\Implementations\\HiddenField','{\"attributes\":{\"input\":{},\"label\":{},\"instructions\":{},\"container\":{},\"error\":{},\"option\":{},\"optionLabel\":{}},\"label\":\"Hidden\",\"encrypted\":false,\"handle\":\"hidden\",\"fieldType\":null,\"defaultValue\":null,\"requiredMessage\":null,\"maxLength\":null}',6,0,'2026-03-20 13:34:21','2026-04-02 09:02:32','e192874a-a234-49dd-ac28-85f348bcad31');
/*!40000 ALTER TABLE `freeform_forms_fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_groups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_groups` WRITE;
/*!40000 ALTER TABLE `freeform_forms_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_forms_groups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_groups_entries`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_groups_entries` WRITE;
/*!40000 ALTER TABLE `freeform_forms_groups_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_forms_groups_entries` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_integrations`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_integrations` WRITE;
/*!40000 ALTER TABLE `freeform_forms_integrations` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_forms_integrations` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_layouts`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_layouts` WRITE;
/*!40000 ALTER TABLE `freeform_forms_layouts` DISABLE KEYS */;
INSERT INTO `freeform_forms_layouts` VALUES
(1,1,'2026-03-20 11:47:17','2026-03-20 11:47:17','26806015-0a0f-4443-8f92-cf5af58dfaf5');
/*!40000 ALTER TABLE `freeform_forms_layouts` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_notifications`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_notifications` WRITE;
/*!40000 ALTER TABLE `freeform_forms_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_forms_notifications` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_pages`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_pages` WRITE;
/*!40000 ALTER TABLE `freeform_forms_pages` DISABLE KEYS */;
INSERT INTO `freeform_forms_pages` VALUES
(1,1,1,'Page 1',0,'{\"buttons\":{\"layout\":\"save back|submit\",\"attributes\":{\"container\":[],\"column\":[],\"submit\":[],\"back\":[],\"save\":[]},\"submitLabel\":\"Submit\",\"submitIcon\":[],\"submitIconPosition\":\"left\",\"back\":true,\"backLabel\":\"Back\",\"backIcon\":[],\"backIconPosition\":\"left\",\"save\":false,\"saveLabel\":\"Save\",\"saveIcon\":[],\"saveIconPosition\":\"left\"}}','2026-03-20 11:47:17','2026-03-20 11:48:52','ab4e3e99-85c5-4ce7-afd2-f0b7d08a4187');
/*!40000 ALTER TABLE `freeform_forms_pages` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_rows`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_rows` WRITE;
/*!40000 ALTER TABLE `freeform_forms_rows` DISABLE KEYS */;
INSERT INTO `freeform_forms_rows` VALUES
(1,1,1,0,'2026-03-20 11:47:17','2026-03-20 11:47:17','427ca5ab-3acc-401f-9070-c592240edd7f'),
(2,1,1,1,'2026-03-20 11:47:17','2026-03-20 11:47:17','44e76518-49f1-472d-8025-3aaff4d59d47'),
(3,1,1,2,'2026-03-20 11:47:17','2026-03-20 11:47:17','6b8dbd06-d3b0-4164-8239-6726fb32eb0b'),
(4,1,1,3,'2026-03-20 11:47:17','2026-03-20 11:47:17','2dc84f9c-d214-4b8d-a121-05befddba797'),
(6,1,1,4,'2026-03-20 13:34:21','2026-03-20 13:34:21','ac1e4456-4c6f-421e-9bcd-ed4a635b5d56');
/*!40000 ALTER TABLE `freeform_forms_rows` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_sites` WRITE;
/*!40000 ALTER TABLE `freeform_forms_sites` DISABLE KEYS */;
INSERT INTO `freeform_forms_sites` VALUES
(1,1,1,'2026-03-20 11:44:53','2026-03-20 11:44:53','9e5ea01c-d1d7-418f-9f6b-45764896ea2e');
/*!40000 ALTER TABLE `freeform_forms_sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_forms_translations`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_forms_translations` WRITE;
/*!40000 ALTER TABLE `freeform_forms_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_forms_translations` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_integrations`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_integrations` WRITE;
/*!40000 ALTER TABLE `freeform_integrations` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_integrations` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_integrations_queue`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_integrations_queue` WRITE;
/*!40000 ALTER TABLE `freeform_integrations_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_integrations_queue` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_limited_users`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_limited_users` WRITE;
/*!40000 ALTER TABLE `freeform_limited_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_limited_users` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_notification_log`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_notification_log` WRITE;
/*!40000 ALTER TABLE `freeform_notification_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_notification_log` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_notification_template_wrappers`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_notification_template_wrappers` WRITE;
/*!40000 ALTER TABLE `freeform_notification_template_wrappers` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_notification_template_wrappers` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_notification_templates`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_notification_templates` WRITE;
/*!40000 ALTER TABLE `freeform_notification_templates` DISABLE KEYS */;
INSERT INTO `freeform_notification_templates` VALUES
(1,1,NULL,NULL,'Notification','notification','New submission on your {{ form.name }} form',NULL,'{{ general.systemName }}','{{ general.systemEmail }}','','','','','<p>Submitted on: {{ submission.dateCreated.format(\'F j, Y\') }}</p>\n<p>{{ loops.fields.all }}</p>','',1,1,NULL,NULL,'2026-03-20 13:23:21','2026-03-20 13:23:21','e051e41b-7137-4d93-80b8-033c83dcef6b');
/*!40000 ALTER TABLE `freeform_notification_templates` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_payments`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_payments` WRITE;
/*!40000 ALTER TABLE `freeform_payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_payments` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_pdf_templates`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_pdf_templates` WRITE;
/*!40000 ALTER TABLE `freeform_pdf_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_pdf_templates` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules` WRITE;
/*!40000 ALTER TABLE `freeform_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_buttons`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_buttons` WRITE;
/*!40000 ALTER TABLE `freeform_rules_buttons` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_buttons` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_conditions`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_conditions` WRITE;
/*!40000 ALTER TABLE `freeform_rules_conditions` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_conditions` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_fields` WRITE;
/*!40000 ALTER TABLE `freeform_rules_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_integrations`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_integrations` WRITE;
/*!40000 ALTER TABLE `freeform_rules_integrations` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_integrations` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_notifications`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_notifications` WRITE;
/*!40000 ALTER TABLE `freeform_rules_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_notifications` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_pages`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_pages` WRITE;
/*!40000 ALTER TABLE `freeform_rules_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_pages` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_rules_submit_form`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_rules_submit_form` WRITE;
/*!40000 ALTER TABLE `freeform_rules_submit_form` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_rules_submit_form` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_saved_forms`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_saved_forms` WRITE;
/*!40000 ALTER TABLE `freeform_saved_forms` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_saved_forms` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_session_context`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_session_context` WRITE;
/*!40000 ALTER TABLE `freeform_session_context` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_session_context` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_spam_reason`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_spam_reason` WRITE;
/*!40000 ALTER TABLE `freeform_spam_reason` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_spam_reason` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_statuses`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_statuses` WRITE;
/*!40000 ALTER TABLE `freeform_statuses` DISABLE KEYS */;
INSERT INTO `freeform_statuses` VALUES
(1,'Pending','pending','orange',1,'2026-03-20 11:44:30','2026-03-20 11:44:30','eb35a730-467d-49a5-b5eb-3d28e69d2b5a'),
(2,'Open','open','teal',2,'2026-03-20 11:44:30','2026-03-20 11:44:30','5f23c9a9-a723-4645-b38b-aab542c1f8b1'),
(3,'Closed','closed','red',3,'2026-03-20 11:44:30','2026-03-20 11:44:30','53d9030f-66b7-4e9b-b5ae-3759896c43ba');
/*!40000 ALTER TABLE `freeform_statuses` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_submission_notes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_submission_notes` WRITE;
/*!40000 ALTER TABLE `freeform_submission_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_submission_notes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_submissions`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_submissions` WRITE;
/*!40000 ALTER TABLE `freeform_submissions` DISABLE KEYS */;
INSERT INTO `freeform_submissions` VALUES
(5389,1,1,2,1,'ZBzn1218IA8h4KVwdueqgLsNcktPdYZfuqkw7I3GFdv2sTSMsC7We1rv2rjjz261aco6DmrXrNeceLxDsFagKofuoHmBbEqhJSlp','94.155.19.60',0,0,NULL,NULL,'2026-03-20 13:33:42','2026-03-20 13:33:42','b17f7466-4d21-4eaa-9891-ed0ca6cb0d7e'),
(5390,2,1,2,1,'q60YUUIE9ZuKUP7Z0eGFFt3jE50XLY2e7pMXSN73MH3CYmh1IP8Ve1qjcz50ZK0FkBwnsg9HpleJEsRl2rFupjvD6s3uERcznwjT','94.155.19.60',0,0,NULL,NULL,'2026-03-20 13:34:33','2026-03-20 13:34:33','e489fc27-83a5-4cdd-9a00-9b3252741af8');
/*!40000 ALTER TABLE `freeform_submissions` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_submissions_contact_form_1`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_submissions_contact_form_1` WRITE;
/*!40000 ALTER TABLE `freeform_submissions_contact_form_1` DISABLE KEYS */;
INSERT INTO `freeform_submissions_contact_form_1` VALUES
(5389,'Lubo','312481288214','info@finedigital.co.uk','test message from new form',NULL),
(5390,'Lubo','9123912391239','info@finedigital.co.uk','Test the honeypot','');
/*!40000 ALTER TABLE `freeform_submissions_contact_form_1` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_submissions_tracking_parameters`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_submissions_tracking_parameters` WRITE;
/*!40000 ALTER TABLE `freeform_submissions_tracking_parameters` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_submissions_tracking_parameters` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_survey_preferences`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_survey_preferences` WRITE;
/*!40000 ALTER TABLE `freeform_survey_preferences` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_survey_preferences` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `freeform_unfinalized_files`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `freeform_unfinalized_files` WRITE;
/*!40000 ALTER TABLE `freeform_unfinalized_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `freeform_unfinalized_files` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `globalsets`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `globalsets` WRITE;
/*!40000 ALTER TABLE `globalsets` DISABLE KEYS */;
INSERT INTO `globalsets` VALUES
(243,'Footer','footer',13,1,'2025-12-02 22:04:25','2025-12-02 22:04:25','dabc2ee6-7b53-4c21-8253-0c9718bdd331');
/*!40000 ALTER TABLE `globalsets` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `gqlschemas`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `gqlschemas` WRITE;
/*!40000 ALTER TABLE `gqlschemas` DISABLE KEYS */;
INSERT INTO `gqlschemas` VALUES
(1,'Public Schema','[]',1,'2025-11-29 12:19:16','2025-11-29 12:19:16','2e2599f6-9896-4793-a43a-b84a91dd8b40');
/*!40000 ALTER TABLE `gqlschemas` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `gqltokens`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `gqltokens` WRITE;
/*!40000 ALTER TABLE `gqltokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `gqltokens` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `imagetransforms`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `imagetransforms` WRITE;
/*!40000 ALTER TABLE `imagetransforms` DISABLE KEYS */;
/*!40000 ALTER TABLE `imagetransforms` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `info`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `info` WRITE;
/*!40000 ALTER TABLE `info` DISABLE KEYS */;
INSERT INTO `info` VALUES
(1,'5.9.20','5.9.0.8',1,'sxmoetmqbkxi','3@hntejefcax','2025-11-29 11:54:53','2026-04-20 20:58:17','7a9753a1-6db2-4c87-9a5a-55b5ccca76b4');
/*!40000 ALTER TABLE `info` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `migrations`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES
(1,'craft','Install','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','d90837ae-7752-4fa2-98c7-15a0a2ab0bc6'),
(2,'craft','m221101_115859_create_entries_authors_table','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','2be587eb-9bcd-484d-a57b-d9d5b7cec47b'),
(3,'craft','m221107_112121_add_max_authors_to_sections','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','714757ea-984e-4d67-91df-8bc77362599a'),
(4,'craft','m221205_082005_translatable_asset_alt_text','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','3f624b23-4099-43e6-933f-927b79df18dc'),
(5,'craft','m230314_110309_add_authenticator_table','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','21f7888f-7e9a-4723-9531-8d0695b527b3'),
(6,'craft','m230314_111234_add_webauthn_table','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','d11e79f2-1113-4983-b5b0-89fdf9c04739'),
(7,'craft','m230503_120303_add_recoverycodes_table','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','0a44801f-1705-40a8-a530-01a550d5079c'),
(8,'craft','m230511_000000_field_layout_configs','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','85e5f5b2-4f5a-44d2-aebd-a210ac9d6b62'),
(9,'craft','m230511_215903_content_refactor','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','9918ae39-fb58-47eb-8b79-21cee65ab8c1'),
(10,'craft','m230524_000000_add_entry_type_show_slug_field','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','89712633-a3e9-4448-9a31-1ee8e125a9cd'),
(11,'craft','m230524_000001_entry_type_icons','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','0e01e977-0ad2-4ab5-90b3-8cf6f7ce8f1d'),
(12,'craft','m230524_000002_entry_type_colors','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','8246404e-e6f7-43ab-8524-9a7cf8ecadc2'),
(13,'craft','m230524_220029_global_entry_types','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','c7434ef8-bfdd-4f92-bc0c-073a52853532'),
(14,'craft','m230531_123004_add_entry_type_show_status_field','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','8d985b93-8a5e-42a6-9d05-59933da3456d'),
(15,'craft','m230607_102049_add_entrytype_slug_translation_columns','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','c9318fd8-a987-47ca-86dd-c091cb756c2e'),
(16,'craft','m230616_173810_kill_field_groups','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','f20565ba-2014-4a28-a5ce-5df131239d28'),
(17,'craft','m230616_183820_remove_field_name_limit','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','d4924873-2a71-44a2-8622-2e8820cca3f8'),
(18,'craft','m230617_070415_entrify_matrix_blocks','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','64c2d941-f1fe-4905-ab17-888a2c059967'),
(19,'craft','m230710_162700_element_activity','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','79af61f8-c755-4fc4-a917-6b843cdf89a1'),
(20,'craft','m230820_162023_fix_cache_id_type','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','00b38b2f-d3db-48a6-92be-3b1009796132'),
(21,'craft','m230826_094050_fix_session_id_type','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','50a555b9-f393-40f6-aa42-a36a7e35bfb5'),
(22,'craft','m230904_190356_address_fields','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','e17a4666-6d71-4fb4-85ff-5848acbfd960'),
(23,'craft','m230928_144045_add_subpath_to_volumes','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','0c427f7f-d6aa-41dc-ac4b-8a99d6c36bfb'),
(24,'craft','m231013_185640_changedfields_amend_primary_key','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','5f9a4be0-c657-4a0f-878d-a0b4b7114c1e'),
(25,'craft','m231213_030600_element_bulk_ops','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','92079fcb-43f6-4d63-b95a-2f9fa99c14a6'),
(26,'craft','m240129_150719_sites_language_amend_length','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','0170f52e-8157-4eda-bb75-b637ef1473f8'),
(27,'craft','m240206_035135_convert_json_columns','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','b1f7a955-e3d2-4b62-9e8f-edabec304e04'),
(28,'craft','m240207_182452_address_line_3','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','36abeacb-15a4-4d93-929c-223d55ee7967'),
(29,'craft','m240302_212719_solo_preview_targets','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','f4b22d4c-bab6-429f-9ed4-e582cdbc9a0c'),
(30,'craft','m240619_091352_add_auth_2fa_timestamp','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','0f992939-b46c-4dba-910a-c31c5d696bf7'),
(31,'craft','m240723_214330_drop_bulkop_fk','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','e68bcf28-b2a1-43bc-8ba7-a5baacbfd7cf'),
(32,'craft','m240731_053543_soft_delete_fields','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','d59e1b77-adb4-4c30-bbf4-ec09d472ad2d'),
(33,'craft','m240805_154041_sso_identities','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','d59e3bbe-e1ba-4f28-982e-79e721d011c9'),
(34,'craft','m240926_202248_track_entries_deleted_with_section','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','022e23b0-ae86-446d-971d-34a5bbfdaac1'),
(35,'craft','m241120_190905_user_affiliated_sites','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','8aa74ed2-b54e-40c6-b01a-ff800868fac9'),
(36,'craft','m241125_122914_add_viewUsers_permission','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','33b2023d-57ff-48cb-86bb-53e0961416c2'),
(37,'craft','m250119_135304_entry_type_overrides','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','6047bba8-37af-40d0-a3f2-ed53a25e91f8'),
(38,'craft','m250206_135036_search_index_queue','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','0cbc6ded-bd1d-4ccc-90a2-520f8c2cc41c'),
(39,'craft','m250207_172349_bulkop_events','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','76ec5901-0b67-4591-be57-aad7f51f557c'),
(40,'craft','m250315_131608_unlimited_authors','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','4838c9a7-54ff-4fde-99b4-539c82f82fca'),
(41,'craft','m250403_171253_static_statuses','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','e1fb0d8d-76f6-41d7-9c8d-88ae3a681b2e'),
(42,'craft','m250512_164202_asset_mime_types','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','797ca184-9880-4ad6-82b5-564c4d26ec61'),
(43,'craft','m250522_090843_add_deleteEntriesForSite_and_deletePeerEntriesForSite_permissions','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','bd56d71d-7ab5-4f88-ae95-e9fb7c1cd650'),
(44,'craft','m250531_183058_content_blocks','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','2d6ca3a9-d5d5-475b-af7a-daba56e08722'),
(45,'craft','m250623_105031_entry_type_descriptions','2025-11-29 11:54:53','2025-11-29 11:54:53','2025-11-29 11:54:53','eb0477aa-4c80-437b-824f-1ab6a2d44d3b'),
(46,'plugin:navigation','Install','2025-11-29 12:16:12','2025-11-29 12:16:12','2025-11-29 12:16:12','33c8cde1-e576-4f1b-ae30-02661d3572ac'),
(47,'plugin:navigation','m231229_000000_content_refactor','2025-11-29 12:16:12','2025-11-29 12:16:12','2025-11-29 12:16:12','0a510145-af92-431f-852c-3019c35c79fb'),
(48,'plugin:navigation','m250830_000000_url_size','2025-11-29 12:16:12','2025-11-29 12:16:12','2025-11-29 12:16:12','ec750792-368f-4f21-a078-de3e05b20cea'),
(49,'plugin:ckeditor','Install','2025-11-29 12:18:03','2025-11-29 12:18:03','2025-11-29 12:18:03','030b38b1-ad94-4b18-83ab-e49bbf150101'),
(50,'plugin:ckeditor','m230408_163704_v3_upgrade','2025-11-29 12:18:03','2025-11-29 12:18:03','2025-11-29 12:18:03','678096c6-a17b-4af4-849e-17d7ee4d007a'),
(51,'craft','m250910_144630_add_elements_owners_sort_order_index','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','d8934014-b502-41a2-91dc-41acab3fc2b2'),
(52,'craft','m251030_203440_drop_widgets_enabled_column','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','7b4157ad-b267-4df6-87ef-1ea32bc163bb'),
(53,'craft','m251110_192405_entry_type_ui_label_formats','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','b9f71134-1a58-436e-87da-60da0015bed3'),
(54,'craft','m251205_190131_drop_searchindexqueue_fk','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','ecbdfc9e-e03a-4613-bff0-5c2be1f9fd95'),
(55,'craft','m251230_192239_update_field_layouts','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','673fc20f-f596-4080-8885-f53eff541786'),
(56,'craft','m260106_130629_directive_schema_components','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','730c1f05-d2b9-4879-a5a0-6902603a6aba'),
(57,'craft','m260120_120907_line_breaks_in_titles','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','18fe2e44-491e-433e-be0c-633e4a52e0c8'),
(58,'craft','m260125_233614_changeAuthorForPeerEntries_permission','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','2777779d-66c6-4356-8160-d4906abff4bd'),
(59,'plugin:navigation','m260128_000000_site_menu','2026-03-03 08:13:59','2026-03-03 08:13:59','2026-03-03 08:13:59','1617d9a4-5d98-4d9b-9321-ae3a6f0991c3'),
(66,'plugin:freeform','Install','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','55a612ed-0ccd-4fde-8301-e8c7f5ffacee'),
(67,'plugin:freeform','m180120_140521_CraftUpgrade','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','da800b8f-a16b-4fa9-b831-1099ed22d52a'),
(68,'plugin:freeform','m180125_124339_UpdateForeignKeyNames','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','ecb52cdb-9183-4e67-b90f-6ee4c7ed3124'),
(69,'plugin:freeform','m180214_094247_AddUniqueTokenToSubmissionsAndForms','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','adb2b5c6-0fdc-4aa9-a2ff-7092a8c26093'),
(70,'plugin:freeform','m180220_072652_ChangeFileUploadFieldColumnType','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','c971b719-cb3d-458d-a949-8b4ac2461a22'),
(71,'plugin:freeform','m180326_094124_AddIsSpamToSubmissions','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','5676dfa5-da03-4440-969c-1a31f39ce053'),
(72,'plugin:freeform','m180405_101920_AddIpAddressToSubmissions','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','d505c313-2608-4e16-92b7-ef01c37f8d5e'),
(73,'plugin:freeform','m180410_131206_CreateIntegrationsQueue','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','110710f8-1fe7-4a14-9728-96316c347798'),
(74,'plugin:freeform','m180417_134527_AddMultipleSelectTypeToFields','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','2ceac556-c6f2-42a5-b5ad-897192e07d3e'),
(75,'plugin:freeform','m180430_151626_PaymentGateways','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','8f457fd3-2b29-4eb8-a18f-93acab912d8a'),
(76,'plugin:freeform','m180508_095131_CreatePaymentGatewayFieldsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','02707fd7-e5c6-4766-b7ae-0f80a070de65'),
(77,'plugin:freeform','m180606_141402_AddConnectionsToFormProperties','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b7462114-beb7-47e9-a36f-10bd6c5af012'),
(78,'plugin:freeform','m180730_171628_AddCcDetailsFieldType','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','80cfa4f0-26fd-41e3-bbf9-6e2beffca282'),
(79,'plugin:freeform','m180817_091801_AddRulesToFormProperties','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b5d8b165-8c08-408e-80bf-0fe90da02c17'),
(80,'plugin:freeform','m181112_152751_ChangeTypeEnumColumnsToIndexedText','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','1b2631b9-dec3-4054-aade-0a7d62fc123a'),
(81,'plugin:freeform','m181129_083939_ChangeIntegrationFieldTypeColumnTypeToString','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fad434d9-1bd7-43fd-bbaf-4e147755918d'),
(82,'plugin:freeform','m190501_124050_MergingEditionsMigration','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','930a82c3-73fe-4002-adf4-c09153958d2f'),
(83,'plugin:freeform','m190502_155557_AddCCAndBCCToEmailNotifications','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','50b1c9d6-ecff-4c98-9470-7080e2241d58'),
(84,'plugin:freeform','m190516_085150_AddPresetAssetsToNotifications','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','824a16ab-1cc8-4c53-aa6a-a30494c321ca'),
(85,'plugin:freeform','m190529_135307_AddWebhookTables','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','df7c7088-f323-4401-88a7-c5605f3a0bff'),
(86,'plugin:freeform','m190604_125112_AddFormLimitSubmissionProperty','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','d0335173-64e0-45de-8df7-6f3b948b9918'),
(87,'plugin:freeform','m190610_074840_MigrateScriptInsertLocation','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','61c0d2b8-a5fe-4abc-9922-e77754085515'),
(88,'plugin:freeform','m190614_103420_AddMissingMetaColumnsToProAndPaymentTables','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','5e9c33b6-4af0-4ab4-9139-78f602b4cf67'),
(89,'plugin:freeform','m190617_122427_RemoveBrokenForeignKeys','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','7a5ff92e-46ff-41e5-ac1c-df5c71b8c9ec'),
(90,'plugin:freeform','m190618_142759_AddFixedForeignKeys','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0628b9f6-81c6-4bf3-826f-2ad5e84d0572'),
(91,'plugin:freeform','m190812_125059_AddNotesTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','766705da-6463-412c-8a0f-759114ff26b0'),
(92,'plugin:freeform','m190905_113428_FixIntervalCountNotNullColumn','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','db51f5c0-a888-4b6d-a7ff-3a7409830ee2'),
(93,'plugin:freeform','m191214_093453_AddExtraPostUrlColumnToForm','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','78b3eeb3-c5fc-4536-9080-6e856a164f4e'),
(94,'plugin:freeform','m200203_180318_AddSpamReasonTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','5c893921-d7f2-4ff4-8611-ba7a40fcb78d'),
(95,'plugin:freeform','m200214_083115_FixIntegrationQueueIndex','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','389b4bd8-3dc5-41e8-92df-bc0eb9b4e2b8'),
(96,'plugin:freeform','m200616_143808_FormPermissionsUpdate','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','8e69475a-dfdd-4d65-a573-ab1cb2f6f209'),
(97,'plugin:freeform','m200630_103347_IncreaseExportProfileSettingSize','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e4ae7d10-68b8-4a9d-adb4-a4d5926e42cb'),
(98,'plugin:freeform','m200825_124009_SplitPipedriveIntegrationIntoDealsAndLeads','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0a28f29b-f282-4379-8428-073792853907'),
(99,'plugin:freeform','m200907_081059_AddValidationToFormProperties','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fba35821-5919-4b60-830c-92261909e373'),
(100,'plugin:freeform','m200911_130215_AddReplyToNameToNotifications','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','144b4907-549f-40f0-819d-e5fd7e7e5b5e'),
(101,'plugin:freeform','m201006_065315_AddFeedTables','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','544995b5-3ac7-4d47-a107-90ac7b1d38c3'),
(102,'plugin:freeform','m201014_161213_AddFormSortOrder','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','8adf9b03-b3c2-4bea-846c-275eb084cf4f'),
(103,'plugin:freeform','m201027_103933_AddExportProfileDateRanges','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','11b55152-8be2-4692-a9fd-811643baec20'),
(104,'plugin:freeform','m201209_162655_AddAutoTextColumnToNotifications','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','f262d847-12b0-487b-aeba-8d9f443370b6'),
(105,'plugin:freeform','m210105_145259_AddGoogleTagManagerColumnsToForms','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','7a251675-8fa1-4e9f-ad7c-85fe9784b04d'),
(106,'plugin:freeform','m210527_071651_AddDbSessionStorage','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','30b63d03-bde6-4708-a21a-209b9e004eb7'),
(107,'plugin:freeform','m210609_183655_AddContextToUnfinalizedFiles','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','016b01a5-20a9-41e6-858b-5b72cf10b271'),
(108,'plugin:freeform','m210629_172132_AddDateIndexToLockTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','9e99b64a-30ea-4a8a-a05a-c11124358151'),
(109,'plugin:freeform','m210923_110033_AddSavedFormsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','d401f93c-5c69-474f-95fc-2417859048a4'),
(110,'plugin:freeform','m211109_144235_RemoveContextFromUnfinalizedAssets','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','169b37e7-a90d-4c66-ba61-abbc9d21403d'),
(111,'plugin:freeform','m211227_140312_AddFormTypes','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','eab0013c-7a32-4c59-afc2-e23087ef86d2'),
(112,'plugin:freeform','m220121_091429_AddUserIdToSubmissions','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0f047555-462b-47de-a82f-016b917aae93'),
(113,'plugin:freeform','m220304_101448_ChangeAccessTokenColumnType','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','187307a7-7dd3-489e-876f-1080a64c40c6'),
(114,'plugin:freeform','m220316_060248_SwitchFormSuccessBehaviourToRedirectReturnUrl','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','2bb2992b-bc07-480a-9dae-846d67e5f7d7'),
(115,'plugin:freeform','m220322_070819_RenameFormattingTemplates','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','9fb68984-9a69-4f82-9289-5eb851e4eab3'),
(116,'plugin:freeform','m220323_113852_MigrateEmailValuesToString','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fead646c-67ac-4202-8843-2d3bfc708b21'),
(117,'plugin:freeform','m220330_111857_SplitSubmissionsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a4ac9b9a-6640-4e17-a22f-ed0ab4ab158b'),
(118,'plugin:freeform','m220422_065929_AddExportNotificationsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','60febfea-9cf8-485d-b684-feb0f56a2b88'),
(119,'plugin:freeform','m220527_055207_ExpandIntegrationAccessTokenSize','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','bcec0f70-b322-4604-8d90-a4e38a97991c'),
(120,'plugin:freeform','m220530_052327_MigrateFormContentTableNamesToSnakeCase','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','947b05d4-62b8-4673-8a3c-aa46fa2f9916'),
(121,'plugin:freeform','m230101_100000_ConvertJsonToLongTextColumns','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','3c93a5e0-af24-4886-881b-694bf68c3dd9'),
(122,'plugin:freeform','m230101_100010_FF4to5_MigrateForms','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e11a879e-6cbd-4b7b-9d3c-b24b17dbe36c'),
(123,'plugin:freeform','m230101_100020_FF4to5_MigrateLayout','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','2696f455-923a-4c79-9afb-b5db6d463ebd'),
(124,'plugin:freeform','m230101_100030_FF4to5_MigrateNotifications','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0a3d921c-8769-454e-a338-ab0d3937e948'),
(125,'plugin:freeform','m230101_100050_FF4to5_MigrateIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','814b67c6-c9d7-4a5a-a8b1-84adc19dd777'),
(126,'plugin:freeform','m230101_100060_FF4to5_MigrateConditionalRules','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','330e77f5-6fa1-40c1-a9c0-504979d887e9'),
(127,'plugin:freeform','m230101_200000_FF4to5_MigrateData','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','eec5839c-7461-494c-937f-5ea14a7cd32e'),
(128,'plugin:freeform','m230101_300100_FF4RemoveOldTables','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b9ba9f2d-debc-40be-b279-bcc46e555335'),
(129,'plugin:freeform','m230224_141036_RemoveRedundantFieldsFromIntegrationsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e1c6dbd5-9175-40cc-8afd-e0620a661ff5'),
(130,'plugin:freeform','m230224_141037_RenameIntegrationTableColumns','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','9a27e9f9-cece-42ac-9882-981f77f099e8'),
(131,'plugin:freeform','m230227_102619_MoveCRMIntegrationClasses','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','9ca248fd-bbd4-4206-8396-a7c692b9b396'),
(132,'plugin:freeform','m230301_124411_MoveMailingListIntegrationClasses','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','5479fdac-b42b-47d1-8093-8f86920e6119'),
(133,'plugin:freeform','m230424_010101_announcement_4_0_23','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','5f401803-0e39-4a94-8852-4aa6715beb5f'),
(134,'plugin:freeform','m230516_010101_announcement_4_0_24','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','dcb3483a-7d9b-45ee-a846-a891a7fecf77'),
(135,'plugin:freeform','m230613_010101_announcement_4_1_0','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','ecf31837-1f17-4536-a046-c3bf5d7ecd93'),
(136,'plugin:freeform','m230712_120518_RemoveIntegrationsQueueMailingListFieldIndex','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','f680c373-de97-41f2-8cfe-a1b9879d5e5b'),
(137,'plugin:freeform','m230725_124256_AddCategoryToCrmFields','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','22309acb-5700-4e28-920e-f2c508752100'),
(138,'plugin:freeform','m230809_081815_AddCategoryToMailingListFields','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','38bbbbe3-4f67-4bd5-b1ec-f78e4aebe6ee'),
(139,'plugin:freeform','m230824_111101_ChangeMailingListsToEmailMarketing','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','272c12d8-60d4-4126-9f16-fa810ffae709'),
(140,'plugin:freeform','m230824_163145_RemoveWebhooksTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fd728ede-c36c-487d-a670-63972c1a1291'),
(141,'plugin:freeform','m230901_143430_ChangeLabelFieldColumnType','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','47b9b205-dca2-4e3a-a5a1-1588c94b6cbf'),
(142,'plugin:freeform','m230920_103014_RemoveLastUpdateFromIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b5fcbb88-262e-47e4-b7ea-0d38f56f3561'),
(143,'plugin:freeform','m230925_162351_AddEnabledToIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','c9d186b4-899d-41da-b319-83460df76113'),
(144,'plugin:freeform','m231020_115409_MigrateIntegrationNamespaces','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','479c843e-6f43-47d4-8d13-2d71b0f27e50'),
(145,'plugin:freeform','m231116_104621_AlterPaymentTables','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','bf44c597-5bda-4332-8646-ab209e9adce4'),
(146,'plugin:freeform','m231128_142144_AddLinkToPaymentsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','5b42573c-5e9d-40fc-b7b1-2316b09bdc9c'),
(147,'plugin:freeform','m231206_132139_RemoveLockTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','16182ca5-32ec-4080-b49f-f04383cfb8ab'),
(148,'plugin:freeform','m231219_105754_AddUsersToFormsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','f76a3846-fd55-4ba0-8ccc-7d1a946026c9'),
(149,'plugin:freeform','m231229_155623_CreateSurveysPreferencesTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','8f1cf4bc-27b2-47f1-8ab1-849722402c10'),
(150,'plugin:freeform','m231230_074448_CreateFieldsTypeGroupsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','480a888e-70d5-472b-b3df-65d536da4b45'),
(151,'plugin:freeform','m240109_142124_UpdatePageButtonMetadata','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','ea66d52b-96e5-4e8a-978b-54f2aee44165'),
(152,'plugin:freeform','m240110_111258_ChangeFormFieldRowForeignKey','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b524908a-4129-4702-a706-eddfe7ec725e'),
(153,'plugin:freeform','m240111_162954_RemoveStatisticsWidgetFromWidgetsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','97a7216d-f083-4f6d-9838-f4ac1838b7ea'),
(154,'plugin:freeform','m240315_100655_UserIntegrationMultiGroupChoice','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0f8dea98-8be9-40c6-a2af-772a79475adf'),
(155,'plugin:freeform','m240405_151009_MigrateEntryIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','2b7fec35-ce13-4043-b18d-bcff254132b9'),
(156,'plugin:freeform','m240415_150746_CreateSubmitFormRuleTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b29e9986-c519-4fb3-b1f2-dbd2c8fa6d43'),
(157,'plugin:freeform','m240425_062916_CreateButtonRuleTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fe53a8e6-9bf0-4f54-9493-e758708b4a49'),
(158,'plugin:freeform','m240429_120039_CreateFormSitesMapTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','b9d851a0-ce0f-4adc-bc13-d3d1fbf49e86'),
(159,'plugin:freeform','m240501_091330_AddHiddenFieldToGroupsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','4eaa6598-eeab-43f8-8a26-2504d97eeb07'),
(160,'plugin:freeform','m240507_073204_DropStatusDefaultColumn','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a5faf723-e2cb-48c7-b107-43e4d15c8698'),
(161,'plugin:freeform','m240521_110910_CreateLimitedUsersTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','2f899707-fa96-47ab-b3ef-8ddaa01835f9'),
(162,'plugin:freeform','m240619_111214_GenerateSpamBlockIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','d3670c0a-7722-433d-86ac-47771bf8d4f9'),
(163,'plugin:freeform','m240624_113811_AddArchivedDateToFormsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','45a8db3c-55fb-43d9-8de7-2c98a4f73559'),
(164,'plugin:freeform','m240813_161214_UpdateStatusColors','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','f67dcbbf-73fa-4ab0-ae71-07c9390513b9'),
(165,'plugin:freeform','m240814_120443_RefactorGridAndFlexboxFormattingTemplatePaths','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','bd4887d0-00a4-4778-92cc-447ff5658091'),
(166,'plugin:freeform','m240819_104209_AddTranslationTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','f09eb705-cd09-42cd-903c-e3112c832673'),
(167,'plugin:freeform','m240903_145017_CreateFormGroupsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e2ef6906-9c4f-41eb-9fbf-7a3041f3cbfb'),
(168,'plugin:freeform','m240903_145034_CreateFormGroupsEntriesTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a730991e-6c99-4abb-bb14-0b021963358b'),
(169,'plugin:freeform','m241023_080038_AddPdfTemplateTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','d3ef0865-7398-4e3f-ab9d-9d37c5b9a541'),
(170,'plugin:freeform','m241104_091432_AddOptionsToIntegrationFields','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','bbad9f06-417e-45d2-9245-01b13ecc98dd'),
(171,'plugin:freeform','m241126_113656_UpdateTableLayoutProperties','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','dd8ac35d-6390-476b-a278-588dec98cc6e'),
(172,'plugin:freeform','m241206_123733_AddIsHiddenToSubmissions','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fa330720-f2fb-4516-b8c2-2b4ebd7f8a7e'),
(173,'plugin:freeform','m241210_054218_AddOptionColumnFixForIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a19077d2-0fdd-46c3-b74f-1e46973e0b39'),
(174,'plugin:freeform','m250121_085946_AddForeignKeyToAssetsInUnfinalizedAssets','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e9f85558-ac52-40ab-9aa0-a4034d01aa37'),
(175,'plugin:freeform','m250121_163320_UpdateCRMFieldOptionsColumnType','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','8d8a0beb-c111-4e84-ad4e-7e11133f2f58'),
(176,'plugin:freeform','m250121_163956_UpdateEmailMarketingFieldOptionsColumnType','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','3a804d93-4d13-4dae-b2f9-52aabc1a2a97'),
(177,'plugin:freeform','m250321_131543_AddFormIdToNotificationTemplates','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a03a8ab0-1331-4111-b009-732b162fd9c9'),
(178,'plugin:freeform','m250513_104454_AddEmailWrapperTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a303ca8e-e40d-421e-889a-f5ed51e73ba6'),
(179,'plugin:freeform','m250519_122738_LinkTemplatesToWrappers','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','3f83b92d-dab0-419b-9dd8-217d338a23e0'),
(180,'plugin:freeform','m250616_182402_SetDefaultTemplateMethod','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','edb001ad-c72b-453e-806f-4b45d979e95a'),
(181,'plugin:freeform','m250620_053458_RemoveUniqueHandleIndexFromNotificationTemplates','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','23ad8983-795a-4e62-9325-5bb8d130d487'),
(182,'plugin:freeform','m250703_081352_AddHoneypotValueToSpamReasonTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','d31f2566-19d3-4443-8cda-0552bcadf03d'),
(183,'plugin:freeform','m250704_092101_ChangeWrapperNameIndexToHandle','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','1c5f5f38-3654-4c32-a1db-c3d5a00713d7'),
(184,'plugin:freeform','m250708_191043_StoreLicenseKeyAtFormMonitor','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','9722d19e-6795-461c-8fce-768f32a7f2b7'),
(185,'plugin:freeform','m250711_125656_AddLegacyColumnToIntegrations','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0b2dbcd1-8130-4a0a-9010-0fdc759e872e'),
(186,'plugin:freeform','m250724_111642_AddDigestDateToNotificationLogTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','2030c20f-89c3-4c41-a912-c3414429f41b'),
(187,'plugin:freeform','m250729_114837_AddIntegrationPermissionsToExistingUsers','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','c1b59c2a-4431-45e6-8f5b-5d12d5ab1ed4'),
(188,'plugin:freeform','m250730_145048_AddFormIdToNotificationTemplates','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','ab68fa1a-f8fe-4d86-a04b-205387ad2a2f'),
(189,'plugin:freeform','m250730_145058_RemoveUniqueHandleIndexFromNotificationTemplates','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','f59cc339-7eb4-41c7-92b0-9b3d73a05285'),
(190,'plugin:freeform','m250807_114200_UpdateFieldMappingKeysInFormsIntegrationsTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e86576be-9fee-43ce-93bc-0c21df1fbb7c'),
(191,'plugin:freeform','m250820_053933_AddTrackingParametersTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e8034817-4364-4ca7-a5a7-8f59dba6c77a'),
(192,'plugin:freeform','m250902_103829_AddIntegrationRulesTable','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','87704dae-6b31-4063-8a01-3e2cf8915578'),
(193,'plugin:freeform','m250903_063546_AddIdentifierToNotificationLogs','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','0f94bb85-17ba-4799-a788-e28ff3d410f9'),
(194,'plugin:freeform','m250903_152441_RemoveUniqueIndexFromDigestDateInNotificationLog','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','e2dee2a0-a84c-410e-84fe-9dc9c720632f'),
(195,'plugin:freeform','m251013_084101_AddIdempotencyKeyToSubmissions','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','19fff0ec-d141-45f6-85d3-4dc9b7ff040b'),
(196,'plugin:freeform','m251113_071330_AddEnabledStatusToExportNotifications','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','a0b19132-d9c4-4d80-9f04-599b321d05db'),
(197,'plugin:freeform','m251204_120000_AllowNullExportProfileRanges','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','6e42a9f7-ffae-42ec-bfd5-ab350bcbe7f6'),
(198,'plugin:freeform','m251229_161516_FixExportNotificationEnabledColumn','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','1cf6a553-3c2d-4db5-9301-bcd92f0779a2'),
(199,'plugin:freeform','m260204_155056_FixSubmissionTableNamesForCraft59','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','57e89270-ca4e-4e70-bda8-037755a11e4b'),
(200,'plugin:freeform','m260223_205201_FixSubmissionTableNamesForCraft59','2026-03-20 11:44:30','2026-03-20 11:44:30','2026-03-20 11:44:30','fb5ebf2b-def6-4ae1-b893-ad41c1eddf87'),
(201,'plugin:seomatic','Install','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','5ca11470-597e-4272-a31e-46113708febb'),
(202,'plugin:seomatic','m180314_002755_field_type','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','bda22d73-0a57-498a-9cd4-8662d88c6eee'),
(203,'plugin:seomatic','m180314_002756_base_install','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','0b6d4a88-5675-4c95-94e6-c451da1368fe'),
(204,'plugin:seomatic','m180502_202319_remove_field_metabundles','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','4dd06078-33dd-416b-b457-2aefb636363b'),
(205,'plugin:seomatic','m180711_024947_commerce_products','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','226e8f70-3079-4305-817b-2f10c41c7654'),
(206,'plugin:seomatic','m190401_220828_longer_handles','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','6fa7a437-a7ff-430c-bb64-296a9d0f5f5b'),
(207,'plugin:seomatic','m190518_030221_calendar_events','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','90011010-7909-461f-b195-a875647c16e7'),
(208,'plugin:seomatic','m200419_203444_add_type_id','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','16f26bff-c4e7-4896-8a0a-a0247aa8ec22'),
(209,'plugin:seomatic','m210603_213100_add_gql_schema_components','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','9f9d28e4-0dc3-4292-b016-eb334250ad3d'),
(210,'plugin:seomatic','m210817_230853_announcement_v3_4','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','cb63cf4d-4289-4c7e-880b-b03403213d98'),
(211,'plugin:seomatic','m230601_184259_announcement_google_ua_deprecated','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','92433306-3cd7-4d2d-b0b9-d0b5a068044b'),
(212,'plugin:seomatic','m250416_002420_drop_vestigial_tables','2026-04-15 17:38:09','2026-04-15 17:38:09','2026-04-15 17:38:09','b9cf19c9-04c9-4b10-b8a9-afdb01dbabd0');
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `navigation_navs`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `navigation_navs` WRITE;
/*!40000 ALTER TABLE `navigation_navs` DISABLE KEYS */;
INSERT INTO `navigation_navs` VALUES
(1,1,'Main Nav','mainNav','',1,'all',NULL,'[]','{\"craft\\\\elements\\\\Asset\":{\"enabled\":\"\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Category\":{\"enabled\":\"\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Entry\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Tag\":{\"enabled\":\"\",\"permissions\":\"*\"},\"verbb\\\\navigation\\\\nodetypes\\\\CustomType\":{\"enabled\":\"1\"},\"verbb\\\\navigation\\\\nodetypes\\\\PassiveType\":{\"enabled\":\"1\"}}',1,'end',1,'2025-11-29 12:58:00','2025-11-30 11:53:06',NULL,'c5d59556-1f30-4c05-a667-afc89046700d'),
(2,2,'Quick Links','footerMenu1','',2,'all',NULL,'[]','{\"craft\\\\elements\\\\Asset\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Category\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Entry\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Tag\":{\"enabled\":\"\",\"permissions\":\"*\"},\"verbb\\\\navigation\\\\nodetypes\\\\CustomType\":{\"enabled\":\"1\"},\"verbb\\\\navigation\\\\nodetypes\\\\PassiveType\":{\"enabled\":\"1\"}}',10,'end',1,'2025-12-02 21:41:44','2025-12-02 21:43:17',NULL,'e880a09a-c044-4e83-899c-8f6177330867'),
(3,3,'DR RACHEL\'S FAVOURITE TREATMENTS','footerMenu2','',3,'all',NULL,'[]','{\"craft\\\\elements\\\\Asset\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Category\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Entry\":{\"enabled\":\"1\",\"permissions\":\"*\"},\"craft\\\\elements\\\\Tag\":{\"enabled\":\"\",\"permissions\":\"*\"},\"verbb\\\\navigation\\\\nodetypes\\\\CustomType\":{\"enabled\":\"1\"},\"verbb\\\\navigation\\\\nodetypes\\\\PassiveType\":{\"enabled\":\"1\"}}',11,'end',1,'2025-12-02 21:41:54','2026-04-02 10:51:57',NULL,'cac6d9c6-8bdd-48c9-92ea-3fce43112469');
/*!40000 ALTER TABLE `navigation_navs` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `navigation_navs_sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `navigation_navs_sites` WRITE;
/*!40000 ALTER TABLE `navigation_navs_sites` DISABLE KEYS */;
INSERT INTO `navigation_navs_sites` VALUES
(1,1,1,1,'2025-11-29 12:58:00','2025-11-29 12:58:00','4d6349cf-66f8-4827-ba20-9c9147411c87'),
(2,2,1,1,'2025-12-02 21:41:44','2025-12-02 21:41:44','9789c7d7-fe63-44d0-8311-b3755f88d5d5'),
(3,3,1,1,'2025-12-02 21:41:54','2025-12-02 21:41:54','d09a6c3f-0b3b-4e87-9313-2593e8237fba');
/*!40000 ALTER TABLE `navigation_navs_sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `navigation_nodes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `navigation_nodes` WRITE;
/*!40000 ALTER TABLE `navigation_nodes` DISABLE KEYS */;
INSERT INTO `navigation_nodes` VALUES
(2,NULL,1,NULL,'/','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:28','2026-04-20 20:40:51','a5f7aff1-1164-4cfd-ba31-03cb9680e6ea'),
(3,NULL,1,NULL,'/about','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:35','2026-04-20 20:41:07','a3e4050e-031c-48d5-b2ee-415449a3fcad'),
(4,NULL,1,NULL,'/contacts','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:41','2026-04-20 20:41:20','c3605b24-a656-4499-aba1-8a123dc0d96d'),
(5,NULL,1,NULL,'/rachel/web/conditions','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:47','2026-02-21 23:51:33','a902b5f9-e979-45e0-b7fa-bf21b28c7d3b'),
(6,NULL,1,NULL,'/prices','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:53','2026-04-20 20:41:01','9f96e3b5-93ef-4a21-bda6-24ce82fb7cf1'),
(8,NULL,1,NULL,'https://www.phorest.com/salon/aestheticsbydrrachel','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',1,NULL,'2025-11-30 11:23:32','2026-04-17 12:11:32','bcd23c5c-25b7-43e7-bb50-d762384b53db'),
(11,NULL,1,NULL,'/rachel/web/treatments','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:04:32','2026-02-21 23:07:16','a3583564-6271-4330-bd71-2b16bf412cd3'),
(12,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:14','2025-11-30 12:08:14','ee7eb7e5-dc43-45af-a9ea-b219adde8b65'),
(13,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:18','2025-11-30 12:08:18','0cd3f635-01c8-45a7-857d-f69abd6f8700'),
(14,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:27','2025-11-30 12:08:27','de3a2c56-2037-42c9-b80e-0279dae9cc89'),
(15,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:33','2025-11-30 12:08:33','a17f896c-5bf3-4a2f-bc56-53e07e1fa6e0'),
(16,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:41','2025-11-30 12:08:41','9f40fbd5-20e8-4414-93e8-a0081059495f'),
(17,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:51','2025-11-30 12:08:51','6ea20ea3-52c4-4e86-92f8-54730fc7e9cd'),
(18,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:54','2025-11-30 12:08:54','1818ef81-f9d4-4dad-b585-5eee8e80d551'),
(19,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:08:58','2025-11-30 12:08:58','c92a6e41-f6e1-4b26-9d0c-52bded230779'),
(20,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:09:04','2025-11-30 12:09:04','0680ac50-d9a6-4d20-bf74-d91e5e3e659e'),
(21,NULL,1,5,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:09:09','2025-11-30 12:09:09','ba94dad7-9f0c-4307-a549-36776cb1833f'),
(22,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:10:25','2025-11-30 12:10:25','756f5a57-0ca0-4292-b155-eaf7b1389764'),
(23,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:10:30','2025-11-30 12:10:30','48bdb109-13d4-4918-bf52-4cdf1fa38faa'),
(24,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:10:35','2025-11-30 12:10:35','0a10c41c-218c-44c9-9289-538a2adec538'),
(25,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:10:43','2025-11-30 12:10:43','ea96e9e3-63a9-4736-914e-5944f72b03bf'),
(26,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:10:48','2025-11-30 12:11:09','246bd457-33a0-4b1e-9b22-289c63a04955'),
(28,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:11:16','2025-11-30 12:11:16','674de333-e1a9-4b11-b162-05d4b9d25b71'),
(29,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:11:25','2025-11-30 12:11:25','eb275ca5-7bbd-445e-aa0f-7ee6fbb52fb0'),
(30,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:11:30','2025-11-30 12:11:30','fdffbd26-014a-4246-b56a-14401a7882e6'),
(31,NULL,1,11,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-11-30 12:11:35','2025-11-30 12:11:35','e74a4cd2-b38f-490e-8c9d-6fcf326645a1'),
(35,NULL,1,NULL,'/blog','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:27:29','2026-04-20 20:41:14','2e0821be-7c67-4790-ac54-ebdd6d1cc048'),
(235,NULL,2,NULL,'/about','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-12-02 21:42:11','2026-04-20 19:25:06','bca46459-ac62-4298-ac15-41fbfcae2506'),
(236,NULL,2,NULL,'/treatments','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-12-02 21:42:21','2025-12-02 21:42:21','33f41ce4-9ec5-4e91-9c5d-ec19387ef5a3'),
(237,NULL,2,NULL,'/prices','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-12-02 21:42:36','2025-12-02 21:42:36','c67b378e-8190-4a4e-a270-299c759b74b5'),
(238,NULL,2,NULL,'/contact','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-12-02 21:42:46','2025-12-02 21:42:46','979a4819-5d7b-4c81-8b7b-fafa64d32e9f'),
(239,NULL,3,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-12-02 21:43:52','2025-12-02 21:43:52','ed5e6f7a-908b-46f8-916d-6111d321f974'),
(240,NULL,3,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-12-02 21:44:07','2025-12-02 21:44:07','3da07637-9865-4e16-8682-bc4984d8a0a1'),
(241,NULL,3,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-12-02 21:44:15','2025-12-02 21:44:15','38802d47-ff65-46a0-83e4-b4d64cd74f36'),
(242,NULL,3,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2025-12-02 21:44:23','2025-12-02 21:44:23','3c469b5f-ae12-4449-8e2a-569e25ffb8c0'),
(2905,NULL,1,NULL,NULL,'verbb\\navigation\\nodetypes\\PassiveType',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:56:33','2026-03-03 07:56:33','21f1b09d-26bf-4cb6-a095-48034a2956e6'),
(2906,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','e180061e-1b8b-4781-8bbb-c93e23526dff'),
(2907,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','d1ea41fa-3212-4b2f-b82b-1dad2f7ff6fa'),
(2908,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','49eecc8e-36ca-4ae9-be1b-0cfae0648437'),
(2909,1951,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','32c17ff5-bf0e-463d-ba09-cd1b72f17d89'),
(2910,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','f443b2b1-da90-4114-bc45-1f008b7a161e'),
(2911,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','a4780a91-c7eb-4750-93dd-e391a0a19f07'),
(2912,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','925c11c0-acf6-4e70-afa1-a07d2710b1ab'),
(2913,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','f4792ed7-6f5c-4c51-89f7-8caa44d2065e'),
(2914,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','c19620b4-10f4-4df2-aaed-4f8373a6d50a'),
(2915,NULL,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 07:58:02','2026-03-03 07:58:02','984f4f09-fd36-4e8b-a32f-48bd4a7333a1'),
(3541,3086,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 11:08:11','2026-03-03 11:08:11','311292ac-046d-412d-891b-c6fd244896f1'),
(3542,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','4b77c224-acf5-4f34-b692-41e0b23f06ef'),
(3543,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','365dff90-ac14-4e60-80a2-4a46901cd7b0'),
(3544,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','e4499a5b-22fa-4020-b90b-8741a395f0db'),
(3545,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','85c00f9b-27e5-4c66-acbd-1a2f72f65de8'),
(3546,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','68b69788-89bd-43d9-8f40-1b1f951eeb39'),
(3547,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','8d4b768e-4ea8-44d0-a0ed-a7b8031d77fc'),
(3548,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','f0d743ad-f2bd-468d-ae38-96198bf48679'),
(3549,NULL,1,5,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-03 11:08:11','2026-03-03 11:08:11','9fdad0b6-1cb7-4537-970b-f1fd4f1bff98'),
(4413,1128,1,11,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2026-03-18 23:31:20','2026-03-18 23:31:20','2f73c302-8f33-4c87-8e36-9c48d9c4b551'),
(4414,4026,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-18 23:31:20','2026-03-18 23:31:20','b48bde8c-002d-4322-918e-3df54516520b'),
(4415,4203,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-18 23:31:20','2026-03-18 23:31:20','dd212acb-fd01-440e-8b57-171ef8f6b1d5'),
(4416,1128,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-18 23:32:24','2026-03-18 23:32:24','00f6d4fc-f37c-4aae-a773-a0c24512b989'),
(4417,4303,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-18 23:32:48','2026-03-18 23:32:48','cc7ae043-f17c-4819-ae96-fe3f76a30aeb'),
(5722,4593,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-20 20:17:19','2026-03-20 20:17:19','bb273520-d1f7-4625-9688-9c0ef0af45ce'),
(5723,4702,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-20 20:17:19','2026-03-20 20:17:19','1eabc1dc-6913-4243-8758-ff3e249c2ef8'),
(5724,4502,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-20 20:17:19','2026-03-20 20:17:19','8f89994d-ae62-4ddb-a2ca-46dae5738192'),
(5725,4418,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-20 20:17:19','2026-03-20 20:17:19','e8593134-a6d5-462a-a316-b7b6b2a81c52'),
(5726,4805,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-20 20:17:19','2026-03-20 20:17:19','c51b6072-9413-4255-ab88-2bc9e9593935'),
(5727,4896,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-20 20:17:19','2026-03-20 20:17:19','c8d3f476-861e-4318-8c9c-ed3444b133d8'),
(5741,NULL,1,NULL,'https://hermeswp.xyz/rachel/web/case-studies','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,0,'2026-03-20 20:26:38','2026-03-20 20:26:38','bde417a2-793d-472b-981e-ab3e01169e13'),
(6031,NULL,1,NULL,'https://hermeswp.xyz/rachel/web/treatments/skin-consultation','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2026-03-26 08:56:03','2026-03-26 08:56:03','40a2f73c-e1c5-466c-af10-d68b5d03f793'),
(6081,4203,3,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-26 10:31:52','2026-03-26 10:31:52','b4dd2b97-c809-457f-ba3e-ac364d34b452'),
(6082,4303,3,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-26 10:31:52','2026-03-26 10:31:52','a1662e54-860c-4409-839b-4c331883738a'),
(6083,4418,3,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-26 10:31:52','2026-03-26 10:31:52','8f85ec9f-5820-4ea9-8e64-d84074b2d958'),
(6084,4702,3,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-26 10:31:52','2026-03-26 10:31:52','cacdb082-a25a-4f8d-b900-c3bbd6f47bac'),
(7154,6712,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:24','2026-04-03 12:21:24','a1d1e015-d9d9-49a8-8089-2c146a4730b6'),
(7155,6759,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:24','2026-04-03 12:21:24','78a10946-41f1-4033-b1a3-7da04cd18794'),
(7156,6647,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:24','2026-04-03 12:21:24','6d4c0b48-fcb8-4f77-ac5d-258dfeca29d0'),
(7157,6550,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:41','2026-04-03 12:21:41','74466213-f6ba-49fd-b589-0d9721644ad0'),
(7158,7074,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:41','2026-04-03 12:21:41','9718b9fa-7455-4447-a8d5-740a5f893b97'),
(7159,6997,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:41','2026-04-03 12:21:41','e03dcb95-cbe3-4a18-8598-35bd2eb26ffe'),
(7160,6818,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:41','2026-04-03 12:21:41','5cf9fd4a-9025-465f-af05-ceda6cadeb71'),
(7161,6934,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:41','2026-04-03 12:21:41','8ca6f379-fff7-44e2-b2f1-744f99cf9960'),
(7162,5108,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-04-03 12:21:41','2026-04-03 12:21:41','83e8f7e6-faf1-4948-a70f-58e23add4e83');
/*!40000 ALTER TABLE `navigation_nodes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `plugins`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `plugins` WRITE;
/*!40000 ALTER TABLE `plugins` DISABLE KEYS */;
INSERT INTO `plugins` VALUES
(1,'navigation','3.0.17','2.1.2','2025-11-29 12:16:12','2025-11-29 12:16:12','2026-03-03 08:13:59','edb42786-c242-451f-9f5c-cee488aa5fdd'),
(2,'ckeditor','4.11.2','3.0.0.0','2025-11-29 12:18:03','2025-11-29 12:18:03','2026-03-03 08:13:59','91e6d327-c0c9-458d-8ccc-f932e39dbb80'),
(3,'blocksmith','1.7.5','1.1.4','2025-11-29 12:18:45','2025-11-29 12:18:45','2026-03-03 08:13:59','ebfc096d-0b6d-4aee-bf3d-dc35594dac53'),
(5,'freeform','5.14.23','5.14.3','2026-03-20 11:44:29','2026-03-20 11:44:29','2026-03-20 11:44:29','2e8e866e-a788-48f3-afdb-884fc3c4f578'),
(6,'seomatic','5.1.21','3.0.13','2026-04-15 17:38:08','2026-04-15 17:38:08','2026-04-15 17:38:08','f4b9c51b-e3a2-4c45-b87e-114d6d715c0f'),
(7,'sendgrid','3.0.0','1.0.0','2026-04-20 19:57:55','2026-04-20 19:57:55','2026-04-20 19:57:55','55bd3101-f620-49af-acfc-731ce66b9313');
/*!40000 ALTER TABLE `plugins` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `projectconfig`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `projectconfig` WRITE;
/*!40000 ALTER TABLE `projectconfig` DISABLE KEYS */;
INSERT INTO `projectconfig` VALUES
('blocksmith.blocksmithMatrixFields.109e9e12-5487-40f4-b216-9f942305125d.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.109e9e12-5487-40f4-b216-9f942305125d.fieldHandle','\"contentColumns\"'),
('blocksmith.blocksmithMatrixFields.33126ba0-77bf-4fda-aec5-cf3893199a82.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.33126ba0-77bf-4fda-aec5-cf3893199a82.fieldHandle','\"priceRows\"'),
('blocksmith.blocksmithMatrixFields.48a6b377-0807-4f30-abf3-84f1acd358ce.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.48a6b377-0807-4f30-abf3-84f1acd358ce.fieldHandle','\"steps\"'),
('blocksmith.blocksmithMatrixFields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.fieldHandle','\"flexibleSection\"'),
('blocksmith.blocksmithMatrixFields.509a8ddb-54bf-42d0-b022-428404fd505b.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.509a8ddb-54bf-42d0-b022-428404fd505b.fieldHandle','\"pagebuilder\"'),
('blocksmith.blocksmithMatrixFields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.fieldHandle','\"overviewCard\"'),
('blocksmith.blocksmithMatrixFields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.fieldHandle','\"disclaimerItems\"'),
('blocksmith.blocksmithMatrixFields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.fieldHandle','\"aboutDoctor\"'),
('blocksmith.blocksmithMatrixFields.e700606a-2f59-4f03-ad43-3a19658d4d03.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.e700606a-2f59-4f03-ad43-3a19658d4d03.fieldHandle','\"footerSocials\"'),
('blocksmith.blocksmithMatrixFields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.fieldHandle','\"contentElements\"'),
('blocksmith.blocksmithMatrixFields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.fieldHandle','\"ctaButtons\"'),
('blocksmith.blocksmithMatrixFields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.fieldHandle','\"faqs\"'),
('blocksmith.blocksmithMatrixFields.fbe1b888-6820-4ee6-be6f-fad5554a897b.enablePreview','true'),
('blocksmith.blocksmithMatrixFields.fbe1b888-6820-4ee6-be6f-fad5554a897b.fieldHandle','\"benefitCards\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.headingLevels.0','1'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.headingLevels.1','2'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.headingLevels.2','3'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.headingLevels.3','4'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.headingLevels.4','5'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.headingLevels.5','6'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.name','\"Simple\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.alignment.options.0','\"left\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.alignment.options.1','\"right\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.0.attributes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.0.classes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.0.name','\"span\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.0.styles','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.1.attributes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.1.classes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.1.name','\"p\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.1.styles','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.2.attributes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.2.classes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.2.name','\"a\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.2.styles','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.3.attributes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.3.classes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.3.name','\"h2\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.3.styles','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.4.attributes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.4.classes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.4.name','\"pre\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.allow.4.styles','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.disallow.0.classes','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.disallow.0.name','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.htmlSupport.disallow.0.styles','true'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.link.decorators.isExternal.attributes.rel','\"noopener noreferrer\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.link.decorators.isExternal.attributes.target','\"_blank\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.link.decorators.isExternal.label','\"Open in a new tab\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.link.decorators.isExternal.mode','\"manual\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.removePlugins.0','\"PasteFromOffice\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.0.classes.0','\"red-heading\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.0.element','\"h2\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.0.name','\"Red heading\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.1.classes.0','\"vibrant-code\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.1.element','\"pre\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.1.name','\"Vibrant code\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.2.classes.0','\"marker\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.2.element','\"span\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.options.style.definitions.2.name','\"Marker\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.0','\"heading\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.1','\"style\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.10','\"bulletedList\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.11','\"numberedList\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.12','\"horizontalLine\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.13','\"pageBreak\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.14','\"link\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.15','\"alignment\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.16','\"createEntry\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.17','\"code\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.18','\"sourceEditing\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.2','\"|\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.3','\"fontColor\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.4','\"bold\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.5','\"underline\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.6','\"italic\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.7','\"insertImage\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.8','\"blockQuote\"'),
('ckeditor.configs.f3801245-1cac-46df-bf78-b4697ba88015.toolbar.9','\"insertTable\"'),
('dateModified','1776715075'),
('elementSources.craft\\elements\\Entry.0.defaultSort.0','\"postDate\"'),
('elementSources.craft\\elements\\Entry.0.defaultSort.1','\"desc\"'),
('elementSources.craft\\elements\\Entry.0.defaultViewMode','\"\"'),
('elementSources.craft\\elements\\Entry.0.disabled','false'),
('elementSources.craft\\elements\\Entry.0.key','\"*\"'),
('elementSources.craft\\elements\\Entry.0.tableAttributes.0','\"status\"'),
('elementSources.craft\\elements\\Entry.0.tableAttributes.1','\"section\"'),
('elementSources.craft\\elements\\Entry.0.tableAttributes.2','\"postDate\"'),
('elementSources.craft\\elements\\Entry.0.tableAttributes.3','\"expiryDate\"'),
('elementSources.craft\\elements\\Entry.0.tableAttributes.4','\"link\"'),
('elementSources.craft\\elements\\Entry.0.type','\"native\"'),
('elementSources.craft\\elements\\Entry.1.key','\"singles\"'),
('elementSources.craft\\elements\\Entry.1.type','\"native\"'),
('elementSources.craft\\elements\\Entry.10.key','\"section:618ae0d4-4ee0-41b7-b790-720b07c1f413\"'),
('elementSources.craft\\elements\\Entry.10.type','\"native\"'),
('elementSources.craft\\elements\\Entry.2.key','\"section:a51e9966-ae3c-43a3-b17a-e41c3cfae2ba\"'),
('elementSources.craft\\elements\\Entry.2.type','\"native\"'),
('elementSources.craft\\elements\\Entry.3.heading','\"Channels\"'),
('elementSources.craft\\elements\\Entry.3.key','\"heading:6a323427-ca7c-490b-bd1a-3be42a5116ba\"'),
('elementSources.craft\\elements\\Entry.3.type','\"heading\"'),
('elementSources.craft\\elements\\Entry.4.defaultSort.0','\"postDate\"'),
('elementSources.craft\\elements\\Entry.4.defaultSort.1','\"desc\"'),
('elementSources.craft\\elements\\Entry.4.defaultViewMode','\"\"'),
('elementSources.craft\\elements\\Entry.4.disabled','false'),
('elementSources.craft\\elements\\Entry.4.key','\"section:d4de9e34-cb7e-4113-989b-f14f4c3536d3\"'),
('elementSources.craft\\elements\\Entry.4.tableAttributes.0','\"status\"'),
('elementSources.craft\\elements\\Entry.4.tableAttributes.1','\"postDate\"'),
('elementSources.craft\\elements\\Entry.4.tableAttributes.2','\"link\"'),
('elementSources.craft\\elements\\Entry.4.type','\"native\"'),
('elementSources.craft\\elements\\Entry.5.defaultSort.0','\"postDate\"'),
('elementSources.craft\\elements\\Entry.5.defaultSort.1','\"desc\"'),
('elementSources.craft\\elements\\Entry.5.defaultViewMode','\"table\"'),
('elementSources.craft\\elements\\Entry.5.disabled','false'),
('elementSources.craft\\elements\\Entry.5.key','\"section:cbc5061d-a74e-463d-ab5e-7c5fd4103496\"'),
('elementSources.craft\\elements\\Entry.5.tableAttributes.0','\"status\"'),
('elementSources.craft\\elements\\Entry.5.tableAttributes.1','\"field:4b3e5070-9588-413c-bedc-097215932500\"'),
('elementSources.craft\\elements\\Entry.5.tableAttributes.2','\"field:5a893fb8-7c34-4a8e-9964-9191b14ab476\"'),
('elementSources.craft\\elements\\Entry.5.tableAttributes.3','\"field:922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('elementSources.craft\\elements\\Entry.5.tableAttributes.4','\"postDate\"'),
('elementSources.craft\\elements\\Entry.5.type','\"native\"'),
('elementSources.craft\\elements\\Entry.6.key','\"section:a76886f6-a966-4056-995c-ac7bda316a07\"'),
('elementSources.craft\\elements\\Entry.6.type','\"native\"'),
('elementSources.craft\\elements\\Entry.7.key','\"section:fe38ddc7-9164-4903-9f4e-c01f9d5126d8\"'),
('elementSources.craft\\elements\\Entry.7.type','\"native\"'),
('elementSources.craft\\elements\\Entry.8.key','\"section:f19eafef-7292-4716-a258-d9bf85bfc10b\"'),
('elementSources.craft\\elements\\Entry.8.type','\"native\"'),
('elementSources.craft\\elements\\Entry.9.key','\"section:89f97553-241f-489b-921a-493ca7be1fbf\"'),
('elementSources.craft\\elements\\Entry.9.type','\"native\"'),
('email.fromEmail','\"office@finedigital.co.uk\"'),
('email.fromName','\"Rachel Siton Website\"'),
('email.transportType','\"craft\\\\mail\\\\transportadapters\\\\Sendmail\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.allowLineBreaksInTitles','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.color','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.description','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.cardThumbAlignment','\"end\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.autocomplete','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.autocorrect','true'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.class','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.dateAdded','\"2025-12-02T20:22:17+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.disabled','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.id','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.inputType','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.label','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.max','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.min','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.name','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.orientation','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.placeholder','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.readonly','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.required','true'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.size','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.step','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.title','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.uid','\"67f6e391-bbd8-48e4-8539-972646860f1d\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.0.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.dateAdded','\"2025-12-02T20:29:53+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.editCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.handle','\"plainText2\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.label','\"Top Label\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.required','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.uid','\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.1.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.dateAdded','\"2025-12-02T20:29:53+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.editCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.handle','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.required','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.uid','\"11aa40c7-103c-4706-ace9-3f450871c29f\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.2.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.dateAdded','\"2025-12-02T20:29:53+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.editCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.handle','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.label','\"Description\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.required','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.uid','\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.3.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.dateAdded','\"2025-12-02T20:29:53+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.editCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.fieldUid','\"df77759d-bc11-4545-8c34-f63e1bbd65b2\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.handle','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.label','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.required','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.uid','\"16daf059-c7fd-4b72-a424-158e791ae13c\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.4.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.dateAdded','\"2025-12-02T20:29:53+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.editCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.fieldUid','\"a906962a-296e-41d6-a082-1398608c0ead\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.handle','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.label','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.required','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.uid','\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.5.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.dateAdded','\"2025-12-02T20:29:53+00:00\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.editCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.elementCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.fieldUid','\"729f8778-8c61-4d5c-acc7-bc33102dff1f\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.handle','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.instructions','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.label','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.required','false'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.tip','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.uid','\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.warning','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.elements.6.width','100'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.name','\"Content\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.uid','\"afe05cea-28d6-424f-bf15-102f5c02796b\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.tabs.0.userCondition','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.fieldLayouts.90cc5e62-a7f3-40f0-b390-6d6ec8a28419.thumbFieldKey','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.handle','\"treatmentsGrid\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.hasTitleField','true'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.icon','\"grid-2-plus\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.name','\"Treatments Grid\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.showSlugField','true'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.showStatusField','true'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.slugTranslationKeyFormat','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.slugTranslationMethod','\"site\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.titleFormat','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.titleTranslationKeyFormat','null'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.titleTranslationMethod','\"site\"'),
('entryTypes.072a4948-ed72-4bec-8817-90115344274e.uiLabelFormat','\"{title}\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.color','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.description','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.cardThumbAlignment','\"end\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.autocomplete','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.autocorrect','true'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.class','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.dateAdded','\"2025-12-06T10:13:50+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.disabled','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.id','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.inputType','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.label','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.max','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.min','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.name','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.orientation','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.placeholder','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.readonly','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.required','true'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.size','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.step','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.title','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.uid','\"131d50e0-1294-40f7-8709-5f3c89ac6ab9\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.0.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.dateAdded','\"2025-12-06T10:20:18+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.editCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.handle','\"iconAsset\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.label','\"Icon\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.required','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.uid','\"33fd0b3d-18dd-42d6-859a-7aaa23d7d267\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.1.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.dateAdded','\"2025-12-06T10:20:18+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.editCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.fieldUid','\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.handle','\"iconPosition\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.label','\"Icon Position\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.required','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.uid','\"36e11556-e75b-47a3-8549-d8578a343647\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.2.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.dateAdded','\"2025-12-06T10:20:18+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.editCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.fieldUid','\"fd862905-7ebc-4c67-8a1a-4ec5084d1fae\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.handle','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.label','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.required','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.uid','\"98fdd6d6-1f52-4cbb-b5b8-fe12791f8f5a\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.3.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.dateAdded','\"2025-12-06T10:20:18+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.editCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.fieldUid','\"fbe942b3-1780-471a-a255-482d04f0ba66\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.handle','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.label','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.required','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.uid','\"120d4842-2b72-43ef-9287-a835ba8f98a3\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.4.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.dateAdded','\"2025-12-06T10:20:18+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.editCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.handle','\"heading\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.label','\"Heading\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.required','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.uid','\"27dcd3ec-6cd1-4987-a7a3-635678824525\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.5.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.dateAdded','\"2025-12-06T10:20:18+00:00\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.editCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.elementCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.handle','\"description\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.instructions','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.label','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.required','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.tip','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.uid','\"a048e295-af29-4f7e-89a7-45de41784f83\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.warning','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.elements.6.width','100'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.name','\"Content\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.uid','\"088246b4-477b-49b7-ad57-a93a05be825e\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.fieldLayouts.c5352fa1-069e-4f9b-983f-757c1a8ae26d.tabs.0.userCondition','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.handle','\"iconText\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.hasTitleField','true'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.icon','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.name','\"Icon + Text\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.showSlugField','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.showStatusField','false'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.slugTranslationKeyFormat','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.slugTranslationMethod','\"site\"'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.titleFormat','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.titleTranslationKeyFormat','null'),
('entryTypes.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3.titleTranslationMethod','\"site\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.color','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.description','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.cardThumbAlignment','\"end\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elementCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.autocomplete','false'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.autocorrect','true'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.class','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.dateAdded','\"2025-12-06T10:19:20+00:00\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.disabled','false'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.elementCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.id','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.inputType','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.instructions','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.label','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.max','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.min','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.name','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.orientation','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.placeholder','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.readonly','false'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.required','true'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.size','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.step','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.tip','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.title','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.uid','\"ea303a15-49e4-4317-b9bf-322d5b08fe14\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.userCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.warning','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.0.width','100'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.dateAdded','\"2025-12-06T10:24:19+00:00\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.editCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.elementCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.fieldUid','\"0ef98093-5a9d-410d-a094-b2e111e0c6d1\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.handle','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.instructions','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.label','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.required','false'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.tip','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.uid','\"65cd5ed5-c924-4fa9-aea7-ca7349a71e47\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.userCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.warning','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.elements.1.width','100'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.name','\"Content\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.uid','\"0b5bb90f-0837-4022-8511-cda4925faac1\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.fieldLayouts.838bb9bd-c37f-475c-afef-4e5be909e3ae.tabs.0.userCondition','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.handle','\"spacer\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.hasTitleField','true'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.icon','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.name','\"Spacer\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.showSlugField','false'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.showStatusField','false'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.slugTranslationKeyFormat','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.slugTranslationMethod','\"site\"'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.titleFormat','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.titleTranslationKeyFormat','null'),
('entryTypes.1d1a1969-ec9c-475c-bb15-08cd6dffd195.titleTranslationMethod','\"site\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.color','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.description','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.cardThumbAlignment','\"end\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elementCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.autocomplete','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.autocorrect','true'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.class','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.dateAdded','\"2026-02-21T12:56:22+00:00\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.disabled','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.elementCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.id','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.inputType','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.instructions','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.label','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.max','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.min','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.name','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.orientation','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.placeholder','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.readonly','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.required','true'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.size','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.step','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.tip','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.title','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.uid','\"a91c9091-42dd-415f-9bce-a29a8d02ff50\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.userCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.warning','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.0.width','100'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.dateAdded','\"2026-02-21T13:14:21+00:00\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.editCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.elementCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.handle','\"iconCard\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.instructions','\"Fontawesome icon class (e.g. \'fa-solid fa-chart-column\')\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.label','\"Icon\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.required','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.tip','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.uid','\"1ae5caab-db45-4566-bedb-13220889b058\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.userCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.warning','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.1.width','100'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.dateAdded','\"2026-02-21T13:14:21+00:00\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.editCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.elementCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.handle','\"titleCard\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.instructions','\"Card title\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.label','\"Title\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.required','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.tip','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.uid','\"6ca65211-02ec-4f68-960c-39eb200c7e18\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.userCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.warning','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.2.width','100'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.dateAdded','\"2026-02-21T13:14:21+00:00\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.editCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.elementCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.handle','\"description\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.instructions','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.label','\"Description\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.required','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.tip','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.uid','\"28708981-cf62-4bc8-916e-3de90d2c1149\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.userCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.warning','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.elements.3.width','100'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.name','\"Content\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.uid','\"1989f317-0be8-4183-8792-929466f2c147\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.fieldLayouts.4241ae24-2157-4a43-995d-74889a70248d.tabs.0.userCondition','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.handle','\"benefitCard\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.hasTitleField','true'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.icon','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.name','\"Benefit Card\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.showSlugField','false'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.showStatusField','true'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.slugTranslationKeyFormat','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.slugTranslationMethod','\"site\"'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.titleFormat','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.titleTranslationKeyFormat','null'),
('entryTypes.228a8acf-c542-4ca9-a1a2-e736335ae4bb.titleTranslationMethod','\"site\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.color','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.description','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.cardThumbAlignment','\"end\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elementCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.autocomplete','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.autocorrect','true'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.class','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.dateAdded','\"2026-02-21T16:12:48+00:00\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.disabled','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.elementCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.id','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.inputType','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.instructions','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.label','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.max','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.min','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.name','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.orientation','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.placeholder','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.readonly','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.required','true'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.size','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.step','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.tip','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.title','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.uid','\"84329c78-48fb-4f8f-9500-98d1561af0ed\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.userCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.warning','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.0.width','100'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.dateAdded','\"2026-02-21T16:16:49+00:00\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.editCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.elementCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.handle','\"faqsTitle\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.instructions','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.label','\"FAQs Title\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.required','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.tip','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.uid','\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.userCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.warning','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.1.width','100'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.dateAdded','\"2026-02-21T16:16:49+00:00\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.editCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.elementCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.handle','\"faqsDescription\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.instructions','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.label','\"FAQs Descriptuon\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.required','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.tip','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.uid','\"13b81fd6-015d-4533-92c8-003014ed992f\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.userCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.warning','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.2.width','100'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.dateAdded','\"2026-02-21T16:14:22+00:00\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.editCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.elementCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.fieldUid','\"ef4c617e-94ef-4a32-8406-24a92a9e9a82\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.handle','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.instructions','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.label','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.required','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.tip','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.uid','\"4573ea0a-fba5-43ea-9ffe-aa0440e2c854\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.userCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.warning','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.elements.3.width','100'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.name','\"Content\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.uid','\"86cc4e31-f0f9-4991-a356-3ab1a4143143\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.fieldLayouts.eb5887ed-ad87-4271-90e1-4fc3c3be4603.tabs.0.userCondition','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.handle','\"faqList\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.hasTitleField','true'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.icon','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.name','\"FAQ List\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.showSlugField','false'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.showStatusField','true'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.slugTranslationKeyFormat','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.slugTranslationMethod','\"site\"'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.titleFormat','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.titleTranslationKeyFormat','null'),
('entryTypes.28c66742-a424-4cbd-ad18-079d8881f9ae.titleTranslationMethod','\"site\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.color','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.description','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.cardThumbAlignment','\"end\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.autocomplete','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.autocorrect','true'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.class','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.dateAdded','\"2025-12-06T10:08:37+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.disabled','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.id','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.inputType','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.label','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.max','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.min','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.name','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.orientation','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.placeholder','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.readonly','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.required','true'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.size','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.step','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.title','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.uid','\"c61c6972-b927-457d-9e11-f4fe452e27a0\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.0.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.dateAdded','\"2025-12-06T10:14:31+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.editCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.fieldUid','\"edf56846-fce6-475b-81c3-7237f63d0a83\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.handle','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.label','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.required','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.uid','\"6f6aeaf6-c34d-47b7-a6c1-7da174fe58ed\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.1.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.dateAdded','\"2025-12-06T10:14:31+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.editCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.fieldUid','\"a51ad288-48e6-40a1-9fe6-85c1ae2947a3\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.handle','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.label','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.required','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.uid','\"8630c735-6b35-4179-a62f-cb5a5eeafa83\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.2.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.dateAdded','\"2025-12-06T10:14:31+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.editCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.fieldUid','\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.handle','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.label','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.required','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.uid','\"31831217-1d9a-4a1e-bb5e-cab96c9fc65d\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.3.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.dateAdded','\"2025-12-06T10:14:31+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.editCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.fieldUid','\"2ae532dc-e56d-4b4e-98da-300c62edff20\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.handle','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.label','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.required','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.uid','\"b01a8273-3669-4c90-b79a-e4721c29434e\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.4.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.dateAdded','\"2025-12-06T10:14:31+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.editCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.handle','\"addShadow\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.label','\"Add Shadow\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.required','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.uid','\"a93a1121-2f17-4072-8021-3405bb9b4467\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.5.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.dateAdded','\"2025-12-06T10:14:31+00:00\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.editCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.elementCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.handle','\"caption\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.instructions','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.label','\"Caption\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.required','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.tip','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.uid','\"e022b58a-9fe5-47af-a775-76e84e0b011f\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.warning','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.elements.6.width','100'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.name','\"Content\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.uid','\"f44e40b4-b2c2-40f4-ab17-4e37d6da6b94\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.fieldLayouts.70cca859-bf26-4b7d-8963-ef1320b40c66.tabs.0.userCondition','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.handle','\"image\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.hasTitleField','true'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.icon','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.name','\"image\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.showSlugField','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.showStatusField','false'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.slugTranslationKeyFormat','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.slugTranslationMethod','\"site\"'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.titleFormat','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.titleTranslationKeyFormat','null'),
('entryTypes.29d763f0-b99e-4d96-a353-1c17eab89a2d.titleTranslationMethod','\"site\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.allowLineBreaksInTitles','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.color','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.description','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.cardThumbAlignment','\"end\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.autocomplete','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.autocorrect','true'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.class','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.dateAdded','\"2026-03-29T10:37:07+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.disabled','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.id','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.inputType','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.label','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.max','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.min','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.name','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.orientation','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.placeholder','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.readonly','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.required','true'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.size','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.step','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.title','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.uid','\"0875ec43-bd94-4bdf-a27d-9ce6e5f14cd2\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.0.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.dateAdded','\"2026-03-29T10:40:29+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.handle','\"topLabel\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.label','\"Top Label\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.uid','\"a3fcfeee-e39d-4d01-b3f4-ab9df3d7d464\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.1.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.dateAdded','\"2026-03-29T10:40:29+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.handle','\"heading\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.uid','\"86675e64-6045-46d6-91c0-0a3b45c6bbe4\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.2.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.dateAdded','\"2026-03-29T10:40:29+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.handle','\"clientPhoto\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.label','\"Client photo\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.uid','\"31620f43-2492-427c-9f97-a712da1d3271\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.3.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.dateAdded','\"2026-03-29T10:40:29+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.handle','\"quote\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.label','\"Quote\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.uid','\"072dcb8d-a55a-47b9-802d-e817056095ba\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.4.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.dateAdded','\"2026-03-29T10:40:29+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.handle','\"clientName\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.label','\"Client name\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.uid','\"fe5e1fe2-84da-4fa8-ac19-1c152f374a61\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.5.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.dateAdded','\"2026-03-29T10:40:29+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.handle','\"treatmentLabel\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.label','\"Treatment label\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.uid','\"234d8da9-a1aa-46f3-aa79-a2863797bca4\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.6.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.dateAdded','\"2026-03-29T10:52:05+00:00\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.editCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.elementCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.elementEditCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.fieldUid','\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.handle','\"liveReviews\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.instructions','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.label','\"Live Reviews\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.required','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.tip','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.uid','\"a1fc5688-356a-440e-bb6d-d1b273378a1f\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.warning','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.elements.7.width','100'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.name','\"Content\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.uid','\"347d5d38-e542-4835-a997-be608e4f6b63\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.tabs.0.userCondition','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.fieldLayouts.fa96f084-ca41-49c9-bc18-cde17d177b49.thumbFieldKey','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.handle','\"featuredTestimonial\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.hasTitleField','true'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.icon','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.name','\"Featured Testimonial\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.showSlugField','false'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.showStatusField','true'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.slugTranslationKeyFormat','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.slugTranslationMethod','\"site\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.titleFormat','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.titleTranslationKeyFormat','null'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.titleTranslationMethod','\"site\"'),
('entryTypes.2fc1070c-46b5-4221-948d-e3693438e735.uiLabelFormat','\"{title}\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.color','\"cyan\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.description','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.cardThumbAlignment','\"end\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.autocomplete','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.autocorrect','true'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.class','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.dateAdded','\"2026-02-03T08:33:50+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.disabled','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.id','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.inputType','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.instructions','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.label','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.max','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.min','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.name','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.orientation','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.placeholder','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.readonly','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.required','true'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.size','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.step','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.title','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.uid','\"ed3c6262-26e6-4e59-ad23-b9d3986ddb19\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.0.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.handle','\"topLabel\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.instructions','\"Small label above heading (e.g., \'Visit Us\')\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.label','\"Top Label\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.uid','\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.1.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.handle','\"heading\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.instructions','\"Main section heading (e.g., \'Find Our Clinic\')\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.uid','\"71564ec2-e644-438f-834f-491192e8b8be\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.2.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.handle','\"locationAddress\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.instructions','\"Full clinic address (supports HTML line breaks)\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.label','\"Location Address\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.uid','\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.3.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.handle','\"openingHours\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.instructions','\"Opening hours (one per line, e.g., \'Mon - Fri: 9:00 AM - 7:00 PM\')\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.label','\"Opening Hours\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.uid','\"c052b28d-47e9-46d9-9fa5-bc840960e6e7\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.4.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.handle','\"phoneNumber\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.instructions','\"Contact phone number (e.g., \'07834 258 596\')\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.label','\"Phone Number\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.uid','\"3686df1e-4be2-483f-ab92-1295ff5058c9\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.5.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.handle','\"email\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.instructions','\"Contact email address\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.label','\"Email\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.uid','\"54b74647-3f1e-420b-b2db-4e61ada3b6d9\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.6.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.handle','\"mapEmbedUrl\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.instructions','\"Google Maps embed URL (get from Google Maps → Share → Embed a map)\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.label','\"Map Embed URL\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.uid','\"729977b5-e42b-44bc-b4c2-3300364e9e1d\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.7.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.dateAdded','\"2026-02-03T08:41:43+00:00\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.editCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.elementCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.fieldUid','\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.handle','\"ctaButtonUrl\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.instructions','\"URL for the call-to-action button\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.label','\"CTA Button URL\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.required','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.tip','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.uid','\"6b2619db-9295-4ee6-b7b9-fbb64c012746\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.warning','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.elements.8.width','100'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.name','\"Content\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.uid','\"6aa3c6d2-360f-476f-b8b2-d2d42369e82a\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.fieldLayouts.9ce573d9-478c-4aa1-bba1-5673423f48dc.tabs.0.userCondition','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.handle','\"locationContact\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.hasTitleField','true'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.icon','\"map-pin\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.name','\"Location Contact\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.showSlugField','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.showStatusField','false'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.slugTranslationKeyFormat','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.slugTranslationMethod','\"site\"'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.titleFormat','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.titleTranslationKeyFormat','null'),
('entryTypes.318e492e-01cc-4b53-86ef-7186a7f4cee4.titleTranslationMethod','\"site\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.color','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.description','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.cardThumbAlignment','\"end\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elementCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.autocomplete','false'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.autocorrect','true'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.class','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.dateAdded','\"2025-12-06T09:55:20+00:00\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.disabled','false'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.elementCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.id','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.inputType','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.instructions','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.label','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.max','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.min','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.name','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.orientation','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.placeholder','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.readonly','false'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.required','true'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.size','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.step','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.tip','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.title','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.uid','\"0414767f-6c38-434b-bde1-6124fdeef10c\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.userCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.warning','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.0.width','100'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.dateAdded','\"2025-12-06T10:36:46+00:00\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.editCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.elementCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.fieldUid','\"eb896b6f-bcb1-4fae-9998-a59cd8810a7a\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.handle','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.instructions','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.label','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.required','false'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.tip','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.uid','\"efc59f9e-ed22-476e-a4bb-ce8ebd251340\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.userCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.warning','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.elements.1.width','100'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.name','\"Content\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.uid','\"3b009ad1-9bc6-4325-b41b-4f69692998eb\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.fieldLayouts.aa2a4783-a598-4e7e-8b57-e750cc73cfd0.tabs.0.userCondition','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.handle','\"column\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.hasTitleField','true'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.icon','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.name','\"Column\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.showSlugField','false'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.showStatusField','false'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.slugTranslationKeyFormat','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.slugTranslationMethod','\"site\"'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.titleFormat','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.titleTranslationKeyFormat','null'),
('entryTypes.33acef61-26dd-4d37-8a02-5f903e07ac2a.titleTranslationMethod','\"site\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.color','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.description','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.cardThumbAlignment','\"end\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.autocomplete','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.autocorrect','true'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.class','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.dateAdded','\"2025-12-07T13:42:16+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.disabled','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.id','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.inputType','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.instructions','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.label','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.max','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.min','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.name','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.orientation','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.placeholder','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.readonly','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.required','true'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.size','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.step','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.title','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.uid','\"5bf57255-244c-47d5-b741-e591c6d9a0e9\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.0.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.fieldUid','\"b6e437a2-3082-4ab0-9f08-862af0b650b1\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.handle','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.instructions','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.label','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.uid','\"099020e5-c897-49cc-b679-3ec70fecd44b\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.1.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.handle','\"heading\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.instructions','\"Main heading text (e.g., \'Dr Rachel – the woman behind the needle of The Aesthetic Clinic\')\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.uid','\"682128f9-a862-4496-8c65-4d0449904510\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.2.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.fieldUid','\"6ab27a91-bd1e-456b-aa68-b220eb7a8fd8\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.handle','\"description\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.instructions','\"Main content paragraphs about the doctor\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.label','\"Description\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.uid','\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.3.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.handle','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.instructions','\"Doctor\'s photo (recommended: portrait orientation, high quality)\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.label','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.uid','\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.4.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.fieldUid','\"4a83aae4-2c1f-4a29-beff-16feb9d628ce\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.handle','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.instructions','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.label','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.uid','\"0f4b4599-37ec-4e32-951d-314472221e14\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.5.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.fieldUid','\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.handle','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.instructions','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.label','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.uid','\"3b49b148-2424-4f38-b0f2-631cf577bc4b\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.6.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.dateAdded','\"2026-02-21T23:21:52+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.fieldUid','\"3c1a81fc-6fae-4278-8d85-367a118abfbb\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.handle','\"showImageFrame\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.instructions','\"Show the image frame\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.label','\"Show Image Frame\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.uid','\"cedb678d-86a4-4d73-865d-e821937bc248\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.7.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.dateAdded','\"2025-12-07T14:18:29+00:00\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.editCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.elementCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.fieldUid','\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.handle','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.instructions','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.label','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.required','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.tip','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.uid','\"b5c7b570-446c-4de6-a9bb-cd9581c73e24\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.warning','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.elements.8.width','100'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.name','\"Content\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.uid','\"56e06f4e-5217-4f6f-b986-1c4e812c567a\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.fieldLayouts.2a3a452c-9a84-4db3-a2ce-5142560340d9.tabs.0.userCondition','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.handle','\"aboutDoctor\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.hasTitleField','true'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.icon','\"address-card\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.name','\"About Doctor\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.showSlugField','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.showStatusField','false'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.slugTranslationKeyFormat','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.slugTranslationMethod','\"site\"'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.titleFormat','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.titleTranslationKeyFormat','null'),
('entryTypes.33f0b780-c7d3-4e20-94e5-83bbd5f30e48.titleTranslationMethod','\"site\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.color','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.description','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.cardThumbAlignment','\"end\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elementCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.autocomplete','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.autocorrect','true'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.class','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.dateAdded','\"2025-12-06T10:23:58+00:00\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.disabled','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.elementCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.id','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.inputType','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.instructions','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.label','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.max','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.min','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.name','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.orientation','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.placeholder','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.readonly','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.required','true'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.size','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.step','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.tip','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.title','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.uid','\"049d133e-5737-4355-87cc-3fb4cd04fa2a\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.userCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.warning','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.0.width','100'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.dateAdded','\"2025-12-06T10:27:57+00:00\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.editCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.elementCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.handle','\"quoteText\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.instructions','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.label','\"Quote Text\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.required','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.tip','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.uid','\"896859cd-857f-4861-ae0b-4fd6cfee14c6\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.userCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.warning','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.1.width','100'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.dateAdded','\"2025-12-06T10:27:57+00:00\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.editCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.elementCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.handle','\"quoteAuthor\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.instructions','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.label','\"Quote Author\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.required','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.tip','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.uid','\"f480e246-0957-4cdd-9ac5-1341e3baf0c3\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.userCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.warning','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.2.width','100'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.dateAdded','\"2025-12-06T10:27:57+00:00\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.editCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.elementCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.handle','\"quoteRole\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.instructions','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.label','\"Quote Role\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.required','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.tip','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.uid','\"008e08fd-671b-47d8-8b2a-9feeeb6e7f98\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.userCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.warning','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.3.width','100'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.dateAdded','\"2025-12-06T10:27:57+00:00\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.editCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.elementCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.fieldUid','\"b3f660e6-d7ee-4793-b5c1-480690617dbc\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.handle','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.instructions','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.label','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.required','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.tip','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.uid','\"74cf31d2-4156-4bbf-9a00-1ec37db212e7\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.userCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.warning','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.elements.4.width','100'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.name','\"Content\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.uid','\"782de208-01ac-4585-9efc-deedcc1cfe57\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.fieldLayouts.67391463-22e8-4d4c-bd56-961436be540f.tabs.0.userCondition','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.handle','\"quote\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.hasTitleField','true'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.icon','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.name','\"Quote\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.showSlugField','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.showStatusField','false'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.slugTranslationKeyFormat','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.slugTranslationMethod','\"site\"'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.titleFormat','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.titleTranslationKeyFormat','null'),
('entryTypes.396eb574-8f32-4bce-bcb0-2ac242ba6e5b.titleTranslationMethod','\"site\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.allowLineBreaksInTitles','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.color','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.description','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.cardThumbAlignment','\"end\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.autocomplete','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.autocorrect','true'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.class','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.dateAdded','\"2026-02-02T18:55:27+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.disabled','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.id','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.inputType','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.label','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.max','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.min','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.name','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.orientation','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.placeholder','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.readonly','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.required','true'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.size','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.step','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.title','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.uid','\"f7695675-60c2-4b85-8046-2faceed3f3c7\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.0.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.dateAdded','\"2026-03-20T12:51:18+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.handle','\"topLabel\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.label','\"Top label\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.uid','\"60bead59-0787-4d9e-acfb-2dc6616c4bd4\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.dateAdded','\"2026-03-20T12:51:18+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.handle','\"heading\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.uid','\"04d35d3e-d4e0-4078-ac6c-56439f578a3d\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.dateAdded','\"2026-03-20T12:51:18+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.handle','\"subtitle\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.label','\"Subtitle\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.uid','\"46060fbb-82a5-47bd-b9a6-c27b7741d13d\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.dateAdded','\"2026-03-20T12:51:18+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.handle','\"instagramHandle\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.label','\"Instagram Handle\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.uid','\"014f7791-0f8d-4cf9-827e-dca775844565\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.4.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.dateAdded','\"2026-03-20T12:51:18+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.handle','\"instagramUrl\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.label','\"Instagram URL\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.uid','\"23d55abf-74ce-4f37-b104-9a83f6cc7fbc\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.5.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.dateAdded','\"2026-03-20T12:51:18+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.fieldUid','\"edf56846-fce6-475b-81c3-7237f63d0a83\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.handle','\"imageAssets\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.label','\"Image Assets\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.uid','\"f91f0a1e-6ec6-4c0e-9db3-434b462d1df8\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.6.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.dateAdded','\"2026-03-29T11:44:45+00:00\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.editCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.elementCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.elementEditCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.fieldUid','\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.handle','\"instagramLive\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.instructions','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.label','\"Instagram Live\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.required','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.tip','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.uid','\"893c100e-74db-4ce2-a4bc-b61c5e66812a\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.warning','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.7.width','100'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.name','\"Content\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.uid','\"c4dbe476-ebb1-4604-91f1-c3b2df612774\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.userCondition','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.thumbFieldKey','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.handle','\"instagramCta\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.hasTitleField','true'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.icon','\"instagram\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.name','\"Instagram\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.showSlugField','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.showStatusField','false'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.slugTranslationKeyFormat','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.slugTranslationMethod','\"site\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.titleFormat','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.titleTranslationKeyFormat','null'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.titleTranslationMethod','\"site\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.uiLabelFormat','\"{title}\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.allowLineBreaksInTitles','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.color','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.description','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.cardThumbAlignment','\"end\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.autocomplete','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.autocorrect','true'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.class','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.dateAdded','\"2026-03-02T19:55:48+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.disabled','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.id','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.inputType','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.instructions','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.label','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.max','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.min','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.name','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.orientation','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.placeholder','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.readonly','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.required','true'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.size','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.step','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.title','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.uid','\"8c982580-a2f6-4ddd-b514-64b03f732be1\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.0.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.dateAdded','\"2026-03-02T20:02:06+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.handle','\"sectionHeading\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.instructions','\"for e.g. \\\"Still have questions?\\\"\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.label','\"Section Heading\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.uid','\"66962652-75fe-47de-baec-55e4fc682a2c\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.1.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.dateAdded','\"2026-03-02T20:02:06+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.fieldUid','\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.handle','\"sectionDescription\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.instructions','\"Example: “Our team is here to help. Get in touch for personalized advice.”\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.label','\"Section description\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.uid','\"02bbffce-9901-4d78-8735-e9ffcf43516d\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.2.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.dateAdded','\"2026-03-02T20:02:06+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.handle','\"primaryButtonText\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.instructions','\"Example: “Book Consultation”\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.label','\"Primary Button Text\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.uid','\"d53763b9-3aa1-46c7-86ae-41b7b60dc343\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.3.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.dateAdded','\"2026-03-02T20:02:06+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.handle','\"primaryButtonUrl\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.instructions','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.label','\"Primary button URL\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.uid','\"beab3711-acd0-4f59-9d50-fd5554a44054\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.4.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.dateAdded','\"2026-03-02T20:02:06+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.fieldUid','\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.handle','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.instructions','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.label','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.uid','\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.dateAdded','\"2026-04-06T09:48:58+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.handle','\"contactNumber\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.instructions','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.label','\"Contact Number\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.uid','\"bdc3b295-e08d-4ba1-ad49-47f7a9fb1655\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.dateAdded','\"2026-04-06T09:48:58+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.fieldUid','\"5255cd18-4f37-4112-b6bb-070514da0eae\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.handle','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.instructions','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.label','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.uid','\"59b92d9c-85a9-4d6c-825f-bf0857b5ffa7\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.7.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.dateAdded','\"2026-03-02T20:02:06+00:00\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.editCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.elementCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.elementEditCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.handle','\"showSecondaryButton\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.instructions','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.label','\"Show Secondary Button\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.required','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.tip','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.uid','\"209bc342-909a-4162-b9dc-50fad3dd2f69\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.warning','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.8.width','100'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.name','\"Content\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.uid','\"9851b5e5-edd7-4117-aee2-50a76d446ccc\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.userCondition','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.thumbFieldKey','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.handle','\"callToActionSection\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.hasTitleField','true'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.icon','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.name','\"Call To Action Section\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.showSlugField','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.showStatusField','true'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.slugTranslationKeyFormat','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.slugTranslationMethod','\"site\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.titleFormat','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.titleTranslationKeyFormat','null'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.titleTranslationMethod','\"site\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.uiLabelFormat','\"{title}\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.color','\"lime\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.description','\"Call to Action Buttons\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.cardThumbAlignment','\"end\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elementCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.autocomplete','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.autocorrect','true'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.class','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.dateAdded','\"2025-11-30T11:44:02+00:00\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.disabled','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.elementCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.id','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.inputType','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.instructions','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.label','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.max','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.min','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.name','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.orientation','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.placeholder','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.readonly','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.required','true'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.size','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.step','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.tip','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.title','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.uid','\"f1781990-559b-4d18-ab3c-c72f504e8689\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.userCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.warning','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.0.width','100'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.dateAdded','\"2025-11-30T11:46:58+00:00\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.editCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.elementCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.handle','\"linkText\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.instructions','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.label','\"Link text\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.required','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.tip','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.uid','\"28396760-6b42-4e26-91fe-691bb1d0f638\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.userCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.warning','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.1.width','100'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.dateAdded','\"2025-11-30T11:46:58+00:00\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.editCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.elementCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.handle','\"urlAddress\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.instructions','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.label','\"URL Address\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.required','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.tip','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.uid','\"34edbdad-80cc-455a-8024-e4ad5cc55f12\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.userCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.warning','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.2.width','100'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.dateAdded','\"2025-11-30T11:46:58+00:00\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.editCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.elementCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.fieldUid','\"b9d341c8-9a1f-4ad6-9e8a-085c440d7e11\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.handle','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.instructions','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.label','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.required','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.tip','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.uid','\"306c8a8b-7513-4a3f-82c5-7797d86388ed\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.userCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.warning','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.elements.3.width','100'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.name','\"Content\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.uid','\"e6eae254-f3e3-423c-89d2-9075821e880c\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.fieldLayouts.da06470b-097e-4a30-a73d-c7659b1ddb57.tabs.0.userCondition','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.handle','\"callToAction\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.hasTitleField','true'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.icon','\"link\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.name','\"Call to Action\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.showSlugField','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.showStatusField','false'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.slugTranslationKeyFormat','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.slugTranslationMethod','\"site\"'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.titleFormat','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.titleTranslationKeyFormat','null'),
('entryTypes.3d095a62-0ba8-4def-88a7-ad2e35d53fce.titleTranslationMethod','\"site\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.allowLineBreaksInTitles','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.color','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.description','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.cardThumbAlignment','\"end\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elementCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.autocomplete','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.autocorrect','true'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.class','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.dateAdded','\"2025-12-02T16:13:32+00:00\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.disabled','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.elementCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.id','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.inputType','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.instructions','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.label','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.max','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.min','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.name','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.orientation','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.placeholder','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.readonly','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.required','true'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.size','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.step','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.tip','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.title','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.uid','\"f206aebf-e51a-45cb-a234-08a2c92c8630\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.userCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.warning','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.0.width','100'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.dateAdded','\"2026-03-26T10:21:22+00:00\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.editCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.elementCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.handle','\"gridCardText\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.instructions','\"The short text shown under the treatment title in the “Explore My Services” cards on homepage.\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.label','\"Grid Card Text\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.required','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.tip','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.uid','\"7a135f87-f576-4091-9795-9b0cd71f04fc\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.userCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.warning','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.width','100'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.dateAdded','\"2025-12-02T21:01:47+00:00\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.editCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.elementCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.handle','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.instructions','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.label','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.required','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.tip','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.uid','\"15c485a1-c1dd-465e-93b2-21f693927c55\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.userCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.warning','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.2.width','100'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.dateAdded','\"2026-02-21T14:54:22+00:00\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.editCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.elementCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.fieldUid','\"509a8ddb-54bf-42d0-b022-428404fd505b\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.handle','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.instructions','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.label','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.required','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.tip','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.uid','\"29d63d2b-11ad-46b5-a496-080579503dd7\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.userCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.warning','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.3.width','100'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.name','\"Content\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.uid','\"23252237-0b39-4f56-8912-e058b73c9dd4\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.userCondition','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.thumbFieldKey','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.handle','\"treatment\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.hasTitleField','true'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.icon','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.name','\"Treatment\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.showSlugField','true'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.showStatusField','true'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.slugTranslationKeyFormat','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.slugTranslationMethod','\"site\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.titleFormat','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.titleTranslationKeyFormat','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.titleTranslationMethod','\"site\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.uiLabelFormat','\"{title}\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.color','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.description','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.cardThumbAlignment','\"end\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elementCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.autocomplete','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.autocorrect','true'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.class','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.dateAdded','\"2026-02-20T13:48:18+00:00\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.disabled','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.elementCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.id','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.inputType','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.instructions','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.label','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.max','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.min','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.name','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.orientation','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.placeholder','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.readonly','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.required','true'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.size','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.step','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.tip','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.title','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.uid','\"9d969fea-d9af-4ddc-9958-97ed5b2c27ad\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.userCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.warning','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.0.width','100'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.dateAdded','\"2026-02-21T15:37:18+00:00\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.editCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.elementCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.handle','\"overviewLabel\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.instructions','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.label','\"Overview Label\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.required','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.tip','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.uid','\"27981bad-5628-40c6-8263-ab2118bca482\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.userCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.warning','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.1.width','100'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.dateAdded','\"2026-02-21T15:37:18+00:00\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.editCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.elementCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.handle','\"overviewTitle\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.instructions','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.label','\"Overview Title\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.required','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.tip','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.uid','\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.userCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.warning','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.2.width','100'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.dateAdded','\"2026-02-20T14:18:19+00:00\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.editCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.elementCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.fieldUid','\"8f8ff810-b5a0-4df9-8e17-6666ba92ba4b\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.handle','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.instructions','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.label','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.required','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.tip','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.uid','\"73dce444-eee4-4675-a8d9-a73001443f8d\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.userCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.warning','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.3.width','100'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.dateAdded','\"2026-02-21T15:42:50+00:00\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.editCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.elementCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.fieldUid','\"b18a7136-6cdd-4a0b-a094-b82bc3f945d4\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.handle','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.instructions','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.label','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.required','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.tip','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.uid','\"707b0270-058e-4815-8353-a09c723e049b\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.userCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.warning','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.elements.4.width','100'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.name','\"Content\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.uid','\"5e1eed26-1a24-4e3f-adc2-e552fda024af\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.fieldLayouts.a934aeaa-d055-4aad-b5da-1358322ee001.tabs.0.userCondition','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.handle','\"treatmentOverview\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.hasTitleField','true'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.icon','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.name','\"Treatment Overview\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.showSlugField','false'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.showStatusField','true'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.slugTranslationKeyFormat','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.slugTranslationMethod','\"site\"'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.titleFormat','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.titleTranslationKeyFormat','null'),
('entryTypes.45e1951f-373a-4e27-8d30-3cfa1bb82857.titleTranslationMethod','\"site\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.color','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.description','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.cardThumbAlignment','\"end\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elementCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.autocomplete','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.autocorrect','true'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.class','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.dateAdded','\"2025-12-02T21:59:36+00:00\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.disabled','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.elementCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.id','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.inputType','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.instructions','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.label','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.max','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.min','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.name','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.orientation','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.placeholder','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.readonly','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.required','true'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.size','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.step','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.tip','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.title','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.uid','\"7c5ad1af-ac51-4576-8b74-a0bf3aa67b64\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.userCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.warning','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.0.width','100'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.dateAdded','\"2025-12-02T22:01:53+00:00\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.editCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.elementCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.fieldUid','\"c91f3372-1fd1-4bfb-b8f3-5432da853217\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.handle','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.instructions','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.label','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.required','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.tip','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.uid','\"2c8d3384-fdaf-45a9-8e0e-73f881e9509a\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.userCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.warning','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.1.width','100'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.dateAdded','\"2025-12-02T22:01:53+00:00\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.editCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.elementCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.handle','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.instructions','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.label','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.required','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.tip','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.uid','\"4c5c639e-d111-4970-819b-5bcf7873db6f\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.userCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.warning','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.elements.2.width','100'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.name','\"Content\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.uid','\"0b857613-d1ea-4fca-9758-d4ba789360ff\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.fieldLayouts.c23aeb02-7f17-4de7-94a2-08214fdff6a7.tabs.0.userCondition','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.handle','\"footerSocials\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.hasTitleField','true'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.icon','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.name','\"Footer Socials\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.showSlugField','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.showStatusField','false'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.slugTranslationKeyFormat','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.slugTranslationMethod','\"site\"'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.titleFormat','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.titleTranslationKeyFormat','null'),
('entryTypes.4abd8145-07f0-4c4c-bd28-d130696c6013.titleTranslationMethod','\"site\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.allowLineBreaksInTitles','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.color','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.description','\"Hero Section\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.cardThumbAlignment','\"end\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.autocomplete','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.autocorrect','true'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.class','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.dateAdded','\"2025-11-30T19:11:51+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.disabled','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.id','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.inputType','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.label','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.max','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.min','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.name','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.orientation','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.placeholder','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.readonly','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.required','true'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.size','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.step','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.title','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.uid','\"4e750348-a78f-41f1-b9f6-9936131cf92c\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.0.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.dateAdded','\"2025-11-30T19:32:11+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.handle','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.label','\"Heading Second Line\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.uid','\"12def3da-8ca1-48fa-891d-c3798b3b46e9\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.1.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.dateAdded','\"2025-11-30T19:57:12+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.handle','\"plainText2\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.label','\"Heading Second Line\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.uid','\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.2.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.dateAdded','\"2025-11-30T19:15:27+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.handle','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.label','\"Subtitle\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.uid','\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.3.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.dateAdded','\"2025-11-30T19:15:27+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.handle','\"textArea2\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.label','\"Description\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.uid','\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.4.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.dateAdded','\"2025-11-30T19:15:27+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.fieldUid','\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.handle','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.label','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.uid','\"d1187881-9f88-406c-a476-52d43ed1ca77\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.5.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.dateAdded','\"2026-03-29T10:06:23+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.fieldUid','\"46742ca3-f2c3-408c-87e7-c0191d86f70e\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.handle','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.label','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.uid','\"e491edbd-c23e-4f68-a29b-405630bd8368\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.dateAdded','\"2025-11-30T19:15:27+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.class','\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.conditionRules.0.class','\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.conditionRules.0.fieldUid','\"46742ca3-f2c3-408c-87e7-c0191d86f70e\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.conditionRules.0.layoutElementUid','\"e491edbd-c23e-4f68-a29b-405630bd8368\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.conditionRules.0.uid','\"5e71ccaf-60e8-4ee6-8baf-db03dbe7b62a\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.conditionRules.0.value','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.elementType','\"craft\\\\elements\\\\Entry\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementCondition.fieldContext','\"global\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.handle','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.label','\"Background Image\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.uid','\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.dateAdded','\"2026-03-29T10:06:23+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.class','\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.conditionRules.0.class','\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.conditionRules.0.fieldUid','\"46742ca3-f2c3-408c-87e7-c0191d86f70e\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.conditionRules.0.layoutElementUid','\"e491edbd-c23e-4f68-a29b-405630bd8368\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.conditionRules.0.uid','\"20ebccbd-49ca-4957-8c1f-2db2e1914517\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.conditionRules.0.value','true'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.elementType','\"craft\\\\elements\\\\Entry\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementCondition.fieldContext','\"global\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.handle','\"heroYoutubeUrl\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.instructions','\"Paste the youtube video link only\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.label','\"Hero YouTube Embed\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.uid','\"94fdb246-e47a-4986-a057-3cdd1fad1bfb\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.8.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.dateAdded','\"2025-11-30T19:15:27+00:00\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.editCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.elementCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.elementEditCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.fieldUid','\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.handle','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.instructions','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.label','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.required','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.tip','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.uid','\"238ce99e-fad8-4e55-b39c-58e5e5704123\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.warning','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.9.width','100'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.name','\"Content\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.uid','\"ef9c32d8-8ed0-4a7f-aed3-675abe5e8d7b\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.userCondition','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.thumbFieldKey','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.handle','\"heroSection\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.hasTitleField','true'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.icon','\"sword\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.name','\"Hero Section\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.showSlugField','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.showStatusField','false'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.slugTranslationKeyFormat','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.slugTranslationMethod','\"site\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.titleFormat','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.titleTranslationKeyFormat','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.titleTranslationMethod','\"site\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.uiLabelFormat','\"{title}\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.color','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.description','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.cardThumbAlignment','\"end\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elementCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.autocomplete','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.autocorrect','true'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.class','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.dateAdded','\"2025-12-02T19:22:33+00:00\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.disabled','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.elementCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.id','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.inputType','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.instructions','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.label','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.max','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.min','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.name','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.orientation','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.placeholder','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.readonly','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.required','true'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.size','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.step','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.tip','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.title','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.uid','\"3ef097f1-68d8-4be7-967f-cd8ead31df39\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.userCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.warning','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.0.width','100'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.dateAdded','\"2025-12-02T19:58:15+00:00\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.editCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.elementCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.handle','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.instructions','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.label','\"Heading\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.required','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.tip','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.uid','\"b711d73c-2e12-484e-aa49-7fbd53b17a66\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.userCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.warning','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.1.width','100'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.dateAdded','\"2025-12-02T20:00:02+00:00\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.editCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.elementCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.handle','\"plainText2\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.instructions','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.label','\"Subheading\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.required','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.tip','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.uid','\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.userCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.warning','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.2.width','100'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.dateAdded','\"2025-12-02T19:58:15+00:00\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.editCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.elementCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.handle','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.instructions','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.label','\"Text\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.required','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.tip','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.uid','\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.userCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.warning','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.3.width','100'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.dateAdded','\"2025-12-02T19:23:49+00:00\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.editCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.elementCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.fieldUid','\"7a91ded5-d5f6-4f89-bd3b-5bb0647cef14\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.handle','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.instructions','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.label','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.required','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.tip','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.uid','\"49644737-b16a-4ec0-9507-72c7d47013c5\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.userCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.warning','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.elements.4.width','100'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.name','\"Content\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.uid','\"ea73eb20-51b1-40b5-b3eb-cb0ff5de9f81\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.fieldLayouts.a9956cba-7a9f-4088-85e8-12e950d98a64.tabs.0.userCondition','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.handle','\"featuredTransformations\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.hasTitleField','true'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.icon','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.name','\"Featured transformations\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.showSlugField','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.showStatusField','false'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.slugTranslationKeyFormat','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.slugTranslationMethod','\"site\"'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.titleFormat','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.titleTranslationKeyFormat','null'),
('entryTypes.53906bea-a5c6-4385-82e5-c89e27ac267b.titleTranslationMethod','\"site\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.color','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.description','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.cardThumbAlignment','\"end\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.autocomplete','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.autocorrect','true'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.class','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.dateAdded','\"2025-12-03T08:45:31+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.disabled','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.id','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.inputType','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.instructions','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.label','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.max','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.min','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.name','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.orientation','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.placeholder','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.readonly','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.required','true'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.size','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.step','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.title','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.uid','\"fb436266-ddd3-4014-92db-abf3083c24e1\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.0.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.dateAdded','\"2025-12-03T08:53:17+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.editCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.handle','\"plainText2\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.instructions','\"Small uppercase label that appears above the heading (e.g., \\\"Latest Insights\\\"\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.label','\"Top Label\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.required','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.uid','\"33ee3a3d-d49b-4235-989e-7b6f0c31f998\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.1.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.dateAdded','\"2025-12-03T08:53:17+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.editCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.handle','\"plainText\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.instructions','\"Main heading for the section (e.g., \\\"From Our Blog\\\")\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.required','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.uid','\"6fcbabcf-457e-47c2-873c-dc1bab02fd18\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.2.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.dateAdded','\"2025-12-03T08:53:17+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.editCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.handle','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.instructions','\"Optional description text below the heading\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.label','\"Description\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.required','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.uid','\"7a8d453a-db94-47f8-8c2b-ebf52865b100\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.3.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.dateAdded','\"2025-12-03T08:53:17+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.editCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.fieldUid','\"df77759d-bc11-4545-8c34-f63e1bbd65b2\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.handle','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.instructions','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.label','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.required','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.uid','\"01b1237d-1cd3-4827-875c-d66daeca276e\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.4.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.dateAdded','\"2025-12-03T08:53:17+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.editCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.fieldUid','\"a906962a-296e-41d6-a082-1398608c0ead\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.handle','\"numberOfPosts\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.instructions','\"How many posts to display (only used when Display Type is \\\"Show Limited Number\\\")\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.label','\"Number Of Posts\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.required','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.uid','\"cbe6df6b-a65b-4c4e-8479-114280ffa9c8\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.5.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.dateAdded','\"2025-12-03T08:53:47+00:00\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.editCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.elementCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.fieldUid','\"3562e3e8-953b-4bf9-a05b-29bebbeb4fb9\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.handle','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.instructions','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.label','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.required','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.tip','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.uid','\"8158a403-41e9-4258-bf1a-91c53020cc0b\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.warning','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.elements.6.width','100'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.name','\"Content\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.uid','\"4c57994c-b80d-4028-a6a8-f92a020620ff\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.fieldLayouts.3b15ebf4-0656-441e-ba45-077425f0a388.tabs.0.userCondition','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.handle','\"blogGrid\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.hasTitleField','true'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.icon','\"grid-2-plus\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.name','\"Blog Grid\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.showSlugField','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.showStatusField','false'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.slugTranslationKeyFormat','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.slugTranslationMethod','\"site\"'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.titleFormat','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.titleTranslationKeyFormat','null'),
('entryTypes.54df986c-6d9a-49a7-8f54-33871ccfd5c6.titleTranslationMethod','\"site\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.color','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.description','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.cardThumbAlignment','\"end\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elementCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.autocomplete','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.autocorrect','true'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.class','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.dateAdded','\"2025-12-02T14:54:33+00:00\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.disabled','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.elementCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.id','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.inputType','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.instructions','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.label','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.max','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.min','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.name','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.orientation','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.placeholder','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.readonly','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.required','true'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.size','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.step','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.tip','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.title','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.uid','\"068dad7a-bdaa-4133-b10a-9d8ad919a217\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.userCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.warning','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.0.width','100'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.dateAdded','\"2025-12-02T14:56:21+00:00\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.editCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.elementCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.fieldUid','\"59b98af3-0c7d-4ef0-bd5e-cb771b4b4915\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.handle','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.instructions','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.label','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.required','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.tip','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.uid','\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.userCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.warning','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.1.width','100'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.dateAdded','\"2025-12-02T15:34:17+00:00\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.editCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.elementCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.fieldUid','\"4b3e5070-9588-413c-bedc-097215932500\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.handle','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.instructions','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.label','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.required','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.tip','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.uid','\"d5803862-14af-411a-83a8-0734f3d68687\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.userCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.warning','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.2.width','100'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.dateAdded','\"2025-12-02T14:56:21+00:00\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.editCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.elementCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.handle','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.instructions','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.label','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.required','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.tip','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.uid','\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.userCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.warning','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.3.width','100'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.dateAdded','\"2025-12-02T14:56:21+00:00\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.editCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.elementCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.fieldUid','\"5a893fb8-7c34-4a8e-9964-9191b14ab476\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.handle','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.instructions','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.label','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.required','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.tip','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.uid','\"521ddd96-4b77-4908-ae99-90bb9fa46eda\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.userCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.warning','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.elements.4.width','100'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.name','\"Content\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.uid','\"1885e3e7-6169-4b09-89f2-45f0862a82de\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.fieldLayouts.2cc74c01-01d5-4d77-8019-1f3a48b82808.tabs.0.userCondition','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.handle','\"transformations\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.hasTitleField','true'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.icon','\"face-grin\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.name','\"Transformations\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.showSlugField','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.showStatusField','false'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.slugTranslationKeyFormat','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.slugTranslationMethod','\"site\"'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.titleFormat','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.titleTranslationKeyFormat','null'),
('entryTypes.668312b7-a3ca-482b-9f09-61e12e43feab.titleTranslationMethod','\"site\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.color','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.description','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.cardThumbAlignment','\"end\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.autocomplete','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.autocorrect','true'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.class','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.dateAdded','\"2025-12-06T10:29:44+00:00\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.disabled','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.id','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.inputType','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.instructions','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.label','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.max','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.min','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.name','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.orientation','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.placeholder','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.readonly','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.required','true'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.size','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.step','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.tip','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.title','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.uid','\"f533fe04-be47-4460-8bc5-d709edbba0d0\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.warning','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.0.width','100'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.dateAdded','\"2025-12-06T10:34:17+00:00\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.editCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.fieldUid','\"fd1f951e-5f19-4d51-be00-8ac77a0a3dc8\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.handle','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.instructions','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.label','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.required','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.tip','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.uid','\"8d5d0f0e-ba78-4aec-a975-896b5c0bfc97\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.warning','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.1.width','100'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.dateAdded','\"2025-12-06T10:34:17+00:00\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.editCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.handle','\"videoUrl\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.instructions','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.label','\"Video URL\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.required','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.tip','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.uid','\"ed6925bd-d64c-43fe-a367-7401b365a902\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.warning','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.2.width','100'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.dateAdded','\"2025-12-06T10:34:17+00:00\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.editCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.fieldUid','\"950833d2-d383-4899-bcf9-0189d600e24d\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.handle','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.instructions','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.label','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.required','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.tip','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.uid','\"baf34967-b125-4a4e-8a96-cf8c1681807f\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.warning','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.3.width','100'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.dateAdded','\"2025-12-06T10:34:17+00:00\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.editCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.handle','\"videoPoster\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.instructions','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.label','\"Video Poster\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.required','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.tip','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.uid','\"31d5fcd7-a495-4c74-b74c-69b111cac764\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.warning','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.4.width','100'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.dateAdded','\"2025-12-06T10:34:17+00:00\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.editCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.elementCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.fieldUid','\"a0e04847-3252-4444-9421-4fd5317d45de\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.handle','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.instructions','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.label','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.required','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.tip','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.uid','\"9206e4a3-b6b5-433e-8cb9-9ae29e23809d\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.warning','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.elements.5.width','100'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.name','\"Content\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.uid','\"b1d81038-1726-4897-b038-4c419b5d8eb8\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.fieldLayouts.4f8f3122-5576-4373-80f5-f35db245f4b2.tabs.0.userCondition','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.handle','\"video\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.hasTitleField','true'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.icon','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.name','\"Video\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.showSlugField','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.showStatusField','false'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.slugTranslationKeyFormat','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.slugTranslationMethod','\"site\"'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.titleFormat','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.titleTranslationKeyFormat','null'),
('entryTypes.66c57356-7f34-4425-bf45-6da256fd496d.titleTranslationMethod','\"site\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.color','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.description','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.cardThumbAlignment','\"end\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elementCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.autocomplete','false'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.autocorrect','true'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.class','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.dateAdded','\"2026-02-22T00:00:17+00:00\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.disabled','false'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.elementCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.id','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.inputType','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.instructions','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.label','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.max','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.min','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.name','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.orientation','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.placeholder','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.readonly','false'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.required','true'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.size','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.step','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.tip','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.title','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.uid','\"e364010f-ec19-41ff-80d5-38d15e9d4d8a\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.userCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.warning','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.0.width','100'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.dateAdded','\"2026-02-22T00:01:31+00:00\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.editCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.elementCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.handle','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.instructions','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.label','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.required','false'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.tip','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.uid','\"532dac3c-d10a-4183-93e4-92dc9b29362b\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.userCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.warning','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.1.width','100'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.dateAdded','\"2026-02-22T00:01:31+00:00\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.editCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.elementCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.fieldUid','\"509a8ddb-54bf-42d0-b022-428404fd505b\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.handle','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.instructions','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.label','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.required','false'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.tip','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.uid','\"00bc2085-e013-4955-9a8c-9713f15eac95\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.userCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.warning','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.elements.2.width','100'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.name','\"Content\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.uid','\"992cd5e6-68fe-4f32-b091-2d5b8b71fc43\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.fieldLayouts.b3e850fa-6c7e-4232-a382-b5ee294644f1.tabs.0.userCondition','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.handle','\"conditions\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.hasTitleField','true'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.icon','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.name','\"Conditions\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.showSlugField','true'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.showStatusField','true'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.slugTranslationKeyFormat','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.slugTranslationMethod','\"site\"'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.titleFormat','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.titleTranslationKeyFormat','null'),
('entryTypes.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d.titleTranslationMethod','\"site\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.color','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.description','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.cardThumbAlignment','\"end\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elementCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.autocomplete','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.autocorrect','true'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.class','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.dateAdded','\"2026-02-21T12:52:45+00:00\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.disabled','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.elementCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.id','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.inputType','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.instructions','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.label','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.max','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.min','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.name','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.orientation','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.placeholder','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.readonly','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.required','true'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.size','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.step','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.tip','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.title','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.uid','\"0b54d292-a257-48b6-a929-6091948fa80d\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.userCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.warning','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.0.width','100'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.dateAdded','\"2026-02-21T13:16:49+00:00\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.editCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.elementCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.fieldUid','\"fbe1b888-6820-4ee6-be6f-fad5554a897b\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.handle','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.instructions','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.label','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.required','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.tip','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.uid','\"6f4c8f61-5636-4286-821a-9523fa0e924f\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.userCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.warning','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.1.width','100'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.dateAdded','\"2026-02-21T13:16:49+00:00\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.editCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.elementCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.handle','\"sectionLabel\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.instructions','\"Text above heading\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.label','\"Section Label\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.required','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.tip','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.uid','\"f8e6258b-90c5-4137-bace-60c62639da4a\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.userCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.warning','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.2.width','100'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.dateAdded','\"2026-02-21T13:16:49+00:00\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.editCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.elementCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.handle','\"sectionTitle\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.instructions','\"Main title (e.g. Why Choose This Treatment)\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.label','\"Section Title\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.required','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.tip','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.uid','\"3cbe2fed-6999-4764-ab9a-308f0b982499\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.userCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.warning','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.3.width','100'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.dateAdded','\"2026-02-21T15:49:21+00:00\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.editCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.elementCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.handle','\"sectionDescription\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.instructions','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.label','\"Description\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.required','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.tip','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.uid','\"45c80109-3898-433b-96cc-3838022d84f9\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.userCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.warning','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.elements.4.width','100'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.name','\"Content\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.uid','\"fc63fd6c-bda2-4fe9-8f2c-748799d93b11\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.fieldLayouts.ae0d8925-821f-4114-9eef-14f68a9bc09f.tabs.0.userCondition','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.handle','\"whyChooseTreatment\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.hasTitleField','true'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.icon','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.name','\"Why Choose Treatment\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.showSlugField','false'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.showStatusField','true'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.slugTranslationKeyFormat','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.slugTranslationMethod','\"site\"'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.titleFormat','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.titleTranslationKeyFormat','null'),
('entryTypes.73bbd50d-5a76-4478-ab66-7b936845b6d8.titleTranslationMethod','\"site\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.color','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.description','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.cardThumbAlignment','\"end\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.dateAdded','\"2025-12-07T08:18:38+00:00\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.editCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.fieldUid','\"943e5167-350b-4d8b-b45c-796076d68a2b\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.handle','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.instructions','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.label','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.required','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.tip','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.uid','\"e376cfa3-16b2-41b2-b6c8-bf077d006110\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.warning','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.0.width','100'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.dateAdded','\"2025-12-07T08:18:38+00:00\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.editCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.fieldUid','\"ee1cc83b-5b4e-4514-85b3-075cee380875\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.handle','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.instructions','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.label','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.required','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.tip','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.uid','\"bba64c5f-ac72-420f-a677-ed6defbb3b82\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.warning','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.1.width','100'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.dateAdded','\"2025-12-07T08:18:38+00:00\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.editCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.fieldUid','\"caa7cec3-0dfe-41aa-a5d6-499b0bf216f0\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.handle','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.instructions','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.label','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.required','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.tip','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.uid','\"1a19c91a-121e-4f3c-b097-a360b3243240\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.warning','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.2.width','100'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.dateAdded','\"2025-12-07T08:18:38+00:00\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.editCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.fieldUid','\"047fdd15-181a-45a8-b054-bf13b0d2bfb5\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.handle','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.instructions','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.label','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.required','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.tip','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.uid','\"80b008ae-e67c-45de-800e-76fc0fdcdc2a\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.warning','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.3.width','100'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.dateAdded','\"2025-12-07T08:18:38+00:00\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.editCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.fieldUid','\"0ef98093-5a9d-410d-a094-b2e111e0c6d1\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.handle','\"spacingAbove\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.instructions','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.label','\"Spacing Above\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.required','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.tip','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.uid','\"a15df883-dc8f-4e20-af61-cedce78c133b\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.warning','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.4.width','100'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.dateAdded','\"2025-12-07T08:18:38+00:00\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.editCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.elementCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.fieldUid','\"0ef98093-5a9d-410d-a094-b2e111e0c6d1\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.handle','\"spacingBelow\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.instructions','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.label','\"Spacing Below\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.required','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.tip','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.uid','\"8b2111a4-335b-497f-94da-aaed1b3e0328\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.warning','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.elements.5.width','100'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.name','\"Content\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.uid','\"8c67469c-af00-44d2-b6ff-c5de79f483e7\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.fieldLayouts.43a087d6-3caf-4c46-a9c6-1a96ead40d01.tabs.0.userCondition','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.handle','\"divider\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.hasTitleField','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.icon','\"horizontal-rule\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.name','\"Divider\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.showSlugField','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.showStatusField','false'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.slugTranslationKeyFormat','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.slugTranslationMethod','\"site\"'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.titleFormat','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.titleTranslationKeyFormat','null'),
('entryTypes.76fcee0a-a302-4817-8d2e-74b446967ecd.titleTranslationMethod','\"site\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.color','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.description','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.cardThumbAlignment','\"end\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elementCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.autocomplete','false'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.autocorrect','true'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.class','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.dateAdded','\"2025-12-03T16:51:06+00:00\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.disabled','false'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.elementCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.id','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.inputType','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.instructions','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.label','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.max','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.min','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.name','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.orientation','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.placeholder','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.readonly','false'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.required','true'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.size','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.step','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.tip','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.title','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.uid','\"ad0ae070-0f9c-4ed7-9dab-0eb4f1d48d53\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.userCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.warning','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.0.width','100'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.dateAdded','\"2025-12-03T17:03:48+00:00\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.editCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.elementCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.handle','\"stepTitle\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.instructions','\"Title for this step (e.g., \\\"Initial Consultation\\\", \\\"Treatment Plan\\\")\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.label','\"Step Title\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.required','false'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.tip','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.uid','\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.userCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.warning','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.1.width','100'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.dateAdded','\"2025-12-03T17:03:48+00:00\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.editCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.elementCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.handle','\"stepDescription\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.instructions','\"Description of what happens in this step\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.label','\"Step Description\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.required','false'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.tip','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.uid','\"a3a4499b-38c4-49c1-93eb-05cf9d0e9152\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.userCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.warning','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.2.width','100'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.dateAdded','\"2025-12-03T17:03:48+00:00\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.editCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.elementCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.handle','\"showButton\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.instructions','\"Toggle to show/hide a CTA button at the bottom\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.label','\"Show Button\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.required','false'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.tip','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.uid','\"6c588796-bb27-4fdf-9590-a50a0e275ca7\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.userCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.warning','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.elements.3.width','100'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.name','\"Content\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.uid','\"ab37688c-1e5a-4c5b-a02b-de9590033ad4\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.fieldLayouts.a917c1de-5ddb-4aa1-87e3-146bd4343052.tabs.0.userCondition','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.handle','\"step\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.hasTitleField','true'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.icon','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.name','\"Step Type\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.showSlugField','true'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.showStatusField','true'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.slugTranslationKeyFormat','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.slugTranslationMethod','\"site\"'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.titleFormat','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.titleTranslationKeyFormat','null'),
('entryTypes.7727022a-2c1e-4699-8d36-3c9777b0a4e6.titleTranslationMethod','\"site\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.color','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.description','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.cardThumbAlignment','\"end\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elementCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.autocomplete','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.autocorrect','true'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.class','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.dateAdded','\"2026-02-20T13:56:59+00:00\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.disabled','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.elementCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.id','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.inputType','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.instructions','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.label','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.max','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.min','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.name','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.orientation','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.placeholder','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.readonly','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.required','true'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.size','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.step','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.tip','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.title','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.uid','\"fd2186c1-9d87-453b-8aed-f7a61bf5ec54\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.userCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.warning','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.0.width','100'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.dateAdded','\"2026-02-20T14:12:34+00:00\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.editCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.elementCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.handle','\"iconCard\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.instructions','\"FontAwesome icon class (e.g. \'fa-solid fa-sterlng-sign\')\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.label','\"Icon\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.required','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.tip','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.uid','\"4c4b22bb-5fe8-416c-8823-615a5318a82f\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.userCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.warning','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.1.width','100'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.dateAdded','\"2026-02-20T14:12:34+00:00\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.editCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.elementCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.handle','\"titleCard\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.instructions','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.label','\"Title\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.required','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.tip','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.uid','\"7b421ddd-f8ff-42a3-8082-c778636c4b86\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.userCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.warning','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.2.width','100'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.dateAdded','\"2026-02-20T14:12:34+00:00\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.editCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.elementCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.handle','\"value\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.instructions','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.label','\"Value\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.required','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.tip','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.uid','\"313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.userCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.warning','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.3.width','100'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.dateAdded','\"2026-02-20T14:12:34+00:00\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.editCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.elementCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.handle','\"description\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.instructions','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.label','\"Description\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.required','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.tip','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.uid','\"0f7cd089-87a8-4797-9e78-54d87e5faefd\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.userCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.warning','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.elements.4.width','100'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.name','\"Content\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.uid','\"f4f19732-cedf-4661-9f19-80a0d2b65ed4\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.fieldLayouts.2b18cc12-ecdb-43ef-8a5c-4ae3a0890817.tabs.0.userCondition','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.handle','\"overviewCard\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.hasTitleField','true'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.icon','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.name','\"Overview Card\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.showSlugField','false'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.showStatusField','true'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.slugTranslationKeyFormat','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.slugTranslationMethod','\"site\"'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.titleFormat','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.titleTranslationKeyFormat','null'),
('entryTypes.8fe1fdea-baec-48ee-b98e-6dc941fa6808.titleTranslationMethod','\"site\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.color','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.description','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.cardThumbAlignment','\"end\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.autocomplete','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.autocorrect','true'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.class','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.dateAdded','\"2025-12-06T10:27:04+00:00\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.disabled','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.id','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.inputType','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.instructions','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.label','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.max','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.min','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.name','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.orientation','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.placeholder','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.readonly','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.required','true'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.size','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.step','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.tip','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.title','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.uid','\"c6dbaed8-9073-4fc7-bf33-31a2d499bb1f\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.warning','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.0.width','100'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.dateAdded','\"2025-12-06T10:30:27+00:00\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.editCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.handle','\"ctaHeading\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.instructions','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.label','\"CTA Heading\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.required','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.tip','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.uid','\"14c2af89-da53-4d01-ae06-433c386d36c3\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.warning','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.1.width','100'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.dateAdded','\"2025-12-06T10:30:27+00:00\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.editCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.handle','\"ctaDescription\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.instructions','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.label','\"CTA Description\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.required','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.tip','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.uid','\"4c134696-2755-4438-9b8a-5b95d32d3cb6\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.warning','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.2.width','100'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.dateAdded','\"2025-12-06T10:30:27+00:00\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.editCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.handle','\"ctaButtonText\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.instructions','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.label','\"CTA Butoon Text\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.required','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.tip','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.uid','\"7185c98c-c9bb-46f3-b785-e1e137bf4fce\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.warning','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.3.width','100'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.dateAdded','\"2025-12-06T10:30:27+00:00\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.editCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.handle','\"ctaButtonUrl\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.instructions','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.label','\"CTA Button URL\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.required','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.tip','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.uid','\"59d47b20-e597-4c63-8a0a-700e4fd4e0b1\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.warning','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.4.width','100'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.dateAdded','\"2025-12-06T10:30:27+00:00\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.editCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.elementCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.fieldUid','\"4626b440-5a67-45f1-a605-bbf880f31698\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.handle','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.instructions','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.label','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.required','false'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.tip','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.uid','\"52f962b8-3d4a-4f5e-8e56-eb9108a237b7\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.warning','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.elements.5.width','100'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.name','\"Content\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.uid','\"53fff9e5-db4b-4204-b445-d9910e995e69\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.fieldLayouts.eccebe4c-1c2b-43e1-98d8-20c8257aef82.tabs.0.userCondition','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.handle','\"ctaBanner\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.hasTitleField','true'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.icon','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.name','\"CTA Banner\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.showSlugField','true'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.showStatusField','true'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.slugTranslationKeyFormat','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.slugTranslationMethod','\"site\"'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.titleFormat','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.titleTranslationKeyFormat','null'),
('entryTypes.925b43fe-a66a-4a29-94b1-05ef478160ea.titleTranslationMethod','\"site\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.color','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.description','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.cardThumbAlignment','\"end\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.autocomplete','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.autocorrect','true'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.class','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.dateAdded','\"2025-12-06T10:04:27+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.disabled','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.id','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.inputType','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.label','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.max','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.min','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.name','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.orientation','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.placeholder','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.readonly','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.required','true'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.size','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.step','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.title','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.uid','\"7693b2be-928a-4ba8-b542-0471511e3361\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.0.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.dateAdded','\"2025-12-06T10:08:42+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.editCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.handle','\"headingText\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.label','\"Heading Text\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.required','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.uid','\"4ce0ac7c-152d-4795-89c2-faff0d75a7ed\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.1.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.dateAdded','\"2025-12-06T10:08:42+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.editCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.fieldUid','\"913d69e2-6c95-4e17-a8dd-e16598492091\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.handle','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.label','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.required','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.uid','\"d786a952-f7f5-459f-8a46-f32ff468d4f6\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.2.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.dateAdded','\"2025-12-06T10:08:42+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.editCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.fieldUid','\"8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.handle','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.label','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.required','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.uid','\"dc38184a-b41a-44b1-980c-64e7c324f41a\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.3.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.dateAdded','\"2025-12-06T10:08:42+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.editCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.fieldUid','\"1f8e8ef2-1c2c-4228-96d5-7af284255ba0\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.handle','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.label','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.required','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.uid','\"e143d6ba-f2c7-4712-922a-18c4986f97a5\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.4.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.dateAdded','\"2025-12-06T10:08:42+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.editCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.handle','\"addUnderline\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.label','\"Add Underline\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.required','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.uid','\"e0f06b72-a283-4059-ad08-76e79c84e85e\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.5.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.dateAdded','\"2025-12-06T10:08:42+00:00\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.editCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.elementCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.fieldUid','\"4ae0713a-c032-477f-9cfa-9dded22631fb\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.handle','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.instructions','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.label','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.required','false'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.tip','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.uid','\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.warning','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.elements.6.width','100'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.name','\"Content\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.uid','\"9c223264-cddb-4125-a891-2d2d96d9a260\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.fieldLayouts.97bdf04b-47d2-4bce-966c-3947719becc2.tabs.0.userCondition','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.handle','\"heading\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.hasTitleField','true'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.icon','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.name','\"Heading\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.showSlugField','true'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.showStatusField','true'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.slugTranslationKeyFormat','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.slugTranslationMethod','\"site\"'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.titleFormat','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.titleTranslationKeyFormat','null'),
('entryTypes.9ab60243-add9-4782-b48b-04f98b59f374.titleTranslationMethod','\"site\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.color','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.description','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.cardThumbAlignment','\"end\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elementCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.autocomplete','false'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.autocorrect','true'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.class','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.dateAdded','\"2026-02-22T00:34:42+00:00\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.disabled','false'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.elementCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.id','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.inputType','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.instructions','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.label','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.max','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.min','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.name','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.orientation','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.placeholder','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.readonly','false'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.required','true'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.size','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.step','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.tip','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.title','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.uid','\"e7cedc6d-0fa9-4132-803b-d627d59ff883\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.userCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.warning','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.0.width','100'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.dateAdded','\"2026-02-22T00:36:31+00:00\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.editCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.elementCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.handle','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.instructions','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.label','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.required','false'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.tip','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.uid','\"46e8d394-7104-4044-85de-cc44d6cab29b\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.userCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.warning','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.1.width','100'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.dateAdded','\"2026-02-22T00:36:31+00:00\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.editCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.elementCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.fieldUid','\"509a8ddb-54bf-42d0-b022-428404fd505b\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.handle','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.instructions','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.label','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.required','false'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.tip','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.uid','\"bb4602f1-c627-4a21-a59f-0b7e68875849\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.userCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.warning','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.elements.2.width','100'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.name','\"Content\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.uid','\"6b3c6c36-7c95-472b-9077-52ab975809af\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.fieldLayouts.a7db6a11-8a4d-4345-ba39-715ea610cd04.tabs.0.userCondition','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.handle','\"caseStudies\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.hasTitleField','true'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.icon','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.name','\"Case Studies\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.showSlugField','true'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.showStatusField','true'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.slugTranslationKeyFormat','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.slugTranslationMethod','\"site\"'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.titleFormat','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.titleTranslationKeyFormat','null'),
('entryTypes.9d5f9d7a-c338-4faf-8a54-834d4d403703.titleTranslationMethod','\"site\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.allowLineBreaksInTitles','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.color','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.description','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.cardThumbAlignment','\"end\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elementCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.autocomplete','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.autocorrect','true'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.class','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.dateAdded','\"2026-03-25T11:29:50+00:00\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.disabled','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.elementCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.id','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.inputType','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.instructions','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.label','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.max','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.min','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.name','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.orientation','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.placeholder','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.readonly','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.required','true'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.size','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.step','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.tip','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.title','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.uid','\"f17107f1-5cd4-4054-9ef3-6e55cb1f0255\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.userCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.warning','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.0.width','100'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.dateAdded','\"2026-03-25T11:32:58+00:00\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.editCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.elementCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.handle','\"groupTitle\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.instructions','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.label','\"Group Title\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.required','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.tip','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.uid','\"39755301-5fbf-46e0-8117-b7ba7b6c1b51\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.userCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.warning','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.1.width','100'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.dateAdded','\"2026-03-25T11:32:58+00:00\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.editCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.elementCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.handle','\"groupDescription\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.instructions','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.label','\"Group Description\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.required','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.tip','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.uid','\"299c38c6-3179-443f-bc02-f3198c3b9b23\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.userCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.warning','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.2.width','100'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.dateAdded','\"2026-03-25T11:32:58+00:00\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.editCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.elementCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.fieldUid','\"5a0747b5-c1cc-4f6f-a103-e9256508f69c\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.handle','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.instructions','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.label','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.required','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.tip','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.uid','\"8fc57e3a-5539-4a2a-a35a-c3535948b1da\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.userCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.warning','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.elements.3.width','100'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.name','\"Content\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.uid','\"0103b931-87ba-4824-80dd-a3f46608ee4c\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.tabs.0.userCondition','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.fieldLayouts.fe4fa8b8-f829-4fb8-a025-eac33c33956d.thumbFieldKey','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.handle','\"priceGroup\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.hasTitleField','true'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.icon','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.name','\"Price Group\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.showSlugField','false'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.showStatusField','true'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.slugTranslationKeyFormat','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.slugTranslationMethod','\"site\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.titleFormat','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.titleTranslationKeyFormat','null'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.titleTranslationMethod','\"site\"'),
('entryTypes.a599255c-9623-461c-957c-ae0c5798c2a5.uiLabelFormat','\"{title}\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.color','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.description','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.cardThumbAlignment','\"end\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.0.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.0.heading','\"LAYOUT SETTINGS\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.0.uid','\"9308617c-ffbc-477a-acb9-d9d633900a38\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.1.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.1.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\LineBreak\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.1.uid','\"c20f37c9-e3ae-4a36-a060-735afa1bc610\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.1.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.dateAdded','\"2025-12-04T19:16:40+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.fieldUid','\"2742df1d-cef9-4fbb-863e-bae8865170f9\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.uid','\"c6ba37df-5856-4b99-abff-ee5ac2023dee\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.2.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.dateAdded','\"2025-12-04T19:16:40+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.fieldUid','\"d732a944-da30-458b-be66-3d165633012d\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.uid','\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.3.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.dateAdded','\"2025-12-04T19:16:40+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.fieldUid','\"62672829-7d44-40d2-b9bd-02ee01a752a3\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.uid','\"15d88486-9f10-4200-8468-69effb7550d6\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.4.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.dateAdded','\"2025-12-04T19:16:40+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.fieldUid','\"592ab577-259f-4a99-a41b-952ec300da4b\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.uid','\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.elements.5.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.name','\"Layout Settings\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.uid','\"ac592331-1540-4151-ac51-a1802edc70fa\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.0.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.0.heading','\"CONTENT AREAS\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.0.uid','\"1ce92725-f02b-40b2-9873-35f4a4e51901\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.1.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.1.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\LineBreak\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.1.uid','\"b00af29d-42ce-47a6-8117-747c5a9ebfd7\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.1.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.autocapitalize','true'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.autocomplete','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.autocorrect','true'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.class','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.dateAdded','\"2025-12-07T08:41:05+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.disabled','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.id','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.inputType','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.max','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.min','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.name','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.orientation','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.placeholder','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.readonly','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.required','true'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.size','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.step','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.title','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.uid','\"e274dc29-adc9-4481-af46-1dc6bb770fe4\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.2.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.dateAdded','\"2025-12-06T10:39:06+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.fieldUid','\"109e9e12-5487-40f4-b216-9f942305125d\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.uid','\"7b267ef7-86ed-4004-9260-e710ae7fb28e\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.elements.3.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.name','\"Content Columns\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.uid','\"15654743-83c5-4751-9166-5e2b3e66a9cb\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.1.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.0.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.0.heading','\"COLOR SCHEME SETTINGS\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.0.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.0.uid','\"c22ddc37-5921-47b4-bc2a-66f8d2d9f62d\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.1.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.1.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.1.type','\"craft\\\\fieldlayoutelements\\\\LineBreak\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.1.uid','\"7d4012c9-2f82-41d8-9dee-ba8cefe9266c\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.1.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.fieldUid','\"4a83aae4-2c1f-4a29-beff-16feb9d628ce\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.uid','\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.2.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.handle','\"backgroundImage\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.label','\"Background Image\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.uid','\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.3.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.class','\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.conditionRules.0.class','\"craft\\\\fields\\\\conditions\\\\RelationalFieldConditionRule\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.conditionRules.0.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.conditionRules.0.layoutElementUid','\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.conditionRules.0.operator','\"notempty\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.conditionRules.0.uid','\"6e61caa4-c529-444f-b719-5181c9d7904a\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.elementType','\"craft\\\\elements\\\\Entry\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.elementCondition.fieldContext','\"global\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.handle','\"backgroundOverlay\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.instructions','\"Adds a dark overlay over background image\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.label','\"Background Overlay\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.uid','\"12ab5942-8eb1-4e8d-af73-0d67149caea5\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.4.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.class','\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.conditionRules.0.class','\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.conditionRules.0.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.conditionRules.0.layoutElementUid','\"12ab5942-8eb1-4e8d-af73-0d67149caea5\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.conditionRules.0.uid','\"34bbe814-798c-48d7-ac2d-7caadff5061c\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.conditionRules.0.value','true'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.elementType','\"craft\\\\elements\\\\Entry\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.elementCondition.fieldContext','\"global\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.fieldUid','\"7b95f861-a264-4830-a26c-4640458dbde2\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.uid','\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.5.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.dateAdded','\"2025-12-04T19:29:53+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.fieldUid','\"858b871b-ca80-493b-b96a-32663892e6bd\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.uid','\"08c9532b-900d-4f33-8644-fbd2b4a0448e\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.elements.6.width','50'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.name','\"Color & Background\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.uid','\"07ed9637-eab5-4e0d-a799-21dd1471884a\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.2.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.0.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.0.heading','\"SPACING & WIDTH SETTINGS\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.0.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.0.uid','\"d79e2454-bdce-499b-b742-3588f7a75724\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.1.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.1.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.1.type','\"craft\\\\fieldlayoutelements\\\\LineBreak\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.1.uid','\"4c06ec8c-d55c-4123-b712-bc2c64741f34\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.1.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.fieldUid','\"909cef3c-eb8f-41dc-859a-4fef188161a6\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.uid','\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.2.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.fieldUid','\"f7c46ae8-7a7a-469f-8279-f8e6017b717f\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.uid','\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.3.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.fieldUid','\"f7c46ae8-7a7a-469f-8279-f8e6017b717f\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.handle','\"paddingBottom\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.label','\"Section Padding Bottom\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.uid','\"03a38015-ace3-4900-9eb7-553ae2371d19\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.4.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.handle','\"addTopDivider\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.label','\"Add Top Divider\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.uid','\"24a9c864-a05b-496f-92d0-6072f45d84fe\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.5.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.fieldUid','\"775f6523-487c-4213-829e-be87bd6546f0\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.uid','\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.elements.6.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.name','\"Spacing & Width\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.uid','\"2403eff2-36ca-4b7d-b049-1425e9609942\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.3.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.0.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.0.heading','\"ADVANCED SETTINGS\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.0.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.0.uid','\"500aa93f-6f88-4b27-89ca-239f5bbe5d64\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.1.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.1.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.1.type','\"craft\\\\fieldlayoutelements\\\\LineBreak\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.1.uid','\"b221d6a4-bd08-4b53-9540-e6f987ce0403\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.1.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.class','\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.conditionRules.0.class','\"craft\\\\fields\\\\conditions\\\\LightswitchFieldConditionRule\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.conditionRules.0.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.conditionRules.0.layoutElementUid','\"24a9c864-a05b-496f-92d0-6072f45d84fe\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.conditionRules.0.uid','\"ad6d7ad6-b29f-4d29-ac97-b74c1388b042\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.conditionRules.0.value','true'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.elementType','\"craft\\\\elements\\\\Entry\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.elementCondition.fieldContext','\"global\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.fieldUid','\"81563d83-c326-4c43-b097-a04688342405\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.uid','\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.2.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.handle','\"sectionIdAnchor\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.instructions','\"For anchor links (e.g., \\\"about-us\\\")\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.label','\"Section ID\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.uid','\"ede60280-5b1f-46f4-ba48-87483c912289\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.3.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.handle','\"customClasses\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.instructions','\"For advanced styling\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.label','\"Custom CSS Classes\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.uid','\"18334eca-71b2-4090-ac35-20abdb207c33\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.4.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.fieldUid','\"3c1a81fc-6fae-4278-8d85-367a118abfbb\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.handle','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.label','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.uid','\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.5.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.dateAdded','\"2025-12-06T18:43:17+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.editCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.fieldUid','\"3c1a81fc-6fae-4278-8d85-367a118abfbb\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.handle','\"showMobile\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.instructions','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.label','\"Show on Mobile\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.required','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.tip','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.uid','\"d41d3f08-74c0-46b1-804a-884be4a6fffa\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.warning','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.elements.6.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.name','\"Advanced\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.uid','\"4b73d7c9-aab1-42dd-806d-a76d2b632b36\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.4.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.dateAdded','\"2025-12-07T00:06:32+00:00\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.elementCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.template','\"_entry-types/flexibleSectionType.twig\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.templateMode','\"site\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.type','\"craft\\\\fieldlayoutelements\\\\Template\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.uid','\"042c09e5-5c3b-4ca6-b5c0-df9078e611d2\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.elements.0.width','100'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.name','\"How To Use\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.uid','\"581b1987-0817-4468-8faf-2cbd0b08718e\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.fieldLayouts.f6e11286-c47e-45f7-984a-9159d544e377.tabs.5.userCondition','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.handle','\"flexibleSectionType\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.hasTitleField','true'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.icon','\"objects-column\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.name','\"Flexible Section Type\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.showSlugField','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.showStatusField','false'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.slugTranslationKeyFormat','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.slugTranslationMethod','\"site\"'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.titleFormat','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.titleTranslationKeyFormat','null'),
('entryTypes.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8.titleTranslationMethod','\"site\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.color','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.description','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.cardThumbAlignment','\"end\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.autocomplete','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.autocorrect','true'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.class','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.dateAdded','\"2025-12-04T17:48:23+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.disabled','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.id','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.inputType','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.label','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.max','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.min','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.name','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.orientation','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.placeholder','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.readonly','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.required','true'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.size','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.step','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.title','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.uid','\"197021d0-64df-45f5-a3ec-4d65243d4bd5\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.0.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.handle','\"topLabel\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.label','\"Top Label\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.uid','\"28fc0304-69b6-43ac-8c99-e2c875a4a532\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.1.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.handle','\"heading\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.uid','\"06865648-84b5-46f3-8fd0-48993e09ff0b\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.2.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.handle','\"subheading\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.label','\"Subheading\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.uid','\"259a67ea-0a0e-4406-97b8-7bbb2932f72d\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.3.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.fieldUid','\"df77759d-bc11-4545-8c34-f63e1bbd65b2\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.handle','\"displayMode\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.label','\"Display Mode\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.uid','\"214c0ead-2e2c-4485-9e17-5ad3c84ae9d5\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.4.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.fieldUid','\"a906962a-296e-41d6-a082-1398608c0ead\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.handle','\"limit\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.label','\"Limit\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.uid','\"1469dd96-fe49-4499-9d14-f4336216d9f9\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.5.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.fieldUid','\"45b2b61e-fd67-48d4-8ce2-35e95068be62\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.handle','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.label','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.uid','\"0bc96d1c-7d25-4448-9f0a-aa33ea239a34\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.6.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.dateAdded','\"2025-12-04T17:54:28+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.fieldUid','\"922aab16-db12-4e15-a3ef-88a4c9de0705\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.handle','\"showGoogleBadge\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.instructions','\"Shows/hides the Google Reviews badge\\r\\n\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.label','\"Show Google Badge\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.uid','\"a25ceaa8-9edc-4eb2-a59d-a1340895067d\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.7.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.dateAdded','\"2025-12-04T18:13:12+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.handle','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.instructions','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.label','\"Google Reviews URL\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.uid','\"5dbdee7d-8d17-44c9-8581-679879c315ca\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.8.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.dateAdded','\"2025-12-04T18:15:52+00:00\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.editCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.elementCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.fieldUid','\"a906962a-296e-41d6-a082-1398608c0ead\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.handle','\"numberOfReviews\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.instructions','\"How many reviews in total are in Google Reviews\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.label','\"Number of Reviews\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.required','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.tip','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.uid','\"4977ef85-8f70-4b78-8499-ac4fe3031f69\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.warning','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.elements.9.width','100'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.name','\"Content\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.uid','\"8776cdec-7284-47c2-8c5b-d806efbc3b3b\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.fieldLayouts.72570930-932a-4eef-a4bb-645070bc1747.tabs.0.userCondition','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.handle','\"testimonialsGrid\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.hasTitleField','true'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.icon','\"grid-2-plus\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.name','\"Testimonials Grid\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.showSlugField','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.showStatusField','false'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.slugTranslationKeyFormat','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.slugTranslationMethod','\"site\"'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.titleFormat','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.titleTranslationKeyFormat','null'),
('entryTypes.b6a30616-2a75-4a5e-997a-a06c3596ad23.titleTranslationMethod','\"site\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.allowLineBreaksInTitles','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.color','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.description','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.cardThumbAlignment','\"end\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elementCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.autocomplete','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.autocorrect','true'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.class','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.dateAdded','\"2026-02-20T13:31:49+00:00\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.disabled','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.elementCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.id','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.inputType','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.instructions','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.label','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.max','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.min','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.name','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.orientation','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.placeholder','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.readonly','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.required','true'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.size','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.step','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.tip','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.title','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.uid','\"e87bf0dd-627f-418d-a7aa-ec51ebc2b92b\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.userCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.warning','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.0.width','100'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.dateAdded','\"2026-02-20T13:36:59+00:00\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.editCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.elementCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.handle','\"question\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.instructions','\"Enter the FAQ question\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.label','\"Question\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.required','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.tip','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.uid','\"df226ae8-fb69-4583-a72e-59db675487cd\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.userCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.warning','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.1.width','100'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.dateAdded','\"2026-03-20T10:11:28+00:00\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.editCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.elementCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.handle','\"answer\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.instructions','\"Enter the FAQ answer\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.label','\"Answer\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.required','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.tip','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.uid','\"8c35ca6a-582e-4a50-8ba6-0df884b31d57\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.userCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.warning','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.width','100'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.name','\"Content\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.uid','\"7eb2ce31-215f-437c-a590-ca7ad10cedb4\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.userCondition','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.thumbFieldKey','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.handle','\"faqItem\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.hasTitleField','true'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.icon','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.name','\"FAQ Item\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.showSlugField','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.showStatusField','true'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.slugTranslationKeyFormat','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.slugTranslationMethod','\"site\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.titleFormat','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.titleTranslationKeyFormat','null'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.titleTranslationMethod','\"site\"'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.uiLabelFormat','\"{title}\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.color','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.description','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.cardThumbAlignment','\"end\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.autocomplete','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.autocorrect','true'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.class','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.dateAdded','\"2026-02-21T21:48:08+00:00\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.disabled','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.id','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.inputType','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.instructions','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.label','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.max','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.min','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.name','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.orientation','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.placeholder','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.readonly','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.required','true'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.size','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.step','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.tip','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.title','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.uid','\"ed8ce1c4-7232-4f75-a88f-ae09db48eb41\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.warning','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.0.width','100'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.dateAdded','\"2026-02-21T22:37:00+00:00\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.editCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.handle','\"sectionDescription\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.instructions','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.label','\"Section description\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.required','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.tip','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.uid','\"25b468f4-fac1-403c-a17f-13e13e0e9b60\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.warning','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.1.width','100'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.dateAdded','\"2026-02-21T22:37:00+00:00\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.editCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.fieldUid','\"33126ba0-77bf-4fda-aec5-cf3893199a82\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.handle','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.instructions','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.label','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.required','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.tip','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.uid','\"042d0ccf-eca5-4519-a10e-ef2bb83920f3\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.warning','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.2.width','100'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.dateAdded','\"2026-02-21T22:37:00+00:00\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.editCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.handle','\"linkText\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.instructions','\"For e.g. \\\"Read more about this treatment\\\"\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.label','\"Link text\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.required','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.tip','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.uid','\"7d345954-18f1-422e-8882-8ad6f88da558\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.warning','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.3.width','100'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.dateAdded','\"2026-02-21T22:37:00+00:00\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.editCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.fieldUid','\"b7236eb7-32e2-438c-a8c1-80c2d52e82db\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.handle','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.instructions','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.label','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.required','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.tip','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.uid','\"714e1431-03c0-455c-8957-dd9d22173d46\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.warning','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.4.width','100'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.dateAdded','\"2026-02-21T22:37:00+00:00\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.editCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.elementCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.handle','\"linkUrl\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.instructions','\"if `Link URL` has a selected entry, its URL is used; otherwise `Related treatment` is used. \"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.label','\"Link URL\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.required','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.tip','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.uid','\"9287da5b-f2ab-477a-beb5-7dea375cd6a5\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.warning','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.elements.5.width','100'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.name','\"Content\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.uid','\"97722891-21ae-48d5-a519-a9ac68397ae0\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.fieldLayouts.c8dd5fc7-992a-48a6-9148-79caab81029e.tabs.0.userCondition','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.handle','\"priceSection\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.hasTitleField','true'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.icon','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.name','\"Price Section\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.showSlugField','false'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.showStatusField','true'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.slugTranslationKeyFormat','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.slugTranslationMethod','\"site\"'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.titleFormat','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.titleTranslationKeyFormat','null'),
('entryTypes.bbecd3da-a558-43ea-aee4-74458a6e88f6.titleTranslationMethod','\"site\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.color','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.description','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.cardThumbAlignment','\"end\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elementCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.autocomplete','false'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.autocorrect','true'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.class','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.dateAdded','\"2025-12-03T07:28:55+00:00\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.disabled','false'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.elementCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.id','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.inputType','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.instructions','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.label','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.max','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.min','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.name','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.orientation','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.placeholder','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.readonly','false'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.required','true'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.size','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.step','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.tip','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.title','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.uid','\"5cd46adf-4b48-40d7-891c-5533345b7387\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.userCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.warning','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.0.width','100'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.dateAdded','\"2025-12-03T07:31:05+00:00\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.editCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.elementCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.handle','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.instructions','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.label','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.required','false'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.tip','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.uid','\"966e4d54-8540-4d35-be11-59c9ca1f49b0\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.userCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.warning','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.1.width','100'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.dateAdded','\"2025-12-03T07:31:05+00:00\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.editCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.elementCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.handle','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.instructions','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.label','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.required','false'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.tip','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.uid','\"83e6b444-62be-401e-aadc-b5db0004e217\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.userCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.warning','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.elements.2.width','100'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.name','\"Content\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.uid','\"f80df571-8a36-4d57-923a-6e30e4754678\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.fieldLayouts.af153483-ea14-40b8-9d98-19885f33d008.tabs.0.userCondition','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.handle','\"blog\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.hasTitleField','true'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.icon','\"feather-pointed\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.name','\"Blog\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.showSlugField','true'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.showStatusField','true'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.slugTranslationKeyFormat','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.slugTranslationMethod','\"site\"'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.titleFormat','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.titleTranslationKeyFormat','null'),
('entryTypes.bfa7f962-3b34-407d-a1b8-218e82ea2a0b.titleTranslationMethod','\"site\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.allowLineBreaksInTitles','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.color','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.description','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.cardThumbAlignment','\"end\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.autocomplete','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.autocorrect','true'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.class','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.dateAdded','\"2026-04-06T08:31:47+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.disabled','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.id','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.inputType','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.instructions','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.label','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.max','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.min','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.name','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.orientation','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.placeholder','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.readonly','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.required','true'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.size','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.step','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.title','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.uid','\"c34bb962-e0e2-4521-829f-e3c4095f68ca\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.0.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.dateAdded','\"2026-04-06T08:34:53+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.editCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.handle','\"sectionHeading\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.instructions','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.label','\"Heading\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.required','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.uid','\"0e99218a-a088-4a59-8372-12392a9ed2a1\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.1.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.dateAdded','\"2026-04-06T08:34:53+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.editCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.handle','\"sectionDescription\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.instructions','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.label','\"Description\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.required','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.uid','\"2ef2608f-2abf-4e80-9c32-a5f6f6c843da\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.2.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.dateAdded','\"2026-04-20T19:47:43+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.editCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.fieldUid','\"57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.handle','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.instructions','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.label','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.required','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.uid','\"366f0eb0-c422-44e2-b37f-e51d412bcac7\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.3.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.dateAdded','\"2026-04-06T08:34:53+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.editCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.handle','\"heroYoutubeUrl\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.instructions','\"Add the YouTube link for the video here\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.label','\"YouTube URL\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.required','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.uid','\"214da0db-9e00-4448-aebd-ac608a67c449\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.4.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.dateAdded','\"2026-04-20T19:47:43+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.editCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.class','\"craft\\\\elements\\\\conditions\\\\entries\\\\EntryCondition\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.conditionRules.0.class','\"craft\\\\fields\\\\conditions\\\\OptionsFieldConditionRule\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.conditionRules.0.fieldUid','\"57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.conditionRules.0.layoutElementUid','\"366f0eb0-c422-44e2-b37f-e51d412bcac7\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.conditionRules.0.operator','\"in\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.conditionRules.0.uid','\"f727172f-122d-4235-af09-48135d626481\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.conditionRules.0.values.0','\"twoVideos\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.elementType','\"craft\\\\elements\\\\Entry\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementCondition.fieldContext','\"global\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.handle','\"heroYoutubeUrl2\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.instructions','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.label','\"YouTube URL\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.required','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.uid','\"e431f461-d094-4773-879d-6698d08f56e5\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.5.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.dateAdded','\"2026-04-06T08:34:53+00:00\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.editCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.elementCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.fieldUid','\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.handle','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.instructions','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.label','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.required','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.tip','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.uid','\"ebb0ff55-f947-4817-b289-a0e9eac07029\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.warning','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.elements.6.width','100'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.name','\"Content\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.uid','\"b43ad0fc-04ba-4d04-8ef0-c01c3029a7b0\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.tabs.0.userCondition','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.fieldLayouts.5078e74a-726c-409f-9bb0-54f075d859f6.thumbFieldKey','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.handle','\"videoSection\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.hasTitleField','true'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.icon','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.name','\"Video Section\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.showSlugField','false'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.showStatusField','true'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.slugTranslationKeyFormat','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.slugTranslationMethod','\"site\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.titleFormat','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.titleTranslationKeyFormat','null'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.titleTranslationMethod','\"site\"'),
('entryTypes.bfb7ac1d-af5b-4148-9942-8cb360b7a33c.uiLabelFormat','\"{title}\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.allowLineBreaksInTitles','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.color','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.description','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.cardThumbAlignment','\"end\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elementCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.autocomplete','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.autocorrect','true'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.class','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.dateAdded','\"2026-02-21T21:57:59+00:00\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.disabled','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.elementCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.id','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.inputType','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.instructions','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.label','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.max','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.min','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.name','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.orientation','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.placeholder','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.readonly','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.required','true'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.size','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.step','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.tip','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.title','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.uid','\"002254c0-5ee5-48c7-9803-71eab8ebb3a4\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.userCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.warning','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.0.width','100'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.dateAdded','\"2026-02-21T22:01:44+00:00\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.editCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.elementCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.handle','\"itemLabel\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.instructions','\"Treatment name\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.label','\"Treatment name\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.required','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.tip','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.uid','\"b9fb345b-3128-4265-b3bd-58b1d523a332\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.userCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.warning','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.1.width','100'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.dateAdded','\"2026-02-21T22:01:44+00:00\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.editCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.elementCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.handle','\"itemPrice\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.instructions','\"Treatment price\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.label','\"Price\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.required','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.tip','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.uid','\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.userCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.warning','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.2.width','100'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.dateAdded','\"2026-03-27T14:11:08+00:00\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.editCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.elementCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.handle','\"additionalText\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.instructions','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.label','\"Additional text\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.required','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.tip','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.uid','\"b5c6462f-898a-423d-8e1b-5d75cc234a5c\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.userCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.warning','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.elements.3.width','100'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.name','\"Content\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.uid','\"bf6d1833-c148-4f82-9bc3-37a34eaaf687\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.tabs.0.userCondition','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.fieldLayouts.93185d2e-0e62-417c-bf89-b2120bc51ad7.thumbFieldKey','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.handle','\"priceRow\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.hasTitleField','true'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.icon','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.name','\"Price row\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.showSlugField','false'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.showStatusField','true'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.slugTranslationKeyFormat','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.slugTranslationMethod','\"site\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.titleFormat','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.titleTranslationKeyFormat','null'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.titleTranslationMethod','\"site\"'),
('entryTypes.c1319250-2c2b-4d15-a2da-30fa401e02da.uiLabelFormat','\"{title}\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.allowLineBreaksInTitles','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.color','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.description','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.cardThumbAlignment','\"end\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.autocomplete','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.autocorrect','true'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.class','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.dateAdded','\"2026-02-20T14:36:22+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.disabled','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.id','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.inputType','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.instructions','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.label','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.max','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.min','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.name','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.orientation','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.placeholder','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.readonly','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.required','true'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.size','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.step','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.title','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.uid','\"3d572f7d-2dcc-41b1-b9e3-1a379b1330e1\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.0.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.handle','\"treatmentTitle\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.instructions','\"Main title (e.g., \'Botox & Dermal Fillers\')\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.label','\"Treatment Title\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.uid','\"733c704a-1ef5-425f-82bb-2c7ed16220f6\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.1.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.dateAdded','\"2026-04-17T16:14:39+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.fieldUid','\"5255cd18-4f37-4112-b6bb-070514da0eae\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.handle','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.instructions','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.label','\"Contact Mode\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.uid','\"a18c2ab9-a644-4e1d-80a2-a5584326c2e4\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.handle','\"location\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.instructions','\"Location subtitle (e.g. \'Harley Street\')\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.label','\"Location\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.uid','\"14363a43-2d96-4339-9c8f-1176bb7ac41a\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.2.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.handle','\"description\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.instructions','\"Hero description text\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.label','\"Description\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.uid','\"da1cef0a-85ef-4a87-845c-ae060c5f178a\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.3.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.handle','\"backgroundImage\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.instructions','\"Optional background image (shown with low opacity)\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.label','\"Background Image\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.uid','\"93738b02-f267-4516-b95a-6418676ff545\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.4.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.dateAdded','\"2026-02-21T23:31:04+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.fieldUid','\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.handle','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.instructions','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.label','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.uid','\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.5.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.handle','\"primaryButtonText\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.instructions','\"Text for primary CTA Button\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.label','\"Primary Button Text\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.uid','\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.6.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.handle','\"primaryButtonUrl\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.instructions','\"URL for primary button\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.label','\"Primary Button URL\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.uid','\"5db50043-52e9-4e56-ba19-ac40464d29e4\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.7.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.handle','\"secondaryButtonText\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.instructions','\"Text For Secondary button (e.g. phone number)\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.label','\"Secondary Button Text\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.uid','\"5db102a4-8437-416e-be95-5eab08c6ded8\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.8.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.dateAdded','\"2026-02-20T14:42:18+00:00\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.editCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.elementCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.elementEditCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.fieldUid','\"3c1a81fc-6fae-4278-8d85-367a118abfbb\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.handle','\"showSecondaryButton\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.instructions','\"Toggle to show/hide secondary button\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.label','\"Show Secondary Button\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.required','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.tip','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.uid','\"a5274579-8206-47e3-8cdd-64cbb42cfa04\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.warning','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.width','100'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.name','\"Content\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.uid','\"b1a140f0-14a7-4c74-a966-6102f753a269\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.userCondition','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.thumbFieldKey','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.handle','\"treatmentHero\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.hasTitleField','true'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.icon','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.name','\"Treatment Hero\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.showSlugField','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.showStatusField','true'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.slugTranslationKeyFormat','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.slugTranslationMethod','\"site\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.titleFormat','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.titleTranslationKeyFormat','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.titleTranslationMethod','\"site\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.uiLabelFormat','\"{title}\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.color','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.description','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.cardThumbAlignment','\"end\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elementCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.autocomplete','false'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.autocorrect','true'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.class','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.dateAdded','\"2025-12-02T17:21:14+00:00\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.disabled','false'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.elementCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.id','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.inputType','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.instructions','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.label','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.max','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.min','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.name','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.orientation','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.placeholder','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.readonly','false'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.required','true'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.size','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.step','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.tip','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.title','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.uid','\"f4f30cb9-cdfd-439b-b683-5857f0cdbb49\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.userCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.warning','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.0.width','100'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.dateAdded','\"2025-12-02T17:23:03+00:00\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.editCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.elementCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.fieldUid','\"509a8ddb-54bf-42d0-b022-428404fd505b\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.handle','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.instructions','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.label','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.required','false'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.tip','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.uid','\"162f8255-7c25-4ad1-8848-780feda02831\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.userCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.warning','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.elements.1.width','100'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.name','\"Content\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.uid','\"8f6d9694-f119-4ec2-a934-ae3a5d525a4b\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.fieldLayouts.98c528a0-0cf6-481b-beaa-0b07b9e4f1a2.tabs.0.userCondition','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.handle','\"pageBuilder\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.hasTitleField','true'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.icon','\"screwdriver-wrench\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.name','\"Page Builder\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.showSlugField','false'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.showStatusField','false'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.slugTranslationKeyFormat','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.slugTranslationMethod','\"site\"'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.titleFormat','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.titleTranslationKeyFormat','null'),
('entryTypes.e89d0915-68d1-43b8-beb5-92b66d73884e.titleTranslationMethod','\"site\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.color','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.description','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.cardThumbAlignment','\"end\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elementCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.autocomplete','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.autocorrect','true'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.class','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.dateAdded','\"2025-12-04T17:06:32+00:00\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.disabled','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.elementCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.id','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.inputType','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.instructions','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.label','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.max','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.min','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.name','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.orientation','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.placeholder','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.readonly','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.required','true'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.size','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.step','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.tip','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.title','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.uid','\"6f2dbc65-dc85-4b55-b270-1d360cca98e7\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.userCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.warning','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.0.width','100'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.dateAdded','\"2025-12-04T17:10:21+00:00\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.editCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.elementCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.handle','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.instructions','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.label','\"Name\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.required','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.tip','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.uid','\"16de76fd-a825-41df-9b9d-8fe41ce48ada\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.userCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.warning','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.1.width','100'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.dateAdded','\"2025-12-04T17:10:21+00:00\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.editCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.elementCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.handle','\"plainText2\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.instructions','\"What treatment did the client had?\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.label','\"Treatment\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.required','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.tip','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.uid','\"fc67ba9e-5144-49e5-9c18-5fea452bce42\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.userCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.warning','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.2.width','100'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.dateAdded','\"2025-12-04T17:10:21+00:00\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.editCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.elementCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.handle','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.instructions','\"Client testimonial message\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.label','\"Testimonail message\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.required','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.tip','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.uid','\"67df7d0c-ae22-4046-8a69-b0f66abff507\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.userCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.warning','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.3.width','100'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.dateAdded','\"2025-12-04T17:10:56+00:00\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.editCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.elementCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.handle','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.instructions','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.label','\"Client photo\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.required','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.tip','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.uid','\"90b06f70-ec9f-49d9-b838-cef50698ec38\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.userCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.warning','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.elements.4.width','100'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.name','\"Content\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.uid','\"a333403b-fda7-47e8-aa21-58550998cd5f\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.fieldLayouts.9eabb24f-9dcc-4bb8-8628-4380ebce68ab.tabs.0.userCondition','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.handle','\"testimonials\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.hasTitleField','true'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.icon','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.name','\"Testimonials\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.showSlugField','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.showStatusField','false'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.slugTranslationKeyFormat','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.slugTranslationMethod','\"site\"'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.titleFormat','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.titleTranslationKeyFormat','null'),
('entryTypes.e92185c7-a67c-4325-98ef-b8a6d2edbd1d.titleTranslationMethod','\"site\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.color','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.description','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.cardThumbAlignment','\"end\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elementCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.autocomplete','false'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.autocorrect','true'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.class','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.dateAdded','\"2026-02-20T14:16:32+00:00\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.disabled','false'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.elementCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.id','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.inputType','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.instructions','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.label','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.max','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.min','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.name','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.orientation','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.placeholder','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.readonly','false'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.required','true'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.size','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.step','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.tip','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.title','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.uid','\"da86aab3-4b15-4648-9f55-9e6f092ba0db\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.userCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.warning','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.0.width','100'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.dateAdded','\"2026-02-20T14:17:58+00:00\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.editCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.elementCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.handle','\"text\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.instructions','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.label','\"Text\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.required','false'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.tip','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.uid','\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.userCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.warning','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.elements.1.width','100'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.name','\"Content\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.uid','\"c5ae4fce-d7de-42c2-9195-107063a25b2b\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.fieldLayouts.1bf0a8b7-fc3b-4e3e-97df-11cf05bb93d0.tabs.0.userCondition','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.handle','\"disclaimerItem\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.hasTitleField','true'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.icon','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.name','\"Disclaimer Item\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.showSlugField','false'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.showStatusField','true'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.slugTranslationKeyFormat','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.slugTranslationMethod','\"site\"'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.titleFormat','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.titleTranslationKeyFormat','null'),
('entryTypes.ea1062cb-4d63-4f41-ba26-c8937a0ba86b.titleTranslationMethod','\"site\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.color','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.description','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.cardThumbAlignment','\"end\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elementCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.autocomplete','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.autocorrect','true'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.class','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.dateAdded','\"2026-02-21T14:25:00+00:00\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.disabled','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.elementCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.id','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.inputType','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.instructions','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.label','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.max','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.min','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.name','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.orientation','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.placeholder','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.readonly','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.required','true'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.size','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.step','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.tip','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.title','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.uid','\"683f594f-117c-4b2e-9de5-dc7d0b2a7edc\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.userCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.warning','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.0.width','100'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.dateAdded','\"2026-02-21T14:52:38+00:00\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.editCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.elementCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.handle','\"sectionLabel\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.instructions','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.label','\"Section Label\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.required','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.tip','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.uid','\"b813f809-47c0-4f2e-9d84-af3f38d219d8\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.userCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.warning','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.1.width','100'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.dateAdded','\"2026-02-21T14:52:38+00:00\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.editCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.elementCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.handle','\"sectionHeading\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.instructions','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.label','\"Section Heading\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.required','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.tip','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.uid','\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.userCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.warning','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.2.width','100'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.dateAdded','\"2026-02-21T14:52:38+00:00\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.editCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.elementCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.handle','\"sectionContent\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.instructions','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.label','\"Section Content\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.required','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.tip','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.uid','\"e7f2072c-cd79-4083-a671-932331be040a\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.userCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.warning','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.3.width','100'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.dateAdded','\"2026-02-21T14:52:38+00:00\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.editCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.elementCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.handle','\"sectionImage\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.instructions','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.label','\"Section Image\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.required','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.tip','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.uid','\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.userCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.warning','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.elements.4.width','100'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.name','\"Content\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.uid','\"4894de7a-8b84-4bac-aa21-f84d733ae537\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.fieldLayouts.e27aff52-61ea-4faa-a22d-5e9fd7bde8ac.tabs.0.userCondition','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.handle','\"whoShouldConsiderSection\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.hasTitleField','true'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.icon','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.name','\"Who Should Consider\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.showSlugField','false'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.showStatusField','true'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.slugTranslationKeyFormat','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.slugTranslationMethod','\"site\"'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.titleFormat','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.titleTranslationKeyFormat','null'),
('entryTypes.edb418c0-89d3-419b-897b-dcb54ef07062.titleTranslationMethod','\"site\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.color','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.description','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.cardThumbAlignment','\"end\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elementCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.autocomplete','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.autocorrect','true'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.class','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.dateAdded','\"2025-12-06T10:33:23+00:00\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.disabled','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.elementCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.id','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.inputType','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.instructions','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.label','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.max','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.min','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.name','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.orientation','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.placeholder','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.readonly','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.required','true'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.size','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.step','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.tip','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.title','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.uid','\"4a09023e-7515-4c92-b543-1c4e7de52f9d\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.userCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.warning','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.0.width','100'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.dateAdded','\"2025-12-06T10:36:28+00:00\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.editCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.elementCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.handle','\"statNumber\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.instructions','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.label','\"Stat Number\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.required','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.tip','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.uid','\"652a22bb-1a5a-4287-a2fa-a5c519acb706\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.userCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.warning','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.1.width','100'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.dateAdded','\"2025-12-06T10:36:28+00:00\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.editCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.elementCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.handle','\"statLabel\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.instructions','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.label','\"Stat Label\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.required','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.tip','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.uid','\"399a20b9-7e99-4731-90e5-c32e8906f85d\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.userCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.warning','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.2.width','100'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.dateAdded','\"2025-12-06T10:36:28+00:00\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.editCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.elementCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.fieldUid','\"c91f3372-1fd1-4bfb-b8f3-5432da853217\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.handle','\"statIcon\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.instructions','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.label','\"Stat Icon\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.required','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.tip','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.uid','\"cf331026-3ff7-4176-932d-64366b48c99f\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.userCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.warning','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.3.width','100'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.dateAdded','\"2025-12-06T10:36:28+00:00\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.editCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.elementCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.fieldUid','\"28299698-73d7-4cd3-9e87-ca3b6cb9e3b3\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.handle','\"statSize\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.instructions','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.label','\"Stat Size\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.required','false'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.tip','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.uid','\"897c6a9c-bfe0-416a-8c27-a42ed012b46b\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.userCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.warning','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.elements.4.width','100'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.name','\"Content\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.uid','\"9e4f1dcd-b748-4047-aa16-f6a88efa3c76\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.fieldLayouts.f912cf5f-cfc6-48d5-948f-4871d84b5480.tabs.0.userCondition','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.handle','\"statistics\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.hasTitleField','true'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.icon','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.name','\"Statistics\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.showSlugField','true'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.showStatusField','true'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.slugTranslationKeyFormat','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.slugTranslationMethod','\"site\"'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.titleFormat','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.titleTranslationKeyFormat','null'),
('entryTypes.f22ad779-6d76-496c-b910-0e08523a5492.titleTranslationMethod','\"site\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.allowLineBreaksInTitles','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.color','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.description','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.cardThumbAlignment','\"end\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.autocomplete','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.autocorrect','true'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.class','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.dateAdded','\"2026-03-23T12:26:45+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.disabled','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.id','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.inputType','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.label','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.max','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.min','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.name','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.orientation','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.placeholder','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.readonly','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.required','true'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.size','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.step','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.title','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.uid','\"48ae300d-39b1-436f-8ad3-60575ca18633\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.0.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.dateAdded','\"2026-03-23T12:32:20+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.editCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.elementEditCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.fieldUid','\"212a20ff-39e0-48f2-b54a-da7435fcfd30\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.handle','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.label','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.required','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.uid','\"9f2ce07b-8d36-41a1-b7fe-29b615c2ba65\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.1.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.dateAdded','\"2026-03-23T12:32:20+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.editCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.elementEditCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.handle','\"plainText\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.required','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.uid','\"8df94f7e-f0c5-428c-8f81-cc6ba16d377f\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.2.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.dateAdded','\"2026-03-23T12:32:20+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.editCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.elementEditCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.handle','\"plainText2\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.label','\"Top Label\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.required','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.uid','\"409e9b77-c808-42a3-88a1-ee3c1ab263b2\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.3.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.dateAdded','\"2026-03-23T12:32:20+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.editCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.elementEditCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.fieldUid','\"261227ce-d2bf-499b-91a8-2cd83c94d6d7\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.handle','\"textArea\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.label','\"Text Area\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.required','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.uid','\"833ae5d2-84c5-44b6-b45d-eb054ea65443\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.4.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.dateAdded','\"2026-03-23T12:32:20+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.editCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.elementEditCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.handle','\"excerpt\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.label','\"Excerpt\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.required','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.uid','\"46976c59-a4eb-4cd7-8297-2d2cbfae5fb7\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.5.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.dateAdded','\"2026-03-23T12:32:20+00:00\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.editCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.elementCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.elementEditCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.handle','\"plainText3\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.instructions','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.label','\"Background Hex\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.required','false'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.tip','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.uid','\"c19407df-037d-4b50-a26f-5b98ec499e2c\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.warning','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.elements.6.width','100'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.name','\"Content\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.uid','\"7cd0f8d1-5789-4f52-a7ec-af100df21d72\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.tabs.0.userCondition','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.fieldLayouts.3d5fd6a0-87b3-4e03-a08e-00a09e5832c8.thumbFieldKey','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.handle','\"featuredCaseStudies\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.hasTitleField','true'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.icon','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.name','\"Featured Case Studies\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.showSlugField','true'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.showStatusField','true'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.slugTranslationKeyFormat','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.slugTranslationMethod','\"site\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.titleFormat','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.titleTranslationKeyFormat','null'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.titleTranslationMethod','\"site\"'),
('entryTypes.f365f324-7c4f-4031-96d3-704d3aa3f4b9.uiLabelFormat','\"{title}\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.color','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.description','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.cardThumbAlignment','\"end\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elementCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.autocomplete','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.autocorrect','true'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.class','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.dateAdded','\"2025-12-06T09:57:21+00:00\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.disabled','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.elementCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.id','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.inputType','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.instructions','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.label','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.max','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.min','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.name','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.orientation','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.placeholder','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.readonly','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.required','true'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.size','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.step','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.tip','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.title','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.uid','\"86ca3abe-1470-4d16-a9da-2df5e4aa39ea\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.userCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.warning','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.0.width','100'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.dateAdded','\"2025-12-06T10:04:25+00:00\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.editCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.elementCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.fieldUid','\"6ab27a91-bd1e-456b-aa68-b220eb7a8fd8\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.handle','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.instructions','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.label','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.required','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.tip','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.uid','\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.userCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.warning','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.1.width','100'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.dateAdded','\"2025-12-06T10:04:25+00:00\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.editCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.elementCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.fieldUid','\"28299698-73d7-4cd3-9e87-ca3b6cb9e3b3\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.handle','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.instructions','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.label','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.required','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.tip','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.uid','\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.userCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.warning','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.2.width','100'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.dateAdded','\"2025-12-06T10:04:25+00:00\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.editCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.elementCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.fieldUid','\"1f8e8ef2-1c2c-4228-96d5-7af284255ba0\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.handle','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.instructions','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.label','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.required','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.tip','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.uid','\"d65d1c35-ed40-465c-8613-98206b6c0d67\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.userCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.warning','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.3.width','100'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.dateAdded','\"2025-12-06T10:04:25+00:00\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.editCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.elementCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.fieldUid','\"a39e2e1e-4a2c-4632-b6e2-10f242572d5f\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.handle','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.instructions','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.label','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.required','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.tip','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.uid','\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.userCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.warning','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.elements.4.width','100'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.name','\"Content\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.uid','\"1bbbc0ec-079f-4423-992d-7f769d8b72cb\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.fieldLayouts.5159dea3-2450-44fd-8562-13a824ede638.tabs.0.userCondition','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.handle','\"richText\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.hasTitleField','true'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.icon','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.name','\"Rich Text\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.showSlugField','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.showStatusField','false'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.slugTranslationKeyFormat','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.slugTranslationMethod','\"site\"'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.titleFormat','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.titleTranslationKeyFormat','null'),
('entryTypes.f8d21671-c310-4d72-8089-6f8ea9a21cfc.titleTranslationMethod','\"site\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.color','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.description','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.cardThumbAlignment','\"end\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.autocomplete','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.autocorrect','true'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.class','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.dateAdded','\"2026-02-21T13:33:33+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.disabled','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.id','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.inputType','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.label','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.max','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.min','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.name','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.orientation','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.placeholder','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.readonly','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.required','true'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.size','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.step','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.title','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.uid','\"eee98747-56e0-4076-b4d9-5580ac29acd9\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.0.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.1.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.1.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.1.heading','\"\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.1.uid','\"88d36765-b596-489f-bf13-613ff1c13f68\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.1.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.handle','\"block1Paragraph1\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.label','\"Block 1 Paragraph 1\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.uid','\"09b096a5-3744-49b5-aca3-68c5a759cee3\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.10.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.handle','\"block1Paragraph2\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.label','\"Block 1 Paragraph 2\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.uid','\"aa302180-85b3-4ce4-a24d-7851a05f80b3\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.11.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.fieldUid','\"59b98af3-0c7d-4ef0-bd5e-cb771b4b4915\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.handle','\"block1Image\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.label','\"Block 1 Image \"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.uid','\"00524f8a-98d9-4f47-b5d0-b4c407115118\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.12.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.dateAdded','\"2026-02-22T22:26:48+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.fieldUid','\"4b5c5181-3923-4781-a0bb-ad5b5eabb1fe\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.handle','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.label','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.uid','\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.13.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.14.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.14.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.14.heading','\"Block 2 (image left, text right)\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.14.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.14.uid','\"40bdd2e7-9774-463d-8e9a-165e2dc2ad8f\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.14.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.15.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.15.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.15.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.15.uid','\"3455ce2d-a0b7-481a-ade5-2cc46899d210\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.15.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.handle','\"block2Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.label','\"Block 2 Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.uid','\"556a3ac6-956d-48f1-b64a-184871e63dde\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.16.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.handle','\"block2Paragraph1\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.label','\"Block 2 Paragraph 1\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.uid','\"c38db626-85ba-4201-9240-e8c2b19beb5e\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.17.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.handle','\"block2Paragraph2\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.label','\"Block 2 Paragraph 2\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.uid','\"26816f50-cf23-4107-b380-4cc8fc57871b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.18.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.handle','\"block2Image\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.label','\"Block 2 Image\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.uid','\"7509c6f1-b682-433b-9708-0d83e83f3a1f\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.19.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.2.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.2.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.2.uid','\"946fbcbf-aac7-480d-bfba-27044e947a80\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.2.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.20.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.20.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.20.heading','\"Testimonial\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.20.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.20.uid','\"a0953453-4058-4a73-9ed2-d177b187c0ef\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.20.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.21.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.21.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.21.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.21.uid','\"fbe98654-7308-408c-b864-abe0c416ef34\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.21.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.dateAdded','\"2026-03-02T18:35:54+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.fieldUid','\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.handle','\"testimonialQuote\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.label','\"Testimonial Quote\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.uid','\"0e712616-4ff7-45e0-bd93-b25da08757d3\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.22.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.handle','\"testimonialAuthorName\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.label','\"Author Name\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.uid','\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.23.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.handle','\"testimonialTreatmentName\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.label','\"Treatment Name\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.uid','\"2b3e1715-32ff-447b-9460-6469aeb01c95\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.24.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.handle','\"testimonialInitials\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.label','\"Author Initials\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.uid','\"662abfc6-cb86-492b-a40d-00775916402e\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.25.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.fieldUid','\"a906962a-296e-41d6-a082-1398608c0ead\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.handle','\"testimonialStarCount\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.label','\"Star Count\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.uid','\"780ba720-3833-46e6-89d7-7d24cc606852\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.26.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.27.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.27.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.27.heading','\"Call To Action\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.27.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.27.uid','\"f93f8425-84bf-4512-88ce-92cb70327e97\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.27.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.28.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.28.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.28.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.28.uid','\"ff9b4de1-1692-401f-98b3-f233e558a958\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.28.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.handle','\"harleyHeading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.label','\"Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.uid','\"80b2559f-f6ea-4425-a80c-d4905608eff9\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.29.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.handle','\"sectionLabel\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.instructions','\"Label above heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.label','\"Section Label\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.uid','\"a8216afd-a278-431d-9241-249a8482c463\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.3.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.handle','\"harleyDescription\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.label','\"Description\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.uid','\"2e2b47ba-c967-4b16-8293-07e5c74319fe\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.30.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.handle','\"harleyButtonText\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.label','\"Button Name\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.uid','\"bae8aad6-de36-441f-bb76-34f1e3a478b2\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.31.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.handle','\"harleyButtonUrl\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.label','\"Button URL\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.uid','\"3ca08555-77e8-454e-8700-705a90cc539c\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.32.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.handle','\"sectioTitle\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.instructions','\"Title (e.g. What is Prohilo)\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.label','\"Section title\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.uid','\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.4.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.handle','\"sectionDescription\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.instructions','\"Section description\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.label','\"Description\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.uid','\"8f4ed747-6538-42b3-9204-10e4e72f859a\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.5.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.dateAdded','\"2026-02-21T23:38:32+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.fieldUid','\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.handle','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.instructions','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.label','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.uid','\"9551510c-7e7c-4050-86b6-7d7743d053b7\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.6.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.7.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.7.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.7.heading','\"Block 1 (text left, image right)\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.7.uid','\"c9c517a3-44d4-4086-b7de-0d6456e3a468\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.7.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.8.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.8.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.8.uid','\"868dcb3d-2902-453b-9560-448fd1da73ff\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.8.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.dateAdded','\"2026-02-21T14:21:06+00:00\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.editCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.elementCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.handle','\"block1Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.instructions','\"Heading e.g. \\\"Dr Samantha - the woman behind the needle\\\"\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.label','\"Block 1 Heading\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.required','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.tip','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.uid','\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.warning','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.elements.9.width','100'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.name','\"Content\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.uid','\"9f2e4157-4725-48fb-90d1-50a6d8401e88\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.fieldLayouts.026a14d1-fc1b-4767-aeaa-3cf150485bb8.tabs.0.userCondition','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.handle','\"whatIsTreatment\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.hasTitleField','true'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.icon','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.name','\"What Is Treatment\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.showSlugField','false'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.showStatusField','true'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.slugTranslationKeyFormat','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.slugTranslationMethod','\"site\"'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.titleFormat','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.titleTranslationKeyFormat','null'),
('entryTypes.fb561bc6-1aeb-445e-b520-0e208a6c38b8.titleTranslationMethod','\"site\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.color','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.description','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.cardThumbAlignment','\"end\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.autocapitalize','true'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.autocomplete','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.autocorrect','true'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.class','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.dateAdded','\"2025-12-03T16:45:08+00:00\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.disabled','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.id','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.inputType','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.instructions','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.label','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.max','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.min','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.name','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.orientation','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.placeholder','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.readonly','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.required','true'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.size','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.step','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.tip','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.title','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.uid','\"967163c5-3f46-4843-bb04-3de28c426958\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.warning','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.0.width','100'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.dateAdded','\"2025-12-03T16:49:03+00:00\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.editCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.handle','\"plainText2\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.instructions','\"Small uppercase label (e.g., \\\"How It Works\\\", \\\"The Process\\\")\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.label','\"Top Label\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.required','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.tip','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.uid','\"4911f493-aeb6-4573-a3c1-3dc0b0940146\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.warning','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.1.width','100'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.dateAdded','\"2025-12-03T16:49:03+00:00\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.editCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.handle','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.instructions','\"Main heading for the section (e.g., \\\"From consultation to results...\\\")\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.label','\"Heading\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.required','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.tip','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.uid','\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.warning','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.2.width','100'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.dateAdded','\"2025-12-03T16:49:03+00:00\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.editCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.handle','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.instructions','\"Optional description text below the heading\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.label','\"Description\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.required','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.tip','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.uid','\"94cb851d-aef5-4e2e-883b-a555e92d6cd0\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.warning','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.3.width','100'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.dateAdded','\"2025-12-03T16:52:01+00:00\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.editCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.fieldUid','\"48a6b377-0807-4f30-abf3-84f1acd358ce\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.handle','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.instructions','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.label','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.required','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.tip','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.uid','\"ceffcd5c-99fd-407b-ad8e-814ebcf245fa\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.warning','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.4.width','100'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.dateAdded','\"2025-12-03T19:14:00+00:00\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.editCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.elementCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.fieldUid','\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.handle','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.instructions','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.label','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.required','false'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.tip','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.uid','\"11bf274a-ace0-4e3c-b321-ae01246cd640\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.warning','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.elements.5.width','100'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.name','\"Content\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.uid','\"2c65f7be-df79-49fc-ae39-f40d562dd7e0\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.fieldLayouts.90b5cd6c-dfe9-45f0-887a-bbefe645dfc1.tabs.0.userCondition','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.handle','\"howItWorks\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.hasTitleField','true'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.icon','\"timeline\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.name','\"How It Works\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.showSlugField','true'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.showStatusField','true'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.slugTranslationKeyFormat','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.slugTranslationMethod','\"site\"'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.titleFormat','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.titleTranslationKeyFormat','null'),
('entryTypes.fb7fcf38-d4f2-4c7f-aac3-719daca80e85.titleTranslationMethod','\"site\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.columnSuffix','null'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.handle','\"dividerThickness\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.instructions','null'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.name','\"Divider Thickness\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.searchable','false'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.customOptions','false'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.0.1','\"Thin (1px)\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.1.1','\"thin\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.2.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.3.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.0.1','\"Medium (2px)\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.1.1','\"medium\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.2.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.3.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.1.__assoc__.4.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.0.1','\"Thick (3px)\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.1.1','\"thick\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.2.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.3.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.settings.options.2.__assoc__.4.1','\"\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.translationKeyFormat','null'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.translationMethod','\"none\"'),
('fields.047fdd15-181a-45a8-b054-bf13b0d2bfb5.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.columnSuffix','null'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.handle','\"spacerSize\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.instructions','null'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.name','\"Spacer Size\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.searchable','false'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.customOptions','false'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.0.1','\"X-Small (1rem)\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.1.1','\"xs\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.2.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.3.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.0.__assoc__.4.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.0.1','\"Small (2rem)\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.1.1','\"small\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.2.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.3.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.1.__assoc__.4.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.0.1','\"Medium (3rem)\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.1.1','\"medium\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.2.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.3.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.2.__assoc__.4.1','\"1\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.0.1','\"Large (4rem)\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.1.1','\"large\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.2.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.3.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.3.__assoc__.4.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.0.1','\"X-Large (6rem)\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.1.1','\"xlarge\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.2.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.3.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.4.__assoc__.4.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.0.0','\"label\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.0.1','\"XX-Large (8rem)\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.1.0','\"value\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.1.1','\"xxlarge\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.2.0','\"icon\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.2.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.3.0','\"color\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.3.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.4.0','\"default\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.settings.options.5.__assoc__.4.1','\"\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.translationKeyFormat','null'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.translationMethod','\"none\"'),
('fields.0ef98093-5a9d-410d-a094-b2e111e0c6d1.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.columnSuffix','null'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.handle','\"contentColumns\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.instructions','\"Each entry represents one column\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.name','\"Content Columns\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.searchable','false'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.createButtonLabel','\"New Column\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.defaultIndexViewMode','\"cards\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.enableVersioning','false'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.entryTypes.0.__assoc__.0.1','\"33acef61-26dd-4d37-8a02-5f903e07ac2a\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.includeTableView','false'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.maxEntries','null'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.minEntries','null'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.pageSize','50'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.propagationKeyFormat','null'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.propagationMethod','\"all\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.showCardsInGrid','true'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.settings.viewMode','\"cards\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.translationKeyFormat','null'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.translationMethod','\"site\"'),
('fields.109e9e12-5487-40f4-b216-9f942305125d.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.columnSuffix','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.handle','\"textArea\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.instructions','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.name','\"Text Area\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.searchable','false'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.availableTransforms','\"\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.availableVolumes','\"*\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.characterLimit','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.ckeConfig','\"f3801245-1cac-46df-bf78-b4697ba88015\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.createButtonLabel','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.defaultTransform','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.expandEntryButtons','false'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.fullGraphqlData','true'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.parseEmbeds','false'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.purifierConfig','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.purifyHtml','true'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.showUnpermittedFiles','false'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.showUnpermittedVolumes','false'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.showWordCount','false'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.sourceEditingGroups.0','\"__ADMINS__\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.settings.wordLimit','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.translationKeyFormat','null'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.translationMethod','\"none\"'),
('fields.11ca9eb3-65b9-4075-8327-16d3eaf68026.type','\"craft\\\\ckeditor\\\\Field\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.columnSuffix','null'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.handle','\"textAlign\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.instructions','null'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.name','\"Text Align\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.searchable','false'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.customOptions','false'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.0.1','\"Left\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.1.1','\"left\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.2.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.3.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.0.1','\"Center\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.1.1','\"center\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.2.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.3.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.1.__assoc__.4.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.0.1','\"Right\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.1.1','\"right\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.2.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.3.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.settings.options.2.__assoc__.4.1','\"\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.translationKeyFormat','null'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.translationMethod','\"none\"'),
('fields.1f8e8ef2-1c2c-4228-96d5-7af284255ba0.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.columnSuffix','null'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.handle','\"featuredCaseStudies\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.instructions','null'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.name','\"Featured Case Studiess\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.searchable','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.allowSelfRelations','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.branchLimit','null'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.defaultPlacement','\"end\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.maintainHierarchy','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.maxRelations','3'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.minRelations','1'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.selectionLabel','\"Add Case Study\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.showSearchInput','true'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.showSiteMenu','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.showUnpermittedEntries','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.showUnpermittedSections','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.sources.0','\"section:89f97553-241f-489b-921a-493ca7be1fbf\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.targetSiteId','null'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.validateRelatedElements','false'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.settings.viewMode','\"cards\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.translationKeyFormat','null'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.translationMethod','\"none\"'),
('fields.212a20ff-39e0-48f2-b54a-da7435fcfd30.type','\"craft\\\\fields\\\\Entries\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.columnSuffix','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.handle','\"wisywig\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.instructions','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.name','\"WISYWIG\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.searchable','false'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.availableTransforms','\"\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.availableVolumes','\"*\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.characterLimit','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.ckeConfig','\"f3801245-1cac-46df-bf78-b4697ba88015\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.createButtonLabel','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.defaultTransform','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.entryTypes.0.__assoc__.0.1','\"bfa7f962-3b34-407d-a1b8-218e82ea2a0b\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.expandEntryButtons','true'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.fullGraphqlData','true'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.parseEmbeds','false'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.purifierConfig','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.purifyHtml','true'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.showUnpermittedFiles','false'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.showUnpermittedVolumes','false'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.showWordCount','true'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.sourceEditingGroups.0','\"__ADMINS__\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.settings.wordLimit','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.translationKeyFormat','null'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.translationMethod','\"none\"'),
('fields.261227ce-d2bf-499b-91a8-2cd83c94d6d7.type','\"craft\\\\ckeditor\\\\Field\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.columnSuffix','null'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.handle','\"columnLayout\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.instructions','null'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.name','\"Column Layout\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.searchable','false'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.customOptions','false'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.0.1','\"Single Column\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.1.1','\"singleColumn\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.2.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.3.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.0.1','\"Two Columns (50/50)\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.1.1','\"twoColumns5050\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.2.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.3.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.1.__assoc__.4.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.0.1','\"Two Columns (33/67)\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.1.1','\"twoColumns3367\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.2.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.3.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.2.__assoc__.4.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.0.1','\"Two Columns (67/33)\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.1.1','\"twoColumns6733\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.2.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.3.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.3.__assoc__.4.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.0.1','\"Three Columns (Equal)\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.1.1','\"threeColumnsEqual\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.2.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.3.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.4.__assoc__.4.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.0.0','\"label\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.0.1','\"Four Columns (Equal)\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.1.0','\"value\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.1.1','\"fourColumnsEqual\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.2.0','\"icon\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.2.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.3.0','\"color\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.3.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.4.0','\"default\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.settings.options.5.__assoc__.4.1','\"\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.translationKeyFormat','null'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.translationMethod','\"none\"'),
('fields.2742df1d-cef9-4fbb-863e-bae8865170f9.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.columnSuffix','null'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.handle','\"fontSize\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.instructions','null'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.name','\"Font Size\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.searchable','false'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.customOptions','false'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.0.1','\"Small\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.1.1','\"small\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.2.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.3.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.0.__assoc__.4.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.0.1','\"Base\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.1.1','\"base\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.2.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.3.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.1.__assoc__.4.1','\"1\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.0.1','\"Large\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.1.1','\"large\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.2.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.3.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.2.__assoc__.4.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.0.1','\"X-Large\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.1.1','\"xLarge\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.2.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.3.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.settings.options.3.__assoc__.4.1','\"\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.translationKeyFormat','null'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.translationMethod','\"none\"'),
('fields.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.columnSuffix','null'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.handle','\"borderRadius\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.instructions','null'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.name','\"Border Radius\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.searchable','false'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.customOptions','false'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.0.1','\"None\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.1.1','\"none\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.2.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.3.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.0.1','\"Small\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.1.1','\"small\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.2.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.3.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.1.__assoc__.4.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.0.1','\"Medium\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.1.1','\"medium\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.2.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.3.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.2.__assoc__.4.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.0.1','\"Large\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.1.1','\"large\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.2.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.3.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.3.__assoc__.4.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.0.1','\"Full (Circle)\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.1.1','\"full\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.2.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.3.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.settings.options.4.__assoc__.4.1','\"\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.translationKeyFormat','null'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.translationMethod','\"none\"'),
('fields.2ae532dc-e56d-4b4e-98da-300c62edff20.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.columnSuffix','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.handle','\"priceRows\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.instructions','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.name','\"Price rows\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.searchable','false'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.createButtonLabel','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.defaultIndexViewMode','\"cards\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.enableVersioning','false'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.entryTypes.0.__assoc__.0.1','\"c1319250-2c2b-4d15-a2da-30fa401e02da\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.includeTableView','false'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.maxEntries','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.minEntries','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.pageSize','50'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.propagationKeyFormat','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.propagationMethod','\"all\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.showCardsInGrid','false'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.settings.viewMode','\"cards\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.translationKeyFormat','null'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.translationMethod','\"site\"'),
('fields.33126ba0-77bf-4fda-aec5-cf3893199a82.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.columnSuffix','null'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.handle','\"selectedPosts\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.instructions','\"Manually select and order blog posts to display (only used when Display Type is \\\"Show Selected Posts\\\")\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.name','\"Selected Posts\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.searchable','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.allowSelfRelations','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.branchLimit','null'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.defaultPlacement','\"end\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.maintainHierarchy','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.maxRelations','20'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.minRelations','null'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.selectionLabel','null'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.showCardsInGrid','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.showSearchInput','true'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.showSiteMenu','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.showUnpermittedEntries','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.showUnpermittedSections','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.sources.0','\"section:f19eafef-7292-4716-a258-d9bf85bfc10b\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.targetSiteId','null'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.validateRelatedElements','false'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.settings.viewMode','\"list\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.translationKeyFormat','null'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.translationMethod','\"none\"'),
('fields.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9.type','\"craft\\\\fields\\\\Entries\"'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.columnSuffix','null'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.handle','\"showDesktop\"'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.instructions','null'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.name','\"Show on Desktop\"'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.searchable','false'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.settings.default','true'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.settings.offLabel','\"Hide\"'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.settings.onLabel','\"Show\"'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.translationKeyFormat','null'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.translationMethod','\"none\"'),
('fields.3c1a81fc-6fae-4278-8d85-367a118abfbb.type','\"craft\\\\fields\\\\Lightswitch\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.columnSuffix','null'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.handle','\"buttonUrl\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.instructions','null'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.name','\"URL\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.searchable','false'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.advancedFields.0','\"target\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.advancedFields.1','\"title\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.fullGraphqlData','true'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.maxLength','355'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.showLabelField','false'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.types.0','\"entry\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.types.1','\"url\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.0','\"entry\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.1.__assoc__.0.0','\"sources\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.1.__assoc__.0.1','\"*\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.1.__assoc__.1.0','\"showUnpermittedSections\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.1.__assoc__.1.1','\"\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.1.__assoc__.2.0','\"showUnpermittedEntries\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.0.1.__assoc__.2.1','\"\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.0','\"url\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.1.__assoc__.0.0','\"allowRootRelativeUrls\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.1.__assoc__.0.1','\"1\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.1.__assoc__.1.0','\"allowAnchors\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.1.__assoc__.1.1','\"1\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.1.__assoc__.2.0','\"allowCustomSchemes\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.settings.typeSettings.__assoc__.1.1.__assoc__.2.1','\"\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.translationKeyFormat','null'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.translationMethod','\"none\"'),
('fields.452dafb1-1a42-4c98-a977-363c723ec58c.type','\"craft\\\\fields\\\\Link\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.columnSuffix','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.handle','\"selectedTestimonials\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.instructions','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.name','\"Selected Testimonials\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.searchable','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.allowSelfRelations','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.branchLimit','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.defaultPlacement','\"end\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.maintainHierarchy','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.maxRelations','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.minRelations','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.selectionLabel','\"Add Testimonial\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.showCardsInGrid','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.showSearchInput','true'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.showSiteMenu','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.showUnpermittedEntries','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.showUnpermittedSections','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.sources.0','\"section:a76886f6-a966-4056-995c-ac7bda316a07\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.targetSiteId','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.validateRelatedElements','false'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.settings.viewMode','\"list\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.translationKeyFormat','null'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.translationMethod','\"none\"'),
('fields.45b2b61e-fd67-48d4-8ce2-35e95068be62.type','\"craft\\\\fields\\\\Entries\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.columnSuffix','null'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.handle','\"ctaStyle\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.instructions','null'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.name','\"CTA Style\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.searchable','false'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.customOptions','false'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.0.1','\"Default\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.1.1','\"default\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.2.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.3.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.0.1','\"Gradient\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.1.1','\"gradient\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.2.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.3.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.1.__assoc__.4.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.0.1','\"Bordered\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.1.1','\"bordered\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.2.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.3.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.settings.options.2.__assoc__.4.1','\"\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.translationKeyFormat','null'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.translationMethod','\"none\"'),
('fields.4626b440-5a67-45f1-a605-bbf880f31698.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.columnSuffix','null'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.handle','\"useHeroVideo\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.instructions','\"Use YouTube video\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.name','\"Use Hero Video\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.searchable','false'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.settings.default','false'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.settings.offLabel','\"No\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.settings.onLabel','\"Yes\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.settings.showLabelsInCards','false'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.translationKeyFormat','null'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.translationMethod','\"none\"'),
('fields.46742ca3-f2c3-408c-87e7-c0191d86f70e.type','\"craft\\\\fields\\\\Lightswitch\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.columnSuffix','null'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.handle','\"steps\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.instructions','\"Add as many steps as you need. They will auto-number (01, 02, 03...) and alternate colors\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.name','\"Steps\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.searchable','false'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.createButtonLabel','null'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.defaultIndexViewMode','\"cards\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.enableVersioning','false'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.entryTypes.0.__assoc__.0.1','\"7727022a-2c1e-4699-8d36-3c9777b0a4e6\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.includeTableView','false'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.maxEntries','null'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.minEntries','null'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.pageSize','50'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.propagationKeyFormat','null'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.propagationMethod','\"all\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.showCardsInGrid','false'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.settings.viewMode','\"cards\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.translationKeyFormat','null'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.translationMethod','\"site\"'),
('fields.48a6b377-0807-4f30-abf3-84f1acd358ce.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.columnSuffix','null'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.handle','\"backgroundScheme\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.instructions','null'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.name','\"Background Scheme\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.searchable','false'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.customOptions','false'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.0.1','\"Navy Dark (navy bg, white text, gold accents)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.1.1','\"navyDark\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.0.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.0.1','\"Cream Light (cream bg, navy text, gold buttons)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.1.1','\"creamLight\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.1.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.0.1','\"White Clean (white bg, navy text)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.1.1','\"whiteClean\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.2.__assoc__.4.1','\"1\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.0.1','\"Beige Warm (beige bg, navy text)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.1.1','\"beigeWarm\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.3.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.0.1','\"Gold Luxury (gold accents, navy text)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.1.1','\"goldLuxury\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.4.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.0.1','\"Gradient Navy (navy gradient, white text)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.1.1','\"gradientNavy\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.5.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.0.1','\"Gradient Gold (gold gradient, navy text)\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.1.1','\"gradientGold\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.6.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.0.0','\"label\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.0.1','\"Transparent\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.1.0','\"value\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.1.1','\"transparent\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.2.0','\"icon\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.2.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.3.0','\"color\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.3.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.4.0','\"default\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.settings.options.7.__assoc__.4.1','\"\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.translationKeyFormat','null'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.translationMethod','\"none\"'),
('fields.4a83aae4-2c1f-4a29-beff-16feb9d628ce.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.columnSuffix','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.handle','\"flexibleSection\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.instructions','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.name','\"Flexible Section\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.searchable','false'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.createButtonLabel','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.defaultIndexViewMode','\"cards\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.enableVersioning','false'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.entryTypes.0.__assoc__.0.1','\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.includeTableView','false'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.maxEntries','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.minEntries','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.pageSize','50'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.propagationKeyFormat','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.propagationMethod','\"all\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.showCardsInGrid','true'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.settings.viewMode','\"cards\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.translationKeyFormat','null'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.translationMethod','\"site\"'),
('fields.4aa7c64f-460a-4bb3-81dd-f76576f7bce7.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.columnSuffix','null'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.handle','\"underlineColor\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.instructions','null'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.name','\"Underline Color\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.searchable','false'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.customOptions','false'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.0.1','\"Gold\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.1.1','\"gold\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.2.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.3.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.0.1','\"Navy\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.1.1','\"navy\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.2.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.3.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.1.__assoc__.4.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.0.1','\"White\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.1.1','\"white\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.2.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.3.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.settings.options.2.__assoc__.4.1','\"\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.translationKeyFormat','null'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.translationMethod','\"none\"'),
('fields.4ae0713a-c032-477f-9cfa-9dded22631fb.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.columnSuffix','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.handle','\"afterImage\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.instructions','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.name','\"After Image\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.searchable','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.allowedKinds.0','\"image\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.allowSelfRelations','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.allowSubfolders','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.allowUploads','true'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.branchLimit','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.defaultPlacement','\"end\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.defaultUploadLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.defaultUploadLocationSubpath','\"/transformations\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.maintainHierarchy','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.maxRelations','1'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.minRelations','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.previewMode','\"full\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.restrictedDefaultUploadSubpath','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.restrictedLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.restrictedLocationSubpath','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.restrictFiles','true'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.restrictLocation','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.selectionLabel','\"Add After Image\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.showCardsInGrid','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.showSearchInput','true'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.showSiteMenu','true'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.showUnpermittedFiles','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.showUnpermittedVolumes','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.sources.0','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.targetSiteId','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.validateRelatedElements','false'),
('fields.4b3e5070-9588-413c-bedc-097215932500.settings.viewMode','\"list\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.translationKeyFormat','null'),
('fields.4b3e5070-9588-413c-bedc-097215932500.translationMethod','\"none\"'),
('fields.4b3e5070-9588-413c-bedc-097215932500.type','\"craft\\\\fields\\\\Assets\"'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.columnSuffix','null'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.handle','\"showImageFrame\"'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.instructions','null'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.name','\"Show Image Frame\"'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.searchable','false'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.settings.default','false'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.settings.offLabel','\"OFF\"'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.settings.onLabel','\"ON\"'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.translationKeyFormat','null'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.translationMethod','\"none\"'),
('fields.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe.type','\"craft\\\\fields\\\\Lightswitch\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.columnSuffix','null'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.handle','\"pagebuilder\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.instructions','null'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.name','\"Page Builder\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.searchable','false'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.createButtonLabel','\"New Section\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.defaultIndexViewMode','\"cards\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.enableVersioning','false'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.0.__assoc__.0.1','\"4d901f07-e203-40c2-81e4-09b9ca404552\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.1.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.1.__assoc__.0.1','\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.1.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.1.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.10.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.10.__assoc__.0.1','\"3c3901be-445f-43a2-aac3-836a5a5cdfba\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.10.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.10.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.11.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.11.__assoc__.0.1','\"318e492e-01cc-4b53-86ef-7186a7f4cee4\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.11.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.11.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.12.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.12.__assoc__.0.1','\"cd83f1fe-45e5-4082-9590-93ec1fb4a261\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.12.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.12.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.13.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.13.__assoc__.0.1','\"45e1951f-373a-4e27-8d30-3cfa1bb82857\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.13.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.13.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.14.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.14.__assoc__.0.1','\"73bbd50d-5a76-4478-ab66-7b936845b6d8\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.14.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.14.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.15.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.15.__assoc__.0.1','\"fb561bc6-1aeb-445e-b520-0e208a6c38b8\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.15.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.15.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.16.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.16.__assoc__.0.1','\"edb418c0-89d3-419b-897b-dcb54ef07062\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.16.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.16.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.17.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.17.__assoc__.0.1','\"28c66742-a424-4cbd-ad18-079d8881f9ae\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.17.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.17.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.18.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.18.__assoc__.0.1','\"3c3edcaf-67eb-492e-8460-c077662649ee\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.18.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.18.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.19.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.19.__assoc__.0.1','\"f365f324-7c4f-4031-96d3-704d3aa3f4b9\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.19.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.19.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.2.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.2.__assoc__.0.1','\"53906bea-a5c6-4385-82e5-c89e27ac267b\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.2.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.2.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.20.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.20.__assoc__.0.1','\"bfb7ac1d-af5b-4148-9942-8cb360b7a33c\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.20.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.20.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.3.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.3.__assoc__.0.1','\"072a4948-ed72-4bec-8817-90115344274e\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.3.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.3.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.4.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.4.__assoc__.0.1','\"54df986c-6d9a-49a7-8f54-33871ccfd5c6\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.4.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.4.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.5.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.5.__assoc__.0.1','\"fb7fcf38-d4f2-4c7f-aac3-719daca80e85\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.5.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.5.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.6.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.6.__assoc__.0.1','\"2fc1070c-46b5-4221-948d-e3693438e735\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.6.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.6.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.7.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.7.__assoc__.0.1','\"b6a30616-2a75-4a5e-997a-a06c3596ad23\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.7.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.7.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.8.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.8.__assoc__.0.1','\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.8.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.8.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.9.__assoc__.0.0','\"uid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.9.__assoc__.0.1','\"33f0b780-c7d3-4e20-94e5-83bbd5f30e48\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.9.__assoc__.1.0','\"group\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.entryTypes.9.__assoc__.1.1','\"General\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.includeTableView','false'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.maxEntries','null'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.minEntries','null'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.pageSize','50'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.propagationKeyFormat','null'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.propagationMethod','\"all\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.showCardsInGrid','true'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.settings.viewMode','\"cards-grid\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.translationKeyFormat','null'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.translationMethod','\"site\"'),
('fields.509a8ddb-54bf-42d0-b022-428404fd505b.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.columnSuffix','null'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.handle','\"contactModeMessage\"'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.instructions','null'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.name','\"Contact Mode: Message\"'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.searchable','false'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.settings.default','false'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.settings.offLabel','\"Call\"'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.settings.onLabel','\"Message\"'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.settings.showLabelsInCards','true'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.translationKeyFormat','null'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.translationMethod','\"none\"'),
('fields.5255cd18-4f37-4112-b6bb-070514da0eae.type','\"craft\\\\fields\\\\Lightswitch\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.columnSuffix','null'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.handle','\"videoLayout\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.instructions','null'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.name','\"Video Layout\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.searchable','false'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.customOptions','false'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.0.1','\"One Video\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.1.1','\"oneVideo\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.2.1','\"1\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.3.1','\"\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.0.1','\"Two Videos\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.1.1','\"twoVideos\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.2.1','\"2\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.3.1','\"\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.settings.options.1.__assoc__.4.1','\"\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.translationKeyFormat','null'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.translationMethod','\"none\"'),
('fields.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.columnSuffix','null'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.handle','\"verticalAlignment\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.instructions','null'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.name','\"Vertical Alignment\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.searchable','false'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.customOptions','false'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.0.1','\"Align Top\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.1.1','\"top\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.2.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.3.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.0.1','\"Align Center\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.1.1','\"center\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.2.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.3.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.1.__assoc__.4.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.0.1','\"Align Bottom\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.1.1','\"bottom\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.2.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.3.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.2.__assoc__.4.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.0.1','\"Stretch Full Height\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.1.1','\"stretch\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.2.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.3.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.settings.options.3.__assoc__.4.1','\"\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.translationKeyFormat','null'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.translationMethod','\"none\"'),
('fields.592ab577-259f-4a99-a41b-952ec300da4b.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.columnSuffix','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.handle','\"beforeImage\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.instructions','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.name','\"Before Image\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.searchable','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.allowedKinds.0','\"image\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.allowSelfRelations','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.allowSubfolders','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.allowUploads','true'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.branchLimit','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.defaultPlacement','\"end\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.defaultUploadLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.defaultUploadLocationSubpath','\"/transformations\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.maintainHierarchy','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.maxRelations','1'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.minRelations','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.previewMode','\"full\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.restrictedDefaultUploadSubpath','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.restrictedLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.restrictedLocationSubpath','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.restrictFiles','true'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.restrictLocation','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.selectionLabel','\"Add Before Image\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.showCardsInGrid','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.showSearchInput','true'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.showSiteMenu','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.showUnpermittedFiles','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.showUnpermittedVolumes','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.sources.0','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.targetSiteId','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.validateRelatedElements','false'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.settings.viewMode','\"list\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.translationKeyFormat','null'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.translationMethod','\"none\"'),
('fields.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915.type','\"craft\\\\fields\\\\Assets\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.columnSuffix','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.handle','\"priceSections\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.instructions','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.name','\"Price Sections\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.searchable','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.allowSelfRelations','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.branchLimit','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.defaultPlacement','\"end\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.maintainHierarchy','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.maxRelations','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.minRelations','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.selectionLabel','\"Add Section\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.showSearchInput','true'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.showSiteMenu','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.showUnpermittedEntries','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.showUnpermittedSections','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.sources.0','\"section:fe38ddc7-9164-4903-9f4e-c01f9d5126d8\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.targetSiteId','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.validateRelatedElements','false'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.settings.viewMode','\"cards\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.translationKeyFormat','null'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.translationMethod','\"none\"'),
('fields.5a0747b5-c1cc-4f6f-a103-e9256508f69c.type','\"craft\\\\fields\\\\Entries\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.columnSuffix','null'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.handle','\"gapSize\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.instructions','null'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.name','\"Gap Size\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.searchable','false'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.customOptions','false'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.0.1','\"No Gap\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.1.1','\"none\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.2.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.3.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.0.__assoc__.4.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.0.1','\"Small (1rem)\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.1.1','\"small\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.2.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.3.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.1.__assoc__.4.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.0.1','\"Medium (2rem)\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.1.1','\"medium\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.2.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.3.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.2.__assoc__.4.1','\"1\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.0.1','\"Large (3rem)\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.1.1','\"large\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.2.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.3.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.3.__assoc__.4.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.0.1','\"X-Large (4rem)\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.1.1','\"xlarge\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.2.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.3.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.settings.options.4.__assoc__.4.1','\"\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.translationKeyFormat','null'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.translationMethod','\"none\"'),
('fields.62672829-7d44-40d2-b9bd-02ee01a752a3.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.columnSuffix','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.handle','\"content\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.instructions','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.name','\"Content\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.searchable','false'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.availableTransforms','\"\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.availableVolumes','\"*\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.characterLimit','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.ckeConfig','\"f3801245-1cac-46df-bf78-b4697ba88015\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.createButtonLabel','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.defaultTransform','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.0.__assoc__.0.1','\"bfa7f962-3b34-407d-a1b8-218e82ea2a0b\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.1.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.1.__assoc__.0.1','\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.10.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.10.__assoc__.0.1','\"b6a30616-2a75-4a5e-997a-a06c3596ad23\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.11.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.11.__assoc__.0.1','\"e92185c7-a67c-4325-98ef-b8a6d2edbd1d\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.12.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.12.__assoc__.0.1','\"668312b7-a3ca-482b-9f09-61e12e43feab\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.13.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.13.__assoc__.0.1','\"3eca23a8-0dc8-4705-bc99-88ed8c52c67d\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.14.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.14.__assoc__.0.1','\"072a4948-ed72-4bec-8817-90115344274e\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.2.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.2.__assoc__.0.1','\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.3.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.3.__assoc__.0.1','\"54df986c-6d9a-49a7-8f54-33871ccfd5c6\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.4.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.4.__assoc__.0.1','\"53906bea-a5c6-4385-82e5-c89e27ac267b\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.5.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.5.__assoc__.0.1','\"4abd8145-07f0-4c4c-bd28-d130696c6013\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.6.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.6.__assoc__.0.1','\"4d901f07-e203-40c2-81e4-09b9ca404552\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.7.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.7.__assoc__.0.1','\"fb7fcf38-d4f2-4c7f-aac3-719daca80e85\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.8.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.8.__assoc__.0.1','\"e89d0915-68d1-43b8-beb5-92b66d73884e\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.9.__assoc__.0.0','\"uid\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.entryTypes.9.__assoc__.0.1','\"7727022a-2c1e-4699-8d36-3c9777b0a4e6\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.expandEntryButtons','false'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.fullGraphqlData','true'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.parseEmbeds','false'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.purifierConfig','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.purifyHtml','true'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.showUnpermittedFiles','false'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.showUnpermittedVolumes','false'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.showWordCount','false'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.sourceEditingGroups.0','\"__ADMINS__\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.settings.wordLimit','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.translationKeyFormat','null'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.translationMethod','\"none\"'),
('fields.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8.type','\"craft\\\\ckeditor\\\\Field\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.columnSuffix','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.handle','\"selectedTreatments\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.instructions','\"Manually select and order treatments to display\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.name','\"Selected Treatments\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.searchable','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.allowSelfRelations','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.branchLimit','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.defaultPlacement','\"end\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.maintainHierarchy','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.maxRelations','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.minRelations','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.selectionLabel','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.showCardsInGrid','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.showSearchInput','true'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.showSiteMenu','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.showUnpermittedEntries','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.showUnpermittedSections','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.sources.0','\"section:d4de9e34-cb7e-4113-989b-f14f4c3536d3\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.targetSiteId','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.validateRelatedElements','false'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.settings.viewMode','\"list\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.translationKeyFormat','null'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.translationMethod','\"none\"'),
('fields.729f8778-8c61-4d5c-acc7-bc33102dff1f.type','\"craft\\\\fields\\\\Entries\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.columnSuffix','null'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.handle','\"dividerStyle\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.instructions','null'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.name','\"Divider Style\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.searchable','false'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.customOptions','false'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.0.1','\"Simple Line\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.1.1','\"line\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.2.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.3.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.0.1','\"Wave\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.1.1','\"wave\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.2.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.3.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.1.__assoc__.4.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.0.1','\"Curve\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.1.1','\"curve\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.2.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.3.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.2.__assoc__.4.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.0.1','\"Zigzag\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.1.1','\"zigzag\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.2.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.3.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.settings.options.3.__assoc__.4.1','\"\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.translationKeyFormat','null'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.translationMethod','\"none\"'),
('fields.775f6523-487c-4213-829e-be87bd6546f0.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.columnSuffix','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.handle','\"featuredImage\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.instructions','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.name','\"Featured image\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.searchable','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.allowedKinds.0','\"image\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.allowSelfRelations','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.allowSubfolders','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.allowUploads','true'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.branchLimit','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.defaultPlacement','\"end\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.defaultUploadLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.defaultUploadLocationSubpath','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.maintainHierarchy','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.maxRelations','1'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.minRelations','0'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.previewMode','\"full\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.restrictedDefaultUploadSubpath','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.restrictedLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.restrictedLocationSubpath','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.restrictFiles','true'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.restrictLocation','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.selectionLabel','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.showCardsInGrid','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.showSearchInput','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.showSiteMenu','true'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.showUnpermittedFiles','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.showUnpermittedVolumes','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.sources.0','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.targetSiteId','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.validateRelatedElements','false'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.settings.viewMode','\"list\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.translationKeyFormat','null'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.translationMethod','\"none\"'),
('fields.7a129363-bf45-498a-9747-02d8a372898c.type','\"craft\\\\fields\\\\Assets\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.columnSuffix','null'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.handle','\"featuredTransformations\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.instructions','null'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.name','\"Featured Transformations\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.searchable','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.allowSelfRelations','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.branchLimit','null'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.defaultPlacement','\"end\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.maintainHierarchy','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.maxRelations','6'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.minRelations','null'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.selectionLabel','\"Choose Transformations to Feature\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.showCardsInGrid','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.showSearchInput','true'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.showSiteMenu','true'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.showUnpermittedEntries','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.showUnpermittedSections','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.sources.0','\"section:cbc5061d-a74e-463d-ab5e-7c5fd4103496\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.targetSiteId','null'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.validateRelatedElements','false'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.settings.viewMode','\"list\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.translationKeyFormat','null'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.translationMethod','\"none\"'),
('fields.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14.type','\"craft\\\\fields\\\\Entries\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.columnSuffix','null'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.handle','\"overlayOpacity\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.instructions','null'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.name','\"Background Overlay Opacity\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.searchable','false'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.customOptions','false'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.0.1','\"10%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.1.1','\"10\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.0.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.0.1','\"20%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.1.1','\"20\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.1.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.0.1','\"30%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.1.1','\"30\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.2.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.0.1','\"40%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.1.1','\"40\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.3.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.0.1','\"50%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.1.1','\"50\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.4.__assoc__.4.1','\"1\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.0.1','\"60%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.1.1','\"60\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.5.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.0.1','\"70%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.1.1','\"70\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.6.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.0.1','\"80%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.1.1','\"80\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.7.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.0.0','\"label\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.0.1','\"90%\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.1.0','\"value\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.1.1','\"90\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.2.0','\"icon\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.2.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.3.0','\"color\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.3.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.4.0','\"default\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.settings.options.8.__assoc__.4.1','\"\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.translationKeyFormat','null'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.translationMethod','\"none\"'),
('fields.7b95f861-a264-4830-a26c-4640458dbde2.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.columnSuffix','null'),
('fields.81563d83-c326-4c43-b097-a04688342405.handle','\"animationStyle\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.instructions','null'),
('fields.81563d83-c326-4c43-b097-a04688342405.name','\"Animation Style\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.searchable','false'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.customOptions','false'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.0.1','\"None\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.1.1','\"none\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.2.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.3.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.0.1','\"Fade In\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.1.1','\"fadeIn\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.2.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.3.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.1.__assoc__.4.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.0.1','\"Slide Up\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.1.1','\"slideUp\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.2.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.3.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.2.__assoc__.4.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.0.1','\"Slide from Left\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.1.1','\"slideLeft\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.2.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.3.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.3.__assoc__.4.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.0.1','\"Slide from Right\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.1.1','\"slideRight\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.2.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.3.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.settings.options.4.__assoc__.4.1','\"\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.translationKeyFormat','null'),
('fields.81563d83-c326-4c43-b097-a04688342405.translationMethod','\"none\"'),
('fields.81563d83-c326-4c43-b097-a04688342405.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.columnSuffix','null'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.handle','\"textColorOverride\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.instructions','null'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.name','\"Text Color Override\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.searchable','false'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.customOptions','false'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.0.1','\"Auto (follows scheme)\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.1.1','\"auto\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.2.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.3.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.0.1','\"Navy\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.1.1','\"navy\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.2.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.3.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.1.__assoc__.4.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.0.1','\"White\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.1.1','\"white\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.2.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.3.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.2.__assoc__.4.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.0.1','\"Gold\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.1.1','\"gold\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.2.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.3.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.3.__assoc__.4.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.0.1','\"Charcoal\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.1.1','\"charcoal\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.2.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.3.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.4.__assoc__.4.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.0.0','\"label\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.0.1','\"Charcoal Light\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.1.0','\"value\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.1.1','\"charcoalLight\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.2.0','\"icon\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.2.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.3.0','\"color\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.3.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.4.0','\"default\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.settings.options.5.__assoc__.4.1','\"\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.translationKeyFormat','null'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.translationMethod','\"none\"'),
('fields.858b871b-ca80-493b-b96a-32663892e6bd.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.columnSuffix','null'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.handle','\"headingStyle\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.instructions','null'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.name','\"Heading Style\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.searchable','false'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.customOptions','false'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.0.1','\"Display\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.1.1','\"display\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.2.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.3.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.0.__assoc__.4.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.0.1','\"Standard\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.1.1','\"standard\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.2.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.3.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.1.__assoc__.4.1','\"1\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.0.1','\"Subtitle\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.1.1','\"subtitle\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.2.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.3.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.settings.options.2.__assoc__.4.1','\"\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.translationKeyFormat','null'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.translationMethod','\"none\"'),
('fields.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.columnSuffix','null'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.handle','\"overviewCard\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.instructions','\"Add cards showing treatment details\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.name','\"Overview Card\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.searchable','false'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.createButtonLabel','null'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.defaultIndexViewMode','\"cards\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.enableVersioning','false'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.entryTypes.0.__assoc__.0.1','\"8fe1fdea-baec-48ee-b98e-6dc941fa6808\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.includeTableView','false'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.maxEntries','null'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.minEntries','null'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.pageSize','50'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.propagationKeyFormat','null'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.propagationMethod','\"all\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.showCardsInGrid','false'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.settings.viewMode','\"cards\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.translationKeyFormat','null'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.translationMethod','\"site\"'),
('fields.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.columnSuffix','null'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.handle','\"containerWidth\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.instructions','null'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.name','\"Container Width\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.searchable','false'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.customOptions','false'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.0.1','\"Full Width Background + Container Content\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.1.1','\"fullBgContainer\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.2.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.3.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.0.1','\"Full Width Background + Full Width Content\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.1.1','\"fullBgFull\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.2.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.3.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.1.__assoc__.4.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.0.1','\"Container Width Background + Content\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.1.1','\"containerBoth\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.2.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.3.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.2.__assoc__.4.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.0.1','\"Narrow Container\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.1.1','\"narrowContainer\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.2.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.3.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.settings.options.3.__assoc__.4.1','\"\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.translationKeyFormat','null'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.translationMethod','\"none\"'),
('fields.909cef3c-eb8f-41dc-859a-4fef188161a6.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.columnSuffix','null'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.handle','\"headingLevel\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.instructions','null'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.name','\"Heading Level\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.searchable','false'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.customOptions','false'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.0.1','\"H1\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.1.1','\"h1\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.2.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.3.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.0.__assoc__.4.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.0.1','\"H2\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.1.1','\"h2\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.2.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.3.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.1.__assoc__.4.1','\"1\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.0.1','\"H3\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.1.1','\"h3\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.2.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.3.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.2.__assoc__.4.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.0.1','\"H4\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.1.1','\"h4\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.2.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.3.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.3.__assoc__.4.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.0.1','\"H5\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.1.1','\"h5\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.2.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.3.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.settings.options.4.__assoc__.4.1','\"\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.translationKeyFormat','null'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.translationMethod','\"none\"'),
('fields.913d69e2-6c95-4e17-a8dd-e16598492091.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.columnSuffix','null'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.handle','\"featuredOnHomepage\"'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.instructions','null'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.name','\"Featured on Homepage\"'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.searchable','false'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.settings.default','false'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.settings.offLabel','\"NO\"'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.settings.onLabel','\"YES\"'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.translationKeyFormat','null'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.translationMethod','\"none\"'),
('fields.922aab16-db12-4e15-a3ef-88a4c9de0705.type','\"craft\\\\fields\\\\Lightswitch\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.columnSuffix','null'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.handle','\"dividerStyle2\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.instructions','null'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.name','\"Divider Style\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.searchable','false'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.customOptions','false'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.0.1','\"Simple Line\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.1.1','\"line\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.2.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.3.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.0.1','\"Thick Line\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.1.1','\"thick\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.2.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.3.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.1.__assoc__.4.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.0.1','\"Dotted Line\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.1.1','\"dotted\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.2.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.3.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.settings.options.2.__assoc__.4.1','\"\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.translationKeyFormat','null'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.translationMethod','\"none\"'),
('fields.943e5167-350b-4d8b-b45c-796076d68a2b.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.columnSuffix','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.handle','\"videoFile\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.instructions','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.name','\"Video File\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.searchable','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.allowedKinds.0','\"video\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.allowSelfRelations','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.allowSubfolders','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.allowUploads','true'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.branchLimit','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.defaultPlacement','\"end\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.defaultUploadLocationSource','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.defaultUploadLocationSubpath','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.maintainHierarchy','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.maxRelations','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.minRelations','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.previewMode','\"full\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.restrictedDefaultUploadSubpath','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.restrictedLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.restrictedLocationSubpath','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.restrictFiles','true'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.restrictLocation','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.selectionLabel','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.showCardsInGrid','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.showSearchInput','true'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.showSiteMenu','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.showUnpermittedFiles','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.showUnpermittedVolumes','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.sources','\"*\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.targetSiteId','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.validateRelatedElements','false'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.settings.viewMode','\"list\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.translationKeyFormat','null'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.translationMethod','\"none\"'),
('fields.950833d2-d383-4899-bcf9-0189d600e24d.type','\"craft\\\\fields\\\\Assets\"'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.columnSuffix','null'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.handle','\"plainText\"'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.instructions','null'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.name','\"Plain Text \"'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.searchable','false'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.byteLimit','null'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.charLimit','null'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.code','false'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.initialRows','4'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.multiline','false'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.placeholder','null'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.settings.uiMode','\"normal\"'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.translationKeyFormat','null'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.translationMethod','\"none\"'),
('fields.9fc3a933-4142-4602-8609-0c4f426e043b.type','\"craft\\\\fields\\\\PlainText\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.columnSuffix','null'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.handle','\"videoAspectRatio\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.instructions','null'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.name','\"Video Aspect Ratio\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.searchable','false'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.customOptions','false'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.0.1','\"16:9\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.1.1','\"16-9\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.2.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.3.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.0.1','\"4:3\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.1.1','\"4-3\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.2.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.3.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.1.__assoc__.4.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.0.1','\"1:1\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.1.1','\"1-1\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.2.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.3.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.settings.options.2.__assoc__.4.1','\"\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.translationKeyFormat','null'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.translationMethod','\"none\"'),
('fields.a0e04847-3252-4444-9421-4fd5317d45de.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.columnSuffix','null'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.handle','\"maxWidth\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.instructions','null'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.name','\"Max Width\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.searchable','false'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.customOptions','false'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.0.1','\"Full Width\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.1.1','\"full\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.2.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.3.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.0.__assoc__.4.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.0.1','\"Container\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.1.1','\"container\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.2.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.3.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.1.__assoc__.4.1','\"1\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.0.1','\"Narrow\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.1.1','\"narrow\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.2.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.3.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.2.__assoc__.4.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.0.1','\"Prose\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.1.1','\"prose\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.2.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.3.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.settings.options.3.__assoc__.4.1','\"\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.translationKeyFormat','null'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.translationMethod','\"none\"'),
('fields.a39e2e1e-4a2c-4632-b6e2-10f242572d5f.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.columnSuffix','null'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.handle','\"imageSize\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.instructions','null'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.name','\"Image Size\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.searchable','false'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.customOptions','false'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.0.1','\"Small\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.1.1','\"small\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.2.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.3.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.0.__assoc__.4.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.0.1','\"Medium\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.1.1','\"medium\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.2.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.3.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.1.__assoc__.4.1','\"1\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.0.1','\"Large\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.1.1','\"large\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.2.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.3.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.2.__assoc__.4.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.0.1','\"Full Width\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.1.1','\"full\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.2.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.3.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.settings.options.3.__assoc__.4.1','\"\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.translationKeyFormat','null'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.translationMethod','\"none\"'),
('fields.a51ad288-48e6-40a1-9fe6-85c1ae2947a3.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.columnSuffix','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.handle','\"numberOfTreatments\"'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.instructions','\"How many treatments to display (leave empty for all)\"'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.name','\"Number of Treatments\"'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.searchable','false'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.decimals','0'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.defaultValue','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.max','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.min','0'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.prefix','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.previewCurrency','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.previewFormat','\"decimal\"'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.size','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.step','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.settings.suffix','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.translationKeyFormat','null'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.translationMethod','\"none\"'),
('fields.a906962a-296e-41d6-a082-1398608c0ead.type','\"craft\\\\fields\\\\Number\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.columnSuffix','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.handle','\"image\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.instructions','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.name','\"Image\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.searchable','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowedKinds.0','\"audio\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowedKinds.1','\"image\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowedKinds.2','\"pdf\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowedKinds.3','\"video\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowSelfRelations','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowSubfolders','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.allowUploads','true'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.branchLimit','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.defaultPlacement','\"end\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.defaultUploadLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.defaultUploadLocationSubpath','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.maintainHierarchy','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.maxRelations','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.minRelations','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.previewMode','\"full\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.restrictedDefaultUploadSubpath','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.restrictedLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.restrictedLocationSubpath','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.restrictFiles','true'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.restrictLocation','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.selectionLabel','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.showCardsInGrid','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.showSearchInput','true'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.showSiteMenu','true'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.showUnpermittedFiles','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.showUnpermittedVolumes','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.sources','\"*\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.targetSiteId','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.validateRelatedElements','false'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.settings.viewMode','\"list\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.translationKeyFormat','null'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.translationMethod','\"none\"'),
('fields.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f.type','\"craft\\\\fields\\\\Assets\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.columnSuffix','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.handle','\"disclaimerItems\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.instructions','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.name','\"DisclaimerItems\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.searchable','false'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.createButtonLabel','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.defaultIndexViewMode','\"cards\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.enableVersioning','false'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.entryTypes.0.__assoc__.0.1','\"ea1062cb-4d63-4f41-ba26-c8937a0ba86b\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.includeTableView','false'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.maxEntries','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.minEntries','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.pageSize','50'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.propagationKeyFormat','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.propagationMethod','\"all\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.showCardsInGrid','false'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.settings.viewMode','\"cards\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.translationKeyFormat','null'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.translationMethod','\"site\"'),
('fields.b18a7136-6cdd-4a0b-a094-b82bc3f945d4.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.columnSuffix','null'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.handle','\"quoteStyle\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.instructions','null'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.name','\"Quote Style\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.searchable','false'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.customOptions','false'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.0.1','\"Default\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.1.1','\"default\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.2.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.3.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.0.__assoc__.4.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.0.1','\"Large Featured\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.1.1','\"large\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.2.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.3.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.1.__assoc__.4.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.0.1','\"Minimal\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.1.1','\"minimal\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.2.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.3.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.settings.options.2.__assoc__.4.1','\"\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.translationKeyFormat','null'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.translationMethod','\"none\"'),
('fields.b3f660e6-d7ee-4793-b5c1-480690617dbc.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.columnSuffix','null'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.handle','\"sectionLabel\"'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.instructions','\"The label shown above the heading (e.g., \'Meet Your Doctor\')\"'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.name','\"Section Label\"'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.searchable','false'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.byteLimit','null'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.charLimit','null'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.code','false'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.initialRows','4'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.multiline','false'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.placeholder','null'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.settings.uiMode','\"normal\"'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.translationKeyFormat','null'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.translationMethod','\"none\"'),
('fields.b6e437a2-3082-4ab0-9f08-862af0b650b1.type','\"craft\\\\fields\\\\PlainText\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.columnSuffix','null'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.handle','\"linkEntry\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.instructions','null'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.name','\"Related treatment\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.searchable','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.allowSelfRelations','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.branchLimit','null'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.defaultPlacement','\"end\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.maintainHierarchy','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.maxRelations','1'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.minRelations','0'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.selectionLabel','\"Related to treatment \"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.showCardsInGrid','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.showSearchInput','true'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.showSiteMenu','true'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.showUnpermittedEntries','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.showUnpermittedSections','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.sources.0','\"section:d4de9e34-cb7e-4113-989b-f14f4c3536d3\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.targetSiteId','null'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.validateRelatedElements','false'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.settings.viewMode','\"list\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.translationKeyFormat','null'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.translationMethod','\"none\"'),
('fields.b7236eb7-32e2-438c-a8c1-80c2d52e82db.type','\"craft\\\\fields\\\\Entries\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.columnSuffix','null'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.handle','\"buttonType\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.instructions','null'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.name','\"Button Type\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.searchable','false'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.customOptions','false'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.0.1','\"Normal Link\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.1.1','\"normal\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.2.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.3.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.0.1','\"Call To Action\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.1.1','\"cta\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.2.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.3.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.1.__assoc__.4.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.0.1','\"Call To Action Alt\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.1.1','\"ctaAlt\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.2.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.3.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.settings.options.2.__assoc__.4.1','\"\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.translationKeyFormat','null'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.translationMethod','\"none\"'),
('fields.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.columnSuffix','null'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.handle','\"aboutDoctor\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.instructions','\"Meet Your Doctor section with image, content, and credentials\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.name','\"About Doctor\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.searchable','false'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.createButtonLabel','null'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.defaultIndexViewMode','\"cards\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.enableVersioning','false'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.entryTypes.0.__assoc__.0.1','\"33f0b780-c7d3-4e20-94e5-83bbd5f30e48\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.includeTableView','false'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.maxEntries','null'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.minEntries','null'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.pageSize','50'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.propagationKeyFormat','null'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.propagationMethod','\"all\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.showCardsInGrid','false'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.settings.viewMode','\"cards\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.translationKeyFormat','null'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.translationMethod','\"site\"'),
('fields.c66f8859-ed4e-45e4-b2a7-1580cb064ccc.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.columnSuffix','null'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.handle','\"socialIcon\"'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.instructions','null'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.name','\"Icon\"'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.searchable','false'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.settings.fullGraphqlData','true'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.settings.includeProIcons','false'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.translationKeyFormat','null'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.translationMethod','\"none\"'),
('fields.c91f3372-1fd1-4bfb-b8f3-5432da853217.type','\"craft\\\\fields\\\\Icon\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.columnSuffix','null'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.handle','\"dividerColor\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.instructions','null'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.name','\"Divider Color\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.searchable','false'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.customOptions','false'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.0.1','\"Auto (follows text color)\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.1.1','\"auto\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.2.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.3.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.0.1','\"Gold\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.1.1','\"gold\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.2.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.3.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.1.__assoc__.4.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.0.1','\"Navy\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.1.1','\"navy\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.2.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.3.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.2.__assoc__.4.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.0.1','\"White\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.1.1','\"white\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.2.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.3.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.3.__assoc__.4.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.0.1','\"Charcoal\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.1.1','\"charcoal\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.2.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.3.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.settings.options.4.__assoc__.4.1','\"\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.translationKeyFormat','null'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.translationMethod','\"none\"'),
('fields.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.columnSuffix','null'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.handle','\"textAreaSimple\"'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.instructions','null'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.name','\"Text Area - Simple\"'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.searchable','false'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.byteLimit','null'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.charLimit','null'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.code','false'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.initialRows','4'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.multiline','true'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.placeholder','null'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.settings.uiMode','\"normal\"'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.translationKeyFormat','null'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.translationMethod','\"none\"'),
('fields.d03c1783-dc97-44b5-a9b6-41eb20ef7386.type','\"craft\\\\fields\\\\PlainText\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.columnSuffix','null'),
('fields.d732a944-da30-458b-be66-3d165633012d.handle','\"mobileLayout\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.instructions','null'),
('fields.d732a944-da30-458b-be66-3d165633012d.name','\"Mobile Layout\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.searchable','false'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.customOptions','false'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.0.1','\"Stack on Mobile\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.1.1','\"stack\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.2.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.3.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.0.1','\"Maintain Columns\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.1.1','\"maintain\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.2.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.3.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.1.__assoc__.4.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.0.1','\"Reverse Order\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.1.1','\"reverse\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.2.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.3.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.settings.options.2.__assoc__.4.1','\"\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.translationKeyFormat','null'),
('fields.d732a944-da30-458b-be66-3d165633012d.translationMethod','\"none\"'),
('fields.d732a944-da30-458b-be66-3d165633012d.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.columnSuffix','null'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.handle','\"displayType\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.instructions','null'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.name','\"Display Type\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.searchable','false'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.customOptions','false'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.0.1','\"Show All \"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.1.1','\"all\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.2.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.3.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.0.1','\"Show Selected \"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.1.1','\"selected\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.2.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.3.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.1.__assoc__.4.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.0.1','\"Show Limited Number\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.1.1','\"limited\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.2.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.3.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.settings.options.2.__assoc__.4.1','\"\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.translationKeyFormat','null'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.translationMethod','\"none\"'),
('fields.df77759d-bc11-4545-8c34-f63e1bbd65b2.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.columnSuffix','null'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.handle','\"imagePosition\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.instructions','null'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.name','\"Image Position\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.searchable','false'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.customOptions','false'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.0.1','\"Left\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.1.1','\"left\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.2.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.3.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.0.1','\"Right\"');
INSERT INTO `projectconfig` VALUES
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.1.1','\"right\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.2.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.3.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.1.__assoc__.4.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.0.1','\"Center\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.1.1','\"center\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.2.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.3.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.settings.options.2.__assoc__.4.1','\"\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.translationKeyFormat','null'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.translationMethod','\"none\"'),
('fields.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.columnSuffix','null'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.handle','\"footerSocials\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.instructions','null'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.name','\"Footer Socials\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.searchable','false'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.createButtonLabel','\"Add Social\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.defaultIndexViewMode','\"cards\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.enableVersioning','false'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.entryTypes.0.__assoc__.0.1','\"4abd8145-07f0-4c4c-bd28-d130696c6013\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.includeTableView','false'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.maxEntries','null'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.minEntries','null'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.pageSize','50'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.propagationKeyFormat','null'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.propagationMethod','\"all\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.showCardsInGrid','false'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.settings.viewMode','\"cards\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.translationKeyFormat','null'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.translationMethod','\"site\"'),
('fields.e700606a-2f59-4f03-ad43-3a19658d4d03.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.columnSuffix','null'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.handle','\"treatmentHeroBackground\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.instructions','null'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.name','\"Section Background\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.searchable','false'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.customOptions','false'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.0.1','\"White\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.1.1','\"white\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.2.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.3.1','\"#feffff\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.0.__assoc__.4.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.0.1','\"EBD5CB\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.1.1','\"ebd5cb\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.2.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.3.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.1.__assoc__.4.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.0.1','\"FFFAF7\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.1.1','\"fffaf7\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.2.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.3.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.2.__assoc__.4.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.0.1','\"Navy\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.1.1','\"bg-navy\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.2.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.3.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.3.__assoc__.4.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.0.1','\"F2E5DE\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.1.1','\"F2E5DE\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.2.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.3.1','\"#f1f1f1\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.settings.options.4.__assoc__.4.1','\"\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.translationKeyFormat','null'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.translationMethod','\"none\"'),
('fields.eb509daa-6f9f-4a37-99b9-4564ce8baceb.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.columnSuffix','null'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.handle','\"contentElements\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.instructions','\"The actual content blocks\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.name','\"Content Elements\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.searchable','false'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.createButtonLabel','null'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.defaultIndexViewMode','\"cards\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.enableVersioning','false'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.0.__assoc__.0.1','\"f8d21671-c310-4d72-8089-6f8ea9a21cfc\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.1.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.1.__assoc__.0.1','\"9ab60243-add9-4782-b48b-04f98b59f374\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.1.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.1.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.10.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.10.__assoc__.0.1','\"76fcee0a-a302-4817-8d2e-74b446967ecd\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.10.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.10.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.2.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.2.__assoc__.0.1','\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.2.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.2.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.3.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.3.__assoc__.0.1','\"29d763f0-b99e-4d96-a353-1c17eab89a2d\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.3.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.3.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.4.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.4.__assoc__.0.1','\"1691e92d-8d2f-4344-b3e5-2bdf8a0595c3\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.4.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.4.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.5.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.5.__assoc__.0.1','\"1d1a1969-ec9c-475c-bb15-08cd6dffd195\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.5.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.5.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.6.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.6.__assoc__.0.1','\"396eb574-8f32-4bce-bcb0-2ac242ba6e5b\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.6.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.6.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.7.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.7.__assoc__.0.1','\"925b43fe-a66a-4a29-94b1-05ef478160ea\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.7.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.7.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.8.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.8.__assoc__.0.1','\"66c57356-7f34-4425-bf45-6da256fd496d\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.8.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.8.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.9.__assoc__.0.0','\"uid\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.9.__assoc__.0.1','\"f22ad779-6d76-496c-b910-0e08523a5492\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.9.__assoc__.1.0','\"group\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.entryTypes.9.__assoc__.1.1','\"General\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.includeTableView','false'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.maxEntries','null'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.minEntries','null'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.pageSize','50'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.propagationKeyFormat','null'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.propagationMethod','\"all\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.showCardsInGrid','true'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.settings.viewMode','\"cards\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.translationKeyFormat','null'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.translationMethod','\"site\"'),
('fields.eb896b6f-bcb1-4fae-9998-a59cd8810a7a.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.columnSuffix','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.handle','\"imageAsset\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.instructions','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.name','\"Image Assets\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.searchable','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.allowedKinds','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.allowSelfRelations','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.allowSubfolders','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.allowUploads','true'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.branchLimit','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.defaultPlacement','\"end\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.defaultUploadLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.defaultUploadLocationSubpath','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.maintainHierarchy','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.maxRelations','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.minRelations','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.previewMode','\"full\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.restrictedDefaultUploadSubpath','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.restrictedLocationSource','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.restrictedLocationSubpath','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.restrictFiles','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.restrictLocation','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.selectionLabel','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.showCardsInGrid','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.showSearchInput','true'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.showSiteMenu','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.showUnpermittedFiles','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.showUnpermittedVolumes','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.sources.0','\"volume:64c9f579-ab20-40f7-9af8-73f9db7a4394\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.targetSiteId','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.validateRelatedElements','false'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.settings.viewMode','\"list\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.translationKeyFormat','null'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.translationMethod','\"none\"'),
('fields.edf56846-fce6-475b-81c3-7237f63d0a83.type','\"craft\\\\fields\\\\Assets\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.columnSuffix','null'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.handle','\"ctaButtons\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.instructions','null'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.name','\"Call to Action\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.searchable','false'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.createButtonLabel','\"Add New Button\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.defaultIndexViewMode','\"cards\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.enableVersioning','false'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.entryTypes.0.__assoc__.0.1','\"3d095a62-0ba8-4def-88a7-ad2e35d53fce\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.includeTableView','false'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.maxEntries','null'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.minEntries','null'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.pageSize','50'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.propagationKeyFormat','null'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.propagationMethod','\"all\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.showCardsInGrid','true'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.settings.viewMode','\"cards\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.translationKeyFormat','null'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.translationMethod','\"site\"'),
('fields.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.columnSuffix','null'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.handle','\"dividerWidth\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.instructions','null'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.name','\"Divider Width\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.searchable','false'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.customOptions','false'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.0.1','\"Full Width\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.1.1','\"full\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.2.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.3.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.0.__assoc__.4.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.0.1','\"Short (centered)\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.1.1','\"short\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.2.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.3.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.1.__assoc__.4.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.0.1','\"Medium (centered)\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.1.1','\"medium\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.2.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.3.1','\"\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.settings.options.2.__assoc__.4.1','\"1\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.translationKeyFormat','null'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.translationMethod','\"none\"'),
('fields.ee1cc83b-5b4e-4514-85b3-075cee380875.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.columnSuffix','null'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.handle','\"faqs\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.instructions','\"Add FAQ questions and answers for this treatment\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.name','\"FAQs\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.searchable','false'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.createButtonLabel','null'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.defaultIndexViewMode','\"cards\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.enableVersioning','false'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.entryTypes.0.__assoc__.0.1','\"b8e64025-f821-4cb6-aa16-7b5951f8f01e\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.includeTableView','false'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.maxEntries','null'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.minEntries','null'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.pageSize','50'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.propagationKeyFormat','null'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.propagationMethod','\"all\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.showCardsInGrid','false'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.settings.viewMode','\"cards\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.translationKeyFormat','null'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.translationMethod','\"site\"'),
('fields.ef4c617e-94ef-4a32-8406-24a92a9e9a82.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.columnSuffix','null'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.handle','\"paddingTop\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.instructions','null'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.name','\"Section Padding Top\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.searchable','false'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.customOptions','false'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.0.1','\"None\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.1.1','\"none\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.2.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.3.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.0.__assoc__.4.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.0.1','\"Small (2rem)\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.1.1','\"small\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.2.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.3.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.1.__assoc__.4.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.0.1','\"Medium (4rem)\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.1.1','\"medium\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.2.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.3.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.2.__assoc__.4.1','\"1\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.0.1','\"Large (6rem)\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.1.1','\"large\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.2.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.3.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.3.__assoc__.4.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.0.0','\"label\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.0.1','\"X-Large (8rem)\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.1.0','\"value\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.1.1','\"xlarge\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.2.0','\"icon\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.2.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.3.0','\"color\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.3.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.4.0','\"default\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.settings.options.4.__assoc__.4.1','\"\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.translationKeyFormat','null'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.translationMethod','\"none\"'),
('fields.f7c46ae8-7a7a-469f-8279-f8e6017b717f.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.columnSuffix','null'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.handle','\"benefitCards\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.instructions','\"Add cards for the treatment benefits \"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.name','\"Benefit Cards\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.searchable','false'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.createButtonLabel','null'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.defaultIndexViewMode','\"cards\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.enableVersioning','false'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.entryTypes.0.__assoc__.0.0','\"uid\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.entryTypes.0.__assoc__.0.1','\"228a8acf-c542-4ca9-a1a2-e736335ae4bb\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.entryTypes.0.__assoc__.1.0','\"group\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.entryTypes.0.__assoc__.1.1','\"General\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.includeTableView','false'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.maxEntries','null'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.minEntries','null'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.pageSize','50'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.propagationKeyFormat','null'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.propagationMethod','\"all\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.showCardsInGrid','false'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.settings.viewMode','\"cards\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.translationKeyFormat','null'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.translationMethod','\"site\"'),
('fields.fbe1b888-6820-4ee6-be6f-fad5554a897b.type','\"craft\\\\fields\\\\Matrix\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.columnSuffix','null'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.handle','\"iconColor\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.instructions','null'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.name','\"Icon Color\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.searchable','false'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.customOptions','false'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.0.1','\"Auto\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.1.1','\"auto\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.2.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.3.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.0.1','\"Gold\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.1.1','\"gold\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.2.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.3.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.1.__assoc__.4.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.0.1','\"Navy\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.1.1','\"navy\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.2.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.3.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.2.__assoc__.4.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.0.0','\"label\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.0.1','\"White\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.1.0','\"value\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.1.1','\"white\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.2.0','\"icon\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.2.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.3.0','\"color\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.3.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.4.0','\"default\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.settings.options.3.__assoc__.4.1','\"\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.translationKeyFormat','null'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.translationMethod','\"none\"'),
('fields.fbe942b3-1780-471a-a255-482d04f0ba66.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.columnSuffix','null'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.handle','\"videoType\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.instructions','null'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.name','\"Video Type\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.searchable','false'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.customOptions','false'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.0.1','\"YouTube\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.1.1','\"youtube\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.2.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.3.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.0.__assoc__.4.1','\"1\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.0.1','\"Vimeo\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.1.1','\"vimeo\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.2.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.3.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.1.__assoc__.4.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.0.1','\"Local File\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.1.1','\"local\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.2.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.3.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.settings.options.2.__assoc__.4.1','\"\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.translationKeyFormat','null'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.translationMethod','\"none\"'),
('fields.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8.type','\"craft\\\\fields\\\\Dropdown\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.columnSuffix','null'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.handle','\"iconSize\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.instructions','null'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.name','\"Icon Size\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.searchable','false'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.customOptions','false'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.0.0','\"label\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.0.1','\"Small\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.1.0','\"value\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.1.1','\"small\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.2.0','\"icon\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.2.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.3.0','\"color\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.3.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.4.0','\"default\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.0.__assoc__.4.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.0.0','\"label\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.0.1','\"Medium\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.1.0','\"value\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.1.1','\"medium\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.2.0','\"icon\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.2.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.3.0','\"color\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.3.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.4.0','\"default\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.1.__assoc__.4.1','\"1\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.0.0','\"label\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.0.1','\"Large\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.1.0','\"value\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.1.1','\"large\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.2.0','\"icon\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.2.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.3.0','\"color\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.3.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.4.0','\"default\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.settings.options.2.__assoc__.4.1','\"\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.translationKeyFormat','null'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.translationMethod','\"none\"'),
('fields.fd862905-7ebc-4c67-8a1a-4ec5084d1fae.type','\"craft\\\\fields\\\\Dropdown\"'),
('fs.images.hasUrls','true'),
('fs.images.name','\"Images\"'),
('fs.images.settings.path','\"@webroot/assets/images\"'),
('fs.images.type','\"craft\\\\fs\\\\Local\"'),
('fs.images.url','\"$PRIMARY_SITE_URL/assets/images\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.cardThumbAlignment','\"end\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.label','\"Logo\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.uid','\"2d269704-a7ab-430b-8fb7-4f5ecf43619e\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.0.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.label','\"Footer Text\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.uid','\"44163978-09b5-41d9-aeca-b7f4d159c399\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.1.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.fieldUid','\"e700606a-2f59-4f03-ad43-3a19658d4d03\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.label','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.uid','\"d52bc6ac-8ada-42a7-9c76-379e9782c630\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.elements.2.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.name','\"Content\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.uid','\"b37cf40a-ef27-4fbe-b748-6663185d8632\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.0.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.label','\"Phone Number\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.uid','\"ad69a4ab-be0f-40af-9893-7061bb208954\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.0.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.dateAdded','\"2026-04-17T16:35:44+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.fieldUid','\"5255cd18-4f37-4112-b6bb-070514da0eae\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.label','\"Contact Mode\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.uid','\"612708a4-b3a5-4d5e-8788-4ef7dbe19d09\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.handle','\"plainText2\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.label','\"Email\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.uid','\"2ee1436c-9bfd-4b8b-85d5-08ac782d324c\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.handle','\"textArea2\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.label','\"Address\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.uid','\"15ee367f-1e67-4016-853e-efc16011c1ec\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.label','\"Google Maps Link\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.uid','\"12fa2947-f2ff-44bd-b309-abed952bde15\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.4.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.name','\"Get In Touch\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.uid','\"c5ceea8a-85ce-4bc5-b8a4-689068dc6d42\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.dateAdded','\"2025-12-02T22:04:25+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.handle','\"plainText3\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.instructions','\"© {{ now|date(\'Y\') }} Website. All rights reserved.\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.label','\"Copyright Text\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.uid','\"c49634d8-fde6-459c-bd26-9cb8d58aad59\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.elements.0.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.name','\"Copyright Texts\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.uid','\"336c4fa8-28cd-4500-b43e-fc04318d65d2\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.2.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.dateAdded','\"2025-12-02T22:08:59+00:00\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.editCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.elementCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.elementEditCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.fieldUid','\"ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.instructions','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.label','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.required','false'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.tip','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.uid','\"3c47aec6-c53d-4246-a947-9b263c5f6167\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.warning','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.elements.0.width','100'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.name','\"Legal links\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.uid','\"7ba7f09b-e018-475c-bd57-488e46559450\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.3.userCondition','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.thumbFieldKey','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.handle','\"footer\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.name','\"Footer\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.sortOrder','1'),
('graphql.schemas.2e2599f6-9896-4793-a43a-b84a91dd8b40.isPublic','true'),
('graphql.schemas.2e2599f6-9896-4793-a43a-b84a91dd8b40.name','\"Public Schema\"'),
('meta.__names__.047fdd15-181a-45a8-b054-bf13b0d2bfb5','\"Divider Thickness\"'),
('meta.__names__.072a4948-ed72-4bec-8817-90115344274e','\"Treatments Grid\"'),
('meta.__names__.08dd03a9-f011-4dbe-9890-87c0fc2849be','\"Test section\"'),
('meta.__names__.0ef98093-5a9d-410d-a094-b2e111e0c6d1','\"Spacer Size\"'),
('meta.__names__.109e9e12-5487-40f4-b216-9f942305125d','\"Content Columns\"'),
('meta.__names__.11ca9eb3-65b9-4075-8327-16d3eaf68026','\"Text Area\"'),
('meta.__names__.1691e92d-8d2f-4344-b3e5-2bdf8a0595c3','\"Icon + Text\"'),
('meta.__names__.1d1a1969-ec9c-475c-bb15-08cd6dffd195','\"Spacer\"'),
('meta.__names__.1f8e8ef2-1c2c-4228-96d5-7af284255ba0','\"Text Align\"'),
('meta.__names__.212a20ff-39e0-48f2-b54a-da7435fcfd30','\"Featured Case Studiess\"'),
('meta.__names__.228a8acf-c542-4ca9-a1a2-e736335ae4bb','\"Benefit Card\"'),
('meta.__names__.261227ce-d2bf-499b-91a8-2cd83c94d6d7','\"WISYWIG\"'),
('meta.__names__.2742df1d-cef9-4fbb-863e-bae8865170f9','\"Column Layout\"'),
('meta.__names__.28299698-73d7-4cd3-9e87-ca3b6cb9e3b3','\"Font Size\"'),
('meta.__names__.28c66742-a424-4cbd-ad18-079d8881f9ae','\"FAQ List\"'),
('meta.__names__.29d763f0-b99e-4d96-a353-1c17eab89a2d','\"image\"'),
('meta.__names__.2ae532dc-e56d-4b4e-98da-300c62edff20','\"Border Radius\"'),
('meta.__names__.2e2599f6-9896-4793-a43a-b84a91dd8b40','\"Public Schema\"'),
('meta.__names__.2fc1070c-46b5-4221-948d-e3693438e735','\"Featured Testimonial\"'),
('meta.__names__.318e492e-01cc-4b53-86ef-7186a7f4cee4','\"Location Contact\"'),
('meta.__names__.33126ba0-77bf-4fda-aec5-cf3893199a82','\"Price rows\"'),
('meta.__names__.33acef61-26dd-4d37-8a02-5f903e07ac2a','\"Column\"'),
('meta.__names__.33f0b780-c7d3-4e20-94e5-83bbd5f30e48','\"About Doctor\"'),
('meta.__names__.3562e3e8-953b-4bf9-a05b-29bebbeb4fb9','\"Selected Posts\"'),
('meta.__names__.36505853-1fbd-4631-856c-a5b50c2c059f','\"Rachel Siton Website\"'),
('meta.__names__.396eb574-8f32-4bce-bcb0-2ac242ba6e5b','\"Quote\"'),
('meta.__names__.3ab8a613-21c3-46fb-9b46-9978c63ba4b8','\"About\"'),
('meta.__names__.3c1a81fc-6fae-4278-8d85-367a118abfbb','\"Show on Desktop\"'),
('meta.__names__.3c3901be-445f-43a2-aac3-836a5a5cdfba','\"Instagram\"'),
('meta.__names__.3c3edcaf-67eb-492e-8460-c077662649ee','\"Call To Action Section\"'),
('meta.__names__.3d095a62-0ba8-4def-88a7-ad2e35d53fce','\"Call to Action\"'),
('meta.__names__.3eca23a8-0dc8-4705-bc99-88ed8c52c67d','\"Treatment\"'),
('meta.__names__.452dafb1-1a42-4c98-a977-363c723ec58c','\"URL\"'),
('meta.__names__.45b2b61e-fd67-48d4-8ce2-35e95068be62','\"Selected Testimonials\"'),
('meta.__names__.45e1951f-373a-4e27-8d30-3cfa1bb82857','\"Treatment Overview\"'),
('meta.__names__.4626b440-5a67-45f1-a605-bbf880f31698','\"CTA Style\"'),
('meta.__names__.46742ca3-f2c3-408c-87e7-c0191d86f70e','\"Use Hero Video\"'),
('meta.__names__.48a6b377-0807-4f30-abf3-84f1acd358ce','\"Steps\"'),
('meta.__names__.4a83aae4-2c1f-4a29-beff-16feb9d628ce','\"Background Scheme\"'),
('meta.__names__.4aa7c64f-460a-4bb3-81dd-f76576f7bce7','\"Flexible Section\"'),
('meta.__names__.4abd8145-07f0-4c4c-bd28-d130696c6013','\"Footer Socials\"'),
('meta.__names__.4ae0713a-c032-477f-9cfa-9dded22631fb','\"Underline Color\"'),
('meta.__names__.4b3e5070-9588-413c-bedc-097215932500','\"After Image\"'),
('meta.__names__.4b5c5181-3923-4781-a0bb-ad5b5eabb1fe','\"Show Image Frame\"'),
('meta.__names__.4d901f07-e203-40c2-81e4-09b9ca404552','\"Hero Section\"'),
('meta.__names__.508da987-f99e-43bc-bf89-c10fc03a27d2','\"Homepage\"'),
('meta.__names__.509a8ddb-54bf-42d0-b022-428404fd505b','\"Page Builder\"'),
('meta.__names__.5255cd18-4f37-4112-b6bb-070514da0eae','\"Contact Mode: Message\"'),
('meta.__names__.53906bea-a5c6-4385-82e5-c89e27ac267b','\"Featured transformations\"'),
('meta.__names__.54df986c-6d9a-49a7-8f54-33871ccfd5c6','\"Blog Grid\"'),
('meta.__names__.57f44c99-1624-4bf6-a3cf-d6a78bf7f1ec','\"Video Layout\"'),
('meta.__names__.592ab577-259f-4a99-a41b-952ec300da4b','\"Vertical Alignment\"'),
('meta.__names__.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915','\"Before Image\"'),
('meta.__names__.5a0747b5-c1cc-4f6f-a103-e9256508f69c','\"Price Sections\"'),
('meta.__names__.618ae0d4-4ee0-41b7-b790-720b07c1f413','\"Conditions\"'),
('meta.__names__.62672829-7d44-40d2-b9bd-02ee01a752a3','\"Gap Size\"'),
('meta.__names__.64c9f579-ab20-40f7-9af8-73f9db7a4394','\"Images\"'),
('meta.__names__.668312b7-a3ca-482b-9f09-61e12e43feab','\"Transformations\"'),
('meta.__names__.66c57356-7f34-4425-bf45-6da256fd496d','\"Video\"'),
('meta.__names__.66ccd9d4-a371-41cf-8ce9-1a673ccb927d','\"Contacts\"'),
('meta.__names__.6ab27a91-bd1e-456b-aa68-b220eb7a8fd8','\"Content\"'),
('meta.__names__.729f8778-8c61-4d5c-acc7-bc33102dff1f','\"Selected Treatments\"'),
('meta.__names__.72a3e7c8-2eeb-41b3-a2c7-018b46e8913d','\"Conditions\"'),
('meta.__names__.73bbd50d-5a76-4478-ab66-7b936845b6d8','\"Why Choose Treatment\"'),
('meta.__names__.76fcee0a-a302-4817-8d2e-74b446967ecd','\"Divider\"'),
('meta.__names__.7727022a-2c1e-4699-8d36-3c9777b0a4e6','\"Step Type\"'),
('meta.__names__.775f6523-487c-4213-829e-be87bd6546f0','\"Divider Style\"'),
('meta.__names__.7a129363-bf45-498a-9747-02d8a372898c','\"Featured image\"'),
('meta.__names__.7a91ded5-d5f6-4f89-bd3b-5bb0647cef14','\"Featured Transformations\"'),
('meta.__names__.7b95f861-a264-4830-a26c-4640458dbde2','\"Background Overlay Opacity\"'),
('meta.__names__.81563d83-c326-4c43-b097-a04688342405','\"Animation Style\"'),
('meta.__names__.858b871b-ca80-493b-b96a-32663892e6bd','\"Text Color Override\"'),
('meta.__names__.89f97553-241f-489b-921a-493ca7be1fbf','\"Case Studies\"'),
('meta.__names__.8f8f4ea4-2f5d-4aa3-b9b8-c7374b734f45','\"Heading Style\"'),
('meta.__names__.8f8ff810-b5a0-4df9-8e17-6666ba92ba4b','\"Overview Card\"'),
('meta.__names__.8fe1fdea-baec-48ee-b98e-6dc941fa6808','\"Overview Card\"'),
('meta.__names__.909cef3c-eb8f-41dc-859a-4fef188161a6','\"Container Width\"'),
('meta.__names__.913d69e2-6c95-4e17-a8dd-e16598492091','\"Heading Level\"'),
('meta.__names__.922aab16-db12-4e15-a3ef-88a4c9de0705','\"Featured on Homepage\"'),
('meta.__names__.925b43fe-a66a-4a29-94b1-05ef478160ea','\"CTA Banner\"'),
('meta.__names__.943e5167-350b-4d8b-b45c-796076d68a2b','\"Divider Style\"'),
('meta.__names__.950833d2-d383-4899-bcf9-0189d600e24d','\"Video File\"'),
('meta.__names__.9ab60243-add9-4782-b48b-04f98b59f374','\"Heading\"'),
('meta.__names__.9d5f9d7a-c338-4faf-8a54-834d4d403703','\"Case Studies\"'),
('meta.__names__.9fc3a933-4142-4602-8609-0c4f426e043b','\"Plain Text \"'),
('meta.__names__.a0e04847-3252-4444-9421-4fd5317d45de','\"Video Aspect Ratio\"'),
('meta.__names__.a39e2e1e-4a2c-4632-b6e2-10f242572d5f','\"Max Width\"'),
('meta.__names__.a51ad288-48e6-40a1-9fe6-85c1ae2947a3','\"Image Size\"'),
('meta.__names__.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba','\"Pages\"'),
('meta.__names__.a599255c-9623-461c-957c-ae0c5798c2a5','\"Price Group\"'),
('meta.__names__.a76886f6-a966-4056-995c-ac7bda316a07','\"Testimonials\"'),
('meta.__names__.a906962a-296e-41d6-a082-1398608c0ead','\"Number of Treatments\"'),
('meta.__names__.ab324fbc-2f80-4c93-99e4-cf7bda8d98d8','\"Flexible Section Type\"'),
('meta.__names__.ae553c7f-84c3-474d-8d0b-cfb7d073ab5f','\"Image\"'),
('meta.__names__.b18a7136-6cdd-4a0b-a094-b82bc3f945d4','\"DisclaimerItems\"'),
('meta.__names__.b3f660e6-d7ee-4793-b5c1-480690617dbc','\"Quote Style\"'),
('meta.__names__.b6a30616-2a75-4a5e-997a-a06c3596ad23','\"Testimonials Grid\"'),
('meta.__names__.b6e437a2-3082-4ab0-9f08-862af0b650b1','\"Section Label\"'),
('meta.__names__.b7236eb7-32e2-438c-a8c1-80c2d52e82db','\"Related treatment\"'),
('meta.__names__.b8e64025-f821-4cb6-aa16-7b5951f8f01e','\"FAQ Item\"'),
('meta.__names__.b9d341c8-9a1f-4ad6-9e8a-085c440d7e11','\"Button Type\"'),
('meta.__names__.bbecd3da-a558-43ea-aee4-74458a6e88f6','\"Price Section\"'),
('meta.__names__.bfa7f962-3b34-407d-a1b8-218e82ea2a0b','\"Blog\"'),
('meta.__names__.bfb7ac1d-af5b-4148-9942-8cb360b7a33c','\"Video Section\"'),
('meta.__names__.c1319250-2c2b-4d15-a2da-30fa401e02da','\"Price row\"'),
('meta.__names__.c5d59556-1f30-4c05-a667-afc89046700d','\"Main Nav\"'),
('meta.__names__.c66f8859-ed4e-45e4-b2a7-1580cb064ccc','\"About Doctor\"'),
('meta.__names__.c91f3372-1fd1-4bfb-b8f3-5432da853217','\"Icon\"'),
('meta.__names__.caa7cec3-0dfe-41aa-a5d6-499b0bf216f0','\"Divider Color\"'),
('meta.__names__.cac6d9c6-8bdd-48c9-92ea-3fce43112469','\"DR RACHEL\'S FAVOURITE TREATMENTS\"'),
('meta.__names__.cbc5061d-a74e-463d-ab5e-7c5fd4103496','\"Transformations\"'),
('meta.__names__.cd83f1fe-45e5-4082-9590-93ec1fb4a261','\"Treatment Hero\"'),
('meta.__names__.d03c1783-dc97-44b5-a9b6-41eb20ef7386','\"Text Area - Simple\"'),
('meta.__names__.d4de9e34-cb7e-4113-989b-f14f4c3536d3','\"Treatments\"'),
('meta.__names__.d732a944-da30-458b-be66-3d165633012d','\"Mobile Layout\"'),
('meta.__names__.dabc2ee6-7b53-4c21-8253-0c9718bdd331','\"Footer\"'),
('meta.__names__.df77759d-bc11-4545-8c34-f63e1bbd65b2','\"Display Type\"'),
('meta.__names__.e3025ceb-44cc-4ae0-b8bb-f05c4be26b27','\"Image Position\"'),
('meta.__names__.e700606a-2f59-4f03-ad43-3a19658d4d03','\"Footer Socials\"'),
('meta.__names__.e880a09a-c044-4e83-899c-8f6177330867','\"Quick Links\"'),
('meta.__names__.e89d0915-68d1-43b8-beb5-92b66d73884e','\"Page Builder\"'),
('meta.__names__.e92185c7-a67c-4325-98ef-b8a6d2edbd1d','\"Testimonials\"'),
('meta.__names__.ea1062cb-4d63-4f41-ba26-c8937a0ba86b','\"Disclaimer Item\"'),
('meta.__names__.eb509daa-6f9f-4a37-99b9-4564ce8baceb','\"Section Background\"'),
('meta.__names__.eb896b6f-bcb1-4fae-9998-a59cd8810a7a','\"Content Elements\"'),
('meta.__names__.edb418c0-89d3-419b-897b-dcb54ef07062','\"Who Should Consider\"'),
('meta.__names__.edf56846-fce6-475b-81c3-7237f63d0a83','\"Image Assets\"'),
('meta.__names__.ee1822cd-4a1f-4cbd-bda2-ae58d0dcc3fe','\"Call to Action\"'),
('meta.__names__.ee1cc83b-5b4e-4514-85b3-075cee380875','\"Divider Width\"'),
('meta.__names__.ef4c617e-94ef-4a32-8406-24a92a9e9a82','\"FAQs\"'),
('meta.__names__.f19eafef-7292-4716-a258-d9bf85bfc10b','\"Blog\"'),
('meta.__names__.f22ad779-6d76-496c-b910-0e08523a5492','\"Statistics\"'),
('meta.__names__.f365f324-7c4f-4031-96d3-704d3aa3f4b9','\"Featured Case Studies\"'),
('meta.__names__.f3801245-1cac-46df-bf78-b4697ba88015','\"Simple\"'),
('meta.__names__.f7c46ae8-7a7a-469f-8279-f8e6017b717f','\"Section Padding Top\"'),
('meta.__names__.f8d21671-c310-4d72-8089-6f8ea9a21cfc','\"Rich Text\"'),
('meta.__names__.fb561bc6-1aeb-445e-b520-0e208a6c38b8','\"What Is Treatment\"'),
('meta.__names__.fb7fcf38-d4f2-4c7f-aac3-719daca80e85','\"How It Works\"'),
('meta.__names__.fbe1b888-6820-4ee6-be6f-fad5554a897b','\"Benefit Cards\"'),
('meta.__names__.fbe942b3-1780-471a-a255-482d04f0ba66','\"Icon Color\"'),
('meta.__names__.fc0600a1-3aa7-48c0-8a68-c49f00062f24','\"Rachel Siton Website\"'),
('meta.__names__.fd1f951e-5f19-4d51-be00-8ac77a0a3dc8','\"Video Type\"'),
('meta.__names__.fd862905-7ebc-4c67-8a1a-4ec5084d1fae','\"Icon Size\"'),
('meta.__names__.fe38ddc7-9164-4903-9f4e-c01f9d5126d8','\"Prices\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.defaultPlacement','\"end\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.cardThumbAlignment','\"end\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.autocapitalize','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.autocomplete','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.autocorrect','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.class','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.dateAdded','\"2025-11-29T12:55:45+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.disabled','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.id','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.inputType','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.max','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.min','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.name','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.orientation','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.placeholder','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.readonly','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.requirable','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.size','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.step','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.title','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.uid','\"0d18559f-9164-4aba-a77f-279e620ca072\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.0.width','100'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.dateAdded','\"2025-11-29T12:55:45+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.required','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NodeTypeElements\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.uid','\"ca851184-2c88-4753-847b-9200f9c5e18f\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.1.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.attribute','\"newWindow\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.dateAdded','\"2025-11-29T12:55:45+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.id','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.mandatory','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.orientation','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.requirable','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.required','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.translatable','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NewWindowField\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.uid','\"a7ec5323-8fdc-4e43-bbed-74d4e47608ed\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.2.width','100'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.dateAdded','\"2025-11-30T11:53:06+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.editCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.fieldUid','\"b9d341c8-9a1f-4ad6-9e8a-085c440d7e11\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.handle','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.required','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.uid','\"741b290b-1284-44cf-803c-46a7844d69e4\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.elements.3.width','100'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.name','\"Node\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.uid','\"d661556d-212f-4e69-81ba-9652b961ac05\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.0.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.attribute','\"urlSuffix\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.autocapitalize','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.autocomplete','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.autocorrect','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.autofocus','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.class','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.dateAdded','\"2025-11-29T12:55:45+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.disabled','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.id','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.inputType','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.mandatory','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.max','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.maxlength','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.min','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.name','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.orientation','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.placeholder','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.readonly','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.requirable','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.required','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.size','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.step','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.title','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.translatable','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\UrlSuffixField\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.uid','\"23dbc68b-b414-42eb-a851-deb4c689b56c\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.0.width','100'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.attribute','\"classes\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.autocapitalize','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.autocomplete','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.autocorrect','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.autofocus','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.class','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.dateAdded','\"2025-11-29T12:55:45+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.disabled','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.id','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.inputType','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.mandatory','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.max','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.maxlength','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.min','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.name','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.orientation','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.placeholder','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.readonly','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.requirable','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.required','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.size','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.step','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.title','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.translatable','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\ClassesField\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.uid','\"1c9b9549-afac-44c9-9f00-cfb6ce958c97\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.1.width','100'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.attribute','\"customAttributes\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.dateAdded','\"2025-11-29T12:55:45+00:00\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.elementCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.id','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.instructions','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.label','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.mandatory','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.orientation','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.requirable','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.required','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.tip','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.translatable','false'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\CustomAttributesField\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.uid','\"4e6b6a94-c914-4278-abbb-534bd0264e61\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.warning','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.elements.2.width','100'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.name','\"Advanced\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.uid','\"6df6598b-56d3-4d7b-b9a8-a15c673b9c9c\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.fieldLayouts.d3e1d668-1a75-4c32-9113-56e33e046150.tabs.1.userCondition','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.handle','\"mainNav\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.instructions','\"\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.maxNodes','null'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.name','\"Main Nav\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Asset.enabled','\"\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Asset.permissions','\"*\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Category.enabled','\"\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Category.permissions','\"*\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Entry.enabled','\"1\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Entry.permissions','\"*\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Tag.enabled','\"\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.craft\\elements\\Tag.permissions','\"*\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.verbb\\navigation\\nodetypes\\CustomType.enabled','\"1\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.permissions.verbb\\navigation\\nodetypes\\PassiveType.enabled','\"1\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.propagationMethod','\"all\"'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabled','true'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.sortOrder','1'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.structure.maxLevels','2'),
('navigation.navs.c5d59556-1f30-4c05-a667-afc89046700d.structure.uid','\"339bcf18-6efd-4767-9e8b-56717a6b6332\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.defaultPlacement','\"end\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.cardThumbAlignment','\"end\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.autocapitalize','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.autocomplete','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.autocorrect','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.class','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.dateAdded','\"2025-12-02T21:40:47+00:00\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.disabled','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.id','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.inputType','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.instructions','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.label','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.max','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.min','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.name','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.orientation','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.placeholder','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.readonly','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.requirable','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.size','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.step','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.tip','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.title','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.uid','\"62cd91c3-dfa8-494a-acc8-1402071dfb0a\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.warning','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.0.width','100'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.dateAdded','\"2025-12-02T21:40:47+00:00\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.instructions','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.label','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.required','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.tip','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NodeTypeElements\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.uid','\"f46b0009-4a03-4a6e-8bcc-de932167ee8e\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.1.warning','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.attribute','\"newWindow\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.dateAdded','\"2025-12-02T21:40:47+00:00\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.id','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.instructions','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.label','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.mandatory','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.orientation','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.requirable','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.required','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.tip','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.translatable','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NewWindowField\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.uid','\"068f167b-1ecd-4df7-bd3e-c2b1e65de732\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.warning','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.elements.2.width','100'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.name','\"Node\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.uid','\"b3385036-fb89-47c4-b7c2-3128ca9807a7\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.0.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.attribute','\"urlSuffix\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.autocapitalize','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.autocomplete','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.autocorrect','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.autofocus','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.class','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.dateAdded','\"2025-12-02T21:40:47+00:00\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.disabled','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.id','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.inputType','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.instructions','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.label','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.mandatory','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.max','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.maxlength','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.min','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.name','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.orientation','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.placeholder','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.readonly','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.requirable','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.required','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.size','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.step','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.tip','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.title','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.translatable','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\UrlSuffixField\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.uid','\"0e87a997-cfaa-4668-aedd-a718bd8a9018\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.warning','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.0.width','100'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.attribute','\"classes\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.autocapitalize','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.autocomplete','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.autocorrect','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.autofocus','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.class','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.dateAdded','\"2025-12-02T21:40:47+00:00\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.disabled','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.id','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.inputType','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.instructions','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.label','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.mandatory','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.max','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.maxlength','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.min','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.name','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.orientation','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.placeholder','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.readonly','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.requirable','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.required','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.size','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.step','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.tip','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.title','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.translatable','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\ClassesField\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.uid','\"84e6f7e1-3909-46e0-ab71-5722dfae87d4\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.warning','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.1.width','100'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.attribute','\"customAttributes\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.dateAdded','\"2025-12-02T21:40:47+00:00\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.elementCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.id','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.instructions','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.label','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.mandatory','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.orientation','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.requirable','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.required','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.tip','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.translatable','false'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\CustomAttributesField\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.uid','\"9443ac0b-45cb-417d-b1dc-448f1c4bab2e\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.warning','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.elements.2.width','100'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.name','\"Advanced\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.uid','\"80be4228-e6c2-4caa-90ce-70f77758ef8d\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.tabs.1.userCondition','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.fieldLayouts.c5a57365-de62-452c-b043-1ce1f717ae19.thumbFieldKey','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.handle','\"footerMenu2\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.instructions','\"\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.maxNodes','null'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.name','\"DR RACHEL\'S FAVOURITE TREATMENTS\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Asset.enabled','\"1\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Asset.permissions','\"*\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Category.enabled','\"1\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Category.permissions','\"*\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Entry.enabled','\"1\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Entry.permissions','\"*\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Tag.enabled','\"\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.craft\\elements\\Tag.permissions','\"*\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.verbb\\navigation\\nodetypes\\CustomType.enabled','\"1\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.permissions.verbb\\navigation\\nodetypes\\PassiveType.enabled','\"1\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.propagationMethod','\"all\"'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.showSiteMenu','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabled','true'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.sortOrder','3'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.structure.maxLevels','1'),
('navigation.navs.cac6d9c6-8bdd-48c9-92ea-3fce43112469.structure.uid','\"a9611aa3-3160-4426-ad49-76481adb739f\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.defaultPlacement','\"end\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.cardThumbAlignment','\"end\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.autocapitalize','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.autocomplete','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.autocorrect','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.class','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.dateAdded','\"2025-12-02T21:40:12+00:00\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.disabled','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.id','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.inputType','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.instructions','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.label','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.max','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.min','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.name','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.orientation','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.placeholder','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.readonly','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.requirable','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.size','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.step','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.tip','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.title','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.uid','\"12171856-795c-4c32-84e5-bf39cc946df3\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.warning','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.0.width','100'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.dateAdded','\"2025-12-02T21:40:12+00:00\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.instructions','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.label','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.required','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.tip','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NodeTypeElements\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.uid','\"5d87bae9-3340-4f0d-8bb5-a86b27fe3e10\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.1.warning','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.attribute','\"newWindow\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.dateAdded','\"2025-12-02T21:40:12+00:00\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.id','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.instructions','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.label','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.mandatory','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.orientation','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.requirable','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.required','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.tip','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.translatable','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\NewWindowField\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.uid','\"de33bbdd-f8b9-459d-b774-f7af844a8d90\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.warning','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.elements.2.width','100'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.name','\"Node\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.uid','\"cce2c6a6-d5e5-49ff-a0d6-849d04e3815e\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.0.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.attribute','\"urlSuffix\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.autocapitalize','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.autocomplete','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.autocorrect','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.autofocus','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.class','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.dateAdded','\"2025-12-02T21:40:12+00:00\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.disabled','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.id','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.inputType','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.instructions','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.label','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.mandatory','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.max','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.maxlength','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.min','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.name','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.orientation','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.placeholder','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.readonly','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.requirable','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.required','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.size','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.step','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.tip','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.title','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.translatable','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\UrlSuffixField\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.uid','\"ce46af40-e190-42ff-b54f-23cd47ebce8c\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.warning','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.0.width','100'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.attribute','\"classes\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.autocapitalize','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.autocomplete','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.autocorrect','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.autofocus','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.class','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.dateAdded','\"2025-12-02T21:40:12+00:00\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.disabled','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.id','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.inputType','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.instructions','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.label','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.mandatory','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.max','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.maxlength','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.min','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.name','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.orientation','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.placeholder','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.readonly','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.requirable','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.required','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.size','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.step','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.tip','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.title','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.translatable','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\ClassesField\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.uid','\"d320a421-b5a9-4a64-90c8-0321680395f8\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.warning','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.1.width','100'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.attribute','\"customAttributes\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.dateAdded','\"2025-12-02T21:40:12+00:00\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.elementCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.id','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.instructions','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.label','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.mandatory','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.orientation','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.requirable','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.required','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.tip','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.translatable','false'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.type','\"verbb\\\\navigation\\\\fieldlayoutelements\\\\CustomAttributesField\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.uid','\"df578b94-afcb-4f78-a532-fed72535491d\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.warning','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.elements.2.width','100'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.name','\"Advanced\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.uid','\"578d05c6-e67a-47e6-9946-ef16b1f81418\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.fieldLayouts.258435e5-284c-49ea-bdf2-5e5449003d83.tabs.1.userCondition','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.handle','\"footerMenu1\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.instructions','\"\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.maxNodes','null'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.name','\"Quick Links\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Asset.enabled','\"1\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Asset.permissions','\"*\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Category.enabled','\"1\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Category.permissions','\"*\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Entry.enabled','\"1\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Entry.permissions','\"*\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Tag.enabled','\"\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.craft\\elements\\Tag.permissions','\"*\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.verbb\\navigation\\nodetypes\\CustomType.enabled','\"1\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.permissions.verbb\\navigation\\nodetypes\\PassiveType.enabled','\"1\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.propagationMethod','\"all\"'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabled','true'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.sortOrder','2'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.structure.maxLevels','1'),
('navigation.navs.e880a09a-c044-4e83-899c-8f6177330867.structure.uid','\"6c9b03a6-fc1c-46fe-a5e9-dc9ebd824709\"'),
('plugins.blocksmith.edition','\"lite\"'),
('plugins.blocksmith.enabled','true'),
('plugins.blocksmith.schemaVersion','\"1.1.4\"'),
('plugins.blocksmith.settings.enableCardsSupport','true'),
('plugins.blocksmith.settings.previewImageSubfolder','null'),
('plugins.blocksmith.settings.previewImageVolume','null'),
('plugins.blocksmith.settings.previewStorageMode','null'),
('plugins.blocksmith.settings.useEntryTypeGroups','false'),
('plugins.blocksmith.settings.useHandleBasedPreviews','false'),
('plugins.blocksmith.settings.wideViewFourBlocks','false'),
('plugins.ckeditor.edition','\"standard\"'),
('plugins.ckeditor.enabled','true'),
('plugins.ckeditor.schemaVersion','\"3.0.0.0\"'),
('plugins.freeform.edition','\"express\"'),
('plugins.freeform.enabled','true'),
('plugins.freeform.schemaVersion','\"5.14.3\"'),
('plugins.navigation.edition','\"standard\"'),
('plugins.navigation.enabled','true'),
('plugins.navigation.licenseKey','\"4TB1EN2PUI6CTZV0R38KHCQ4\"'),
('plugins.navigation.schemaVersion','\"2.1.2\"'),
('plugins.sendgrid.edition','\"standard\"'),
('plugins.sendgrid.enabled','true'),
('plugins.sendgrid.schemaVersion','\"1.0.0\"'),
('plugins.seomatic.edition','\"standard\"'),
('plugins.seomatic.enabled','true'),
('plugins.seomatic.licenseKey','\"THXE5TQJ0M1EFBRJ5JH54D05\"'),
('plugins.seomatic.schemaVersion','\"3.0.13\"'),
('plugins.seomatic.settings.addHrefLang','true'),
('plugins.seomatic.settings.addPaginatedHreflang','true'),
('plugins.seomatic.settings.addXDefaultHrefLang','true'),
('plugins.seomatic.settings.alwaysIncludeCanonicalUrls','false'),
('plugins.seomatic.settings.cpTitlePrefix','\"⚙ \"'),
('plugins.seomatic.settings.cspNonce','\"\"'),
('plugins.seomatic.settings.cspScriptSrcPolicies.0.__assoc__.0.0','\"policy\"'),
('plugins.seomatic.settings.cspScriptSrcPolicies.0.__assoc__.0.1','\"\'self\'\"'),
('plugins.seomatic.settings.devModeCpTitlePrefix','\"\"'),
('plugins.seomatic.settings.devModeTitlePrefix','\"\"'),
('plugins.seomatic.settings.displayPreviewSidebar','true'),
('plugins.seomatic.settings.enableDebugToolbarPanel','true'),
('plugins.seomatic.settings.enableJsonLdEndpoint','false'),
('plugins.seomatic.settings.enableMetaContainerEndpoint','false'),
('plugins.seomatic.settings.enableSeoFileLinkEndpoint','false'),
('plugins.seomatic.settings.environment','\"live\"'),
('plugins.seomatic.settings.excludeNonCanonicalUrls','false'),
('plugins.seomatic.settings.generatorEnabled','true'),
('plugins.seomatic.settings.headersEnabled','true'),
('plugins.seomatic.settings.includeHomepageInBreadcrumbs','true'),
('plugins.seomatic.settings.lowercaseCanonicalUrl','true'),
('plugins.seomatic.settings.manuallySetEnvironment','false'),
('plugins.seomatic.settings.maxDescriptionLength','155'),
('plugins.seomatic.settings.maxTitleLength','70'),
('plugins.seomatic.settings.metaCacheDuration','0'),
('plugins.seomatic.settings.pluginName','\"SEOmatic\"'),
('plugins.seomatic.settings.renderEnabled','true'),
('plugins.seomatic.settings.separatorChar','\"|\"'),
('plugins.seomatic.settings.sidebarDisplayPreviewTypes.0','\"google\"'),
('plugins.seomatic.settings.sidebarDisplayPreviewTypes.1','\"twitter\"'),
('plugins.seomatic.settings.sidebarDisplayPreviewTypes.2','\"facebook\"'),
('plugins.seomatic.settings.siteGroupsSeparate','true'),
('plugins.seomatic.settings.sitemapsEnabled','true'),
('plugins.seomatic.settings.siteUrlOverride','\"\"'),
('plugins.seomatic.settings.socialMediaPreviewTarget','true'),
('plugins.seomatic.settings.truncateDescriptionTags','true'),
('plugins.seomatic.settings.truncateTitleTags','true'),
('plugins.seomatic.settings.xDefaultSite','0'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.defaultPlacement','\"end\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.enableVersioning','true'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.entryTypes.0.uid','\"e89d0915-68d1-43b8-beb5-92b66d73884e\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.handle','\"testSection\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.maxAuthors','1'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.name','\"Test section\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.previewTargets.0.label','\"Primary entry page\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.previewTargets.0.refresh','\"1\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.previewTargets.0.urlFormat','\"{url}\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.propagationMethod','\"all\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"about.twig\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"test-section\"'),
('sections.08dd03a9-f011-4dbe-9890-87c0fc2849be.type','\"single\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.defaultPlacement','\"end\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.enableVersioning','true'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.entryTypes.0.uid','\"e89d0915-68d1-43b8-beb5-92b66d73884e\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.handle','\"about\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.maxAuthors','1'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.name','\"About\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.previewTargets.0.label','\"Primary entry page\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.previewTargets.0.refresh','\"1\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.previewTargets.0.urlFormat','\"{url}\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.propagationMethod','\"all\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"about.twig\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"about\"'),
('sections.3ab8a613-21c3-46fb-9b46-9978c63ba4b8.type','\"single\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.defaultPlacement','\"end\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.enableVersioning','true'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.entryTypes.0.uid','\"e89d0915-68d1-43b8-beb5-92b66d73884e\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.handle','\"homepage\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.maxAuthors','1'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.name','\"Homepage\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.previewTargets.0.label','\"Primary entry page\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.previewTargets.0.refresh','\"1\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.previewTargets.0.urlFormat','\"{url}\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.propagationMethod','\"all\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"index.twig\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"__home__\"'),
('sections.508da987-f99e-43bc-bf89-c10fc03a27d2.type','\"single\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.defaultPlacement','\"end\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.enableVersioning','true'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.entryTypes.0.uid','\"72a3e7c8-2eeb-41b3-a2c7-018b46e8913d\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.handle','\"conditions\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.maxAuthors','1'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.name','\"Conditions\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.previewTargets.0.label','\"Primary entry page\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.previewTargets.0.refresh','\"1\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.previewTargets.0.urlFormat','\"{url}\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.propagationMethod','\"all\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"conditions/_entry.twig\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"conditions/{slug}\"'),
('sections.618ae0d4-4ee0-41b7-b790-720b07c1f413.type','\"channel\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.defaultPlacement','\"end\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.enableVersioning','true'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.entryTypes.0.uid','\"e89d0915-68d1-43b8-beb5-92b66d73884e\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.handle','\"contacts\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.maxAuthors','1'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.name','\"Contacts\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.previewTargets.0.label','\"Primary entry page\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.previewTargets.0.refresh','\"1\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.previewTargets.0.urlFormat','\"{url}\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.propagationMethod','\"all\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"contact.twig\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"contacts\"'),
('sections.66ccd9d4-a371-41cf-8ce9-1a673ccb927d.type','\"single\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.defaultPlacement','\"end\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.enableVersioning','true'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.entryTypes.0.uid','\"9d5f9d7a-c338-4faf-8a54-834d4d403703\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.handle','\"caseStudies\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.maxAuthors','1'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.name','\"Case Studies\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.previewTargets.0.label','\"Primary entry page\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.previewTargets.0.refresh','\"1\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.previewTargets.0.urlFormat','\"{url}\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.propagationMethod','\"all\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"case-studies/_entry.twig\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"case-studies/{slug}\"'),
('sections.89f97553-241f-489b-921a-493ca7be1fbf.type','\"channel\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.defaultPlacement','\"end\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.enableVersioning','true'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.entryTypes.0.uid','\"3eca23a8-0dc8-4705-bc99-88ed8c52c67d\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.handle','\"pages\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.maxAuthors','1'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.name','\"Pages\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.previewTargets.0.label','\"Primary entry page\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.previewTargets.0.refresh','\"1\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.previewTargets.0.urlFormat','\"{url}\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.propagationMethod','\"all\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"pages/_entry.twig\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"{slug}\"'),
('sections.a51e9966-ae3c-43a3-b17a-e41c3cfae2ba.type','\"channel\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.defaultPlacement','\"end\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.enableVersioning','true'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.entryTypes.0.uid','\"e92185c7-a67c-4325-98ef-b8a6d2edbd1d\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.handle','\"testimonials\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.maxAuthors','1'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.name','\"Testimonials\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.previewTargets.0.label','\"Primary entry page\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.previewTargets.0.refresh','\"1\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.previewTargets.0.urlFormat','\"{url}\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.propagationMethod','\"all\"'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','false'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','null'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','null'),
('sections.a76886f6-a966-4056-995c-ac7bda316a07.type','\"channel\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.defaultPlacement','\"end\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.enableVersioning','true'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.entryTypes.0.uid','\"668312b7-a3ca-482b-9f09-61e12e43feab\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.handle','\"transformations\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.maxAuthors','1'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.name','\"Transformations\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.previewTargets.0.label','\"Primary entry page\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.previewTargets.0.refresh','\"1\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.previewTargets.0.urlFormat','\"{url}\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.propagationMethod','\"all\"'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','false'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','null'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','null'),
('sections.cbc5061d-a74e-463d-ab5e-7c5fd4103496.type','\"channel\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.defaultPlacement','\"end\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.enableVersioning','true'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.entryTypes.0.uid','\"3eca23a8-0dc8-4705-bc99-88ed8c52c67d\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.handle','\"treatments\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.maxAuthors','1'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.name','\"Treatments\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.previewTargets.0.label','\"Primary entry page\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.previewTargets.0.refresh','\"1\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.previewTargets.0.urlFormat','\"{url}\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.propagationMethod','\"all\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"treatments/_entry.twig\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"treatments/{slug}\"'),
('sections.d4de9e34-cb7e-4113-989b-f14f4c3536d3.type','\"channel\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.defaultPlacement','\"end\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.enableVersioning','true'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.entryTypes.0.uid','\"bfa7f962-3b34-407d-a1b8-218e82ea2a0b\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.handle','\"blog\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.maxAuthors','1'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.name','\"Blog\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.previewTargets.0.label','\"Primary entry page\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.previewTargets.0.refresh','\"1\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.previewTargets.0.urlFormat','\"{url}\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.propagationMethod','\"all\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','\"blog/_entry.twig\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','\"blog/{slug}\"'),
('sections.f19eafef-7292-4716-a258-d9bf85bfc10b.type','\"channel\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.defaultPlacement','\"end\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.enableVersioning','true'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.entryTypes.0.uid','\"bbecd3da-a558-43ea-aee4-74458a6e88f6\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.entryTypes.1.uid','\"e89d0915-68d1-43b8-beb5-92b66d73884e\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.entryTypes.2.uid','\"a599255c-9623-461c-957c-ae0c5798c2a5\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.handle','\"prices\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.maxAuthors','1'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.name','\"Prices\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.previewTargets.0.label','\"Primary entry page\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.previewTargets.0.refresh','\"1\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.previewTargets.0.urlFormat','\"{url}\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.propagationMethod','\"all\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.enabledByDefault','true'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','false'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.template','null'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.siteSettings.36505853-1fbd-4631-856c-a5b50c2c059f.uriFormat','null'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.structure.maxLevels','1'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.structure.uid','\"ef4e9cf9-4aab-4b7a-af5d-8ca86816d0f4\"'),
('sections.fe38ddc7-9164-4903-9f4e-c01f9d5126d8.type','\"structure\"'),
('siteGroups.fc0600a1-3aa7-48c0-8a68-c49f00062f24.name','\"Rachel Siton Website\"'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.baseUrl','\"$PRIMARY_SITE_URL\"'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.handle','\"default\"'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.hasUrls','true'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.language','\"en\"'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.name','\"Rachel Siton Website\"'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.primary','true'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.siteGroup','\"fc0600a1-3aa7-48c0-8a68-c49f00062f24\"'),
('sites.36505853-1fbd-4631-856c-a5b50c2c059f.sortOrder','1'),
('system.edition','\"solo\"'),
('system.live','true'),
('system.name','\"Rachel Siton Website\"'),
('system.retryDuration','null'),
('system.schemaVersion','\"5.9.0.8\"'),
('system.timeZone','\"Europe/London\"'),
('users.allowPublicRegistration','false'),
('users.defaultGroup','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.cardThumbAlignment','\"end\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elementCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.autocapitalize','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.autocomplete','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.autocorrect','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.class','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.dateAdded','\"2026-04-20T19:31:47+00:00\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.disabled','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.elementCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.id','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.inputType','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.instructions','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.label','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.max','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.min','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.name','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.orientation','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.placeholder','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.readonly','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.requirable','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.size','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.step','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.tip','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.title','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\users\\\\UsernameField\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.uid','\"5e03a677-2149-40fc-920c-4a5ec77dba15\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.userCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.warning','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.0.width','100'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.attribute','\"fullName\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.autocapitalize','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.autocomplete','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.autocorrect','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.class','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.dateAdded','\"2026-04-20T19:31:47+00:00\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.disabled','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.elementCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.id','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.inputType','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.instructions','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.label','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.max','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.min','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.name','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.orientation','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.placeholder','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.readonly','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.requirable','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.required','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.size','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.step','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.tip','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.title','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\users\\\\FullNameField\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.uid','\"d0fd9a03-bb88-45b4-a078-15b544bc7c36\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.userCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.warning','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.1.width','100'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.dateAdded','\"2026-04-20T19:31:47+00:00\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.elementCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.id','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.instructions','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.label','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.orientation','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.requirable','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.tip','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\users\\\\PhotoField\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.uid','\"ccf2632e-dbe4-4004-a80d-fe07d85952a1\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.userCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.warning','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.2.width','100'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.autocapitalize','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.autocomplete','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.autocorrect','true'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.class','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.dateAdded','\"2026-04-20T19:31:47+00:00\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.disabled','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.elementCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.id','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.inputType','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.instructions','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.label','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.max','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.min','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.name','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.orientation','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.placeholder','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.readonly','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.requirable','false'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.size','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.step','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.tip','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.title','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\users\\\\EmailField\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.uid','\"1007c497-3567-4507-bc70-63fea129d4e8\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.userCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.elements.3.width','100'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.name','\"Content\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.uid','\"e0006b56-f9d7-472f-bae9-9c8b739718c3\"'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.tabs.0.userCondition','null'),
('users.fieldLayouts.983b2587-333a-485f-964e-29dfd623774e.thumbFieldKey','null'),
('users.photoSubpath','null'),
('users.photoVolumeUid','null'),
('users.require2fa','false'),
('users.requireEmailVerification','true'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.altTranslationKeyFormat','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.altTranslationMethod','\"none\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.cardThumbAlignment','\"end\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elementCondition','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.autocapitalize','true'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.autocomplete','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.autocorrect','true'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.class','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.dateAdded','\"2025-11-30T11:04:22+00:00\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.disabled','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.elementCondition','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.id','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.inputType','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.instructions','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.label','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.max','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.min','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.name','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.orientation','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.placeholder','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.readonly','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.requirable','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.size','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.step','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.tip','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.title','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\assets\\\\AssetTitleField\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.uid','\"b1f3bc03-b9a5-4aef-908a-b3d4e28b6132\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.userCondition','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.warning','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.0.width','100'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.attribute','\"alt\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.class','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.cols','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.dateAdded','\"2025-11-30T11:07:44+00:00\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.disabled','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.elementCondition','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.id','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.instructions','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.label','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.name','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.orientation','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.placeholder','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.readonly','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.requirable','true'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.required','false'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.rows','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.tip','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.title','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\assets\\\\AltField\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.uid','\"3ad23e0a-12f7-4d93-b35b-bba84dc004e4\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.userCondition','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.warning','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.elements.1.width','100'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.name','\"Content\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.uid','\"6c130099-11e0-4f67-bde0-eb3ca641f907\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fieldLayouts.72b6a773-5b5f-44e9-9d6a-51de24196994.tabs.0.userCondition','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.fs','\"images\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.handle','\"images\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.name','\"Images\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.sortOrder','1'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.subpath','\"\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.titleTranslationKeyFormat','null'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.titleTranslationMethod','\"site\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.transformFs','\"\"'),
('volumes.64c9f579-ab20-40f7-9af8-73f9db7a4394.transformSubpath','\"\"');
/*!40000 ALTER TABLE `projectconfig` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `queue`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `queue` WRITE;
/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `queue` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `recoverycodes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `recoverycodes` WRITE;
/*!40000 ALTER TABLE `recoverycodes` DISABLE KEYS */;
/*!40000 ALTER TABLE `recoverycodes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `relations`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `relations` WRITE;
/*!40000 ALTER TABLE `relations` DISABLE KEYS */;
INSERT INTO `relations` VALUES
(28,10,92,NULL,90,1,'2025-12-02 15:40:41','2025-12-02 15:40:41','34bf369c-e920-47a9-9990-df4812650979'),
(29,11,92,NULL,91,1,'2025-12-02 15:40:41','2025-12-02 15:40:41','570b88b7-d6cd-4bab-a78e-fb32a330055f'),
(34,10,96,NULL,90,1,'2025-12-02 15:41:19','2025-12-02 15:41:19','48584ee8-4675-4b22-b10d-12c50e32f872'),
(35,11,96,NULL,91,1,'2025-12-02 15:41:19','2025-12-02 15:41:19','8fea3e0d-497e-4880-9dca-342f7d8c81b5'),
(36,9,96,NULL,93,1,'2025-12-02 15:41:19','2025-12-02 15:41:19','8a6070d0-2238-4dfc-9717-3320e7ffdbeb'),
(40,10,100,NULL,90,1,'2025-12-02 15:42:45','2025-12-02 15:42:45','a7091120-77c4-46f5-bf2e-79adb2f61b62'),
(41,11,100,NULL,91,1,'2025-12-02 15:42:45','2025-12-02 15:42:45','37f15bc5-3696-447c-a136-f2126bbc5ad5'),
(42,9,100,NULL,97,1,'2025-12-02 15:42:45','2025-12-02 15:42:45','ae5f330a-7fc1-432a-9a34-80692d8fc6fc'),
(48,10,102,NULL,90,1,'2025-12-02 15:43:24','2025-12-02 15:43:24','e03877c1-d459-40d1-882d-8b1c550ae5b0'),
(49,11,102,NULL,91,1,'2025-12-02 15:43:24','2025-12-02 15:43:24','9a26e3fd-ce73-4b3b-aa71-a3c2f6c5edcc'),
(50,9,102,NULL,97,1,'2025-12-02 15:43:24','2025-12-02 15:43:24','fb69db88-866e-4273-b74c-0974872a4bd8'),
(51,9,102,NULL,93,2,'2025-12-02 15:43:24','2025-12-02 15:43:24','335f1fb4-e5c5-4c49-b361-9468cd937591'),
(57,10,108,NULL,90,1,'2025-12-02 16:15:56','2025-12-02 16:15:56','b443ebc9-d19f-4582-bdaf-c7c5a70543cd'),
(58,11,108,NULL,91,1,'2025-12-02 16:15:56','2025-12-02 16:15:56','97dbf636-c2c1-464a-8274-7862daa61209'),
(59,9,108,NULL,93,1,'2025-12-02 16:15:56','2025-12-02 16:15:56','7fb9dc7c-5fa0-4c2f-81e7-b5dbf45a13ca'),
(60,9,108,NULL,105,2,'2025-12-02 16:15:56','2025-12-02 16:15:56','5bc64c84-51c0-4d1e-917c-a9fedea1eba6'),
(67,10,110,NULL,90,1,'2025-12-02 16:16:03','2025-12-02 16:16:03','067a113c-2e82-426e-a39c-935c5701ac94'),
(68,11,110,NULL,91,1,'2025-12-02 16:16:03','2025-12-02 16:16:03','3ee4e009-3aff-4fa0-af91-d3cfebc6fc74'),
(69,9,110,NULL,97,1,'2025-12-02 16:16:03','2025-12-02 16:16:03','722538e3-001d-47c1-b4a7-edaaf5a473d5'),
(70,9,110,NULL,93,2,'2025-12-02 16:16:03','2025-12-02 16:16:03','7ff878bf-7db0-4420-9dfe-7e42ea372bb6'),
(71,9,110,NULL,105,3,'2025-12-02 16:16:03','2025-12-02 16:16:03','24fbf80d-2aca-46f0-b220-4e6117d0eaea'),
(74,9,115,NULL,105,1,'2025-12-02 16:26:28','2025-12-02 16:26:28','7389d9d7-7513-41a8-ad5b-436b8487b758'),
(75,10,116,NULL,90,1,'2025-12-02 16:28:15','2025-12-02 16:28:15','9fd66344-e2a6-41df-afc6-082b23472c14'),
(76,11,116,NULL,91,1,'2025-12-02 16:28:15','2025-12-02 16:28:15','8c9292f5-9121-4871-b064-8f3f2fb13898'),
(77,9,116,NULL,97,1,'2025-12-02 16:28:15','2025-12-02 16:28:15','b7a1bbdc-abbf-4979-b883-47967e2280a9'),
(78,9,116,NULL,93,2,'2025-12-02 16:28:15','2025-12-02 16:28:15','db1274b2-fd24-4d18-8d16-e643d66071e2'),
(79,9,116,NULL,105,3,'2025-12-02 16:28:15','2025-12-02 16:28:15','b6670298-7926-48d9-9df0-d02281fdeffb'),
(86,10,120,NULL,90,1,'2025-12-02 16:47:19','2025-12-02 16:47:19','211c4fb5-79d7-4594-9be4-04876771ab93'),
(87,11,120,NULL,91,1,'2025-12-02 16:47:19','2025-12-02 16:47:19','f30ae8a3-cc89-4f43-bd71-c6629892bc9c'),
(88,9,120,NULL,117,1,'2025-12-02 16:47:19','2025-12-02 16:47:19','3bd8fd75-132d-4e8d-b3b4-84fcb98703c0'),
(100,10,124,NULL,90,1,'2025-12-02 16:48:40','2025-12-02 16:48:40','4dd7f0c8-d318-4456-9071-443f4f821743'),
(101,11,124,NULL,91,1,'2025-12-02 16:48:40','2025-12-02 16:48:40','89e6038a-b76c-4d26-aeb4-707090ad2703'),
(102,9,124,NULL,105,1,'2025-12-02 16:48:40','2025-12-02 16:48:40','93704c80-a28d-4b43-8146-50bb9df352e9'),
(103,10,125,NULL,90,1,'2025-12-02 16:48:44','2025-12-02 16:48:44','7a138e7f-31eb-4a09-93b8-ea18544152f8'),
(104,11,125,NULL,91,1,'2025-12-02 16:48:44','2025-12-02 16:48:44','6296e0ec-8650-4952-8c63-6d782e670aa5'),
(105,9,125,NULL,97,1,'2025-12-02 16:48:44','2025-12-02 16:48:44','cc61b809-1539-4ab8-8f97-773f7a455634'),
(106,9,125,NULL,93,2,'2025-12-02 16:48:44','2025-12-02 16:48:44','49041359-a8ce-483c-a691-c2b11af9350d'),
(107,9,125,NULL,105,3,'2025-12-02 16:48:44','2025-12-02 16:48:44','2bc2571a-11b3-4371-b160-e1eb63f13406'),
(111,10,127,NULL,90,1,'2025-12-02 16:48:50','2025-12-02 16:48:50','0ee5ee59-3631-4c9f-ad9c-2d13e2ac4c95'),
(112,11,127,NULL,91,1,'2025-12-02 16:48:50','2025-12-02 16:48:50','1fe847b2-b924-4a60-9e28-719168a77162'),
(113,9,127,NULL,117,1,'2025-12-02 16:48:50','2025-12-02 16:48:50','fe6882a1-bff0-46cd-a7cd-d872c1c1e811'),
(117,10,129,NULL,90,1,'2025-12-02 17:03:57','2025-12-02 17:03:57','f0a2012e-c971-45cb-ade1-81c49e7f7c40'),
(118,11,129,NULL,91,1,'2025-12-02 17:03:57','2025-12-02 17:03:57','6d40eaca-5db3-4406-a997-81e58a410eee'),
(119,9,129,NULL,117,1,'2025-12-02 17:03:57','2025-12-02 17:03:57','811c304c-ed7e-4217-8607-79aefc066dfc'),
(129,10,134,NULL,90,1,'2025-12-02 17:18:36','2025-12-02 17:18:36','bc052fa3-ca91-4e3b-8f6b-463931d512ba'),
(130,11,134,NULL,91,1,'2025-12-02 17:18:36','2025-12-02 17:18:36','f919ef46-e0fb-4446-a217-4a1610a022a9'),
(131,9,134,NULL,105,1,'2025-12-02 17:18:36','2025-12-02 17:18:36','2b85f882-635c-4b26-b484-44791315682b'),
(135,10,136,NULL,90,1,'2025-12-02 17:18:46','2025-12-02 17:18:46','2045a217-23d3-4295-9684-f50c4534cd39'),
(136,11,136,NULL,91,1,'2025-12-02 17:18:46','2025-12-02 17:18:46','20c26e4c-39a0-4e75-89b9-aa3d354ac8ad'),
(137,9,136,NULL,105,1,'2025-12-02 17:18:46','2025-12-02 17:18:46','520553e9-e3ed-439c-acca-17a16e990544'),
(148,10,161,NULL,90,1,'2025-12-02 17:45:53','2025-12-02 17:45:53','3e92ed6c-1bcf-4c2e-b4bd-62c9309e91e2'),
(149,11,161,NULL,91,1,'2025-12-02 17:45:53','2025-12-02 17:45:53','388aaae6-0baa-44c6-8ecf-35892d473f76'),
(150,9,161,NULL,105,1,'2025-12-02 17:45:53','2025-12-02 17:45:53','1dafc55b-8f98-402b-9808-c95969264356'),
(154,10,163,NULL,90,1,'2025-12-02 17:46:07','2025-12-02 17:46:07','b9b3e2c5-87ff-4a50-a0f8-fa4ce988ade8'),
(155,11,163,NULL,91,1,'2025-12-02 17:46:07','2025-12-02 17:46:07','c8cfc716-29d6-49be-b2b5-20f1862c1cc3'),
(156,9,163,NULL,105,1,'2025-12-02 17:46:07','2025-12-02 17:46:07','d57d82ac-4837-4ddd-a9ab-a96dc32a6666'),
(216,2,243,NULL,36,1,'2025-12-02 22:11:02','2025-12-02 22:11:02','0f473f96-a6ea-4ac5-87eb-c7567774afa9'),
(218,17,251,NULL,48,1,'2025-12-03 07:52:56','2025-12-03 07:52:56','41b17709-c959-42a2-89b7-b1accbe22ccc'),
(220,17,253,NULL,81,1,'2025-12-03 07:54:20','2025-12-03 07:54:20','d58963fc-af0b-4766-99ad-08f9c2e079ee'),
(230,2,319,NULL,320,1,'2025-12-04 17:56:46','2025-12-04 17:56:46','cada8ad3-f9c8-47b7-9eb7-bae9058c02a7'),
(231,2,321,NULL,320,1,'2025-12-04 17:56:51','2025-12-04 17:56:51','f3612bf1-2eed-4eb9-92d9-18c62a850461'),
(232,2,322,NULL,320,1,'2025-12-04 17:57:26','2025-12-04 17:57:26','f023ab37-1e59-44d4-b10a-03c01a2d5d28'),
(233,2,323,NULL,320,1,'2025-12-04 17:57:32','2025-12-04 17:57:32','cd8a1194-beb2-4fcd-9aff-40cd43c2e70b'),
(234,2,324,NULL,320,1,'2025-12-04 17:57:54','2025-12-04 17:57:54','d8f4aa9a-b366-4896-9e55-392cbc4d2c74'),
(235,2,325,NULL,320,1,'2025-12-04 17:57:55','2025-12-04 17:57:55','973be4d7-9b2f-4b00-b8fb-7e5da8330c54'),
(237,2,327,NULL,320,1,'2025-12-04 17:58:29','2025-12-04 17:58:29','44178682-ad8d-4d50-bbf5-c3a0a8c53556'),
(242,23,330,NULL,326,1,'2025-12-04 17:59:30','2025-12-04 17:59:30','8e995a47-700a-441e-af07-52818b6ed706'),
(243,23,330,NULL,322,2,'2025-12-04 17:59:30','2025-12-04 17:59:30','1d63618a-1c98-4e4f-82a2-7cb998756784'),
(244,23,330,NULL,324,3,'2025-12-04 17:59:30','2025-12-04 17:59:30','598c91d8-3255-4c03-b545-f5eec8013638'),
(245,23,330,NULL,319,4,'2025-12-04 17:59:30','2025-12-04 17:59:30','ad8c9404-e1a8-4f79-bc18-2acd2161ce81'),
(259,2,337,NULL,320,1,'2025-12-04 18:18:04','2025-12-04 18:18:04','cba04a60-8534-47e2-80d2-2564c9191cc8'),
(261,2,339,NULL,320,1,'2025-12-04 18:18:27','2025-12-04 18:18:27','a79b4f91-139a-4687-938e-6ead3b535d2a'),
(263,2,341,NULL,320,1,'2025-12-04 18:18:56','2025-12-04 18:18:56','f8556148-619b-4589-aaf2-76f2e70bd676'),
(276,39,409,NULL,91,1,'2025-12-06 19:23:58','2025-12-06 19:23:58','38c19aed-6aef-4942-b9bb-0a357de2b59c'),
(277,39,412,NULL,90,1,'2025-12-06 19:23:58','2025-12-06 19:23:58','31b4c897-3095-4840-bbd9-3b6457d5b4f3'),
(292,13,750,NULL,112,1,'2025-12-07 09:27:22','2025-12-07 09:27:22','7e84a24d-d063-40a3-ab0d-37ac0f0e1bb7'),
(293,13,750,NULL,99,2,'2025-12-07 09:27:22','2025-12-07 09:27:22','22aae757-1ddb-48f0-b114-49bb9a1ec8a4'),
(294,13,750,NULL,89,3,'2025-12-07 09:27:22','2025-12-07 09:27:22','5ac4265b-6196-4745-be72-0e72e7410cc9'),
(331,10,840,NULL,757,1,'2025-12-15 09:01:44','2025-12-15 09:01:44','e1a967ef-54eb-46bb-a5fe-0fb94d10c6ab'),
(332,11,840,NULL,91,1,'2025-12-15 09:01:44','2025-12-15 09:01:44','36ae857a-8d08-4b27-b462-72ed5d872061'),
(399,68,1103,NULL,117,1,'2026-02-21 22:49:52','2026-02-21 22:49:52','1a54f01f-50b1-4340-8fa8-eca2f4c4a196'),
(402,68,1108,NULL,117,1,'2026-02-21 22:56:38','2026-02-21 22:56:38','2bb951bf-f33e-4d2c-9ff2-0e469af20a0a'),
(403,68,1113,NULL,117,1,'2026-02-21 22:56:39','2026-02-21 22:56:39','cc6dcbd5-9b02-4c18-83e0-52c9794b878c'),
(405,68,1123,NULL,117,1,'2026-02-21 22:58:49','2026-02-21 22:58:49','61cfc547-92f9-4ef5-accd-e96a8cfb8438'),
(406,68,1128,NULL,117,1,'2026-02-21 22:59:14','2026-02-21 22:59:14','d14e71d3-030a-4e54-88cc-dcc789984a2d'),
(407,68,1130,NULL,117,1,'2026-02-21 22:59:24','2026-02-21 22:59:24','59801619-4c1f-408f-9519-f1a4c11708b8'),
(409,68,1134,NULL,117,1,'2026-02-21 23:00:22','2026-02-21 23:00:22','53c0f9a0-7e66-4ab9-a8d5-c08c3aa4fcea'),
(482,17,1286,NULL,757,1,'2026-02-22 00:42:17','2026-02-22 00:42:17','a5e59b16-a19e-48e9-8d94-5e140702087a'),
(483,17,1288,NULL,757,1,'2026-02-22 00:42:18','2026-02-22 00:42:18','08f064dd-bb0e-4a9f-8f1e-bdca520c57b0'),
(571,17,1369,NULL,81,1,'2026-02-22 22:16:09','2026-02-22 22:16:09','83a62709-c71b-4fd1-a880-fa35f056334b'),
(574,10,1372,NULL,81,1,'2026-02-22 22:17:14','2026-02-22 22:17:14','f0d3ac6f-19e7-4598-9f2f-3df020513592'),
(575,17,1372,NULL,81,1,'2026-02-22 22:17:14','2026-02-22 22:17:14','742c4196-ae24-443f-bfba-b29d471daa3b'),
(576,10,1374,NULL,81,1,'2026-02-22 22:17:14','2026-02-22 22:17:14','e1ce497b-490d-4116-9c84-457e1d7956be'),
(577,17,1374,NULL,81,1,'2026-02-22 22:17:14','2026-02-22 22:17:14','03c93a80-b3e8-4780-a3a2-a893cafb5706'),
(579,17,1409,NULL,81,1,'2026-02-22 22:19:04','2026-02-22 22:19:04','10cef4a5-cb51-4d08-adec-31c8f54baa3f'),
(913,10,1963,NULL,1939,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','1c26afdf-c682-4db6-82df-4d2c6cf06489'),
(914,17,1963,NULL,1941,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','142fee94-7591-425f-877d-06aa38166fa9'),
(916,13,1965,NULL,112,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','735e8f2b-badf-4cf8-8c82-63ec82aa79a5'),
(917,13,1965,NULL,99,2,'2026-03-02 21:45:13','2026-03-02 21:45:13','2db85649-69f8-4b9c-8129-d41534382288'),
(918,13,1965,NULL,89,3,'2026-03-02 21:45:13','2026-03-02 21:45:13','a62a5733-af8b-42c0-bec3-b75437264e99'),
(923,13,1992,NULL,112,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','2771c9f8-da9e-4d54-b9d5-60ac0132bbdc'),
(924,13,1992,NULL,99,2,'2026-03-02 21:45:13','2026-03-02 21:45:13','80342cb5-dc05-420f-bac7-5ea27aea8bed'),
(925,13,1992,NULL,89,3,'2026-03-02 21:45:13','2026-03-02 21:45:13','f68b8b75-795a-4944-8800-a4fe86e34990'),
(949,2,2064,NULL,1946,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','d775523f-b9e2-44fa-9ab9-869b1837493f'),
(954,10,2080,NULL,2036,1,'2026-03-02 22:05:29','2026-03-02 22:05:29','caaa2fb3-9d4e-4426-85ef-c9a208c8f27f'),
(955,17,2080,NULL,2034,1,'2026-03-02 22:05:29','2026-03-02 22:05:29','d9224c57-5932-429a-95b6-9b4684235be7'),
(1301,13,3092,NULL,112,1,'2026-03-03 08:56:36','2026-03-03 08:56:36','8cf326a0-cf86-44f9-a9a8-b4f30e429c3c'),
(1302,13,3092,NULL,99,2,'2026-03-03 08:56:36','2026-03-03 08:56:36','8e6de972-9270-4d4b-aa7d-0a68e5e504e3'),
(1303,13,3092,NULL,89,3,'2026-03-03 08:56:36','2026-03-03 08:56:36','b716abbf-f1cb-4589-aadb-6a4eb977355b'),
(1309,17,3123,NULL,81,1,'2026-03-03 09:03:13','2026-03-03 09:03:13','baca8582-96ae-4f1d-a5fd-8376f42ee088'),
(1310,10,3125,NULL,81,1,'2026-03-03 09:03:13','2026-03-03 09:03:13','49120614-2f52-47af-9470-55d99ebd663b'),
(1311,17,3125,NULL,2583,1,'2026-03-03 09:03:13','2026-03-03 09:03:13','72d43039-5692-48e3-9be4-0d4f935333f6'),
(1312,10,3126,NULL,2034,1,'2026-03-03 09:03:13','2026-03-03 09:03:13','bcf1323d-6cc4-458b-b56e-d2b9d5d30169'),
(1313,17,3127,NULL,81,1,'2026-03-03 09:03:13','2026-03-03 09:03:13','7be5ccce-087b-471f-b9dd-6b7ba7c0456e'),
(1314,13,3129,NULL,112,1,'2026-03-03 09:03:13','2026-03-03 09:03:13','235010a2-b3bb-42f1-b8e8-cc5fd3eb98cd'),
(1315,13,3129,NULL,99,2,'2026-03-03 09:03:13','2026-03-03 09:03:13','0f5ebfad-cfd6-453f-a915-3c5f54000e95'),
(1316,13,3129,NULL,89,3,'2026-03-03 09:03:13','2026-03-03 09:03:13','0f874466-4c92-487e-91d0-83670e749c9c'),
(1400,17,3317,NULL,81,1,'2026-03-03 10:24:16','2026-03-03 10:24:16','d38a3723-eaff-4d15-8959-cc18c5ecb518'),
(1408,17,3333,NULL,81,1,'2026-03-03 10:25:22','2026-03-03 10:25:22','5888cac0-3e84-4d56-bdeb-3fd2cb69aa95'),
(1503,17,3552,NULL,81,1,'2026-03-13 11:30:25','2026-03-13 11:30:25','4a2f3a25-9dc0-41d1-b7e5-2894a530a87f'),
(1504,10,3553,NULL,2034,1,'2026-03-13 11:30:26','2026-03-13 11:30:26','fcddbd5e-8d9f-4546-abcb-d8024a7784db'),
(1506,17,3555,NULL,81,1,'2026-03-13 11:31:02','2026-03-13 11:31:02','162b612d-3b64-4298-ba5a-d04534aa934e'),
(1511,17,3558,NULL,81,1,'2026-03-13 11:34:18','2026-03-13 11:34:18','58b99f7c-7cf8-4e6e-a42b-75b99ddc50fe'),
(1512,17,3559,NULL,2712,1,'2026-03-13 11:34:18','2026-03-13 11:34:18','54c2d2b2-c30d-4084-bf25-80372b4963f3'),
(1515,17,3562,NULL,81,1,'2026-03-13 11:35:42','2026-03-13 11:35:42','0262e534-3f85-41fd-b5a6-dfa0e18a8abf'),
(1516,17,3563,NULL,2712,1,'2026-03-13 11:35:42','2026-03-13 11:35:42','fe58495e-b1f8-4508-a5c5-96747dcac82d'),
(1519,17,3566,NULL,81,1,'2026-03-13 11:36:45','2026-03-13 11:36:45','2114dbe1-c3e8-4943-a10e-c06eefeec381'),
(1520,17,3567,NULL,2712,1,'2026-03-13 11:36:45','2026-03-13 11:36:45','4519b871-6cb7-4f79-a479-9fa07a879092'),
(1524,17,3571,NULL,81,1,'2026-03-13 11:39:15','2026-03-13 11:39:15','ebd9271a-1c1b-4633-98a8-975704618380'),
(1525,17,3572,NULL,2712,1,'2026-03-13 11:39:15','2026-03-13 11:39:15','569ace9d-615a-4b3a-ac6b-0c932124e4c2'),
(1528,17,3575,NULL,81,1,'2026-03-13 11:39:40','2026-03-13 11:39:40','c7e40772-009b-48a4-9ff3-418c6e45dac2'),
(1529,17,3576,NULL,2712,1,'2026-03-13 11:39:40','2026-03-13 11:39:40','2852da78-b1d2-4061-8050-4324a96758ed'),
(1532,17,3579,NULL,81,1,'2026-03-13 11:40:37','2026-03-13 11:40:37','1dc62e6e-469d-444e-aef3-2ab96c3e60dc'),
(1533,17,3580,NULL,2712,1,'2026-03-13 11:40:37','2026-03-13 11:40:37','3a517949-0baf-41da-b07e-d0e30fe98e58'),
(1537,17,3583,NULL,81,1,'2026-03-13 11:42:34','2026-03-13 11:42:34','404f7f20-cb1b-43db-931a-d80665e0fc0e'),
(1538,10,3584,NULL,81,1,'2026-03-13 11:42:34','2026-03-13 11:42:34','165f7e27-df42-4294-b4d5-8ff35924344d'),
(1541,17,3587,NULL,81,1,'2026-03-13 11:43:07','2026-03-13 11:43:07','1169c053-b599-4b60-9c5b-444b2769e55c'),
(1542,10,3588,NULL,81,1,'2026-03-13 11:43:07','2026-03-13 11:43:07','53af8f73-f2ac-42c0-9211-42c312e330a3'),
(1547,17,3591,NULL,81,1,'2026-03-13 11:43:37','2026-03-13 11:43:37','a403e19f-6b6c-4d09-968e-99bf0dcd3776'),
(1548,10,3592,NULL,2698,1,'2026-03-13 11:43:37','2026-03-13 11:43:37','d81656a9-df8d-4c26-a003-9d1323ed12d4'),
(1553,17,3595,NULL,81,1,'2026-03-13 11:46:15','2026-03-13 11:46:15','1b125ce1-545f-4450-8e64-0dfbf6d19da5'),
(1554,10,3596,NULL,2578,1,'2026-03-13 11:46:15','2026-03-13 11:46:15','1b9ae582-7052-4851-9af7-baf6b107d7a9'),
(1555,17,3596,NULL,81,1,'2026-03-13 11:46:15','2026-03-13 11:46:15','45bebbda-690a-4671-b5f2-136d23b09f08'),
(1557,17,3598,NULL,81,1,'2026-03-13 11:46:36','2026-03-13 11:46:36','2b574cd6-033d-4319-913c-e6cf82876c98'),
(1561,17,3601,NULL,81,1,'2026-03-13 11:49:10','2026-03-13 11:49:10','3f21811d-39dd-4c7f-b58d-a145cfd615f4'),
(1562,10,3602,NULL,2578,1,'2026-03-13 11:49:10','2026-03-13 11:49:10','93bc2c02-9b50-4002-9fab-d6addf0eef4f'),
(1563,17,3602,NULL,81,1,'2026-03-13 11:49:10','2026-03-13 11:49:10','c3a004fb-6ca5-4f21-a60c-e6d2bb864f01'),
(1567,17,3605,NULL,81,1,'2026-03-13 11:50:00','2026-03-13 11:50:00','537d7f00-411d-4d39-b0e7-a449ef6b812a'),
(1568,10,3606,NULL,2578,1,'2026-03-13 11:50:00','2026-03-13 11:50:00','ea13622e-bae2-401c-83b7-faef3bf2b17f'),
(1569,17,3606,NULL,81,1,'2026-03-13 11:50:00','2026-03-13 11:50:00','dd3fec64-bcee-463d-99ba-e503be5ff2a3'),
(1573,17,3609,NULL,81,1,'2026-03-13 11:50:32','2026-03-13 11:50:32','c0389475-519b-43ac-b675-8daecb677a1c'),
(1574,10,3610,NULL,2578,1,'2026-03-13 11:50:32','2026-03-13 11:50:32','16e23d2f-150b-4cff-a806-a7be8bd75a7f'),
(1575,17,3610,NULL,81,1,'2026-03-13 11:50:32','2026-03-13 11:50:32','cb6d01aa-feda-4638-88c3-af39d953db97'),
(1578,17,3613,NULL,81,1,'2026-03-13 11:51:33','2026-03-13 11:51:33','371066d6-13ab-460b-b2a9-eaf5fedc78bf'),
(1579,17,3614,NULL,2712,1,'2026-03-13 11:51:33','2026-03-13 11:51:33','8a0fb449-3e3f-4c6b-a154-6d2d6e650c01'),
(1582,17,3617,NULL,81,1,'2026-03-13 11:52:02','2026-03-13 11:52:02','06d33f60-03c5-45f6-91eb-adcb15bbeb7d'),
(1583,17,3618,NULL,2712,1,'2026-03-13 11:52:02','2026-03-13 11:52:02','d54b5f65-752b-4e52-bcf7-715af7c5981a'),
(1586,17,3621,NULL,81,1,'2026-03-13 11:52:28','2026-03-13 11:52:28','f20b069d-1ba0-47a9-8321-0ec9253cdc08'),
(1587,17,3622,NULL,2712,1,'2026-03-13 11:52:28','2026-03-13 11:52:28','3c2a28de-7de4-4d66-9e4b-53ad82401865'),
(1591,17,3625,NULL,81,1,'2026-03-13 11:53:11','2026-03-13 11:53:11','d29d0166-bed2-44c5-abe8-d7b8408c0b13'),
(1592,10,3626,NULL,2578,1,'2026-03-13 11:53:11','2026-03-13 11:53:11','86f82a1e-e855-45e3-b5c1-a861ac33d84f'),
(1593,17,3626,NULL,81,1,'2026-03-13 11:53:11','2026-03-13 11:53:11','c2606fb1-77fc-4e43-9796-8f8e26b4f102'),
(1597,17,3629,NULL,81,1,'2026-03-13 11:55:42','2026-03-13 11:55:42','43fbe766-dc82-4db7-9c09-ba82d88070ac'),
(1598,10,3630,NULL,2578,1,'2026-03-13 11:55:42','2026-03-13 11:55:42','3d96b5e7-e83f-4b2c-9595-bae55fe1bec2'),
(1599,17,3630,NULL,81,1,'2026-03-13 11:55:42','2026-03-13 11:55:42','42df015b-e216-4d33-9ff8-ebdf58501594'),
(1603,17,3633,NULL,81,1,'2026-03-13 11:55:57','2026-03-13 11:55:57','ac7aeefb-65f7-43c9-bef9-13510ea0b635'),
(1604,10,3634,NULL,2578,1,'2026-03-13 11:55:57','2026-03-13 11:55:57','359f5308-5aaa-4fc3-b4d6-785930f3f9c1'),
(1605,17,3634,NULL,81,1,'2026-03-13 11:55:57','2026-03-13 11:55:57','67d59939-a0dc-4dee-87f0-1bcd21f1292b'),
(1609,17,3637,NULL,81,1,'2026-03-13 11:58:18','2026-03-13 11:58:18','6524d88f-3450-411f-87be-e5ff2ebdd7d7'),
(1610,10,3638,NULL,2578,1,'2026-03-13 11:58:18','2026-03-13 11:58:18','5a064706-3a58-4a7f-b195-af7279436a20'),
(1611,17,3638,NULL,81,1,'2026-03-13 11:58:18','2026-03-13 11:58:18','d161349f-d007-45b4-8025-29fc6c1e9a82'),
(1613,17,3649,NULL,81,1,'2026-03-13 12:04:50','2026-03-13 12:04:50','bd757f9f-8db9-4cfa-b495-90336b00450f'),
(1615,17,3660,NULL,81,1,'2026-03-13 12:06:39','2026-03-13 12:06:39','a47900e2-f4bd-4a35-90ed-7154249b368c'),
(1617,17,3664,NULL,81,1,'2026-03-13 12:07:08','2026-03-13 12:07:08','2cb032bd-b51e-4a4b-b9cc-e32fca9db089'),
(1631,17,3707,NULL,2006,1,'2026-03-13 12:22:20','2026-03-13 12:22:20','51d77ac4-ccee-428b-9e0f-7d3a4263efaf'),
(1633,17,3711,NULL,2006,1,'2026-03-13 12:22:51','2026-03-13 12:22:51','5fac4e82-6a43-4cb1-9d45-eed492468c80'),
(1637,17,3715,NULL,2006,1,'2026-03-13 12:25:10','2026-03-13 12:25:10','d1f2112d-3d6b-4eec-a721-a8bdccf76fe1'),
(1638,10,3716,NULL,2036,1,'2026-03-13 12:25:10','2026-03-13 12:25:10','2892989d-9331-403a-9591-b09fcc86a4f6'),
(1639,17,3716,NULL,2034,1,'2026-03-13 12:25:10','2026-03-13 12:25:10','82d0034c-abe3-4a84-85d3-a09d78d7595f'),
(1643,17,3719,NULL,2006,1,'2026-03-13 12:25:43','2026-03-13 12:25:43','05ba54c0-81b3-4834-9921-3767f6f72e2d'),
(1644,10,3720,NULL,2036,1,'2026-03-13 12:25:43','2026-03-13 12:25:43','f2cfc789-34c9-40d9-8010-4bb2054cf1c1'),
(1645,17,3720,NULL,2034,1,'2026-03-13 12:25:43','2026-03-13 12:25:43','a6ce5cfe-1c26-487a-b1be-bdc95019019c'),
(1649,17,3723,NULL,2006,1,'2026-03-13 12:27:05','2026-03-13 12:27:05','8b3bce2b-cc33-4675-8eb1-b3fcaa2faa73'),
(1650,10,3724,NULL,2036,1,'2026-03-13 12:27:05','2026-03-13 12:27:05','d68d0db9-3f79-4d9a-99cd-906d2ffd55a2'),
(1651,17,3724,NULL,2034,1,'2026-03-13 12:27:05','2026-03-13 12:27:05','a6ba60aa-7771-4509-8004-cca18dd8012c'),
(1655,17,3727,NULL,2006,1,'2026-03-13 13:05:35','2026-03-13 13:05:35','0eaa0022-771f-497c-b53a-8d73271929f2'),
(1656,10,3728,NULL,2036,1,'2026-03-13 13:05:35','2026-03-13 13:05:35','cf134a6d-13a7-4028-bd27-d94e8359cfe3'),
(1657,17,3728,NULL,2034,1,'2026-03-13 13:05:35','2026-03-13 13:05:35','d98fcfeb-acc1-4cdc-b8c3-e4b39ffb56d5'),
(1661,17,3731,NULL,2006,1,'2026-03-13 13:06:01','2026-03-13 13:06:01','71a523f3-e54f-4230-b0e3-412762fd696c'),
(1662,10,3732,NULL,2036,1,'2026-03-13 13:06:02','2026-03-13 13:06:02','e5d478a0-f120-4029-8cd4-8390a5478320'),
(1663,17,3732,NULL,2034,1,'2026-03-13 13:06:02','2026-03-13 13:06:02','00e3fcea-98d3-4113-9c12-68f5be7178fe'),
(1668,17,3737,NULL,2006,1,'2026-03-13 13:14:19','2026-03-13 13:14:19','38d91439-0e49-4169-86d5-f048ecf56c34'),
(1669,2,3738,NULL,1946,1,'2026-03-13 13:14:19','2026-03-13 13:14:19','43dc6522-d073-4fdc-8878-5cc7c2cd8e7d'),
(1672,17,3741,NULL,2006,1,'2026-03-13 13:15:15','2026-03-13 13:15:15','523fbb81-2b19-4205-8247-f65e9d265b25'),
(1673,2,3742,NULL,1946,1,'2026-03-13 13:15:15','2026-03-13 13:15:15','c059bf67-2027-438b-be9d-1ecff23a9baf'),
(1675,17,3756,NULL,2006,1,'2026-03-13 13:18:52','2026-03-13 13:18:52','e24fe3fb-b92f-408e-a09d-224e2ed927d1'),
(1677,17,3771,NULL,2006,1,'2026-03-13 13:20:35','2026-03-13 13:20:35','effe203d-1d18-4801-bde4-ec4c65c560d1'),
(1679,17,3775,NULL,2006,1,'2026-03-13 13:25:08','2026-03-13 13:25:08','b7935ee1-fec1-4d21-a6a8-44a63fa71c37'),
(1681,17,3787,NULL,2006,1,'2026-03-13 13:26:17','2026-03-13 13:26:17','442be5d4-7afe-42a9-90bd-134ffc34daa0'),
(1682,17,3793,NULL,2006,1,'2026-03-13 13:40:59','2026-03-13 13:40:59','483e4b02-889a-4de0-8f05-87c5ef866fd6'),
(1683,10,3809,NULL,2036,1,'2026-03-13 13:40:59','2026-03-13 13:40:59','1457ea32-072b-4550-94cd-5718d942a9e5'),
(1684,17,3809,NULL,2034,1,'2026-03-13 13:40:59','2026-03-13 13:40:59','20296c5e-a6f6-4c5d-ba72-c3dfebc79df2'),
(1685,2,3810,NULL,1946,1,'2026-03-13 13:40:59','2026-03-13 13:40:59','04ecdea3-4a02-42ca-90ed-432d324b9453'),
(1686,13,3811,NULL,112,1,'2026-03-13 13:40:59','2026-03-13 13:40:59','6dbf11f4-99ef-4d58-9af0-9776bd86ff0a'),
(1687,13,3811,NULL,99,2,'2026-03-13 13:40:59','2026-03-13 13:40:59','61d83e99-25b9-4c27-854b-624973763137'),
(1688,13,3811,NULL,89,3,'2026-03-13 13:40:59','2026-03-13 13:40:59','9a8ed1e6-2805-440a-937e-d5f1892314dc'),
(1689,10,3825,NULL,2036,1,'2026-03-13 13:43:57','2026-03-13 13:43:57','60aa7ebe-2b2f-46fe-b7cb-5fc6053d1687'),
(1690,17,3825,NULL,2034,1,'2026-03-13 13:43:57','2026-03-13 13:43:57','1b1b97a0-3c79-4658-83c0-42c5995198cb'),
(1693,17,3857,NULL,2006,1,'2026-03-16 19:30:28','2026-03-16 19:30:28','56e0226e-b6b7-4e03-bd1c-20617889be00'),
(1698,17,3878,NULL,2006,1,'2026-03-16 19:53:23','2026-03-16 19:53:23','9bc66644-e76a-43b8-9153-2f4a38a0a75a'),
(1699,10,3884,NULL,2036,1,'2026-03-16 19:53:23','2026-03-16 19:53:23','5f7126a8-3df1-4841-8764-395b2642c5f1'),
(1700,17,3884,NULL,2034,1,'2026-03-16 19:53:23','2026-03-16 19:53:23','00b2f3bc-6a1c-4646-bc13-054bd51da08e'),
(1701,2,3885,NULL,1946,1,'2026-03-16 19:53:23','2026-03-16 19:53:23','0b97809b-99ea-4a70-8109-0cecc240f1b3'),
(1703,17,3899,NULL,2006,1,'2026-03-16 20:02:49','2026-03-16 20:02:49','8fac7fad-00d5-439d-9797-bdca64e7739f'),
(1705,17,3919,NULL,2006,1,'2026-03-16 20:19:17','2026-03-16 20:19:17','20838273-3bdd-4ee8-b8e4-ea9708099d2c'),
(1707,17,3926,NULL,2006,1,'2026-03-16 20:19:39','2026-03-16 20:19:39','b5273653-0485-4921-a7dc-7c808ed89875'),
(1709,17,3928,NULL,2006,1,'2026-03-16 20:19:47','2026-03-16 20:19:47','cdd3626a-da33-4794-a4f9-ea58a101f05e'),
(1713,17,3938,NULL,2006,1,'2026-03-16 20:22:17','2026-03-16 20:22:17','4be899a6-d46f-43b2-bc67-ec992be9e0b7'),
(1714,10,3944,NULL,2036,1,'2026-03-16 20:22:17','2026-03-16 20:22:17','42ba54dc-3ec2-4384-8124-ed56929c39ca'),
(1715,17,3944,NULL,2034,1,'2026-03-16 20:22:17','2026-03-16 20:22:17','e8e422ed-f9ef-4daf-b1b6-062bd287f4ad'),
(1718,17,3947,NULL,2006,1,'2026-03-16 20:27:20','2026-03-16 20:27:20','505968aa-d84d-4335-b0b7-d2ae7c0676b2'),
(1719,2,3948,NULL,1946,1,'2026-03-16 20:27:20','2026-03-16 20:27:20','ff32c26d-397b-43be-8220-336cab858122'),
(1722,17,3951,NULL,2006,1,'2026-03-16 20:28:39','2026-03-16 20:28:39','062cc324-a835-4dfa-a900-4f09bb70fbe2'),
(1723,2,3952,NULL,1946,1,'2026-03-16 20:28:39','2026-03-16 20:28:39','b117d2de-fdeb-42ca-9364-6b3fcfeb8279'),
(1734,10,2020,NULL,3957,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','007b5dd8-4be5-4e71-8f1e-556b1b522470'),
(1735,17,2020,NULL,3956,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','1d5fd5d0-d8cb-4f0a-b56a-92a9d7a78396'),
(1736,2,1964,NULL,3953,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','a9fd5eb4-aa95-4d94-9ee0-b9a22949a0b6'),
(1737,17,3960,NULL,2006,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','03dc988a-9117-4bf1-85db-b73255bbf054'),
(1738,10,3961,NULL,3957,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','aeb21068-5baf-416e-9393-a9e79fb01e80'),
(1739,17,3961,NULL,3956,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','93462284-cd52-4023-848d-1821e416a616'),
(1740,2,3962,NULL,3953,1,'2026-03-16 21:36:18','2026-03-16 21:36:18','2c185b73-fd89-40aa-8a89-d4e73d968209'),
(1741,17,3963,NULL,2006,1,'2026-03-16 21:36:20','2026-03-16 21:36:20','d263acb0-e218-413d-9dee-4d570970913e'),
(1743,17,3971,NULL,2006,1,'2026-03-16 21:39:46','2026-03-16 21:39:46','8e937c42-0a7b-4054-896a-7033a914b8b0'),
(1745,17,3979,NULL,2006,1,'2026-03-16 21:40:56','2026-03-16 21:40:56','75d9530d-1b47-44c7-ba1c-64774bce3171'),
(1747,17,3982,NULL,2006,1,'2026-03-16 21:46:29','2026-03-16 21:46:29','88ca0bb8-e0d4-4227-9cb6-7af9809c68dc'),
(1748,17,3983,NULL,2006,1,'2026-03-16 21:46:45','2026-03-16 21:46:45','aee2ba4e-35f4-42f7-a537-e63290f616d4'),
(1758,17,3992,NULL,81,1,'2026-03-16 22:29:01','2026-03-16 22:29:01','c5eaf219-ee41-4b23-8913-3113e347b677'),
(1759,17,3993,NULL,2712,1,'2026-03-16 22:29:01','2026-03-16 22:29:01','066a8128-f54c-459e-bf40-5dad5a945340'),
(1760,10,3994,NULL,2698,1,'2026-03-16 22:29:01','2026-03-16 22:29:01','51034e9e-f621-4661-a9d1-b0bf348fe0b0'),
(1761,10,3995,NULL,2578,1,'2026-03-16 22:29:01','2026-03-16 22:29:01','dba8b5fe-0d35-4bc6-9193-3199b0bf5b68'),
(1762,17,3995,NULL,81,1,'2026-03-16 22:29:01','2026-03-16 22:29:01','de64cfb8-db16-47b5-bd3a-a921f063f80a'),
(1763,17,3996,NULL,81,1,'2026-03-16 22:29:04','2026-03-16 22:29:04','c702f5b1-e7ac-443b-bb9f-116de4bf5284'),
(1766,17,3998,NULL,81,1,'2026-03-16 22:36:04','2026-03-16 22:36:04','b12c1bc9-2948-4913-9071-4fb205e3f3b1'),
(1769,17,4001,NULL,81,1,'2026-03-16 22:40:44','2026-03-16 22:40:44','7449218b-b78b-418d-897e-bc5ab5b954a2'),
(1770,17,4002,NULL,2712,1,'2026-03-16 22:40:44','2026-03-16 22:40:44','e13315ae-a55e-4274-ac93-5fed424dfa0e'),
(1771,10,4003,NULL,2578,1,'2026-03-16 22:40:44','2026-03-16 22:40:44','d4b1c4c5-9b24-48ea-9476-a7aa030ce625'),
(1772,17,4003,NULL,81,1,'2026-03-16 22:40:44','2026-03-16 22:40:44','24efc872-85f0-479a-893a-823beb8bf66e'),
(1778,17,4007,NULL,81,1,'2026-03-16 22:42:09','2026-03-16 22:42:09','2075042d-c467-4d7b-ac99-45c6425349b5'),
(1779,10,4008,NULL,2578,1,'2026-03-16 22:42:09','2026-03-16 22:42:09','db6f96e3-60b4-4966-9ea6-3960dd793eb6'),
(1780,17,4008,NULL,81,1,'2026-03-16 22:42:09','2026-03-16 22:42:09','28ec9e47-000d-4700-b0c5-defb1a9acbc1'),
(1783,17,4011,NULL,81,1,'2026-03-16 22:43:31','2026-03-16 22:43:31','b0f64200-0a34-4d5f-a293-dfe8e1dbe2d6'),
(1784,17,4012,NULL,2712,1,'2026-03-16 22:43:31','2026-03-16 22:43:31','1802d36e-1d1e-403b-a92d-1bbf21579be9'),
(1786,17,4016,NULL,2006,1,'2026-03-17 10:08:43','2026-03-17 10:08:43','d982abb9-5159-441b-a113-d2b6322103ef'),
(1788,17,4021,NULL,2006,1,'2026-03-17 11:28:19','2026-03-17 11:28:19','52009286-cee2-4c93-b659-177794b46655'),
(1790,17,4024,NULL,2006,1,'2026-03-17 12:52:41','2026-03-17 12:52:41','d6a3b4f9-e60d-4570-8095-d790610458a2'),
(1794,2,4039,NULL,3953,1,'2026-03-18 10:16:31','2026-03-18 10:16:31','3fbd517c-ab3e-4455-b4d0-ba9befbaf18d'),
(1795,13,4040,NULL,112,1,'2026-03-18 10:16:31','2026-03-18 10:16:31','0e194e09-cdf9-4e6f-a1ab-368b558d3ec4'),
(1796,13,4040,NULL,99,2,'2026-03-18 10:16:31','2026-03-18 10:16:31','2c326b3e-1c81-4db0-b1a3-0c0993231659'),
(1797,13,4040,NULL,89,3,'2026-03-18 10:16:31','2026-03-18 10:16:31','626ec4ce-8191-42df-bb5d-e4e4e4ca2334'),
(1798,17,4054,NULL,2006,1,'2026-03-18 10:17:07','2026-03-18 10:17:07','3117bb4d-5baf-4ebe-bd16-7d19be0861b0'),
(1799,10,4066,NULL,3957,1,'2026-03-18 10:17:07','2026-03-18 10:17:07','8d5588ee-f300-4468-96b1-65fd670e888a'),
(1800,17,4066,NULL,3956,1,'2026-03-18 10:17:07','2026-03-18 10:17:07','367c8d4c-13ed-409f-bba0-dbc559b74f31'),
(1801,2,4067,NULL,3953,1,'2026-03-18 10:17:07','2026-03-18 10:17:07','5e3169cb-5879-49f1-b9a2-da037adff6e1'),
(1802,13,4068,NULL,112,1,'2026-03-18 10:17:07','2026-03-18 10:17:07','6de8dfa4-61be-425a-8061-7207dbab16d1'),
(1803,13,4068,NULL,99,2,'2026-03-18 10:17:07','2026-03-18 10:17:07','e354eafd-5c8a-41a7-9d23-3e2a07ace444'),
(1804,13,4068,NULL,89,3,'2026-03-18 10:17:07','2026-03-18 10:17:07','d6de47ff-6b15-4729-8f68-0f7d6d87201e'),
(1824,17,4026,NULL,4084,1,'2026-03-18 11:20:58','2026-03-18 11:20:58','3044a47a-9faf-4355-88d4-4de684e14714'),
(1825,10,4038,NULL,4105,1,'2026-03-18 11:20:58','2026-03-18 11:20:58','61dc9735-3550-4c99-9eb4-74f282c7a257'),
(1826,17,4038,NULL,4090,1,'2026-03-18 11:20:58','2026-03-18 11:20:58','05b2cde1-c45e-4106-ae54-51a80f26b4fb'),
(1827,17,4108,NULL,4084,1,'2026-03-18 11:20:58','2026-03-18 11:20:58','1e1946bf-052f-4e77-8bfb-2ce2047cae36'),
(1828,10,4116,NULL,4105,1,'2026-03-18 11:20:58','2026-03-18 11:20:58','5369ac24-833e-4a37-afee-7e6d1faa91f9'),
(1829,17,4116,NULL,4090,1,'2026-03-18 11:20:58','2026-03-18 11:20:58','ca085f16-a7bc-433e-9093-c4cd7bcfd4e5'),
(1841,2,143,NULL,4118,1,'2026-03-18 11:50:05','2026-03-18 11:50:05','234ccdfd-8a7c-4863-8c75-236d35b9cfb0'),
(1844,17,4153,NULL,4084,1,'2026-03-18 12:09:17','2026-03-18 12:09:17','573a3f26-c816-4f3b-a487-dcdb911d5dce'),
(1852,17,4171,NULL,2006,1,'2026-03-18 16:28:35','2026-03-18 16:28:35','839bf3b9-448b-45ea-ab8f-d9b0fea6dfec'),
(1853,2,4172,NULL,3953,1,'2026-03-18 16:28:35','2026-03-18 16:28:35','61a1ff00-3645-4c04-9250-441576839219'),
(1854,17,4174,NULL,4084,1,'2026-03-18 16:29:26','2026-03-18 16:29:26','2259207f-9d72-4afa-8b95-16982b282902'),
(1855,10,4180,NULL,4105,1,'2026-03-18 16:29:26','2026-03-18 16:29:26','a23ef0ee-ed4b-44b3-bae2-486a5e9b0ed9'),
(1856,17,4180,NULL,4090,1,'2026-03-18 16:29:26','2026-03-18 16:29:26','f45a3bad-3fd0-45e3-8431-e9bb8a2e8f93'),
(1857,2,4181,NULL,3953,1,'2026-03-18 16:29:26','2026-03-18 16:29:26','94353370-d4e5-4bfa-8a38-a28eff6a1e92'),
(1860,17,4184,NULL,4084,1,'2026-03-18 16:30:09','2026-03-18 16:30:09','a759e5c0-b319-4e6b-85a1-2f602dbd0528'),
(1861,2,4185,NULL,3953,1,'2026-03-18 16:30:09','2026-03-18 16:30:09','e03256c8-7b64-4726-85e8-9a0bff750523'),
(1864,17,4188,NULL,2006,1,'2026-03-18 16:30:45','2026-03-18 16:30:45','bbdc7089-953b-4005-9ca6-b8ecc17f3091'),
(1865,2,4189,NULL,3953,1,'2026-03-18 16:30:45','2026-03-18 16:30:45','8a2f894b-9b66-4140-b270-26dd009fdbc7'),
(1868,17,4192,NULL,2006,1,'2026-03-18 16:31:16','2026-03-18 16:31:16','bdf2629c-db26-4f25-8a23-705da0db8a74'),
(1869,2,4193,NULL,3953,1,'2026-03-18 16:31:16','2026-03-18 16:31:16','821e4ec4-286f-4e29-a95f-279dc74790eb'),
(1875,17,4199,NULL,4084,1,'2026-03-18 22:34:40','2026-03-18 22:34:40','0be4b607-70cf-4536-abe0-b40f2524bf18'),
(1876,10,4200,NULL,4105,1,'2026-03-18 22:34:40','2026-03-18 22:34:40','1d73c663-cf99-4035-bfd8-c2e4b2472a7d'),
(1877,17,4200,NULL,4090,1,'2026-03-18 22:34:40','2026-03-18 22:34:40','3d4c7d8c-7da2-4cf0-b925-fd947f254824'),
(1878,2,4201,NULL,3953,1,'2026-03-18 22:34:40','2026-03-18 22:34:40','31a39340-9f9f-45ae-823f-a170430e9c5e'),
(1879,17,4203,NULL,4084,1,'2026-03-18 22:34:51','2026-03-18 22:34:51','c1d15eda-993b-48a1-b069-8003815ea14e'),
(1880,10,4215,NULL,4105,1,'2026-03-18 22:34:51','2026-03-18 22:34:51','b32f6354-3bd1-4169-b288-14aabcc7a293'),
(1881,17,4215,NULL,4090,1,'2026-03-18 22:34:51','2026-03-18 22:34:51','ca8d3a24-bb0e-4b55-bfaa-5c437c8b9568'),
(1882,2,4216,NULL,3953,1,'2026-03-18 22:34:51','2026-03-18 22:34:51','cb887daa-e0b2-49be-9b9e-0d0784346a9e'),
(1883,13,4217,NULL,112,1,'2026-03-18 22:34:51','2026-03-18 22:34:51','4bc1fbf4-1efb-451c-a162-89ed3bd00130'),
(1884,13,4217,NULL,99,2,'2026-03-18 22:34:51','2026-03-18 22:34:51','2dcaec63-8b5d-4fc3-ba8a-563513fc83cd'),
(1885,13,4217,NULL,89,3,'2026-03-18 22:34:51','2026-03-18 22:34:51','db2fb506-29a5-412f-99a3-40a791b8fa23'),
(1888,17,4244,NULL,4084,1,'2026-03-18 22:49:09','2026-03-18 22:49:09','37304633-4132-4788-8286-ccdc3a1ee523'),
(1889,10,4256,NULL,4105,1,'2026-03-18 22:49:09','2026-03-18 22:49:09','c5b82ca9-f83b-436f-83c0-4cbf1501b17d'),
(1890,17,4256,NULL,4090,1,'2026-03-18 22:49:09','2026-03-18 22:49:09','cba73f21-70c9-4058-af9b-77279066ef30'),
(1891,2,4257,NULL,3953,1,'2026-03-18 22:49:09','2026-03-18 22:49:09','2b1885f1-97bd-4f92-90af-785423c52b0d'),
(1892,13,4258,NULL,112,1,'2026-03-18 22:49:09','2026-03-18 22:49:09','212078f5-850c-4c26-ae95-43f7fedcc5b7'),
(1893,13,4258,NULL,99,2,'2026-03-18 22:49:09','2026-03-18 22:49:09','158e6ed0-1406-4b18-8070-031d44692ad3'),
(1894,13,4258,NULL,89,3,'2026-03-18 22:49:09','2026-03-18 22:49:09','0dcc7e41-c475-474c-b72d-1e2fda0a437b'),
(1897,17,4284,NULL,4084,1,'2026-03-18 23:00:22','2026-03-18 23:00:22','384dcde9-d6ac-4729-bbea-216678f14611'),
(1898,2,4285,NULL,3953,1,'2026-03-18 23:00:22','2026-03-18 23:00:22','75a40dd4-d62d-4a37-b859-5abffb8282ed'),
(1899,17,4296,NULL,4084,1,'2026-03-18 23:00:26','2026-03-18 23:00:26','876cb2ea-7277-45fe-986c-f76d4a3f45db'),
(1901,17,4298,NULL,4084,1,'2026-03-18 23:00:53','2026-03-18 23:00:53','079fa227-3f93-47ce-b22a-d35496b797fc'),
(1904,17,4301,NULL,4084,1,'2026-03-18 23:04:29','2026-03-18 23:04:29','cbcbe3e4-18f0-4b98-8b46-0804c39fdfbe'),
(1905,2,4302,NULL,3953,1,'2026-03-18 23:04:29','2026-03-18 23:04:29','b41ab435-8ef3-41a6-9801-9a1fa5fd0729'),
(1909,2,4316,NULL,3953,1,'2026-03-18 23:06:21','2026-03-18 23:06:21','5bdbe06e-ef8d-4181-8485-03c49dd31e87'),
(1910,13,4317,NULL,112,1,'2026-03-18 23:06:21','2026-03-18 23:06:21','0d914a8e-e22f-4e47-9043-9dc99f13fb83'),
(1911,13,4317,NULL,99,2,'2026-03-18 23:06:21','2026-03-18 23:06:21','448fcf07-6fb4-42f5-b516-e871ad9b1ffc'),
(1912,13,4317,NULL,89,3,'2026-03-18 23:06:21','2026-03-18 23:06:21','91580482-ad29-4a24-8402-5a9ce34c49ff'),
(1913,17,4329,NULL,4084,1,'2026-03-18 23:06:51','2026-03-18 23:06:51','8a580e08-82de-4c81-9c16-3bf4cfc7addb'),
(1914,10,4341,NULL,4105,1,'2026-03-18 23:06:51','2026-03-18 23:06:51','a9a7619d-dbf6-4978-8b45-f95ed0ba9170'),
(1915,17,4341,NULL,4090,1,'2026-03-18 23:06:51','2026-03-18 23:06:51','1240e02f-c89b-473f-850c-04c575df089c'),
(1916,2,4342,NULL,3953,1,'2026-03-18 23:06:51','2026-03-18 23:06:51','988c8411-4329-4192-845f-a5a167d8cc58'),
(1917,13,4343,NULL,112,1,'2026-03-18 23:06:51','2026-03-18 23:06:51','0e4761aa-e92b-42df-b453-08da4c25ab5f'),
(1918,13,4343,NULL,99,2,'2026-03-18 23:06:51','2026-03-18 23:06:51','40c0885d-092b-480c-bd1a-8b1716abb1f2'),
(1919,13,4343,NULL,89,3,'2026-03-18 23:06:51','2026-03-18 23:06:51','763ddad5-5c83-47f5-9159-98cc40127328'),
(1933,10,4315,NULL,4375,1,'2026-03-18 23:26:10','2026-03-18 23:26:10','0bde3e9f-b991-4c80-9a09-d370a28785c3'),
(1934,17,4315,NULL,4372,1,'2026-03-18 23:26:10','2026-03-18 23:26:10','64c105c3-5626-43d6-85a0-6b3335e33d5e'),
(1935,17,4376,NULL,4355,1,'2026-03-18 23:26:10','2026-03-18 23:26:10','9472cdfd-627c-44d8-ba2f-16f88b1e1afe'),
(1936,10,4388,NULL,4375,1,'2026-03-18 23:26:11','2026-03-18 23:26:11','d270d665-619a-4df3-bb2e-e592d4192e00'),
(1937,17,4388,NULL,4372,1,'2026-03-18 23:26:11','2026-03-18 23:26:11','cf43ac50-fbe6-48f2-ae69-cc456efb589b'),
(1938,2,4389,NULL,3953,1,'2026-03-18 23:26:11','2026-03-18 23:26:11','fa08d206-8b1a-4c18-a0f4-ad4ee05c69be'),
(1940,17,4402,NULL,4355,1,'2026-03-18 23:30:34','2026-03-18 23:30:34','cac051b3-4755-4ba0-9e1e-cb199138a332'),
(1944,2,4431,NULL,3953,1,'2026-03-19 10:14:35','2026-03-19 10:14:35','0fa9a58f-48fb-4a3e-811e-d11fa1284cd6'),
(1945,13,4432,NULL,112,1,'2026-03-19 10:14:35','2026-03-19 10:14:35','a4041854-00e0-4492-8d29-f368e914ee98'),
(1946,13,4432,NULL,99,2,'2026-03-19 10:14:35','2026-03-19 10:14:35','249a5da9-457a-4424-8587-0df88c650af1'),
(1947,13,4432,NULL,89,3,'2026-03-19 10:14:35','2026-03-19 10:14:35','c579fa83-5152-4afa-be00-d1741b9c0acd'),
(1948,17,4418,NULL,4446,1,'2026-03-19 10:17:14','2026-03-19 10:17:14','f0c055aa-d54f-4d1c-b1c6-febc1ed69b56'),
(1952,17,4473,NULL,4446,1,'2026-03-19 10:32:09','2026-03-19 10:32:09','b4bd8c09-241b-4d28-83fa-8047c6048845'),
(1953,10,4485,NULL,4105,1,'2026-03-19 10:32:09','2026-03-19 10:32:09','80cd070c-1022-4b69-9267-11b6d2738dc9'),
(1954,17,4485,NULL,4090,1,'2026-03-19 10:32:09','2026-03-19 10:32:09','db7b27b6-c91e-4295-afeb-7a72e06bcbe8'),
(1955,2,4486,NULL,3953,1,'2026-03-19 10:32:09','2026-03-19 10:32:09','e171655e-e4af-4170-a37e-3559e2d3a81c'),
(1956,13,4487,NULL,112,1,'2026-03-19 10:32:09','2026-03-19 10:32:09','e138f2b7-655f-41b1-944b-1cf3718f02ce'),
(1957,13,4487,NULL,99,2,'2026-03-19 10:32:09','2026-03-19 10:32:09','94f22481-e87d-4bf9-9796-b03ae2ef1200'),
(1958,13,4487,NULL,89,3,'2026-03-19 10:32:09','2026-03-19 10:32:09','5ea851c1-f858-478f-8544-e1461da47573'),
(1960,17,4501,NULL,4446,1,'2026-03-19 10:32:28','2026-03-19 10:32:28','82169552-e3fd-4f4b-9d4c-1b8db2fb9053'),
(1964,2,4515,NULL,3953,1,'2026-03-19 10:33:22','2026-03-19 10:33:22','e99d2af9-75f9-4bd9-80e5-c342a6a98577'),
(1965,13,4516,NULL,112,1,'2026-03-19 10:33:22','2026-03-19 10:33:22','735495f8-8c30-454d-a26a-c5dbd4511b85'),
(1966,13,4516,NULL,99,2,'2026-03-19 10:33:22','2026-03-19 10:33:22','fd643d3e-d7a5-4498-ad09-4789c3c46a01'),
(1967,13,4516,NULL,89,3,'2026-03-19 10:33:22','2026-03-19 10:33:22','b1c71542-279a-48ee-853e-5b3514ef3ab9'),
(1976,10,4430,NULL,4448,1,'2026-03-19 10:57:48','2026-03-19 10:57:48','98070fc8-cf31-4b2e-b24b-fb483485738b'),
(1977,17,4430,NULL,4531,1,'2026-03-19 10:57:48','2026-03-19 10:57:48','7da3b840-3185-4274-b010-bbb6f03bb349'),
(1978,17,4533,NULL,4446,1,'2026-03-19 10:57:48','2026-03-19 10:57:48','ee0abbb0-4134-4806-bbac-2a49d7375213'),
(1979,10,4534,NULL,4448,1,'2026-03-19 10:57:48','2026-03-19 10:57:48','40d2c7dd-fc5f-463f-97ca-e7075ce3804d'),
(1980,17,4534,NULL,4531,1,'2026-03-19 10:57:48','2026-03-19 10:57:48','cfae2197-0a4a-469f-9898-f5332b555868'),
(1981,17,4535,NULL,4446,1,'2026-03-19 10:57:56','2026-03-19 10:57:56','c9410dea-b22d-447f-9f89-e8c7536e29e4'),
(1987,10,4514,NULL,4537,1,'2026-03-19 15:50:16','2026-03-19 15:50:16','ee986006-6dc6-4a22-85c8-d36a829456d4'),
(1988,17,4514,NULL,4538,1,'2026-03-19 15:50:16','2026-03-19 15:50:16','580ef93a-5273-4db7-accf-291d10b2b959'),
(1990,17,4564,NULL,4539,1,'2026-03-19 15:56:54','2026-03-19 15:56:54','4d27bf65-ce19-4bb9-bb40-e0197aba6a9f'),
(1991,10,4576,NULL,4537,1,'2026-03-19 15:56:54','2026-03-19 15:56:54','cbf410cb-4f7a-4baa-88a9-b718747a5eff'),
(1992,17,4576,NULL,4538,1,'2026-03-19 15:56:54','2026-03-19 15:56:54','f1a7f09f-4f06-4d27-b605-70b37dba1544'),
(1993,2,4577,NULL,3953,1,'2026-03-19 15:56:54','2026-03-19 15:56:54','d3827188-e072-4ef5-ae06-555bfe906f5a'),
(1994,13,4578,NULL,112,1,'2026-03-19 15:56:54','2026-03-19 15:56:54','a29d52d5-4a4a-4878-9551-5b39913c61f8'),
(1995,13,4578,NULL,99,2,'2026-03-19 15:56:54','2026-03-19 15:56:54','34d329fc-0030-4819-a5f7-31ba70d4ed69'),
(1996,13,4578,NULL,89,3,'2026-03-19 15:56:54','2026-03-19 15:56:54','371b9cce-56f5-4f3f-8bb4-573dfeb79a52'),
(1998,17,4592,NULL,4539,1,'2026-03-19 15:57:10','2026-03-19 15:57:10','ca176b7a-b024-4dc0-b0b5-8644ebb8c39f'),
(2002,2,4606,NULL,3953,1,'2026-03-19 15:59:49','2026-03-19 15:59:49','6f1748ec-1727-4604-ade1-ac47b687fa69'),
(2003,13,4607,NULL,112,1,'2026-03-19 15:59:49','2026-03-19 15:59:49','97e0a307-8745-428d-b498-be9d3e25b148'),
(2004,13,4607,NULL,99,2,'2026-03-19 15:59:49','2026-03-19 15:59:49','18937f8f-2f73-4c68-970b-d8e8caad7a18'),
(2005,13,4607,NULL,89,3,'2026-03-19 15:59:49','2026-03-19 15:59:49','97915748-9bec-496c-b25c-27ee4868c960'),
(2007,17,4636,NULL,4627,1,'2026-03-19 16:04:32','2026-03-19 16:04:32','1da5b4f4-e2ef-4552-a889-1e25d64f58a8'),
(2008,10,4648,NULL,4105,1,'2026-03-19 16:04:32','2026-03-19 16:04:32','8164ba06-d8ef-4ced-85bd-0cb178ce08d0'),
(2009,17,4648,NULL,4090,1,'2026-03-19 16:04:32','2026-03-19 16:04:32','b3bee74b-50e1-45ca-9dbb-cbd0eafe71b5'),
(2010,2,4649,NULL,3953,1,'2026-03-19 16:04:32','2026-03-19 16:04:32','35d0d3c8-f5fe-4fa7-b42f-7969df6fa91d'),
(2011,13,4650,NULL,112,1,'2026-03-19 16:04:32','2026-03-19 16:04:32','279bae2f-c2b9-48ce-bf97-3a2d0d4dfdf5'),
(2012,13,4650,NULL,99,2,'2026-03-19 16:04:32','2026-03-19 16:04:32','f46a345c-d1c7-4bea-b935-8db5740a1a76'),
(2013,13,4650,NULL,89,3,'2026-03-19 16:04:32','2026-03-19 16:04:32','03a49e73-2674-4aa6-a1ef-963f28009139'),
(2014,17,4664,NULL,4627,1,'2026-03-19 16:04:35','2026-03-19 16:04:35','54f1e05c-42ab-4641-a082-28fc5a227ae7'),
(2021,10,4605,NULL,4630,1,'2026-03-19 16:30:24','2026-03-19 16:30:24','acd0ca95-31f9-475a-b354-d973bc95f51e'),
(2022,17,4605,NULL,4628,1,'2026-03-19 16:30:24','2026-03-19 16:30:24','60616caf-9364-4e13-908a-61af9f2575e3'),
(2023,17,4681,NULL,4627,1,'2026-03-19 16:30:24','2026-03-19 16:30:24','b44427f3-0973-49fa-b122-83b406734ae9'),
(2024,10,4687,NULL,4630,1,'2026-03-19 16:30:24','2026-03-19 16:30:24','5ac63888-c0a4-489c-8e7e-651bf3ef572e'),
(2025,17,4687,NULL,4628,1,'2026-03-19 16:30:24','2026-03-19 16:30:24','1fecb3db-9f0f-4a20-b1cc-e04611b652d3'),
(2026,2,4688,NULL,3953,1,'2026-03-19 16:30:24','2026-03-19 16:30:24','09b89313-c1aa-4640-a576-6fff114aaf99'),
(2027,17,4697,NULL,4627,1,'2026-03-19 16:30:27','2026-03-19 16:30:27','ac58b20a-c519-4053-baab-deffb423d17c'),
(2029,17,4700,NULL,4627,1,'2026-03-19 18:36:32','2026-03-19 18:36:32','689b4ef7-500d-4739-a830-41ef6f1cc875'),
(2033,2,4715,NULL,3953,1,'2026-03-19 18:39:03','2026-03-19 18:39:03','956a1c7d-3638-4ac9-b78b-6db7375d6e15'),
(2034,13,4716,NULL,112,1,'2026-03-19 18:39:03','2026-03-19 18:39:03','10d6862c-5158-496f-bfb5-51bf7ed95575'),
(2035,13,4716,NULL,99,2,'2026-03-19 18:39:03','2026-03-19 18:39:03','379c1d45-644b-450e-b3ca-d670dbaa6c85'),
(2036,13,4716,NULL,89,3,'2026-03-19 18:39:03','2026-03-19 18:39:03','28ef42f8-9162-41d9-9f72-e4ad8730a72a'),
(2037,17,4726,NULL,4627,1,'2026-03-19 18:39:39','2026-03-19 18:39:39','4a372934-c447-4fab-a9e1-234815898004'),
(2038,10,4738,NULL,4630,1,'2026-03-19 18:39:39','2026-03-19 18:39:39','630158a1-d6cc-4cc4-a1e7-4ebccc91e237'),
(2039,17,4738,NULL,4628,1,'2026-03-19 18:39:39','2026-03-19 18:39:39','85b88272-124d-4a9f-9504-30b53568d4de'),
(2040,2,4739,NULL,3953,1,'2026-03-19 18:39:39','2026-03-19 18:39:39','c31a564a-363f-4a23-8cbe-33340bea58d9'),
(2041,13,4740,NULL,112,1,'2026-03-19 18:39:39','2026-03-19 18:39:39','ddc8e1be-c2e9-4235-9b15-b1a07ed292a5'),
(2042,13,4740,NULL,99,2,'2026-03-19 18:39:39','2026-03-19 18:39:39','52ce278f-3bd2-43ce-9a84-46d2077f335d'),
(2043,13,4740,NULL,89,3,'2026-03-19 18:39:39','2026-03-19 18:39:39','479c34c1-9192-4618-b088-b60062978a25'),
(2052,17,4702,NULL,4754,1,'2026-03-19 19:07:56','2026-03-19 19:07:56','b44353a6-975a-45f7-b1f4-59560c289889'),
(2053,10,4714,NULL,4753,1,'2026-03-19 19:07:56','2026-03-19 19:07:56','a36cfca6-dbdc-49b5-96a6-49e93e24ef4a'),
(2054,17,4714,NULL,4752,1,'2026-03-19 19:07:56','2026-03-19 19:07:56','730939f7-4130-40b4-97fd-33ba44ac6b57'),
(2055,17,4783,NULL,4754,1,'2026-03-19 19:07:57','2026-03-19 19:07:57','cae0ddda-a9e9-4719-bd61-320c8a9b93f5'),
(2056,10,4791,NULL,4753,1,'2026-03-19 19:07:57','2026-03-19 19:07:57','97d004c9-b00e-42a8-b0e3-d7bf9668f38b'),
(2057,17,4791,NULL,4752,1,'2026-03-19 19:07:57','2026-03-19 19:07:57','4b89bab6-4033-48ab-8428-696ee1d1aba6'),
(2058,2,4792,NULL,3953,1,'2026-03-19 19:07:57','2026-03-19 19:07:57','c706c1f4-4534-4fc6-8f0a-3c8a9c36ab63'),
(2059,17,4804,NULL,4754,1,'2026-03-19 19:08:00','2026-03-19 19:08:00','066fb39f-95a7-4667-8b8f-34f1dca66311'),
(2063,2,4814,NULL,3953,1,'2026-03-19 19:08:52','2026-03-19 19:08:52','dd49b0eb-4feb-4ce0-ab04-dd9110242388'),
(2064,13,4815,NULL,112,1,'2026-03-19 19:08:52','2026-03-19 19:08:52','fff23443-2264-436e-a5b9-0cd1275ce66b'),
(2065,13,4815,NULL,99,2,'2026-03-19 19:08:52','2026-03-19 19:08:52','2d295e71-6c97-41c0-91c9-128351c42664'),
(2066,13,4815,NULL,89,3,'2026-03-19 19:08:52','2026-03-19 19:08:52','61e4d6ce-1e7b-4ba9-a293-7475b9890641'),
(2067,17,4828,NULL,4754,1,'2026-03-19 19:09:14','2026-03-19 19:09:14','e2df5085-f5fb-46b8-886b-f8e0f7635487'),
(2068,10,4836,NULL,4753,1,'2026-03-19 19:09:14','2026-03-19 19:09:14','67639ec4-d1f9-494a-b456-87625e86f897'),
(2069,17,4836,NULL,4752,1,'2026-03-19 19:09:14','2026-03-19 19:09:14','6aca0a73-14e0-4cce-8fe6-f41f228d721f'),
(2070,2,4837,NULL,3953,1,'2026-03-19 19:09:14','2026-03-19 19:09:14','8a521d1b-d533-4767-a428-15d4ee7798c0'),
(2071,13,4838,NULL,112,1,'2026-03-19 19:09:14','2026-03-19 19:09:14','ff07af7c-b887-41cb-8b85-cf6c260ad596'),
(2072,13,4838,NULL,99,2,'2026-03-19 19:09:14','2026-03-19 19:09:14','ea601694-5693-42bb-910a-a111eef896ab'),
(2073,13,4838,NULL,89,3,'2026-03-19 19:09:14','2026-03-19 19:09:14','6a81c2d3-7721-48f5-b5d2-7d9b7b2de5ab'),
(2075,17,4873,NULL,4754,1,'2026-03-19 19:15:03','2026-03-19 19:15:03','9a65aaa4-1dbf-4dd9-90a6-1fd5b2f6bacf'),
(2082,17,4805,NULL,4886,1,'2026-03-19 19:23:50','2026-03-19 19:23:50','e8f91c8a-00fe-4b01-99df-48471e335cd0'),
(2083,10,4813,NULL,4888,1,'2026-03-19 19:23:50','2026-03-19 19:23:50','03bde8c0-d700-459c-a04f-a7dfbf393628'),
(2084,17,4813,NULL,4887,1,'2026-03-19 19:23:50','2026-03-19 19:23:50','46432c26-a86d-4240-859e-e34fb8f74e8f'),
(2085,17,4890,NULL,4886,1,'2026-03-19 19:23:50','2026-03-19 19:23:50','bde4e22e-f893-4932-8967-4fbecb1c058b'),
(2086,10,4891,NULL,4888,1,'2026-03-19 19:23:50','2026-03-19 19:23:50','d86533a5-9b9a-4f22-806a-dee57fb216d5'),
(2087,17,4891,NULL,4887,1,'2026-03-19 19:23:50','2026-03-19 19:23:50','a0c2b5bb-8d72-4be1-8354-c5b6c7d1d2af'),
(2088,17,4892,NULL,4886,1,'2026-03-19 19:23:52','2026-03-19 19:23:52','4a30ae88-633f-45fe-b2a9-62efda812e1c'),
(2091,17,4502,NULL,4893,1,'2026-03-19 19:41:03','2026-03-19 19:41:03','efd17e26-02e6-4b0f-9d37-8a3b4f03dde7'),
(2092,17,4895,NULL,4893,1,'2026-03-19 19:41:04','2026-03-19 19:41:04','f7dc14e0-6d80-49bf-927a-cf407a7d9edf'),
(2096,2,4909,NULL,3953,1,'2026-03-19 19:45:54','2026-03-19 19:45:54','1bb8a035-107e-4656-a006-82dd914e8480'),
(2097,13,4910,NULL,112,1,'2026-03-19 19:45:54','2026-03-19 19:45:54','b40af14c-805a-4a07-a95b-2b2bd3c7d766'),
(2098,13,4910,NULL,99,2,'2026-03-19 19:45:54','2026-03-19 19:45:54','9d1b280e-5edd-4751-8871-3d1f81504a3b'),
(2099,13,4910,NULL,89,3,'2026-03-19 19:45:54','2026-03-19 19:45:54','887025c2-d903-4a26-83fb-05ef223bfd2b'),
(2103,17,4896,NULL,4949,1,'2026-03-19 20:04:33','2026-03-19 20:04:33','0cc18a25-65d1-4422-8380-90e29ad25f8c'),
(2108,10,4908,NULL,4950,1,'2026-03-19 20:05:16','2026-03-19 20:05:16','7b7c6748-54f6-4e15-8e6a-31d5228c7257'),
(2109,17,4908,NULL,4948,1,'2026-03-19 20:05:16','2026-03-19 20:05:16','8aac72a8-1aa5-4edd-b018-acf4e42e3590'),
(2110,17,4952,NULL,4949,1,'2026-03-19 20:05:19','2026-03-19 20:05:19','978366dc-d3cb-4d90-9c5f-3f2b1eadeb85'),
(2111,10,4964,NULL,4950,1,'2026-03-19 20:05:19','2026-03-19 20:05:19','4919a0d1-09ca-4dea-b47e-043dc1dff82c'),
(2112,17,4964,NULL,4948,1,'2026-03-19 20:05:19','2026-03-19 20:05:19','e7f5e4f2-213d-4fc0-b17c-ee800f4be8c7'),
(2113,2,4965,NULL,3953,1,'2026-03-19 20:05:19','2026-03-19 20:05:19','05f8bb6d-93b9-4978-8fba-e2f22f2f424b'),
(2114,13,4966,NULL,112,1,'2026-03-19 20:05:19','2026-03-19 20:05:19','ac9d38b1-a948-4efd-9392-ecd8a81a7817'),
(2115,13,4966,NULL,99,2,'2026-03-19 20:05:19','2026-03-19 20:05:19','e2066150-2522-4ce7-8867-eca58c5aea6a'),
(2116,13,4966,NULL,89,3,'2026-03-19 20:05:19','2026-03-19 20:05:19','94682343-8098-4116-8b93-c9c0c3749232'),
(2117,17,4979,NULL,4949,1,'2026-03-19 20:05:21','2026-03-19 20:05:21','825bd7b2-c0a7-4a6b-9842-c21f6429879a'),
(2121,17,4982,NULL,4980,1,'2026-03-19 20:07:42','2026-03-19 20:07:42','3501c94e-7eb1-48b7-855f-5f9518704f44'),
(2157,17,3089,NULL,5070,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','6fddc6c0-ad9b-4a6e-b8a1-b6cd6d430034'),
(2158,10,3088,NULL,5071,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','aea8ad10-05bb-4dbc-888d-5411dacabb31'),
(2159,10,3090,NULL,5076,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','c222a7a8-5919-4015-8eca-5ff874bbc942'),
(2160,17,3090,NULL,5075,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','d4d3eca6-cabc-4fa1-a0be-c436d15d3c6e'),
(2161,17,5088,NULL,81,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','f6617ff3-ac00-4e30-ad2d-37c9e5b3df9f'),
(2162,17,5089,NULL,5070,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','378628d2-740d-493a-bfa7-ec6ebe2e0fe9'),
(2163,10,5090,NULL,5071,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','fe594435-1e01-4255-8fab-9ed8fcf388bc'),
(2164,10,5091,NULL,5076,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','82906f24-6bd0-42dd-8c5e-0507b184d86b'),
(2165,17,5091,NULL,5075,1,'2026-03-19 22:43:23','2026-03-19 22:43:23','d9267e6e-9da3-40fd-ac7b-9b850c086120'),
(2166,17,5101,NULL,81,1,'2026-03-19 22:43:31','2026-03-19 22:43:31','fb9162c2-b1cc-42c3-be8f-c62acbeac60e'),
(2171,17,5105,NULL,81,1,'2026-03-19 22:45:36','2026-03-19 22:45:36','a6149960-509e-4e32-9ed4-1a679cf6573f'),
(2172,17,5106,NULL,5070,1,'2026-03-19 22:45:36','2026-03-19 22:45:36','dbc5b6ec-ee22-4079-8426-ff645e65fb76'),
(2173,10,5107,NULL,5076,1,'2026-03-19 22:45:36','2026-03-19 22:45:36','7dbc7a68-1a65-4adc-98a1-86b38d6b5dc1'),
(2174,17,5107,NULL,5075,1,'2026-03-19 22:45:36','2026-03-19 22:45:36','069c78ea-eea1-46b7-85b5-37d62c14d724'),
(2179,17,5111,NULL,5075,1,'2026-03-19 22:45:52','2026-03-19 22:45:52','44911f6b-66ec-4d78-8e2f-f4632d0759f4'),
(2180,13,5112,NULL,112,1,'2026-03-19 22:45:52','2026-03-19 22:45:52','1b4d41b8-063d-4b11-bf06-c60df6ef803f'),
(2181,13,5112,NULL,99,2,'2026-03-19 22:45:52','2026-03-19 22:45:52','1f9a9e16-16bd-47fb-aff5-83dfa8d287c4'),
(2182,13,5112,NULL,89,3,'2026-03-19 22:45:52','2026-03-19 22:45:52','8dadf43c-0515-4dba-a413-a4059926d65f'),
(2183,17,5123,NULL,81,1,'2026-03-19 22:46:15','2026-03-19 22:46:15','b05bd7f8-7eee-4888-a559-79031226b7ee'),
(2184,17,5124,NULL,5070,1,'2026-03-19 22:46:15','2026-03-19 22:46:15','a4972c27-0cfc-4ca8-997d-cbf64204ffbd'),
(2185,10,5125,NULL,5071,1,'2026-03-19 22:46:16','2026-03-19 22:46:16','31db719d-4724-40ff-94f6-2ee72707d33a'),
(2186,10,5126,NULL,5076,1,'2026-03-19 22:46:16','2026-03-19 22:46:16','7f1075a0-9761-4637-a6fb-274950d2add2'),
(2187,17,5126,NULL,5075,1,'2026-03-19 22:46:16','2026-03-19 22:46:16','82115165-08a8-4a04-af91-94453aa64c1a'),
(2188,13,5127,NULL,112,1,'2026-03-19 22:46:16','2026-03-19 22:46:16','1ac6ec21-73d5-4941-917c-0eceba2866e1'),
(2189,13,5127,NULL,99,2,'2026-03-19 22:46:16','2026-03-19 22:46:16','1fb5ac1a-0f1e-41a5-8cb7-a7ab3a55cbd5'),
(2190,13,5127,NULL,89,3,'2026-03-19 22:46:16','2026-03-19 22:46:16','b7332d6d-3c6a-434d-88aa-270873248d32'),
(2197,17,5143,NULL,81,1,'2026-03-19 23:02:46','2026-03-19 23:02:46','8bc114ae-1d30-4c89-a123-df3d53c1f8a1'),
(2198,17,5144,NULL,5070,1,'2026-03-19 23:02:46','2026-03-19 23:02:46','c41d28e6-dd32-4bc6-a8ac-58466963a802'),
(2199,10,5145,NULL,5071,1,'2026-03-19 23:02:46','2026-03-19 23:02:46','1c600a6f-0bfa-4cd7-8c29-6cb012b052d5'),
(2200,10,5146,NULL,5076,1,'2026-03-19 23:02:46','2026-03-19 23:02:46','e7f36ab5-6e7d-435c-9013-d80a688fe7f5'),
(2201,17,5146,NULL,5075,1,'2026-03-19 23:02:46','2026-03-19 23:02:46','dfb7bb0d-3ad8-4e5c-bd40-29a685b268f2'),
(2204,17,5149,NULL,81,1,'2026-03-19 23:03:27','2026-03-19 23:03:27','ec7707c2-6593-4402-b48b-efdec11cdc34'),
(2205,17,5150,NULL,5070,1,'2026-03-19 23:03:27','2026-03-19 23:03:27','8aec8eaa-fa11-4872-aefc-da9f663505c4'),
(2206,17,5151,NULL,81,1,'2026-03-19 23:07:26','2026-03-19 23:07:26','aa101426-88ab-433b-9c68-d273a190f17d'),
(2213,2,5161,NULL,4994,1,'2026-03-19 23:23:38','2026-03-19 23:23:38','b938a84b-db47-49c3-a91f-54314c05520e'),
(2214,2,5163,NULL,4994,1,'2026-03-19 23:23:38','2026-03-19 23:23:38','47e32184-d268-43ef-a4bb-0e4daa4e8656'),
(2222,17,1367,NULL,4994,1,'2026-03-19 23:40:52','2026-03-19 23:40:52','aa3cc779-c15b-4d52-bcf3-3c7260b98ba6'),
(2223,10,5178,NULL,4950,1,'2026-03-19 23:40:52','2026-03-19 23:40:52','d15af8ed-3d48-462c-a387-8d951ff5bc44'),
(2224,17,5180,NULL,4994,1,'2026-03-19 23:40:52','2026-03-19 23:40:52','e7c7598a-778c-4641-a253-b8578b40e864'),
(2225,10,5181,NULL,4950,1,'2026-03-19 23:40:52','2026-03-19 23:40:52','c65c0602-32d1-4899-a275-50bfd987ac17'),
(2227,2,5200,NULL,4118,1,'2026-03-20 09:47:55','2026-03-20 09:47:55','951e6911-d926-435f-9131-409c1f511781'),
(2229,17,5237,NULL,4084,1,'2026-03-20 10:12:38','2026-03-20 10:12:38','a9a70494-b418-49c6-b93b-c36d7dfbe38c'),
(2251,17,5257,NULL,757,1,'2026-03-20 10:46:55','2026-03-20 10:46:55','66105ee3-c2ee-4828-a217-dacc29609e18'),
(2253,17,5266,NULL,757,1,'2026-03-20 10:50:16','2026-03-20 10:50:16','0135459e-73b4-4ca1-b731-4bea9e987ef0'),
(2290,10,5397,NULL,5076,1,'2026-03-20 17:49:51','2026-03-20 17:49:51','72a055e9-a049-493d-a72f-cfecc9b791a1'),
(2291,17,5397,NULL,4994,1,'2026-03-20 17:49:51','2026-03-20 17:49:51','2a2e034d-cff9-4c2e-98c9-23a9143f1857'),
(2292,10,5403,NULL,5076,1,'2026-03-20 17:49:51','2026-03-20 17:49:51','8514d55e-ab64-4df2-98b6-c2af8f11cd0a'),
(2293,17,5403,NULL,4994,1,'2026-03-20 17:49:51','2026-03-20 17:49:51','e46f7bf0-89da-44aa-b110-b7ad2c6c58c6'),
(2294,10,5406,NULL,5076,1,'2026-03-20 17:50:10','2026-03-20 17:50:10','7bec39dd-160c-4630-be9e-f5a15c9c9c61'),
(2295,17,5406,NULL,4994,1,'2026-03-20 17:50:10','2026-03-20 17:50:10','08363f9c-3493-4e5c-8c59-e78f39476ba1'),
(2296,10,5408,NULL,5076,1,'2026-03-20 17:50:25','2026-03-20 17:50:25','b5b8fefc-daff-49ea-940d-7dec1fc91210'),
(2297,17,5408,NULL,4994,1,'2026-03-20 17:50:25','2026-03-20 17:50:25','e72e3f71-b988-4af7-b341-74332f8789c5'),
(2302,10,5413,NULL,5076,1,'2026-03-20 17:55:59','2026-03-20 17:55:59','947951d8-dabf-43e2-966d-e6bb70e74f1f'),
(2303,17,5413,NULL,4994,1,'2026-03-20 17:55:59','2026-03-20 17:55:59','0e92a2bf-4e3c-4c0a-b9b2-21d368896178'),
(2308,10,5419,NULL,5076,1,'2026-03-20 18:00:13','2026-03-20 18:00:13','a4758f0d-4247-4e0a-a7bb-50cfdc10f7ed'),
(2309,17,5419,NULL,4994,1,'2026-03-20 18:00:13','2026-03-20 18:00:13','1013e90d-6210-41d3-92e6-1ce817c83133'),
(2312,10,5424,NULL,5076,1,'2026-03-20 18:00:39','2026-03-20 18:00:39','cfca0542-653c-4fb8-8a5e-9aa49ea1bebc'),
(2313,17,5424,NULL,4994,1,'2026-03-20 18:00:39','2026-03-20 18:00:39','b3ba4849-952f-44db-a46e-720153227f6b'),
(2316,10,5428,NULL,5076,1,'2026-03-20 18:05:03','2026-03-20 18:05:03','8441ce4c-75a3-4dcd-b37d-ab836617e609'),
(2317,17,5428,NULL,4994,1,'2026-03-20 18:05:03','2026-03-20 18:05:03','d77433a0-47da-4af2-bff8-085842dbe776'),
(2320,10,5433,NULL,5076,1,'2026-03-20 18:05:19','2026-03-20 18:05:19','e9c7863c-ac05-4eb1-8051-9a4b67fb737c'),
(2321,17,5433,NULL,4994,1,'2026-03-20 18:05:19','2026-03-20 18:05:19','5689988e-8e1e-4b41-bdfb-c319cf8d36d1'),
(2323,17,5449,NULL,4980,1,'2026-03-20 18:16:59','2026-03-20 18:16:59','cad7d059-f976-458f-b2f9-db2295d300b5'),
(2324,2,5450,NULL,3953,1,'2026-03-20 18:16:59','2026-03-20 18:16:59','cdf6c1a5-70fe-4826-aa8f-923def6a263d'),
(2325,17,5462,NULL,4980,1,'2026-03-20 18:18:40','2026-03-20 18:18:40','88c0a341-d004-430c-85c4-0882aca7dae1'),
(2327,17,5476,NULL,4949,1,'2026-03-20 18:23:57','2026-03-20 18:23:57','3f9225b6-623a-4772-b423-2c4a24b25f1e'),
(2329,17,5501,NULL,4084,1,'2026-03-20 18:29:19','2026-03-20 18:29:19','1382bd9b-f746-4249-bb0e-8bfdb0107ab0'),
(2331,17,5525,NULL,4084,1,'2026-03-20 18:34:52','2026-03-20 18:34:52','6798212d-a708-4ce9-b2b2-c25e97181170'),
(2333,17,5550,NULL,4355,1,'2026-03-20 18:41:36','2026-03-20 18:41:36','981defb9-a81e-439a-938b-5702135d85c4'),
(2335,17,5567,NULL,4446,1,'2026-03-20 18:51:27','2026-03-20 18:51:27','bab45cd3-9432-4337-91ad-0e9322013b20'),
(2337,17,5576,NULL,4446,1,'2026-03-20 18:57:13','2026-03-20 18:57:13','73530d65-a502-4431-8fbd-95afd6ffa1fe'),
(2339,17,5600,NULL,4446,1,'2026-03-20 19:03:00','2026-03-20 19:03:00','f0d80620-2d98-4fc5-8217-5ddcad89daf4'),
(2341,17,5617,NULL,4893,1,'2026-03-20 19:05:26','2026-03-20 19:05:26','f98f56c2-f6b6-4513-b278-4953caec6542'),
(2343,17,5633,NULL,4893,1,'2026-03-20 19:14:32','2026-03-20 19:14:32','e510cb60-0404-4484-b9c6-098d6d74f0ff'),
(2345,17,5657,NULL,4627,1,'2026-03-20 19:57:20','2026-03-20 19:57:20','3546ab42-a638-425b-9ecd-bccf6b252810'),
(2347,17,5680,NULL,4754,1,'2026-03-20 20:04:02','2026-03-20 20:04:02','5a36ed48-a079-4ef2-afec-e77e9fc1be2c'),
(2350,17,5709,NULL,4886,1,'2026-03-20 20:12:09','2026-03-20 20:12:09','f2450e95-fc38-43d9-8b69-607ea9810f8f'),
(2354,39,1407,NULL,5372,1,'2026-03-20 20:22:43','2026-03-20 20:22:43','d0c00263-01e9-43eb-b1ae-aea05b028898'),
(2355,39,1407,NULL,5373,2,'2026-03-20 20:22:43','2026-03-20 20:22:43','611fd86e-2a4c-47a1-a48e-739477e68d48'),
(2356,39,1407,NULL,5374,3,'2026-03-20 20:22:43','2026-03-20 20:22:43','487a9f16-1e61-4f80-9be3-27edaf009431'),
(2357,39,5733,NULL,5372,1,'2026-03-20 20:22:43','2026-03-20 20:22:43','e7b71a55-4d3d-493d-938e-744b609539f4'),
(2358,39,5733,NULL,5373,2,'2026-03-20 20:22:43','2026-03-20 20:22:43','bbc0db65-de04-4822-bf14-920329db7cdd'),
(2359,39,5733,NULL,5374,3,'2026-03-20 20:22:43','2026-03-20 20:22:43','5331c675-aa15-4f6f-94ba-55aac8f9270a'),
(2376,16,774,NULL,4593,1,'2026-03-20 20:24:50','2026-03-20 20:24:50','d616a158-6797-4d2b-a4cd-e73874e8db76'),
(2377,16,774,NULL,4702,2,'2026-03-20 20:24:50','2026-03-20 20:24:50','be7c48f9-b156-434c-bed5-900a68a67685'),
(2378,16,774,NULL,4502,3,'2026-03-20 20:24:50','2026-03-20 20:24:50','c513970f-fd57-470a-b086-3123e89d2860'),
(2379,16,774,NULL,4203,4,'2026-03-20 20:24:50','2026-03-20 20:24:50','4e60bf88-3134-4453-9e4d-9e37eecbda0c'),
(2380,16,774,NULL,4303,5,'2026-03-20 20:24:50','2026-03-20 20:24:50','eab75c59-bc3f-47de-8030-335f2d8b3944'),
(2381,16,774,NULL,4418,6,'2026-03-20 20:24:50','2026-03-20 20:24:50','d321d52e-e720-47e5-9f17-b421e65f62bb'),
(2382,16,774,NULL,4026,7,'2026-03-20 20:24:50','2026-03-20 20:24:50','29224b32-3244-4e19-a878-d7085c5d1972'),
(2383,16,774,NULL,1951,8,'2026-03-20 20:24:50','2026-03-20 20:24:50','a058f2a9-7c2c-4950-a447-f619fbcf7380'),
(2403,72,5746,NULL,5405,1,'2026-03-23 16:54:29','2026-03-23 16:54:29','7c8bd67f-866c-4508-85e3-45f654ec882c'),
(2404,72,5746,NULL,5391,2,'2026-03-23 16:54:29','2026-03-23 16:54:29','83047ca1-ed91-4cf4-bdb0-aa3bb16cb66e'),
(2405,17,5747,NULL,4084,1,'2026-03-23 16:54:29','2026-03-23 16:54:29','ba56108f-10e7-4075-9ce8-165aeacc2a2d'),
(2406,72,5748,NULL,5405,1,'2026-03-23 16:54:29','2026-03-23 16:54:29','79296670-97d5-4801-9bd8-dcf83f6d893a'),
(2407,72,5748,NULL,5391,2,'2026-03-23 16:54:29','2026-03-23 16:54:29','7b6095c6-2fad-4361-94a8-f1cb25752afc'),
(2410,17,5750,NULL,5374,1,'2026-03-23 16:57:55','2026-03-23 16:57:55','611373a2-4357-477a-a4ed-74146ad48a22'),
(2413,17,5752,NULL,5372,1,'2026-03-23 16:58:03','2026-03-23 16:58:03','855ac8a6-9384-4048-b62d-0894078d68f7'),
(2416,17,5391,NULL,5373,1,'2026-03-23 17:01:38','2026-03-23 17:01:38','26eabcd6-2246-497f-ae5a-2352f6b26e4a'),
(2417,17,5754,NULL,5373,1,'2026-03-23 17:01:38','2026-03-23 17:01:38','7f538e54-3c29-4b65-88fd-502b0688fd6a'),
(2420,17,5405,NULL,4753,1,'2026-03-23 17:02:10','2026-03-23 17:02:10','f57e4e96-5c58-4cdb-b660-e5ca3b181d7d'),
(2421,17,5756,NULL,4753,1,'2026-03-23 17:02:10','2026-03-23 17:02:10','fdfaf20e-5e8c-4371-9ff3-2686ad1a6629'),
(2426,68,5760,NULL,4203,1,'2026-03-24 15:26:21','2026-03-24 15:26:21','ddda9a1c-fe29-4253-9573-e0aedf7153e2'),
(2429,17,5765,NULL,4084,1,'2026-03-25 11:41:07','2026-03-25 11:41:07','e7a17a78-2580-4a03-907d-81aab08df746'),
(2430,73,5770,NULL,1128,1,'2026-03-25 11:58:31','2026-03-25 11:58:31','8407b963-6599-490c-ada2-661e8b9ed484'),
(2431,73,5770,NULL,1118,2,'2026-03-25 11:58:31','2026-03-25 11:58:31','18c9b952-2a10-4e2d-a606-2ee793add089'),
(2432,73,5770,NULL,1108,3,'2026-03-25 11:58:31','2026-03-25 11:58:31','14a57b7e-3d4b-44c1-ad25-3daf1a3943af'),
(2433,73,5771,NULL,1128,1,'2026-03-25 11:58:34','2026-03-25 11:58:34','da7edcc6-b217-4f1f-8ed5-9d97ba362dda'),
(2434,73,5771,NULL,1118,2,'2026-03-25 11:58:34','2026-03-25 11:58:34','63196609-19e7-4e20-b2c1-1ab7a298f7bc'),
(2435,73,5771,NULL,1108,3,'2026-03-25 11:58:34','2026-03-25 11:58:34','ed0743b1-cb54-481c-8878-d64b99b5321f'),
(2436,73,5772,NULL,1132,1,'2026-03-25 11:59:08','2026-03-25 11:59:08','e41e7367-cd3f-45ec-9b10-a8ca740f8b06'),
(2437,73,5772,NULL,1118,2,'2026-03-25 11:59:08','2026-03-25 11:59:08','a07aa444-0861-4832-a784-fb0a9dd20e72'),
(2438,73,5772,NULL,1108,3,'2026-03-25 11:59:08','2026-03-25 11:59:08','5f18d654-2d41-4ba7-9f62-97f7352d6314'),
(2439,73,5772,NULL,1098,4,'2026-03-25 11:59:08','2026-03-25 11:59:08','52772138-8838-419d-a8d0-16742ca30985'),
(2440,73,5773,NULL,1132,1,'2026-03-25 11:59:10','2026-03-25 11:59:10','46ab6d96-17c4-45e4-b1ec-9711b210ae6f'),
(2441,73,5773,NULL,1118,2,'2026-03-25 11:59:10','2026-03-25 11:59:10','c453c2b9-0a11-4de3-9a58-3f6722546b5e'),
(2442,73,5773,NULL,1108,3,'2026-03-25 11:59:10','2026-03-25 11:59:10','df6402e2-7063-4ff6-9e0e-8e5b0d30503b'),
(2443,73,5773,NULL,1098,4,'2026-03-25 11:59:10','2026-03-25 11:59:10','a26168bb-0f2b-4b84-8970-95d1f05ff3cc'),
(2446,17,5776,NULL,4754,1,'2026-03-25 17:07:07','2026-03-25 17:07:07','2e068b90-7bcc-4039-a636-ce5d3419ac36'),
(2447,2,5777,NULL,3953,1,'2026-03-25 17:07:07','2026-03-25 17:07:07','786fbe43-14e5-4ced-869f-3cc6643a670f'),
(2448,17,5778,NULL,4627,1,'2026-03-25 17:09:02','2026-03-25 17:09:02','4018c586-bc57-4aeb-b68d-22b487899db8'),
(2449,73,5779,NULL,1098,1,'2026-03-25 17:38:43','2026-03-25 17:38:43','8e300a4a-0fe3-4c2f-9e60-184fe42fdb85'),
(2450,73,5779,NULL,1108,2,'2026-03-25 17:38:43','2026-03-25 17:38:43','0d615b91-3a63-4e07-890a-1fd0285b54d9'),
(2451,73,5779,NULL,1118,3,'2026-03-25 17:38:43','2026-03-25 17:38:43','28a603b0-3664-48bc-851c-d1c7c3e1d49e'),
(2452,73,5779,NULL,1128,4,'2026-03-25 17:38:43','2026-03-25 17:38:43','c7919d3e-4817-48cd-be5b-50c75bb18a25'),
(2453,73,5779,NULL,1132,5,'2026-03-25 17:38:43','2026-03-25 17:38:43','dc92b5a8-2ac6-4cde-8e2a-cca56e9ec828'),
(2456,73,5780,NULL,1098,1,'2026-03-25 17:38:44','2026-03-25 17:38:44','b8a76f12-49ab-40b2-9bc1-264c2d455d9f'),
(2457,73,5780,NULL,1108,2,'2026-03-25 17:38:44','2026-03-25 17:38:44','32f6c388-be1f-431e-ac71-2fd09330ee3a'),
(2458,73,5780,NULL,1118,3,'2026-03-25 17:38:44','2026-03-25 17:38:44','e3b700db-3ddb-45ee-b6a9-dfaef2ac689d'),
(2459,73,5780,NULL,1128,4,'2026-03-25 17:38:44','2026-03-25 17:38:44','de82a425-6ef7-4e60-b73b-e43642e54196'),
(2460,73,5780,NULL,1132,5,'2026-03-25 17:38:44','2026-03-25 17:38:44','706584ee-80c3-45fb-aa1f-01583dea6f39'),
(2461,73,5780,NULL,5770,6,'2026-03-25 17:38:44','2026-03-25 17:38:44','15b5e406-155c-4c45-916d-bcd19f6d10a4'),
(2462,73,5780,NULL,5772,7,'2026-03-25 17:38:44','2026-03-25 17:38:44','8b6cc11a-36ca-472b-95e9-6908de5f3e80'),
(2463,73,5782,NULL,1132,1,'2026-03-25 17:43:01','2026-03-25 17:43:01','8a2b0d4f-5477-47f0-9aeb-d16a83c92380'),
(2464,73,5782,NULL,1118,2,'2026-03-25 17:43:01','2026-03-25 17:43:01','8df4b5ec-ae90-456d-b213-0a69516fb5e5'),
(2465,73,5782,NULL,1108,3,'2026-03-25 17:43:01','2026-03-25 17:43:01','fef0a9fc-9460-4792-af0e-90c293e1fba0'),
(2466,73,5782,NULL,1098,4,'2026-03-25 17:43:01','2026-03-25 17:43:01','0435c54f-bbc3-48d8-ae07-5d8bb12316db'),
(2467,73,5785,NULL,1132,1,'2026-03-25 17:43:37','2026-03-25 17:43:37','1162993d-db65-4a9b-9b46-8840db2ef922'),
(2468,73,5785,NULL,1118,2,'2026-03-25 17:43:37','2026-03-25 17:43:37','8d4bdc15-7539-44f1-a5fb-1d450d64a1bf'),
(2469,73,5785,NULL,1108,3,'2026-03-25 17:43:37','2026-03-25 17:43:37','6ce55b42-c8d8-4376-bd5f-75f81b1b7074'),
(2470,73,5785,NULL,1098,4,'2026-03-25 17:43:37','2026-03-25 17:43:37','913682b1-484f-4b18-b50d-8d91102b33d9'),
(2478,73,5787,NULL,1098,1,'2026-03-25 17:44:06','2026-03-25 17:44:06','aa4eb82d-8cb8-46a4-bee8-3c5bc095e466'),
(2479,73,5787,NULL,1108,2,'2026-03-25 17:44:06','2026-03-25 17:44:06','86aad767-81d9-46c4-98e0-1f79830745d4'),
(2480,73,5787,NULL,1118,3,'2026-03-25 17:44:06','2026-03-25 17:44:06','0749398d-a373-4ae6-8daa-16dfc15a0050'),
(2481,73,5787,NULL,1128,4,'2026-03-25 17:44:06','2026-03-25 17:44:06','95865b20-6550-4fd3-bfc9-5a472cce0666'),
(2482,73,5787,NULL,1132,5,'2026-03-25 17:44:06','2026-03-25 17:44:06','4373ba09-81e0-4d03-8989-2387c55dcce0'),
(2488,73,5790,NULL,1098,1,'2026-03-25 17:46:42','2026-03-25 17:46:42','11562fda-be5f-4dfa-b940-ac4f98fb6f61'),
(2489,73,5790,NULL,1108,2,'2026-03-25 17:46:42','2026-03-25 17:46:42','0be8e31b-b196-4af1-a03b-188a346f9dc8'),
(2490,73,5790,NULL,1118,3,'2026-03-25 17:46:42','2026-03-25 17:46:42','ce5f736a-781e-4521-9eb4-ab5b3a1d99ea'),
(2491,73,5790,NULL,1128,4,'2026-03-25 17:46:42','2026-03-25 17:46:42','11aff19c-c557-4ddd-8bfa-5092e3d80644'),
(2492,73,5790,NULL,1132,5,'2026-03-25 17:46:42','2026-03-25 17:46:42','a23c07df-26a9-483d-91f3-8a5652972443'),
(2494,68,1118,NULL,4303,1,'2026-03-25 17:48:36','2026-03-25 17:48:36','3214e123-182e-4a6b-9466-625616a8619d'),
(2495,68,5792,NULL,4303,1,'2026-03-25 17:48:36','2026-03-25 17:48:36','fa467d96-2d91-4912-a69d-17cd3913ee52'),
(2496,73,5793,NULL,1098,1,'2026-03-25 17:48:38','2026-03-25 17:48:38','807ff4df-3a53-436e-beff-6b70be133263'),
(2497,73,5793,NULL,1108,2,'2026-03-25 17:48:38','2026-03-25 17:48:38','a2e73c50-13ee-40d3-844a-9f0dc1a5d275'),
(2498,73,5793,NULL,1118,3,'2026-03-25 17:48:38','2026-03-25 17:48:38','7985d786-7109-49dd-9754-8771273161db'),
(2499,73,5793,NULL,1128,4,'2026-03-25 17:48:38','2026-03-25 17:48:38','6dc0127e-5c64-4756-98c0-39fa945a5306'),
(2500,73,5793,NULL,1132,5,'2026-03-25 17:48:38','2026-03-25 17:48:38','9936786a-0ea7-4068-b0ec-fe63b11af8ae'),
(2501,73,5795,NULL,1132,1,'2026-03-25 17:54:45','2026-03-25 17:54:45','a08c77ae-6040-4710-88db-394a7ac3d8cc'),
(2502,73,5796,NULL,1132,1,'2026-03-25 17:54:46','2026-03-25 17:54:46','df52bb96-b8d4-4fd7-aa0f-9f1bebfc7d23'),
(2504,2,5823,NULL,4994,1,'2026-03-26 08:32:42','2026-03-26 08:32:42','12b992ba-c2c6-45af-98db-13a34b5e854c'),
(2522,17,5850,NULL,4627,1,'2026-03-26 08:39:27','2026-03-26 08:39:27','132b9621-e289-42c8-ba25-fa74d42e6faa'),
(2524,17,5854,NULL,4754,1,'2026-03-26 08:39:36','2026-03-26 08:39:36','37e84ac9-c0aa-4cc5-8d97-c8cd54d44406'),
(2526,17,5858,NULL,4886,1,'2026-03-26 08:39:47','2026-03-26 08:39:47','42b52566-8d74-41ca-a7e5-96651c721890'),
(2528,17,5862,NULL,4355,1,'2026-03-26 08:39:57','2026-03-26 08:39:57','382dce48-bdb2-4260-8f37-9d3437df793f'),
(2530,17,5866,NULL,4355,1,'2026-03-26 08:40:08','2026-03-26 08:40:08','788fc9e8-2e84-440a-9532-6e86228ada29'),
(2532,17,5870,NULL,4446,1,'2026-03-26 08:40:16','2026-03-26 08:40:16','d5b357a2-483e-46f3-9e39-c02fe397845f'),
(2534,17,5874,NULL,4893,1,'2026-03-26 08:40:25','2026-03-26 08:40:25','7e96fa90-7e50-49de-8f35-80864d3f4595'),
(2536,17,5878,NULL,4949,1,'2026-03-26 08:40:34','2026-03-26 08:40:34','51f308a7-6d2a-49f5-81e8-e6226af6c201'),
(2537,17,5881,NULL,2006,1,'2026-03-26 08:40:46','2026-03-26 08:40:46','bff90c41-ed9e-4b46-b636-c5d20891a09d'),
(2538,10,5897,NULL,2036,1,'2026-03-26 08:40:46','2026-03-26 08:40:46','d5292933-90dd-49a7-a5d4-0272a6cd5bb9'),
(2539,17,5897,NULL,2034,1,'2026-03-26 08:40:46','2026-03-26 08:40:46','07d439a0-0c92-4f60-8a20-2888e09f0404'),
(2540,2,5898,NULL,1946,1,'2026-03-26 08:40:46','2026-03-26 08:40:46','68744377-54bb-40b7-9c18-4e5c2b6d5a1f'),
(2541,13,5899,NULL,112,1,'2026-03-26 08:40:46','2026-03-26 08:40:46','1adc962d-aaf1-4c60-960e-05b9d75e7f27'),
(2542,13,5899,NULL,99,2,'2026-03-26 08:40:46','2026-03-26 08:40:46','cf815e57-2e9f-4450-940d-9fcd6923cedf'),
(2543,13,5899,NULL,89,3,'2026-03-26 08:40:46','2026-03-26 08:40:46','6cb2dca1-b59d-4e80-bc01-afebe31636af'),
(2545,17,5915,NULL,4980,1,'2026-03-26 08:40:56','2026-03-26 08:40:56','e8eba783-0a01-471f-9323-4402d3045ea7'),
(2547,17,5919,NULL,4084,1,'2026-03-26 08:41:04','2026-03-26 08:41:04','fec8e4e2-9a38-4c5d-a73e-3987f0130c84'),
(2549,17,5923,NULL,4084,1,'2026-03-26 08:41:22','2026-03-26 08:41:22','123a95ef-b12c-4172-8231-dc448a1bca87'),
(2551,17,5927,NULL,81,1,'2026-03-26 08:41:34','2026-03-26 08:41:34','5a703d24-95e8-4d63-886f-ebb7d09f65dd'),
(2553,17,5931,NULL,81,1,'2026-03-26 08:41:42','2026-03-26 08:41:42','33168d77-155e-4c6b-95ec-8714e5f7e184'),
(2558,17,5935,NULL,4754,1,'2026-03-26 08:43:19','2026-03-26 08:43:19','9cafdd5c-1580-4dfc-880a-a400ad065f95'),
(2559,13,5936,NULL,112,1,'2026-03-26 08:43:19','2026-03-26 08:43:19','da3f55dc-f661-450c-8b46-cbed8739c946'),
(2560,13,5936,NULL,99,2,'2026-03-26 08:43:19','2026-03-26 08:43:19','8f424167-2ac1-48c8-bf58-52188bab6337'),
(2561,13,5936,NULL,89,3,'2026-03-26 08:43:19','2026-03-26 08:43:19','c177f5f9-00eb-43a7-9f0b-31d13dd71098'),
(2566,17,5939,NULL,4886,1,'2026-03-26 08:43:54','2026-03-26 08:43:54','78568889-5856-4e0c-8a33-0ac5a41c9065'),
(2567,13,5940,NULL,112,1,'2026-03-26 08:43:54','2026-03-26 08:43:54','b351bffe-dd72-4878-9e7f-37fe3f6654c1'),
(2568,13,5940,NULL,99,2,'2026-03-26 08:43:54','2026-03-26 08:43:54','94a9e66c-f0b5-46c9-a5df-3f61ae637759'),
(2569,13,5940,NULL,89,3,'2026-03-26 08:43:54','2026-03-26 08:43:54','cca5137f-7ead-419f-a813-f60cfff9d658'),
(2574,13,5943,NULL,112,1,'2026-03-26 08:44:23','2026-03-26 08:44:23','22accb31-88f8-49bf-8aef-b973fa381dc9'),
(2575,13,5943,NULL,99,2,'2026-03-26 08:44:23','2026-03-26 08:44:23','8269bb50-dc98-46df-94a5-89122227f172'),
(2576,13,5943,NULL,89,3,'2026-03-26 08:44:23','2026-03-26 08:44:23','61a0bbf0-dbed-4e54-9335-610c146eda20'),
(2577,17,5944,NULL,4949,1,'2026-03-26 08:44:23','2026-03-26 08:44:23','cc507c92-1a71-4d10-9b0f-f53eeaf08551'),
(2578,13,5945,NULL,112,1,'2026-03-26 08:44:23','2026-03-26 08:44:23','80887f42-11cc-4c97-82f4-ef3984c1155e'),
(2579,13,5945,NULL,99,2,'2026-03-26 08:44:23','2026-03-26 08:44:23','e9eccdba-ac15-4775-a162-02695d1ed852'),
(2580,13,5945,NULL,89,3,'2026-03-26 08:44:23','2026-03-26 08:44:23','42ed06df-7265-464b-adc6-f225c4ea82a9'),
(2581,17,5946,NULL,4754,1,'2026-03-26 08:44:28','2026-03-26 08:44:28','2cf57a1d-0da3-4489-b947-9afe71ee7384'),
(2586,17,5949,NULL,4446,1,'2026-03-26 08:45:01','2026-03-26 08:45:01','0b9cc3d7-5571-49bf-b9b5-f8b282e8e21a'),
(2587,13,5950,NULL,112,1,'2026-03-26 08:45:01','2026-03-26 08:45:01','a8c0aab8-a35d-4266-9bef-1f42b7b72f2c'),
(2588,13,5950,NULL,99,2,'2026-03-26 08:45:01','2026-03-26 08:45:01','64ff4e7e-cbdc-4450-a370-3deddaf555c9'),
(2589,13,5950,NULL,89,3,'2026-03-26 08:45:01','2026-03-26 08:45:01','a1b5bff6-3dbe-4a44-b537-9add812906aa'),
(2594,17,5953,NULL,4627,1,'2026-03-26 08:45:27','2026-03-26 08:45:27','945711cd-2912-455d-97c5-0af669571a08'),
(2595,13,5954,NULL,112,1,'2026-03-26 08:45:27','2026-03-26 08:45:27','40238433-32bf-4c68-84f0-e105aa9662a6'),
(2596,13,5954,NULL,99,2,'2026-03-26 08:45:27','2026-03-26 08:45:27','5a02974d-9c7b-4c03-bc15-2d06980a2b35'),
(2597,13,5954,NULL,89,3,'2026-03-26 08:45:27','2026-03-26 08:45:27','3b42bc2f-1525-464e-8b1f-65eca2442442'),
(2602,17,5957,NULL,4980,1,'2026-03-26 08:46:03','2026-03-26 08:46:03','f11cac74-8213-4005-b38f-adc2f62e5eaa'),
(2603,13,5958,NULL,112,1,'2026-03-26 08:46:03','2026-03-26 08:46:03','61584898-647f-459a-bf5e-a1dcdc87c7a4'),
(2604,13,5958,NULL,99,2,'2026-03-26 08:46:03','2026-03-26 08:46:03','b95d7870-fcdd-4e7a-9ce6-8476143fbd35'),
(2605,13,5958,NULL,89,3,'2026-03-26 08:46:03','2026-03-26 08:46:03','64c6dd33-fef1-4945-9159-c1e8225280c7'),
(2610,17,5961,NULL,4084,1,'2026-03-26 08:46:27','2026-03-26 08:46:27','241aaa13-8130-460a-a73e-43d37fee6976'),
(2611,13,5962,NULL,112,1,'2026-03-26 08:46:27','2026-03-26 08:46:27','bbfd74be-a778-4eae-8a6d-63004e040443'),
(2612,13,5962,NULL,99,2,'2026-03-26 08:46:27','2026-03-26 08:46:27','cb19f1fd-e48e-4f02-8255-7bd2597da324'),
(2613,13,5962,NULL,89,3,'2026-03-26 08:46:27','2026-03-26 08:46:27','c0d959dd-bfe7-4c05-af45-67d0006ac64f'),
(2618,17,5965,NULL,4355,1,'2026-03-26 08:46:49','2026-03-26 08:46:49','147224f3-116f-4565-82db-6fbdc8c93930'),
(2619,13,5966,NULL,112,1,'2026-03-26 08:46:49','2026-03-26 08:46:49','43a68b06-b7ba-40ca-be06-28cd636df1ab'),
(2620,13,5966,NULL,99,2,'2026-03-26 08:46:49','2026-03-26 08:46:49','01881eee-7deb-4a36-8cc8-396c2fdc2dd4'),
(2621,13,5966,NULL,89,3,'2026-03-26 08:46:49','2026-03-26 08:46:49','9e8e29e1-e145-432f-9a12-e9130604bdcb'),
(2626,17,5969,NULL,4084,1,'2026-03-26 08:47:54','2026-03-26 08:47:54','bf817d25-f714-4199-8072-921aeb14a3ab'),
(2627,13,5970,NULL,112,1,'2026-03-26 08:47:54','2026-03-26 08:47:54','b35688a1-4cd1-49fe-ad39-d8a0cea170a7'),
(2628,13,5970,NULL,99,2,'2026-03-26 08:47:54','2026-03-26 08:47:54','614655d6-01ed-4c3c-a7f3-e2ea5b4f8dde'),
(2629,13,5970,NULL,89,3,'2026-03-26 08:47:54','2026-03-26 08:47:54','f6a85898-922f-4c69-9fcb-52601170e556'),
(2634,17,5973,NULL,4893,1,'2026-03-26 08:49:51','2026-03-26 08:49:51','6d5024ee-2d95-4e85-aba4-4a840126a847'),
(2635,13,5974,NULL,112,1,'2026-03-26 08:49:51','2026-03-26 08:49:51','a9282ef3-1735-4783-8c70-150e37380f46'),
(2636,13,5974,NULL,99,2,'2026-03-26 08:49:51','2026-03-26 08:49:51','24c51cd1-7cc0-474e-91b8-3d0aeda7cf62'),
(2637,13,5974,NULL,89,3,'2026-03-26 08:49:51','2026-03-26 08:49:51','34d856a5-5f25-4311-90ed-eb7782d9178b'),
(2642,17,5977,NULL,4084,1,'2026-03-26 08:50:21','2026-03-26 08:50:21','649bacb3-3f09-4c54-af06-1ba72a831730'),
(2643,13,5978,NULL,112,1,'2026-03-26 08:50:21','2026-03-26 08:50:21','8149227c-06e5-4fbf-b6a9-e20ecd896096'),
(2644,13,5978,NULL,99,2,'2026-03-26 08:50:21','2026-03-26 08:50:21','83aa2d12-dea3-4435-8b0e-5efcd889e17d'),
(2645,13,5978,NULL,89,3,'2026-03-26 08:50:21','2026-03-26 08:50:21','512ed082-6b38-434c-bdc1-4654f4a01e92'),
(2650,17,5981,NULL,4084,1,'2026-03-26 08:51:05','2026-03-26 08:51:05','d393c928-de61-467b-8fa2-67f1b9812877'),
(2651,13,5982,NULL,112,1,'2026-03-26 08:51:05','2026-03-26 08:51:05','418209ca-5841-4321-a237-a136f993dd3d'),
(2652,13,5982,NULL,99,2,'2026-03-26 08:51:05','2026-03-26 08:51:05','bc5eba03-bac1-405b-8c3e-9be339171f79'),
(2653,13,5982,NULL,89,3,'2026-03-26 08:51:05','2026-03-26 08:51:05','06044fe0-9b2d-4b10-92e7-7e51fdcb3aab'),
(2658,17,5985,NULL,4084,1,'2026-03-26 08:51:18','2026-03-26 08:51:18','299dbddf-95e1-46be-b199-4e1e1f56b1aa'),
(2659,13,5986,NULL,112,1,'2026-03-26 08:51:18','2026-03-26 08:51:18','cf9f938f-f0bb-4c20-a564-15f4b2e3afb1'),
(2660,13,5986,NULL,99,2,'2026-03-26 08:51:18','2026-03-26 08:51:18','0cd2de25-dfe1-436f-ada9-44b4fe9b450c'),
(2661,13,5986,NULL,89,3,'2026-03-26 08:51:18','2026-03-26 08:51:18','1c5e2ce2-c0c9-44ab-9b03-4dcd74c2dc36'),
(2666,17,5989,NULL,4355,1,'2026-03-26 08:51:41','2026-03-26 08:51:41','96fa91bc-fce8-4441-9e69-a08a56d991b4'),
(2667,13,5990,NULL,112,1,'2026-03-26 08:51:41','2026-03-26 08:51:41','41b86aee-b79a-4ba8-b143-0e70003d02fe'),
(2668,13,5990,NULL,99,2,'2026-03-26 08:51:41','2026-03-26 08:51:41','4732d3d7-3237-4c2c-a90f-45d7eae16154'),
(2669,13,5990,NULL,89,3,'2026-03-26 08:51:41','2026-03-26 08:51:41','776d4fe4-95d7-40c6-8dc3-5b269e75383c'),
(2674,17,5993,NULL,4886,1,'2026-03-26 08:51:52','2026-03-26 08:51:52','5aab28f2-1835-4d04-89f6-ce34c3efe648'),
(2675,13,5994,NULL,112,1,'2026-03-26 08:51:52','2026-03-26 08:51:52','d5b7df1e-21d1-4eb2-ba3f-2d7108df66ce'),
(2676,13,5994,NULL,99,2,'2026-03-26 08:51:52','2026-03-26 08:51:52','8981f82e-fffa-406e-8817-c0844deaadbe'),
(2677,13,5994,NULL,89,3,'2026-03-26 08:51:52','2026-03-26 08:51:52','11aa1c3a-c799-4680-8dd2-dcd0c0071404'),
(2682,17,5997,NULL,4754,1,'2026-03-26 08:52:03','2026-03-26 08:52:03','0bf355ac-bb85-4e67-8587-de323a826e3e'),
(2683,13,5998,NULL,112,1,'2026-03-26 08:52:03','2026-03-26 08:52:03','f062de94-e4fe-4e40-a16d-946a335dba74'),
(2684,13,5998,NULL,99,2,'2026-03-26 08:52:03','2026-03-26 08:52:03','71c973d8-98de-4137-8ec5-a15b73164798'),
(2685,13,5998,NULL,89,3,'2026-03-26 08:52:03','2026-03-26 08:52:03','514082b6-8a55-4e21-b3dd-0478041de260'),
(2690,17,6001,NULL,4084,1,'2026-03-26 08:52:14','2026-03-26 08:52:14','0048a420-2597-4b97-80e3-15c2765163e1'),
(2691,13,6002,NULL,112,1,'2026-03-26 08:52:14','2026-03-26 08:52:14','9fc7ae5c-0a5d-499f-9909-e21af4aff2ad'),
(2692,13,6002,NULL,99,2,'2026-03-26 08:52:14','2026-03-26 08:52:14','7757f3c3-6e96-4a01-8475-88b6cafffe8d'),
(2693,13,6002,NULL,89,3,'2026-03-26 08:52:14','2026-03-26 08:52:14','9232dc48-a4c5-4018-bdff-5abe4896b155'),
(2698,17,6005,NULL,4446,1,'2026-03-26 08:52:24','2026-03-26 08:52:24','d5df8689-cbff-42bc-8359-ed47dc2299d0'),
(2699,13,6006,NULL,112,1,'2026-03-26 08:52:24','2026-03-26 08:52:24','86d30846-ffc3-43e8-a2c7-2af214739e8f'),
(2700,13,6006,NULL,99,2,'2026-03-26 08:52:24','2026-03-26 08:52:24','3fca384f-2c2c-4844-9daa-0e01321b0f4b'),
(2701,13,6006,NULL,89,3,'2026-03-26 08:52:24','2026-03-26 08:52:24','b9196333-71f8-4b56-864e-97e624a9038a'),
(2706,17,6009,NULL,4627,1,'2026-03-26 08:52:34','2026-03-26 08:52:34','e9fa0965-35ae-4c36-a0dd-1fbc44099926'),
(2707,13,6010,NULL,112,1,'2026-03-26 08:52:34','2026-03-26 08:52:34','b43907bc-8b48-420c-a0fb-7e98903567a6'),
(2708,13,6010,NULL,99,2,'2026-03-26 08:52:34','2026-03-26 08:52:34','d7c10c45-1810-4800-a4c9-d047b028985a'),
(2709,13,6010,NULL,89,3,'2026-03-26 08:52:34','2026-03-26 08:52:34','07add2bb-0a6a-453f-8031-68f2a41b6af1'),
(2714,17,6013,NULL,4893,1,'2026-03-26 08:52:45','2026-03-26 08:52:45','c66a30b5-54d2-4433-a2a3-ae1ae48750e1'),
(2715,13,6014,NULL,112,1,'2026-03-26 08:52:45','2026-03-26 08:52:45','21c6da34-0d14-4d11-a7b8-7e479652eb48'),
(2716,13,6014,NULL,99,2,'2026-03-26 08:52:45','2026-03-26 08:52:45','d9808aec-a5cd-47cf-939a-7626b4933553'),
(2717,13,6014,NULL,89,3,'2026-03-26 08:52:45','2026-03-26 08:52:45','6a60d942-4077-49f6-83d8-6b0c43c98854'),
(2722,17,6017,NULL,4949,1,'2026-03-26 08:52:56','2026-03-26 08:52:56','f8fdb6f2-aab8-486f-801d-c596459289c3'),
(2723,13,6018,NULL,112,1,'2026-03-26 08:52:56','2026-03-26 08:52:56','61603786-e93b-4ad8-888c-46c1d686049e'),
(2724,13,6018,NULL,99,2,'2026-03-26 08:52:56','2026-03-26 08:52:56','5bae3da8-6e47-43c7-b5e9-f595c1ca0710'),
(2725,13,6018,NULL,89,3,'2026-03-26 08:52:56','2026-03-26 08:52:56','8c905dae-8402-42dd-98de-ced66deef43b'),
(2730,17,6021,NULL,4980,1,'2026-03-26 08:53:08','2026-03-26 08:53:08','815a70f0-8fc2-4b41-9867-f302a7d9aeca'),
(2731,13,6022,NULL,112,1,'2026-03-26 08:53:08','2026-03-26 08:53:08','6fe35dfc-4b4e-42aa-abdb-4d3fa8b86801'),
(2732,13,6022,NULL,99,2,'2026-03-26 08:53:08','2026-03-26 08:53:08','90cba38f-7c1a-4632-bd7d-c59c87f9e67c'),
(2733,13,6022,NULL,89,3,'2026-03-26 08:53:08','2026-03-26 08:53:08','6c7d037c-762a-4228-87fa-cc8bfe7e2338'),
(2738,17,6025,NULL,2006,1,'2026-03-26 08:53:37','2026-03-26 08:53:37','dd89c227-2b15-44e4-9b1a-de95eca29125'),
(2739,13,6026,NULL,112,1,'2026-03-26 08:53:37','2026-03-26 08:53:37','f8985b94-d095-4ca2-a76a-ed225391b886'),
(2740,13,6026,NULL,99,2,'2026-03-26 08:53:37','2026-03-26 08:53:37','a6383302-5931-449b-98df-c5c8bec55a14'),
(2741,13,6026,NULL,89,3,'2026-03-26 08:53:37','2026-03-26 08:53:37','5c89aa08-7b03-47a7-adf4-84de7c28b86e'),
(2745,13,6030,NULL,112,1,'2026-03-26 08:54:11','2026-03-26 08:54:11','b2871aec-ac04-405b-b56a-8d2fc1841f6e'),
(2746,13,6030,NULL,99,2,'2026-03-26 08:54:11','2026-03-26 08:54:11','7eb035b6-da7f-41bf-8654-b6af81f0a80b'),
(2747,13,6030,NULL,89,3,'2026-03-26 08:54:11','2026-03-26 08:54:11','78889f7d-6020-453a-bfca-a88cc10158c9'),
(2749,17,6034,NULL,4084,1,'2026-03-26 08:58:14','2026-03-26 08:58:14','4c1f826a-dc2c-4179-8993-c7d858febfd8'),
(2766,16,6043,NULL,4593,1,'2026-03-26 09:58:08','2026-03-26 09:58:08','5c8ac049-1fa3-47f1-a91a-bd4b132ad4d6'),
(2767,16,6043,NULL,4702,2,'2026-03-26 09:58:08','2026-03-26 09:58:08','30e83249-7c59-42a7-bfc7-b989970bfe28'),
(2768,16,6043,NULL,4502,3,'2026-03-26 09:58:08','2026-03-26 09:58:08','566f9a81-49e0-4bd0-a6d7-58af81f47072'),
(2769,16,6043,NULL,4203,4,'2026-03-26 09:58:08','2026-03-26 09:58:08','d55f1d6f-6519-4f4f-b815-73f369538e27'),
(2770,16,6043,NULL,4303,5,'2026-03-26 09:58:08','2026-03-26 09:58:08','2b13af59-0498-4e7f-824c-42e730b02838'),
(2771,16,6043,NULL,4418,6,'2026-03-26 09:58:08','2026-03-26 09:58:08','f012270f-6efe-4848-b1b3-188bd504b1a2'),
(2772,16,6043,NULL,4026,7,'2026-03-26 09:58:08','2026-03-26 09:58:08','3474c3f9-adea-47a0-8e29-4bf1c34f1575'),
(2773,16,6043,NULL,1951,8,'2026-03-26 09:58:08','2026-03-26 09:58:08','1dac0a34-1e22-4933-803d-1dba1874a6d2'),
(2777,39,6053,NULL,5372,1,'2026-03-26 10:00:30','2026-03-26 10:00:30','8b90d65e-27b5-45ac-a611-7d24be417ecc'),
(2778,39,6053,NULL,5373,2,'2026-03-26 10:00:30','2026-03-26 10:00:30','2c483626-6098-4eb7-94c8-795584bc772f'),
(2779,39,6053,NULL,5374,3,'2026-03-26 10:00:30','2026-03-26 10:00:30','9f54779d-8466-4174-beab-4190192438fd'),
(2783,39,6057,NULL,5372,1,'2026-03-26 10:00:59','2026-03-26 10:00:59','5897c239-ac47-4a39-906c-458cac1b736e'),
(2784,39,6057,NULL,5373,2,'2026-03-26 10:00:59','2026-03-26 10:00:59','1aee3bb5-4dac-4e0d-ad02-d17ebfdcb3ef'),
(2785,39,6057,NULL,5374,3,'2026-03-26 10:00:59','2026-03-26 10:00:59','ad7819a0-b893-4192-8d67-21f18ef656ef'),
(2787,17,6063,NULL,4355,1,'2026-03-26 10:22:10','2026-03-26 10:22:10','a0691ffc-79ce-46b1-baf7-170fcd70c51e'),
(2789,17,6065,NULL,4355,1,'2026-03-26 10:23:33','2026-03-26 10:23:33','925db62b-74ca-4da9-b800-e36454fdf4a8'),
(2791,17,6067,NULL,4355,1,'2026-03-26 10:23:52','2026-03-26 10:23:52','71fdc80a-c384-4ed2-bf0c-7ca736506453'),
(2793,17,6069,NULL,4754,1,'2026-03-26 10:24:07','2026-03-26 10:24:07','1ecab317-8b5c-4035-a8a4-2f82529a5c67'),
(2795,17,6071,NULL,4446,1,'2026-03-26 10:24:32','2026-03-26 10:24:32','78b2a085-e291-47cc-87eb-4a6359cffbcb'),
(2797,17,6073,NULL,4084,1,'2026-03-26 10:24:56','2026-03-26 10:24:56','956fa381-db32-484e-a1bb-5f845224ed0c'),
(2799,17,6075,NULL,4893,1,'2026-03-26 10:25:19','2026-03-26 10:25:19','3724f8b0-e53a-4144-b570-07373a3f5ad5'),
(2801,17,6077,NULL,4627,1,'2026-03-26 10:25:39','2026-03-26 10:25:39','137ab3d5-555f-43ed-a963-330d21b86757'),
(2802,17,6078,NULL,4980,1,'2026-03-26 10:26:08','2026-03-26 10:26:08','4032ca87-b7e0-4651-a8fc-6ecc459671b1'),
(2804,17,6080,NULL,4084,1,'2026-03-26 10:26:23','2026-03-26 10:26:23','86f33656-8968-4972-b143-449ed059edf3'),
(2807,2,6101,NULL,320,1,'2026-03-26 10:41:15','2026-03-26 10:41:15','567d75b4-2c9f-4889-b866-2d136b8898a5'),
(2809,2,6103,NULL,320,1,'2026-03-26 10:41:54','2026-03-26 10:41:54','dddc1e29-3b40-4f2f-9ef6-46d023c3e447'),
(2811,2,6105,NULL,320,1,'2026-03-26 10:42:34','2026-03-26 10:42:34','65601319-a575-4449-bed4-560357edccff'),
(2813,2,6109,NULL,320,1,'2026-03-26 10:44:18','2026-03-26 10:44:18','c4434e78-bc25-46c9-84c6-bf48672133ad'),
(2815,2,6111,NULL,320,1,'2026-03-26 10:45:00','2026-03-26 10:45:00','28f32001-b0e3-400c-9691-3f073f2566ff'),
(2817,2,6113,NULL,320,1,'2026-03-26 10:46:59','2026-03-26 10:46:59','ccc534bc-30a7-463f-880c-6aecda312f5b'),
(2819,17,6115,NULL,4084,1,'2026-03-26 10:47:41','2026-03-26 10:47:41','95d9fabe-7b71-4ac6-817b-c40f5023f70f'),
(2821,2,6135,NULL,4994,1,'2026-03-27 11:44:14','2026-03-27 11:44:14','e81d74b2-0c2f-4166-a214-a64c5197b111'),
(2823,2,6139,NULL,4994,1,'2026-03-27 11:44:36','2026-03-27 11:44:36','aca1b093-632d-4da9-8a5c-923c8f09d748'),
(2825,73,6151,NULL,1132,1,'2026-03-27 13:24:03','2026-03-27 13:24:03','af06b81e-05d6-4070-a412-9a23aed46f18'),
(2827,73,6155,NULL,1132,1,'2026-03-27 13:24:42','2026-03-27 13:24:42','c3e1085c-40ca-4f71-b420-05a7d9b9147d'),
(2828,68,6157,NULL,4026,1,'2026-03-27 13:26:23','2026-03-27 13:26:23','67dab0fe-84ce-4516-b0ec-59839057df00'),
(2829,68,6162,NULL,4026,1,'2026-03-27 13:26:29','2026-03-27 13:26:29','677495e4-fc35-40e7-9684-77d07bd95a25'),
(2830,73,6156,NULL,6157,1,'2026-03-27 13:26:32','2026-03-27 13:26:32','7c35336b-526d-449b-9717-a44c6e8cacf7'),
(2831,68,6166,NULL,4026,1,'2026-03-27 13:28:25','2026-03-27 13:28:25','3b88147d-32a4-46f8-8a57-169dabaee7a0'),
(2832,68,6170,NULL,4026,1,'2026-03-27 13:28:30','2026-03-27 13:28:30','9d2a6a11-c7cc-49c9-81b8-d682f66d0e51'),
(2833,73,6156,NULL,6166,2,'2026-03-27 13:28:32','2026-03-27 13:28:32','54ec0b0f-d48c-452d-acdd-31cd94ee703a'),
(2834,73,6173,NULL,6157,1,'2026-03-27 13:28:42','2026-03-27 13:28:42','899452ed-70fa-4e73-ba4e-7fe94b9e88c6'),
(2835,73,6173,NULL,6166,2,'2026-03-27 13:28:42','2026-03-27 13:28:42','023d09d1-af74-410c-b6be-75e07d3d53bb'),
(2840,73,6156,NULL,6174,3,'2026-03-27 14:02:42','2026-03-27 14:02:42','75d7fadb-97fc-46af-9899-c38db22f66a5'),
(2841,73,6156,NULL,6179,4,'2026-03-27 14:02:42','2026-03-27 14:02:42','81cae3d5-00ae-4317-8d77-0386c573f5e2'),
(2842,73,6189,NULL,6157,1,'2026-03-27 14:02:42','2026-03-27 14:02:42','1c22ca3b-0a79-44da-9e9d-5c1f7c06991e'),
(2843,73,6189,NULL,6166,2,'2026-03-27 14:02:42','2026-03-27 14:02:42','98d23503-e332-4296-beae-d5707a3e04c8'),
(2844,73,6189,NULL,6174,3,'2026-03-27 14:02:42','2026-03-27 14:02:42','e42294bf-3923-47b2-9420-c91fdcb195ab'),
(2845,73,6189,NULL,6179,4,'2026-03-27 14:02:42','2026-03-27 14:02:42','2fb856cf-752e-447d-9e9f-fcb0a1f2e5cb'),
(2851,73,6156,NULL,6196,5,'2026-03-27 14:20:48','2026-03-27 14:20:48','4a1ed74b-2bb8-4baf-891b-c24d78bc9c6e'),
(2852,73,6210,NULL,6157,1,'2026-03-27 14:20:48','2026-03-27 14:20:48','f5f0775b-1112-462a-be9b-a816abdebc51'),
(2853,73,6210,NULL,6166,2,'2026-03-27 14:20:48','2026-03-27 14:20:48','833ebdab-0a94-4fbf-b8ce-0d3b88645eb0'),
(2854,73,6210,NULL,6174,3,'2026-03-27 14:20:48','2026-03-27 14:20:48','d8e86e5b-73c7-44f7-85a2-3ff165376ada'),
(2855,73,6210,NULL,6179,4,'2026-03-27 14:20:48','2026-03-27 14:20:48','125e1a2d-efc7-4f0b-9e75-e32a39ffee33'),
(2856,73,6210,NULL,6196,5,'2026-03-27 14:20:48','2026-03-27 14:20:48','1cbf441e-b9a0-46ca-9802-18ab59ad6320'),
(2857,73,6211,NULL,6212,1,'2026-03-27 14:22:00','2026-03-27 14:22:00','ad93fdbc-2bd9-40cf-a47b-01b4a150a222'),
(2858,73,6211,NULL,6216,2,'2026-03-27 14:23:13','2026-03-27 14:23:13','cc220ad2-97ad-4918-b30b-e4427700dfb7'),
(2859,68,6224,NULL,4418,1,'2026-03-27 14:26:42','2026-03-27 14:26:42','28482edc-0000-43f0-b47c-da3ff01210b4'),
(2860,68,6228,NULL,4418,1,'2026-03-27 14:26:44','2026-03-27 14:26:44','ed8cc630-ac7a-4906-bef8-a85dd9dc26fa'),
(2861,73,6211,NULL,6224,3,'2026-03-27 14:26:45','2026-03-27 14:26:45','2a3b8874-9cd0-4995-841d-40ac1d87a6a7'),
(2862,73,6211,NULL,6232,4,'2026-03-27 14:33:17','2026-03-27 14:33:17','581e509c-9d95-410e-94d3-61d76b5bcaa4'),
(2863,73,6236,NULL,6212,1,'2026-03-27 14:33:18','2026-03-27 14:33:18','16c5ca39-1d65-4244-8f9b-c52e9d9781f8'),
(2864,73,6236,NULL,6216,2,'2026-03-27 14:33:18','2026-03-27 14:33:18','2ed8929c-db87-4829-9af7-b92489d434d1'),
(2865,73,6236,NULL,6224,3,'2026-03-27 14:33:18','2026-03-27 14:33:18','f8375c5d-e726-48e2-895b-d3966e7b0dd1'),
(2866,73,6236,NULL,6232,4,'2026-03-27 14:33:18','2026-03-27 14:33:18','4fd768a4-541a-413b-9f91-e92cdada0f16'),
(2867,73,6251,NULL,6212,1,'2026-03-27 14:48:23','2026-03-27 14:48:23','1fba07e5-60ad-449c-8c0c-b465d46a03ef'),
(2868,73,6251,NULL,6216,2,'2026-03-27 14:48:23','2026-03-27 14:48:23','3586c34e-435e-44c2-8cc5-2e5112a31f27'),
(2869,73,6251,NULL,6224,3,'2026-03-27 14:48:23','2026-03-27 14:48:23','4ac228e9-9126-4c31-a891-54a5a66f51d7'),
(2870,73,6251,NULL,6232,4,'2026-03-27 14:48:23','2026-03-27 14:48:23','f1f511b4-8964-47e8-b727-63bbe4759f65'),
(2871,73,6252,NULL,6253,1,'2026-03-27 14:49:56','2026-03-27 14:49:56','e712c460-7759-4aa8-bf40-b2dab20b98dc'),
(2872,73,6252,NULL,6265,2,'2026-03-27 14:50:24','2026-03-27 14:50:24','fc7dcda1-b227-407d-9fdf-f636e26796e6'),
(2873,73,6271,NULL,6253,1,'2026-03-27 14:50:26','2026-03-27 14:50:26','0aaaf007-83de-44d9-85db-2e053df8beff'),
(2874,73,6271,NULL,6265,2,'2026-03-27 14:50:26','2026-03-27 14:50:26','70d4448e-f0fc-4c76-b0b2-de576ec26519'),
(2876,2,6275,NULL,4118,1,'2026-03-29 10:07:47','2026-03-29 10:07:47','057fb2ad-8d87-41b0-8c9d-bceee3c6823b'),
(2878,2,6278,NULL,320,1,'2026-03-29 10:42:40','2026-03-29 10:42:40','9f1e7b33-5f7f-4ec6-b60d-b24e1b57be8f'),
(2879,2,6280,NULL,320,1,'2026-03-29 10:42:40','2026-03-29 10:42:40','75628aed-5ce3-40d9-9b7b-a588dcff3150'),
(2881,2,6284,NULL,320,1,'2026-03-29 10:49:24','2026-03-29 10:49:24','9019816c-2c94-4c48-816f-db4b191af862'),
(2883,2,6288,NULL,320,1,'2026-03-29 10:52:16','2026-03-29 10:52:16','5da38530-249a-4f84-927d-5283bcaa597b'),
(2885,2,6292,NULL,320,1,'2026-03-29 10:53:27','2026-03-29 10:53:27','41dfcc12-7b60-48d4-86a5-ca81164861bb'),
(2887,2,6296,NULL,4118,1,'2026-03-29 10:53:43','2026-03-29 10:53:43','fcb63a88-c1e4-4859-914c-5140a50dcab1'),
(2892,2,6312,NULL,4118,1,'2026-03-30 10:18:17','2026-03-30 10:18:17','d85e53e8-8553-49b3-abb4-ce940cedfc9f'),
(2894,2,6316,NULL,4118,1,'2026-03-30 10:56:54','2026-03-30 10:56:54','a00e03fb-e88c-413c-8aa1-0fdec7224d20'),
(2897,2,6321,NULL,4118,1,'2026-03-30 10:57:29','2026-03-30 10:57:29','ff0f5c88-40a0-4cdb-bfa6-99a4b025b1d9'),
(2903,2,6334,NULL,320,1,'2026-03-30 16:48:43','2026-03-30 16:48:43','83ba030c-4193-4cb5-b39d-01132ecdb472'),
(2906,17,4593,NULL,6337,1,'2026-03-30 18:01:13','2026-03-30 18:01:13','f0bd67ed-e28d-46e5-bb60-9897f487d861'),
(2907,17,6340,NULL,6337,1,'2026-03-30 18:01:13','2026-03-30 18:01:13','9dcf0477-fded-4755-bda2-e43a3d4d7108'),
(2910,17,1951,NULL,6338,1,'2026-03-30 18:01:34','2026-03-30 18:01:34','45e7419f-69db-4103-a73b-354716db1385'),
(2911,17,6342,NULL,6338,1,'2026-03-30 18:01:34','2026-03-30 18:01:34','db4dc616-93b5-4c33-ba8d-bd8d860624fb'),
(2912,17,6343,NULL,4084,1,'2026-03-30 18:02:28','2026-03-30 18:02:28','fe997b2b-e98b-4226-aed5-99dbc743bdb9'),
(2915,17,4303,NULL,6344,1,'2026-03-30 18:31:48','2026-03-30 18:31:48','17f672a7-dc60-4527-8c65-6d801cc04979'),
(2916,17,6346,NULL,6344,1,'2026-03-30 18:31:48','2026-03-30 18:31:48','95f03d02-1e83-4775-a42f-e8d05bb4582a'),
(2919,2,761,NULL,6347,1,'2026-03-31 09:17:00','2026-03-31 09:17:00','5968068e-ad6b-4e63-b04b-3c24e31288b6'),
(2920,2,6351,NULL,6347,1,'2026-03-31 09:17:01','2026-03-31 09:17:01','dd5bcfe4-c876-4d10-ac1a-dfcbdeee52a9'),
(2922,68,6179,NULL,4702,1,'2026-03-31 09:18:49','2026-03-31 09:18:49','fc1aac06-4e51-4a37-81d6-d9b0667128c3'),
(2923,68,6352,NULL,4702,1,'2026-03-31 09:18:49','2026-03-31 09:18:49','812bfdf4-cf1b-4b07-8552-70b48598a2b7'),
(2924,73,6365,NULL,6253,1,'2026-03-31 09:22:16','2026-03-31 09:22:16','2c6c8a59-1d26-4416-a4f0-39961d0eebca'),
(2925,73,6365,NULL,6265,2,'2026-03-31 09:22:16','2026-03-31 09:22:16','566d9636-e627-45a2-af82-cddab4f433be'),
(2927,68,6367,NULL,4702,1,'2026-03-31 09:22:48','2026-03-31 09:22:48','b1c74e22-436a-469e-afac-104433244475'),
(2929,68,6196,NULL,4702,1,'2026-03-31 09:25:13','2026-03-31 09:25:13','d286e46d-fbea-4b28-8ad4-f3bc63e016ec'),
(2930,68,6378,NULL,4702,1,'2026-03-31 09:25:13','2026-03-31 09:25:13','ca9d0b0a-501a-47b7-97b9-1366c04d8272'),
(2932,73,6381,NULL,1132,1,'2026-03-31 09:25:43','2026-03-31 09:25:43','aba2cb68-d86b-4cfd-9249-48c2b2d05ea4'),
(2938,73,6383,NULL,6157,1,'2026-03-31 09:26:35','2026-03-31 09:26:35','26791fdd-45cc-41d2-9cec-16eecbd0ee30'),
(2939,73,6383,NULL,6166,2,'2026-03-31 09:26:35','2026-03-31 09:26:35','d322b781-0ab8-4e9e-8c40-2d1127149b84'),
(2940,73,6383,NULL,6174,3,'2026-03-31 09:26:35','2026-03-31 09:26:35','7d8560d1-59fb-442a-89b7-1e4aa8b7cf7f'),
(2941,73,6383,NULL,6179,4,'2026-03-31 09:26:35','2026-03-31 09:26:35','a3b4392b-40bf-4b51-9a1e-65bef491797a'),
(2942,73,6383,NULL,6196,5,'2026-03-31 09:26:35','2026-03-31 09:26:35','caa2cfbd-af58-4b75-93d1-c2a6feaf4830'),
(2947,73,6385,NULL,6212,1,'2026-03-31 09:26:59','2026-03-31 09:26:59','d4848060-904e-48eb-838e-892b038830e3'),
(2948,73,6385,NULL,6216,2,'2026-03-31 09:26:59','2026-03-31 09:26:59','679e5bff-44db-45f8-95ec-2eaf90f9c957'),
(2949,73,6385,NULL,6224,3,'2026-03-31 09:26:59','2026-03-31 09:26:59','efd98cdf-0975-4733-b26d-09145478bba4'),
(2950,73,6385,NULL,6232,4,'2026-03-31 09:26:59','2026-03-31 09:26:59','e35bf389-f77a-4e9f-b43e-f3d0fc24b11f'),
(2952,68,6387,NULL,4702,1,'2026-03-31 09:28:32','2026-03-31 09:28:32','dcf99bfd-b648-45b6-a662-93eb4a855d63'),
(2955,73,6411,NULL,6253,1,'2026-03-31 09:33:52','2026-03-31 09:33:52','f2eae73b-f84b-45e2-a86c-7d5dbe5e802f'),
(2956,73,6411,NULL,6265,2,'2026-03-31 09:33:52','2026-03-31 09:33:52','6a4cd40d-cab1-4494-add6-83f1265426f2'),
(2958,68,6414,NULL,4702,1,'2026-03-31 09:34:32','2026-03-31 09:34:32','1a7e9ce5-50ab-40fe-8dc5-3043b510a467'),
(2960,68,6422,NULL,4418,1,'2026-03-31 09:36:10','2026-03-31 09:36:10','6313fe24-a744-4674-babd-63ceb85c1a4d'),
(2963,2,6481,NULL,6347,1,'2026-03-31 09:55:41','2026-03-31 09:55:41','c7bd9f31-bae4-4840-ab41-3b9604e76212'),
(2964,2,6488,NULL,4118,1,'2026-03-31 09:58:47','2026-03-31 09:58:47','fd89bd43-e2b2-4ef8-8933-513f112ae351'),
(2966,2,6508,NULL,6347,1,'2026-03-31 10:11:57','2026-03-31 10:11:57','45356e59-7f31-4a5e-b344-a47852bfadf4'),
(2968,2,6512,NULL,6347,1,'2026-03-31 10:12:25','2026-03-31 10:12:25','8033aea1-aa12-44cc-8df0-ddbecb6add9d'),
(2970,2,6516,NULL,6347,1,'2026-03-31 10:12:55','2026-03-31 10:12:55','c738ad8d-acaf-4155-aa4f-7fc37c2a952a'),
(2972,2,6520,NULL,6347,1,'2026-03-31 10:14:31','2026-03-31 10:14:31','68fafc57-cc0c-47ff-9d27-2b9be6db14ac'),
(2974,2,6529,NULL,320,1,'2026-04-01 09:45:16','2026-04-01 09:45:16','edf57bb1-72e0-4c84-8f96-59d360894ab0'),
(2982,17,5109,NULL,6533,1,'2026-04-01 10:07:09','2026-04-01 10:07:09','47b7cbdb-28aa-4a9c-aa69-96c5a07bbb6c'),
(2983,17,6539,NULL,81,1,'2026-04-01 10:07:09','2026-04-01 10:07:09','91a4f4dd-0ae9-47ba-bf71-7e154d3d4e88'),
(2984,17,6540,NULL,6533,1,'2026-04-01 10:07:09','2026-04-01 10:07:09','b9c70d2e-6f44-4b53-9d6d-95e80f22dd0d'),
(2985,17,6542,NULL,81,1,'2026-04-01 10:07:12','2026-04-01 10:07:12','d08c4c13-33c1-499b-8680-dc6c89302dc2'),
(2991,10,5110,NULL,6538,1,'2026-04-01 10:08:29','2026-04-01 10:08:29','b09ab4e0-06a1-4d61-8c20-04f2da99106b'),
(2992,10,5111,NULL,6537,1,'2026-04-01 10:08:29','2026-04-01 10:08:29','94f3ee55-fc4b-404c-94e7-f1560536eed7'),
(2993,17,6546,NULL,81,1,'2026-04-01 10:08:29','2026-04-01 10:08:29','626fa76c-e281-4cdd-8ade-52df97e49eee'),
(2994,10,6547,NULL,6538,1,'2026-04-01 10:08:29','2026-04-01 10:08:29','3c849188-0331-46f6-bfcb-e5694ff2c43d'),
(2995,10,6548,NULL,6537,1,'2026-04-01 10:08:29','2026-04-01 10:08:29','ff95a439-47a3-468b-aadc-71296b3bf89f'),
(2996,17,6548,NULL,5075,1,'2026-04-01 10:08:29','2026-04-01 10:08:29','4f9a3880-0333-4006-a565-82dc839b06e0'),
(2997,17,6549,NULL,81,1,'2026-04-01 10:08:33','2026-04-01 10:08:33','05aaa631-8f3d-44e2-a18f-96c44238fd70'),
(3002,17,6553,NULL,5075,1,'2026-04-01 10:09:16','2026-04-01 10:09:16','c04013e3-ece5-46e6-94d9-521e2840d8c0'),
(3003,13,6554,NULL,112,1,'2026-04-01 10:09:16','2026-04-01 10:09:16','2f7c2bec-1e48-4d79-82a9-5ab3900bd6b4'),
(3004,13,6554,NULL,99,2,'2026-04-01 10:09:16','2026-04-01 10:09:16','5611ea63-eca6-4412-b904-c8e15a4f2f6a'),
(3005,13,6554,NULL,89,3,'2026-04-01 10:09:16','2026-04-01 10:09:16','5208d38c-0625-47dc-8b11-5b877c98e787'),
(3006,17,6550,NULL,6567,1,'2026-04-01 10:11:56','2026-04-01 10:11:56','743b538c-96f9-4e4e-bed0-7b7b4b92ee3e'),
(3007,17,6568,NULL,6567,1,'2026-04-01 10:12:10','2026-04-01 10:12:10','291be490-e920-47eb-9262-4ad1fdf5c20d'),
(3008,17,6569,NULL,6533,1,'2026-04-01 10:12:10','2026-04-01 10:12:10','7a1c77ad-166b-4093-af9a-d57e98054e53'),
(3009,10,6570,NULL,6538,1,'2026-04-01 10:12:10','2026-04-01 10:12:10','c5481967-0482-44b2-922c-4b2bd94b357d'),
(3010,10,6571,NULL,6537,1,'2026-04-01 10:12:10','2026-04-01 10:12:10','e6c3094b-b78d-4f82-8908-5ba1a1937fa9'),
(3011,17,6571,NULL,5075,1,'2026-04-01 10:12:10','2026-04-01 10:12:10','81f91ecb-0739-40fd-9eeb-d2fa65f3a802'),
(3012,13,6572,NULL,112,1,'2026-04-01 10:12:10','2026-04-01 10:12:10','2f13e014-e571-49ef-bf96-68c2512cc8c9'),
(3013,13,6572,NULL,99,2,'2026-04-01 10:12:10','2026-04-01 10:12:10','f7dc75e8-4061-4f1b-98c8-595445450fd9'),
(3014,13,6572,NULL,89,3,'2026-04-01 10:12:10','2026-04-01 10:12:10','045dc949-dbc2-4b68-849c-65cce0d2ed36'),
(3024,17,6606,NULL,81,1,'2026-04-01 14:56:06','2026-04-01 14:56:06','8f86b537-0022-4cbc-b063-d3830844957f'),
(3026,2,6618,NULL,320,1,'2026-04-01 14:59:54','2026-04-01 14:59:54','fb216e5d-71ff-4b86-bb95-a153e2ea7d96'),
(3032,10,6621,NULL,757,1,'2026-04-01 15:06:48','2026-04-01 15:06:48','4504ce14-bdaf-4a01-b59e-f6b6f86d46f0'),
(3033,11,6621,NULL,6347,1,'2026-04-01 15:06:48','2026-04-01 15:06:48','0eec1f41-6b69-408e-ac3a-f5f5d51e1f9b'),
(3036,10,6623,NULL,90,1,'2026-04-01 15:07:49','2026-04-01 15:07:49','3d278fc8-3e00-4efc-828b-188e1294785a'),
(3037,11,6623,NULL,91,1,'2026-04-01 15:07:49','2026-04-01 15:07:49','fb15590d-8546-425b-b52c-98aa1c2b7426'),
(3044,17,6551,NULL,6567,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','e9c78197-9e54-41a5-852b-45b942ff3341'),
(3045,10,6552,NULL,6565,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','4cdbc3e8-1fbf-4a0b-bccc-41b99401a2ca'),
(3046,10,6553,NULL,6566,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','bc42ede7-b313-4f71-8b48-90d174481e7a'),
(3047,17,6634,NULL,6567,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','cd0bc0ae-1ddf-4993-9373-2ec0687cc468'),
(3048,17,6635,NULL,6567,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','c60ed8bb-c86a-419a-867d-341639d4b9ed'),
(3049,10,6636,NULL,6565,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','8b69fd14-18b3-47d3-beb3-d0c2367d9870'),
(3050,10,6637,NULL,6566,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','d0be5d86-9398-43b7-b3de-439e2b2f44eb'),
(3051,17,6637,NULL,5075,1,'2026-04-01 15:20:20','2026-04-01 15:20:20','2ac875bb-7fad-4fb0-82b0-238134038256'),
(3052,17,6646,NULL,6567,1,'2026-04-01 15:23:25','2026-04-01 15:23:25','d8d71c7c-2b4d-4a4b-b15b-2306801b36ef'),
(3057,17,6650,NULL,5075,1,'2026-04-01 15:23:44','2026-04-01 15:23:44','37b45c81-af6f-4beb-9a82-b8d6e5995e3b'),
(3058,13,6651,NULL,112,1,'2026-04-01 15:23:44','2026-04-01 15:23:44','09eb1947-78de-45ce-92f2-2c03a56f3490'),
(3059,13,6651,NULL,99,2,'2026-04-01 15:23:44','2026-04-01 15:23:44','8ee655a9-eaaf-4be7-8787-db85db1412f2'),
(3060,13,6651,NULL,89,3,'2026-04-01 15:23:44','2026-04-01 15:23:44','bc133b36-9c2d-4d08-9700-e82c4660afa4'),
(3061,17,6661,NULL,6567,1,'2026-04-01 16:58:02','2026-04-01 16:58:02','46a4513d-6175-48b4-a031-6fa9a41895b0'),
(3062,17,6662,NULL,6567,1,'2026-04-01 16:58:02','2026-04-01 16:58:02','e0cfc3ff-abd7-4102-b3f1-fc9c5e2c2a45'),
(3063,10,6663,NULL,6565,1,'2026-04-01 16:58:03','2026-04-01 16:58:03','a672a060-49b0-4f49-9885-3d081841cc7d'),
(3064,10,6664,NULL,6566,1,'2026-04-01 16:58:03','2026-04-01 16:58:03','557a3a9e-0be8-4b0a-8228-912a0d0f870e'),
(3065,17,6664,NULL,5075,1,'2026-04-01 16:58:03','2026-04-01 16:58:03','ba3bf1ff-7fba-4d49-a749-27ed64ee8de5'),
(3066,13,6665,NULL,112,1,'2026-04-01 16:58:03','2026-04-01 16:58:03','6de77e2d-8037-4586-adb6-1d22772c1df5'),
(3067,13,6665,NULL,99,2,'2026-04-01 16:58:03','2026-04-01 16:58:03','1887074c-3640-4203-b54c-ef940fbf6517'),
(3068,13,6665,NULL,89,3,'2026-04-01 16:58:03','2026-04-01 16:58:03','5c26d89f-806a-4c81-a044-6776445c2764'),
(3073,17,6679,NULL,6567,1,'2026-04-01 17:11:07','2026-04-01 17:11:07','8fc9d0bb-f91e-4c5e-80c2-f79accb4eb18'),
(3074,17,6680,NULL,6567,1,'2026-04-01 17:11:07','2026-04-01 17:11:07','e38e5a01-204a-4072-90c1-357896b670dd'),
(3075,10,6681,NULL,6565,1,'2026-04-01 17:11:07','2026-04-01 17:11:07','796f44a0-915f-4c2d-b395-aa3a7c456109'),
(3086,17,6648,NULL,6686,1,'2026-04-01 18:00:21','2026-04-01 18:00:21','91309532-d8dd-4fe9-8af5-6706a9964d54'),
(3087,10,6649,NULL,6684,1,'2026-04-01 18:00:21','2026-04-01 18:00:21','27a5dbc3-02a3-4917-b46b-53c2c533ad22'),
(3088,10,6650,NULL,6685,1,'2026-04-01 18:00:22','2026-04-01 18:00:22','3f004a86-7b94-432d-b0e0-6b73e8872859'),
(3089,17,6698,NULL,6567,1,'2026-04-01 18:00:22','2026-04-01 18:00:22','94326fd1-a31a-4b0a-aefa-0b041f635c13'),
(3090,17,6699,NULL,6686,1,'2026-04-01 18:00:22','2026-04-01 18:00:22','38fa72ce-74d0-4624-8840-389bc5b3926c'),
(3091,10,6700,NULL,6684,1,'2026-04-01 18:00:22','2026-04-01 18:00:22','293e9758-a3df-41f1-9a71-b4c0e4e7abd1'),
(3092,10,6701,NULL,6685,1,'2026-04-01 18:00:22','2026-04-01 18:00:22','9e09f784-a947-48b9-b585-3c1aefcb0992'),
(3093,17,6701,NULL,5075,1,'2026-04-01 18:00:22','2026-04-01 18:00:22','56e4859a-20af-4323-a733-a3489bd57b49'),
(3096,17,6647,NULL,6685,1,'2026-04-01 18:00:40','2026-04-01 18:00:40','1ebaff46-2888-4316-90f0-f5af949568fe'),
(3097,17,6711,NULL,6685,1,'2026-04-01 18:00:41','2026-04-01 18:00:41','18acca48-6554-4381-9536-c4ddf3376654'),
(3102,17,6715,NULL,5075,1,'2026-04-01 18:04:12','2026-04-01 18:04:12','91d3969e-b71f-4940-9ef3-c362ec4c7202'),
(3103,13,6716,NULL,112,1,'2026-04-01 18:04:12','2026-04-01 18:04:12','29fd344a-270b-493d-9257-8e5c2d98c16b'),
(3104,13,6716,NULL,99,2,'2026-04-01 18:04:12','2026-04-01 18:04:12','d8114520-0994-4565-8b06-a854fbdc35a4'),
(3105,13,6716,NULL,89,3,'2026-04-01 18:04:12','2026-04-01 18:04:12','5fd49f66-1cd7-4525-a6bb-1471a1a8af5e'),
(3106,17,6712,NULL,6727,1,'2026-04-01 18:17:15','2026-04-01 18:17:15','a052a09a-9588-499a-a9c2-5d6dbb6cbe64'),
(3110,17,6713,NULL,6727,1,'2026-04-01 18:20:04','2026-04-01 18:20:04','672b92c7-2497-4fbf-8baf-f2a0c8382b9c'),
(3113,10,6714,NULL,6726,1,'2026-04-01 18:25:54','2026-04-01 18:25:54','6256b238-b05e-4d1e-acdd-7c87e49c7ec4'),
(3117,10,6715,NULL,5076,1,'2026-04-01 18:30:44','2026-04-01 18:30:44','4e6ab74f-7604-47cb-9ec8-763577294400'),
(3118,17,6745,NULL,6727,1,'2026-04-01 18:42:07','2026-04-01 18:42:07','9cbcc452-741a-4b73-ba3c-2d5859b9b3dd'),
(3119,17,6746,NULL,6727,1,'2026-04-01 18:42:07','2026-04-01 18:42:07','f0292b65-64b3-4627-85c2-428d97a8c945'),
(3120,10,6747,NULL,6726,1,'2026-04-01 18:42:07','2026-04-01 18:42:07','8a7fcb5d-18d6-4b7e-9639-f425c89e7c74'),
(3121,10,6748,NULL,5076,1,'2026-04-01 18:42:08','2026-04-01 18:42:08','78d22989-4673-4580-af97-0ef6bddfbc58'),
(3122,17,6748,NULL,5075,1,'2026-04-01 18:42:08','2026-04-01 18:42:08','972aa54a-2d9a-42fd-8266-26dbc4440542'),
(3123,13,6749,NULL,112,1,'2026-04-01 18:42:08','2026-04-01 18:42:08','9c5954d3-c550-492b-af15-fdfa7d7892f3'),
(3124,13,6749,NULL,99,2,'2026-04-01 18:42:08','2026-04-01 18:42:08','13d467c7-338c-4aa2-b23c-03c0fd3fbcb9'),
(3125,13,6749,NULL,89,3,'2026-04-01 18:42:08','2026-04-01 18:42:08','3979ce87-d0a0-45c4-a3b5-1f4cbec8b828'),
(3126,17,6758,NULL,6727,1,'2026-04-01 18:42:12','2026-04-01 18:42:12','96473de3-a7eb-4e3d-86c7-c776348e5d39'),
(3131,17,6762,NULL,5075,1,'2026-04-01 18:42:39','2026-04-01 18:42:39','5e692406-cbaf-4426-8aa7-8eff523c6764'),
(3132,13,6763,NULL,112,1,'2026-04-01 18:42:39','2026-04-01 18:42:39','9c4e1e41-b3d4-4915-975e-4d75c6480a66'),
(3133,13,6763,NULL,99,2,'2026-04-01 18:42:39','2026-04-01 18:42:39','2177af84-edb6-47e7-8269-833016a0e167'),
(3134,13,6763,NULL,89,3,'2026-04-01 18:42:39','2026-04-01 18:42:39','9d6072a5-2f06-4eec-a263-7f56895dd7cc'),
(3135,17,6772,NULL,6727,1,'2026-04-01 18:43:00','2026-04-01 18:43:00','15ac088d-7c16-4efc-8806-4e4d997175b8'),
(3136,17,6773,NULL,6727,1,'2026-04-01 18:43:00','2026-04-01 18:43:00','aaf184d5-53ad-419b-be47-f181c7982a52'),
(3137,10,6774,NULL,6726,1,'2026-04-01 18:43:00','2026-04-01 18:43:00','d2dbbd4e-6d0c-4d2d-9236-7a96246361f5'),
(3138,10,6775,NULL,5076,1,'2026-04-01 18:43:00','2026-04-01 18:43:00','7ff840ba-1212-4f76-bd6c-577768aa3d40'),
(3139,17,6775,NULL,5075,1,'2026-04-01 18:43:00','2026-04-01 18:43:00','60f5d7bf-34fa-466e-9314-311b009d6a7e'),
(3140,13,6776,NULL,112,1,'2026-04-01 18:43:00','2026-04-01 18:43:00','f46b3140-8a66-4cf5-8510-8b0b97334100'),
(3141,13,6776,NULL,99,2,'2026-04-01 18:43:00','2026-04-01 18:43:00','5dc45216-511e-425a-93f0-046488c9f430'),
(3142,13,6776,NULL,89,3,'2026-04-01 18:43:00','2026-04-01 18:43:00','d1179b63-7550-4f92-827c-18e9d1ffd05c'),
(3159,17,6759,NULL,6787,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','073f3961-c318-4de8-9f04-984b29698e6a'),
(3160,17,6760,NULL,6785,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','cfb2ef37-7631-478d-9d3e-8f8c86e5e2b1'),
(3161,10,6761,NULL,6786,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','e9d8888e-9e57-4e45-b6ca-72aed288f3d0'),
(3162,10,6762,NULL,6787,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','7d34cab6-be5d-40b5-a1c7-1467a8250a0b'),
(3163,17,6805,NULL,6787,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','783df92f-f02b-4975-a3c2-bedcf5601bf6'),
(3164,17,6806,NULL,6785,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','0a11c0ef-c222-4f2c-a0a8-b48d34b688db'),
(3165,10,6807,NULL,6786,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','bf0d7f46-6ddb-4ace-9618-074d8cd11956'),
(3166,10,6808,NULL,6787,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','853fd8cb-d0ec-4dc6-913e-c24cf82b49d1'),
(3167,17,6808,NULL,5075,1,'2026-04-01 19:10:02','2026-04-01 19:10:02','7e26a999-d019-48e0-9648-ef005c706ad9'),
(3168,17,6817,NULL,6787,1,'2026-04-01 19:18:01','2026-04-01 19:18:01','13d205df-6c95-4264-ab25-701ae62c09c6'),
(3173,17,6821,NULL,5075,1,'2026-04-01 19:19:05','2026-04-01 19:19:05','3cdc1117-30ae-47a1-9994-c4c864662985'),
(3174,13,6822,NULL,112,1,'2026-04-01 19:19:06','2026-04-01 19:19:06','ff38d0d2-7eb3-4097-9f79-cd4322390f92'),
(3175,13,6822,NULL,99,2,'2026-04-01 19:19:06','2026-04-01 19:19:06','5047aeb3-5cf2-4b01-abe4-4fb8165fac20'),
(3176,13,6822,NULL,89,3,'2026-04-01 19:19:06','2026-04-01 19:19:06','85f3d1a8-b061-47e7-89e4-352c93ff90e0'),
(3177,17,6831,NULL,6727,1,'2026-04-01 19:19:31','2026-04-01 19:19:31','3aa3193f-ac83-4647-8dc5-9fb32cbd337f'),
(3178,17,6832,NULL,6727,1,'2026-04-01 19:19:31','2026-04-01 19:19:31','4f7a53c5-908c-4d49-87aa-8ff2c38fd9d6'),
(3179,10,6833,NULL,6726,1,'2026-04-01 19:19:31','2026-04-01 19:19:31','62f69f11-ce2e-4450-abd7-4850f58fa8d4'),
(3180,10,6834,NULL,5076,1,'2026-04-01 19:19:31','2026-04-01 19:19:31','4bb14040-993b-46bf-952f-4f9c6ed5cc0a'),
(3181,17,6834,NULL,5075,1,'2026-04-01 19:19:31','2026-04-01 19:19:31','a659bc96-55aa-4170-bc24-a7642cacc6c9'),
(3182,13,6835,NULL,112,1,'2026-04-01 19:19:31','2026-04-01 19:19:31','8b2de7b6-16cf-423f-ba67-156507dca8bd'),
(3183,13,6835,NULL,99,2,'2026-04-01 19:19:31','2026-04-01 19:19:31','65fdb03c-1239-493f-828a-373584d4a759'),
(3184,13,6835,NULL,89,3,'2026-04-01 19:19:31','2026-04-01 19:19:31','aa66ca02-97c4-4e23-aebc-c0876f982c28'),
(3186,17,6845,NULL,6727,1,'2026-04-01 19:22:42','2026-04-01 19:22:42','0e1e4c5a-d305-4e3c-847d-912c72121d34'),
(3198,17,6818,NULL,6849,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','9136b5ce-9840-457c-8aea-d6614ea2187f'),
(3199,17,6819,NULL,6847,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','3fb4e879-ee52-4a26-a5e3-be656180596d'),
(3200,10,6820,NULL,6846,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','e80f7ea7-004d-4e65-a1c9-2f27864b04c1'),
(3201,10,6821,NULL,6848,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','8012950b-1167-4c94-8978-821f790d0db9'),
(3202,17,6864,NULL,6849,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','88e55b95-cb96-463c-bd22-b7a8158ffca8'),
(3203,17,6865,NULL,6847,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','7a2848f0-5444-4a05-8cf1-4d94f62022ea'),
(3204,10,6866,NULL,6846,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','1d314d66-a20e-42d8-9af6-c06e444f3a29'),
(3205,10,6867,NULL,6848,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','0b4bbf82-e9f4-4838-a748-903a23b5df27'),
(3206,17,6867,NULL,5075,1,'2026-04-01 19:44:58','2026-04-01 19:44:58','e5c4e1bf-5545-4fac-ab07-adfab3f82601'),
(3207,17,6875,NULL,6849,1,'2026-04-01 19:45:02','2026-04-01 19:45:02','20039bba-a046-4297-b554-b76de095cca6'),
(3209,17,6879,NULL,4994,1,'2026-04-02 08:42:06','2026-04-02 08:42:06','9d379d9f-51e8-4fde-91b4-047e8431a12c'),
(3211,17,6883,NULL,4994,1,'2026-04-02 08:42:34','2026-04-02 08:42:34','d95e0b44-e981-4c07-a620-6094be1c7f1e'),
(3219,17,6892,NULL,4994,1,'2026-04-02 08:49:29','2026-04-02 08:49:29','7a5a61c3-b4b5-4aa9-b1c0-cc6858e40a40'),
(3220,17,6894,NULL,4994,1,'2026-04-02 08:49:29','2026-04-02 08:49:29','ea4b1684-0ff9-44c3-9373-70b94bd338e4'),
(3221,10,6895,NULL,4950,1,'2026-04-02 08:49:29','2026-04-02 08:49:29','45b4aea0-9e2c-458c-9682-c5ae173b3058'),
(3222,17,6896,NULL,4994,1,'2026-04-02 08:49:29','2026-04-02 08:49:29','a6c85292-2d44-4ca6-8b99-7c57272dced2'),
(3224,10,6901,NULL,4950,1,'2026-04-02 08:51:27','2026-04-02 08:51:27','b9750c87-880d-4fdf-bd89-f21bad1a7b1d'),
(3226,10,6905,NULL,4950,1,'2026-04-02 08:52:45','2026-04-02 08:52:45','91701608-1bb9-48dd-922c-e6920ae78707'),
(3228,10,6909,NULL,4950,1,'2026-04-02 08:53:13','2026-04-02 08:53:13','19142b0a-8505-4761-842c-965eb3c7d4c3'),
(3230,17,6913,NULL,4994,1,'2026-04-02 08:53:37','2026-04-02 08:53:37','adc58a67-c0f7-4103-a4ca-436f148b61e7'),
(3232,17,6917,NULL,4994,1,'2026-04-02 08:54:45','2026-04-02 08:54:45','e76cd629-c021-459a-8d72-e6dc0d61ff48'),
(3234,17,6929,NULL,4084,1,'2026-04-02 09:10:40','2026-04-02 09:10:40','f06e8272-defb-4edb-8c6e-9469beaa1cf1'),
(3240,13,6938,NULL,112,1,'2026-04-03 10:33:52','2026-04-03 10:33:52','fbd5de6f-e658-4584-8d2f-de024e73932d'),
(3241,13,6938,NULL,99,2,'2026-04-03 10:33:52','2026-04-03 10:33:52','c4f9993f-b84e-4102-8524-e537c34c739e'),
(3242,13,6938,NULL,89,3,'2026-04-03 10:33:52','2026-04-03 10:33:52','2794ecc8-337c-4b70-9d54-6f00f122b18b'),
(3243,17,6947,NULL,6849,1,'2026-04-03 10:34:12','2026-04-03 10:34:12','3649bd89-e0ba-450e-9a49-36f538e5bbc8'),
(3244,17,6948,NULL,6847,1,'2026-04-03 10:34:12','2026-04-03 10:34:12','ec5215e1-060d-4441-8f0c-38bac0efa795'),
(3245,10,6949,NULL,6846,1,'2026-04-03 10:34:12','2026-04-03 10:34:12','ce24f1ab-22a6-43cc-bc5a-94a0d07fb6a3'),
(3246,10,6950,NULL,6848,1,'2026-04-03 10:34:12','2026-04-03 10:34:12','24eff8bb-1387-4e14-8af3-8151a18e46ab'),
(3247,17,6950,NULL,5075,1,'2026-04-03 10:34:12','2026-04-03 10:34:12','8c03dfbb-96bb-4b76-8f28-983ec7d677fd'),
(3248,13,6951,NULL,112,1,'2026-04-03 10:34:12','2026-04-03 10:34:12','e6c3f7b6-16b2-4047-90c1-209422a7eba9'),
(3249,13,6951,NULL,99,2,'2026-04-03 10:34:12','2026-04-03 10:34:12','c9eae25c-430d-4a89-a0ac-d3aa939405fb'),
(3250,13,6951,NULL,89,3,'2026-04-03 10:34:12','2026-04-03 10:34:12','e4688665-25a4-4b0c-bf69-88cc26409042'),
(3263,17,6934,NULL,6963,1,'2026-04-03 10:56:13','2026-04-03 10:56:13','e36439a9-9182-4edf-a162-14a0d14dd806'),
(3264,17,6935,NULL,6963,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','433933be-7249-4bbd-866a-b9eb55a901c5'),
(3265,10,6936,NULL,6960,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','c2ecca69-0f2a-4a9c-9146-e811e12b9cab'),
(3266,10,6937,NULL,6961,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','f9be6b35-d423-4de6-a6b0-b37e79cc4db2'),
(3267,17,6937,NULL,6962,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','7984230c-dbe0-4867-ad16-ee22868cf157'),
(3268,17,6982,NULL,6963,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','fd47825c-543a-4a87-8920-0d8b638c50c4'),
(3269,17,6983,NULL,6963,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','192487af-1f1c-4bb9-981e-f34b254f2200'),
(3270,10,6984,NULL,6960,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','f6c9d732-fed6-439f-9229-ba8c0c96eb94'),
(3271,10,6985,NULL,6961,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','ead231ef-fdd9-47c3-aeaf-123f39b94790'),
(3272,17,6985,NULL,6962,1,'2026-04-03 10:56:14','2026-04-03 10:56:14','b9be5e9f-b8b5-4220-bda9-23dce7ae57a9'),
(3273,17,6996,NULL,6963,1,'2026-04-03 10:56:18','2026-04-03 10:56:18','21713e54-db9e-4025-8632-8dd9c4d291e3'),
(3279,13,7001,NULL,112,1,'2026-04-03 10:57:41','2026-04-03 10:57:41','c3d43fea-0ed5-4767-b339-1a204929968b'),
(3280,13,7001,NULL,99,2,'2026-04-03 10:57:41','2026-04-03 10:57:41','73828303-4764-48f1-a782-40dabd65cce2'),
(3281,13,7001,NULL,89,3,'2026-04-03 10:57:41','2026-04-03 10:57:41','37721545-6a12-44a3-9765-843f301653b9'),
(3282,17,6997,NULL,7016,1,'2026-04-03 10:58:38','2026-04-03 10:58:38','c218b6a1-ae56-4230-8c28-b0607a8e4191'),
(3283,17,7017,NULL,7016,1,'2026-04-03 10:58:41','2026-04-03 10:58:41','369e4ef3-134e-47ca-aea2-ddfbcecbf160'),
(3284,17,7018,NULL,6963,1,'2026-04-03 10:58:41','2026-04-03 10:58:41','2e776355-1f73-4c0d-9c94-9d3976e8142d'),
(3285,10,7019,NULL,6960,1,'2026-04-03 10:58:41','2026-04-03 10:58:41','a372b7ab-d03f-4e51-814c-ab1e400441dc'),
(3286,10,7020,NULL,6961,1,'2026-04-03 10:58:41','2026-04-03 10:58:41','a9f5c3d1-33e0-4aa6-b9e5-02c337f9e002'),
(3287,17,7020,NULL,6962,1,'2026-04-03 10:58:41','2026-04-03 10:58:41','de24b726-fac4-436f-bb7a-b803aae67740'),
(3288,13,7021,NULL,112,1,'2026-04-03 10:58:41','2026-04-03 10:58:41','16299e36-3808-4ad9-b2b6-11321637d255'),
(3289,13,7021,NULL,99,2,'2026-04-03 10:58:41','2026-04-03 10:58:41','95b1cd12-868a-406b-8e5e-b39fe5e35e40'),
(3290,13,7021,NULL,89,3,'2026-04-03 10:58:41','2026-04-03 10:58:41','8bb5d796-4eb3-47a4-b827-ae63b80cf630'),
(3304,17,6998,NULL,7014,1,'2026-04-03 11:17:10','2026-04-03 11:17:10','f562ffff-27f6-4d75-93f8-6e0344ca1b29'),
(3305,10,6999,NULL,7016,1,'2026-04-03 11:17:10','2026-04-03 11:17:10','b7f54ff7-f60b-4e9d-9a60-4468fc59329e'),
(3306,10,7000,NULL,7013,1,'2026-04-03 11:17:10','2026-04-03 11:17:10','e97491af-64ca-417e-917d-95604f67bf66'),
(3307,17,7000,NULL,7015,1,'2026-04-03 11:17:10','2026-04-03 11:17:10','4318c8c0-621f-45c6-8fa9-7deb38c532ab'),
(3308,17,7058,NULL,7016,1,'2026-04-03 11:17:11','2026-04-03 11:17:11','9107694a-945e-4445-a59a-81d68f908c96'),
(3309,17,7059,NULL,7014,1,'2026-04-03 11:17:11','2026-04-03 11:17:11','e3e8463f-adc1-4f70-b86e-fd0866192064'),
(3310,10,7060,NULL,7016,1,'2026-04-03 11:17:11','2026-04-03 11:17:11','eb311f44-9b4d-4a82-bc03-60f9def0ac46'),
(3311,10,7061,NULL,7013,1,'2026-04-03 11:17:11','2026-04-03 11:17:11','1011cda4-74d0-48d8-964f-cef56bcd5e77'),
(3312,17,7061,NULL,7015,1,'2026-04-03 11:17:11','2026-04-03 11:17:11','706ba5cd-c5e7-44f6-8a74-fc468350b085'),
(3313,17,7073,NULL,7016,1,'2026-04-03 11:17:26','2026-04-03 11:17:26','ddb11c8c-c322-4640-953b-9361111cb795'),
(3319,13,7078,NULL,112,1,'2026-04-03 11:25:38','2026-04-03 11:25:38','e546ae9a-71ee-4936-a84b-8e005ca22440'),
(3320,13,7078,NULL,99,2,'2026-04-03 11:25:38','2026-04-03 11:25:38','7171d354-7c12-4791-8f79-77f12c6021e7'),
(3321,13,7078,NULL,89,3,'2026-04-03 11:25:38','2026-04-03 11:25:38','ad0d0b04-eab7-4a9a-a5ad-9840fea0b082'),
(3324,17,3086,NULL,5070,1,'2026-04-03 11:27:01','2026-04-03 11:27:01','ebc0464c-cf1a-4ca3-9ab5-62281bf910d4'),
(3325,17,7091,NULL,5070,1,'2026-04-03 11:27:01','2026-04-03 11:27:01','ce4eb52a-dbe1-41e2-9a3b-1cc2f1fff0ca'),
(3328,17,5108,NULL,6533,1,'2026-04-03 11:27:18','2026-04-03 11:27:18','e2bdf13c-cf66-424f-b172-4c21059094b7'),
(3329,17,7093,NULL,6533,1,'2026-04-03 11:27:18','2026-04-03 11:27:18','476adce3-22e9-4415-99ec-87a3178aac80'),
(3330,17,7094,NULL,6963,1,'2026-04-03 11:52:20','2026-04-03 11:52:20','d9a7da22-e069-4236-ad25-e1ec8d3a3203'),
(3331,17,7095,NULL,6963,1,'2026-04-03 11:52:20','2026-04-03 11:52:20','d59f4fbe-5391-49c2-af84-b65432427793'),
(3332,10,7096,NULL,6960,1,'2026-04-03 11:52:20','2026-04-03 11:52:20','cff1b098-7ef9-4359-8ec8-92718c7167ba'),
(3333,10,7097,NULL,6961,1,'2026-04-03 11:52:20','2026-04-03 11:52:20','8c04233f-d70a-44bc-92c6-2fb068978650'),
(3334,17,7097,NULL,6962,1,'2026-04-03 11:52:20','2026-04-03 11:52:20','498b4a1a-edea-46f8-931c-67d87c1e0560'),
(3335,13,7098,NULL,112,1,'2026-04-03 11:52:20','2026-04-03 11:52:20','3ad3854b-b3e7-40c4-b2d4-44352cf3a656'),
(3336,13,7098,NULL,99,2,'2026-04-03 11:52:20','2026-04-03 11:52:20','3347d339-9849-4537-ba75-8348e860567c'),
(3337,13,7098,NULL,89,3,'2026-04-03 11:52:20','2026-04-03 11:52:20','d689f66b-921f-44e1-9c91-7d4a0b7ba4a5'),
(3341,17,7074,NULL,7113,1,'2026-04-03 11:55:15','2026-04-03 11:55:15','8e444ae8-fb83-4bee-ae7c-541b1f5f96e0'),
(3342,17,7115,NULL,7113,1,'2026-04-03 11:55:15','2026-04-03 11:55:15','87d6c1b0-8a03-4a08-bb88-9aa3e74c69ae'),
(3356,17,7075,NULL,7113,1,'2026-04-03 12:19:57','2026-04-03 12:19:57','f37b7359-99b7-4354-8e15-70bd631deae6'),
(3357,10,7076,NULL,7110,1,'2026-04-03 12:19:57','2026-04-03 12:19:57','8c74846c-d97e-4931-9d97-20ad3eb296ca'),
(3358,10,7077,NULL,7112,1,'2026-04-03 12:19:57','2026-04-03 12:19:57','a933ccad-0a77-4d7a-b36e-a502823f19d4'),
(3359,17,7077,NULL,7114,1,'2026-04-03 12:19:57','2026-04-03 12:19:57','50b40912-5bd8-4835-9956-7fe72b50a295'),
(3360,17,7139,NULL,7113,1,'2026-04-03 12:19:57','2026-04-03 12:19:57','801725f0-c3d8-4486-bdb3-759151061513'),
(3361,17,7140,NULL,7113,1,'2026-04-03 12:19:58','2026-04-03 12:19:58','406d4c25-ac52-411b-b774-c94fabe03993'),
(3362,10,7141,NULL,7110,1,'2026-04-03 12:19:58','2026-04-03 12:19:58','4b2a19e6-eb03-4de9-b341-e448659e2fd0'),
(3363,10,7142,NULL,7112,1,'2026-04-03 12:19:58','2026-04-03 12:19:58','ea797e3f-6adb-4f7e-a805-ef5a8019cee2'),
(3364,17,7142,NULL,7114,1,'2026-04-03 12:19:58','2026-04-03 12:19:58','9c50a5a8-8606-44ee-a5d3-2b020d61354a'),
(3365,17,7152,NULL,7113,1,'2026-04-03 12:20:01','2026-04-03 12:20:01','a7dced71-bbd4-44a7-bf43-111b279c3c9d'),
(3366,17,7153,NULL,2006,1,'2026-04-03 12:20:16','2026-04-03 12:20:16','2b4eb6f7-44f2-4a8f-980d-5008cd3d8120'),
(3368,17,7165,NULL,4994,1,'2026-04-03 14:05:01','2026-04-03 14:05:01','a07ab4d3-56b7-41f2-aea7-e2aa0bffe633'),
(3370,2,7169,NULL,6347,1,'2026-04-03 14:06:16','2026-04-03 14:06:16','b2483772-851b-4d33-b532-7b1369a9dc9f'),
(3372,17,7173,NULL,4994,1,'2026-04-03 14:06:48','2026-04-03 14:06:48','bdea3148-64dc-4d46-906a-de196cf9f83e'),
(3374,17,7177,NULL,4994,1,'2026-04-03 14:07:22','2026-04-03 14:07:22','392897af-6ae4-47e6-92ad-09b89affe164'),
(3377,10,7182,NULL,4950,1,'2026-04-03 14:09:43','2026-04-03 14:09:43','4f594142-ec06-4e9f-afeb-d16afab39fdc'),
(3378,17,7183,NULL,4994,1,'2026-04-03 14:09:43','2026-04-03 14:09:43','2108e780-7e1d-42bc-bcc7-9fa3bee6b67b'),
(3380,17,7187,NULL,4994,1,'2026-04-03 14:10:18','2026-04-03 14:10:18','f1e34c0a-2745-45f2-b4e1-127f2a714989'),
(3382,17,7205,NULL,4084,1,'2026-04-06 09:49:38','2026-04-06 09:49:38','45813c13-8109-4066-96fc-c2bead0653aa'),
(3384,17,7209,NULL,4084,1,'2026-04-06 09:50:31','2026-04-06 09:50:31','bc67f349-aba4-4e81-807c-f32576b78b0f'),
(3388,17,7218,NULL,4886,1,'2026-04-06 09:54:01','2026-04-06 09:54:01','e03c428e-3ca9-4f1e-8e7e-c84a32fcfbe8'),
(3390,17,7222,NULL,4754,1,'2026-04-06 09:54:13','2026-04-06 09:54:13','9ef28fe5-eccb-497a-aeba-458d5a865488'),
(3392,17,7226,NULL,4446,1,'2026-04-06 09:54:27','2026-04-06 09:54:27','9e61457c-cf66-4916-a600-846b4b1841af'),
(3394,17,7230,NULL,6337,1,'2026-04-06 09:54:39','2026-04-06 09:54:39','c6a6a826-c0bf-4da1-b56d-3daf6e2d0a8f'),
(3396,17,7234,NULL,4893,1,'2026-04-06 09:54:51','2026-04-06 09:54:51','08ad68cb-fb93-4745-b025-e99e45ceb1b5'),
(3398,17,7238,NULL,4949,1,'2026-04-06 09:55:01','2026-04-06 09:55:01','337dd79c-c422-4ad1-9032-f62bc1cd6330'),
(3400,17,7242,NULL,6338,1,'2026-04-06 09:55:10','2026-04-06 09:55:10','bb6bee10-99f6-42aa-92fb-b77afe57a6db'),
(3402,17,7246,NULL,4084,1,'2026-04-06 09:55:23','2026-04-06 09:55:23','7b57d82f-00c5-479d-9827-971a5c8070ae'),
(3404,17,7250,NULL,6727,1,'2026-04-06 09:55:47','2026-04-06 09:55:47','e5b1808d-62fe-45f0-bfba-2c26652bc3b7'),
(3406,17,7254,NULL,6787,1,'2026-04-06 09:55:57','2026-04-06 09:55:57','8ce7c5b8-7511-4a15-9092-87023a567ec2'),
(3408,17,7258,NULL,6685,1,'2026-04-06 09:56:08','2026-04-06 09:56:08','4df44275-1a43-4c3d-8010-36e23ebf3f5d'),
(3410,17,7262,NULL,6567,1,'2026-04-06 09:56:18','2026-04-06 09:56:18','8d05d9f5-510b-405f-a065-89c79f0bf431'),
(3412,17,7266,NULL,7113,1,'2026-04-06 09:56:29','2026-04-06 09:56:29','74691de3-039b-4ef9-952f-9d50a6662ea0'),
(3414,17,7270,NULL,7016,1,'2026-04-06 09:56:41','2026-04-06 09:56:41','a60a600e-8430-4de6-8b8a-fb872a68d9b3'),
(3416,17,7274,NULL,6849,1,'2026-04-06 09:56:53','2026-04-06 09:56:53','e79959e6-1296-4493-a0a5-a792936bf588'),
(3418,17,7278,NULL,6963,1,'2026-04-06 09:57:04','2026-04-06 09:57:04','744f9395-2148-4145-820f-1c561e59bba7'),
(3420,17,7282,NULL,5070,1,'2026-04-06 09:57:14','2026-04-06 09:57:14','5542ca09-8941-4337-9186-243e008352ed'),
(3422,17,7286,NULL,6533,1,'2026-04-06 09:57:25','2026-04-06 09:57:25','95699853-f3a4-4633-8f11-32421f2a83d4'),
(3425,17,7300,NULL,4084,1,'2026-04-06 13:44:39','2026-04-06 13:44:39','915b5594-2494-47ac-9a69-5b567b0575de'),
(3426,2,7306,NULL,3953,1,'2026-04-06 13:44:39','2026-04-06 13:44:39','8a00bd60-2cb3-4793-a9b7-ea993c1f3aa0'),
(3427,17,7308,NULL,4084,1,'2026-04-06 13:44:43','2026-04-06 13:44:43','9d986e63-eb66-4d86-8e70-46c555dadab9'),
(3434,17,7316,NULL,4886,1,'2026-04-06 14:05:30','2026-04-06 14:05:30','0a743ed5-f62f-46e4-a426-7e7729acdace'),
(3435,10,7319,NULL,4888,1,'2026-04-06 14:05:30','2026-04-06 14:05:30','a1056806-bba8-4f68-a075-0b7f6f886fa6'),
(3436,17,7319,NULL,4887,1,'2026-04-06 14:05:30','2026-04-06 14:05:30','d3069867-6882-4280-b17e-87f97dd63935'),
(3437,2,7320,NULL,3953,1,'2026-04-06 14:05:30','2026-04-06 14:05:30','340f156d-5390-41b3-83cc-1a3853186d30'),
(3438,17,7322,NULL,4886,1,'2026-04-06 14:05:35','2026-04-06 14:05:35','e8d3f90d-c000-4752-923d-297774dc0fa5'),
(3440,17,7325,NULL,4754,1,'2026-04-06 14:05:50','2026-04-06 14:05:50','f7625c46-1d5e-45c6-aa4c-1bfe5ddb8bc2'),
(3442,17,7329,NULL,4446,1,'2026-04-06 15:41:30','2026-04-06 15:41:30','481b8146-be0f-49b5-94e0-9206439b8f8e'),
(3443,17,7331,NULL,4446,1,'2026-04-06 15:41:33','2026-04-06 15:41:33','42293c62-33ff-41e1-9dce-12409bceab82'),
(3445,17,7340,NULL,4446,1,'2026-04-06 15:44:54','2026-04-06 15:44:54','743652d9-ed61-451c-991a-27de8692111a'),
(3446,17,7342,NULL,4446,1,'2026-04-06 15:44:57','2026-04-06 15:44:57','95e049bc-5186-4595-98c3-b441d9c9d32d'),
(3448,17,7345,NULL,4446,1,'2026-04-06 15:45:24','2026-04-06 15:45:24','21d9eee3-d479-4687-aba8-6aa59bae1cf1'),
(3449,17,7347,NULL,4446,1,'2026-04-06 15:45:28','2026-04-06 15:45:28','2d89f606-2e5c-415b-8a80-5c1e6e10e17b'),
(3451,17,7360,NULL,4446,1,'2026-04-06 15:48:42','2026-04-06 15:48:42','7ab0398d-31bf-4a87-aec8-db86d07bbe73'),
(3453,17,7372,NULL,4446,1,'2026-04-06 15:49:45','2026-04-06 15:49:45','b3d5fd46-de38-46bb-adea-cf0fb218ad76'),
(3455,17,7380,NULL,4446,1,'2026-04-06 15:53:50','2026-04-06 15:53:50','9a19ba7e-b740-4571-91aa-8cecc3739cf4'),
(3457,17,7384,NULL,4446,1,'2026-04-06 15:54:53','2026-04-06 15:54:53','889c719c-9060-45ff-ba18-18328a39c844'),
(3461,17,7390,NULL,6337,1,'2026-04-06 20:27:46','2026-04-06 20:27:46','8afec31b-195f-4243-a1f7-40cb1a2cae27'),
(3462,10,7391,NULL,4630,1,'2026-04-06 20:27:46','2026-04-06 20:27:46','39ca4a2d-5a1c-445f-9f51-57ede4876c0c'),
(3463,17,7391,NULL,4628,1,'2026-04-06 20:27:46','2026-04-06 20:27:46','32537726-ecc9-45d3-95ce-e04ff09b3f26'),
(3464,2,7392,NULL,3953,1,'2026-04-06 20:27:46','2026-04-06 20:27:46','b1d4b42b-399a-4b6c-8f0b-b6f9015ec6bc'),
(3465,17,7395,NULL,6337,1,'2026-04-06 20:27:50','2026-04-06 20:27:50','185a054a-2d9d-44dc-b6ea-8d6ad1d7e188'),
(3467,17,7401,NULL,4949,1,'2026-04-06 20:30:42','2026-04-06 20:30:42','3db0f177-b9c4-4a58-b465-32310554a168'),
(3469,17,7412,NULL,4949,1,'2026-04-06 20:50:15','2026-04-06 20:50:15','875640f8-5271-4055-95fa-d662052ab29c'),
(3470,17,7418,NULL,4949,1,'2026-04-06 20:50:18','2026-04-06 20:50:18','e3198c97-5413-4568-bae1-27e978f0d121'),
(3476,17,7422,NULL,4949,1,'2026-04-06 20:53:52','2026-04-06 20:53:52','4fac80bc-27d2-42f1-8b29-40c8638e9bd4'),
(3477,10,7423,NULL,4950,1,'2026-04-06 20:53:52','2026-04-06 20:53:52','ae76a9b3-a792-4243-a173-fb983b89ad14'),
(3478,17,7423,NULL,4948,1,'2026-04-06 20:53:52','2026-04-06 20:53:52','3ae5c257-5de9-420c-a5ed-e5f1791ca663'),
(3479,17,7424,NULL,4949,1,'2026-04-06 20:53:55','2026-04-06 20:53:55','a61c4448-484c-439b-ae4b-d724f28701f3'),
(3483,17,7429,NULL,4893,1,'2026-04-06 20:58:45','2026-04-06 20:58:45','8f5de4e0-65ea-4574-8ba2-15da8c6fc7d9'),
(3484,10,7432,NULL,4537,1,'2026-04-06 20:58:45','2026-04-06 20:58:45','6061cdae-62c6-4574-a37b-02d63acaffd2'),
(3485,17,7432,NULL,4538,1,'2026-04-06 20:58:45','2026-04-06 20:58:45','ac07d5de-0559-4b8b-988d-cc2853f8a656'),
(3486,2,7433,NULL,3953,1,'2026-04-06 20:58:45','2026-04-06 20:58:45','94afebf7-3fe9-4666-b3d6-e30b336e81d1'),
(3487,17,7434,NULL,4893,1,'2026-04-06 20:58:49','2026-04-06 20:58:49','7de01d97-4f3d-449c-ab9e-67bc3cbd48cc'),
(3492,17,7444,NULL,6338,1,'2026-04-06 21:12:07','2026-04-06 21:12:07','05a570bd-d833-4b5b-9fa9-c53fb410d5e7'),
(3493,10,7451,NULL,3957,1,'2026-04-06 21:12:07','2026-04-06 21:12:07','b228e632-7379-4474-8317-cb09b52cd4b2'),
(3494,17,7451,NULL,3956,1,'2026-04-06 21:12:07','2026-04-06 21:12:07','ca16e15a-3924-4ba7-b0c6-27f45fe52490'),
(3495,2,7452,NULL,3953,1,'2026-04-06 21:12:07','2026-04-06 21:12:07','e3ed1031-e084-40f9-8377-6c675a84c80a'),
(3496,17,7453,NULL,6338,1,'2026-04-06 21:12:10','2026-04-06 21:12:10','addf51e0-e6d7-4d3f-9433-75c89bf8bfd5'),
(3502,17,7468,NULL,6344,1,'2026-04-06 21:26:55','2026-04-06 21:26:55','106c6de6-ea7c-461f-972a-30d46cafe5d8'),
(3503,10,7476,NULL,4375,1,'2026-04-06 21:26:56','2026-04-06 21:26:56','77162a09-099a-4c9c-a458-583eb44833fa'),
(3504,17,7476,NULL,4372,1,'2026-04-06 21:26:56','2026-04-06 21:26:56','03a20e19-4e73-4155-bf9d-5597cc9cf603'),
(3505,2,7477,NULL,3953,1,'2026-04-06 21:26:56','2026-04-06 21:26:56','4c628693-4a0d-44de-aef8-12c44a3000b5'),
(3506,17,7479,NULL,6344,1,'2026-04-06 21:26:59','2026-04-06 21:26:59','75ca3cd1-9b61-430e-990c-581fe6574fb2'),
(3510,17,7482,NULL,6963,1,'2026-04-07 08:18:03','2026-04-07 08:18:03','4c3756bb-a2e5-4eb4-9675-db13d9d21b68'),
(3511,10,7483,NULL,6961,1,'2026-04-07 08:18:03','2026-04-07 08:18:03','9f1b690c-0ef1-44cd-a1f0-fc56379a0da1'),
(3512,17,7483,NULL,6962,1,'2026-04-07 08:18:03','2026-04-07 08:18:03','4ebf5b1c-9d95-48ed-a11c-b3cc9f798790'),
(3516,17,7486,NULL,6963,1,'2026-04-07 09:16:09','2026-04-07 09:16:09','45dc151b-d31d-4d7a-bb3b-108ce3e053cc'),
(3517,10,7487,NULL,6961,1,'2026-04-07 09:16:09','2026-04-07 09:16:09','049c1720-d5be-496b-b5bc-bfd7de39b3f2'),
(3518,17,7487,NULL,6962,1,'2026-04-07 09:16:09','2026-04-07 09:16:09','fc2b4687-0a4b-4ffe-99ed-d7329d725c02'),
(3519,17,7488,NULL,6963,1,'2026-04-07 09:16:12','2026-04-07 09:16:12','a3998b20-dabf-478c-bbe6-c07fd97a9526'),
(3523,17,7491,NULL,6963,1,'2026-04-07 09:17:32','2026-04-07 09:17:32','153e2ef1-9482-4092-9eec-51c07c1ff4df'),
(3524,10,7492,NULL,6961,1,'2026-04-07 09:17:32','2026-04-07 09:17:32','367c101b-91f3-4614-90f7-7e5f3f10d656'),
(3525,17,7492,NULL,6962,1,'2026-04-07 09:17:32','2026-04-07 09:17:32','aeadc9c2-0012-42d7-bf82-bda50e82e47d'),
(3529,17,7495,NULL,6963,1,'2026-04-07 09:17:53','2026-04-07 09:17:53','e8066b16-636e-4abb-bdf3-d010c9d790cd'),
(3530,10,7496,NULL,6961,1,'2026-04-07 09:17:53','2026-04-07 09:17:53','d004d447-5d10-43a3-a227-890007d0e6da'),
(3531,17,7496,NULL,6962,1,'2026-04-07 09:17:53','2026-04-07 09:17:53','c6df21d5-503f-474b-8e03-322a2212d3b8'),
(3535,17,7499,NULL,6963,1,'2026-04-07 09:18:17','2026-04-07 09:18:17','c48d8351-af0e-4391-ab14-d07f5699a50f'),
(3536,10,7500,NULL,6961,1,'2026-04-07 09:18:17','2026-04-07 09:18:17','cb02891a-303d-4ce1-9cd9-99ae108fa458'),
(3537,17,7500,NULL,6962,1,'2026-04-07 09:18:17','2026-04-07 09:18:17','1d484d90-3831-4326-9c69-f49d3934dbb7'),
(3545,17,7507,NULL,7016,1,'2026-04-07 19:20:04','2026-04-07 19:20:04','c1c696c3-5839-4cf7-90a3-e1b3181c441f'),
(3546,17,7508,NULL,7014,1,'2026-04-07 19:20:04','2026-04-07 19:20:04','f2540528-d046-495a-8534-ab488f1b53a0'),
(3547,10,7509,NULL,7016,1,'2026-04-07 19:20:04','2026-04-07 19:20:04','7f951f5c-075c-4f29-a8c8-48990f5f1509'),
(3548,10,7510,NULL,7013,1,'2026-04-07 19:20:04','2026-04-07 19:20:04','2df02a5f-907e-4b2f-8597-6f44ab504a67'),
(3549,17,7510,NULL,7015,1,'2026-04-07 19:20:04','2026-04-07 19:20:04','caa7a0c9-e9b0-44ea-aef0-2c53084893db'),
(3550,17,7511,NULL,7016,1,'2026-04-07 19:20:08','2026-04-07 19:20:08','f87424dd-ac10-4072-bac1-50c657b4b4a5'),
(3552,17,7527,NULL,6963,1,'2026-04-13 08:55:16','2026-04-13 08:55:16','058bc49b-37b1-4ef0-9abf-27af9415570c'),
(3554,17,7541,NULL,6337,1,'2026-04-13 09:13:54','2026-04-13 09:13:54','8850cda8-073d-45d1-8709-cc243bcfe31c'),
(3556,17,7547,NULL,4754,1,'2026-04-13 09:16:00','2026-04-13 09:16:00','2fd16f1c-4e58-4625-81d1-39c8b8efcbfc'),
(3558,17,7553,NULL,4754,1,'2026-04-13 09:17:20','2026-04-13 09:17:20','bec9f687-06dd-4de1-a475-baedc83d0a51'),
(3559,17,7556,NULL,4754,1,'2026-04-13 09:18:56','2026-04-13 09:18:56','bdfba1a1-717a-461f-8672-e3ed112a6677'),
(3565,17,7560,NULL,4754,1,'2026-04-13 09:21:43','2026-04-13 09:21:43','7bfcfe46-1980-44fb-af0c-3029c297a044'),
(3566,10,7561,NULL,4753,1,'2026-04-13 09:21:43','2026-04-13 09:21:43','0ef0ecd5-e39d-4f40-a143-86c5cec1cbca'),
(3567,17,7561,NULL,4752,1,'2026-04-13 09:21:43','2026-04-13 09:21:43','cf70c355-d0a2-4a5e-8633-8cd8aab02f4f'),
(3571,17,7564,NULL,4754,1,'2026-04-13 09:22:47','2026-04-13 09:22:47','bf1e15cd-549d-49d2-931c-883a788e8982'),
(3572,10,7565,NULL,4753,1,'2026-04-13 09:22:47','2026-04-13 09:22:47','17605671-6249-495b-a53c-57ce391c3434'),
(3573,17,7565,NULL,4752,1,'2026-04-13 09:22:47','2026-04-13 09:22:47','238a34c9-b07c-46fa-bba6-8cc5b2a8ef88'),
(3577,17,7584,NULL,4754,1,'2026-04-13 09:29:39','2026-04-13 09:29:39','bc86c4c5-9dd5-46e2-b1cd-724d7d457508'),
(3578,10,7587,NULL,4753,1,'2026-04-13 09:29:39','2026-04-13 09:29:39','ecaf546f-a4ee-4f87-88b1-ba45536d6ff7'),
(3579,17,7587,NULL,4752,1,'2026-04-13 09:29:39','2026-04-13 09:29:39','f09ff26e-a5e6-499c-bb8c-481c5fd019d3'),
(3580,17,7599,NULL,4754,1,'2026-04-13 09:29:49','2026-04-13 09:29:49','54973f2e-0c98-4b2e-a855-2e3848b0fd89'),
(3582,17,7605,NULL,4893,1,'2026-04-13 09:34:35','2026-04-13 09:34:35','7ce0cd6b-9b33-4cdb-af85-f04c0f994b7d'),
(3584,17,7612,NULL,4886,1,'2026-04-13 09:36:40','2026-04-13 09:36:40','9e404c55-f536-40cc-8e2e-03eb26c2c389'),
(3585,17,7615,NULL,4886,1,'2026-04-13 09:36:42','2026-04-13 09:36:42','1d16a199-959f-4fda-b175-06571f8dae9d'),
(3588,17,7618,NULL,6567,1,'2026-04-13 09:39:48','2026-04-13 09:39:48','95f7d0d8-f147-4d66-95cb-6fbae9955289'),
(3589,17,7619,NULL,6567,1,'2026-04-13 09:39:48','2026-04-13 09:39:48','a3c625f9-4858-40a7-a484-e6fb5ad88408'),
(3597,17,7635,NULL,6567,1,'2026-04-13 10:30:04','2026-04-13 10:30:04','0d8fa470-7f64-4143-91e7-e29e00541c30'),
(3598,10,7636,NULL,6565,1,'2026-04-13 10:30:04','2026-04-13 10:30:04','ac2aff41-368a-4f3c-bd98-6fa843b8fce8'),
(3599,10,7637,NULL,6566,1,'2026-04-13 10:30:04','2026-04-13 10:30:04','1ab69718-80bc-4018-bc5a-19ae66b43196'),
(3600,17,7637,NULL,5075,1,'2026-04-13 10:30:04','2026-04-13 10:30:04','b6a5eca4-9a14-444c-abcb-8b2c06fb6d93'),
(3601,17,7646,NULL,6567,1,'2026-04-13 10:30:07','2026-04-13 10:30:07','77f0027b-dfe9-48b7-9935-b0e05cee5b3a'),
(3603,17,7653,NULL,4949,1,'2026-04-13 10:36:07','2026-04-13 10:36:07','578abe31-b2e0-4f4c-b1b9-a9084f5ec01f'),
(3604,17,7658,NULL,4949,1,'2026-04-13 10:36:09','2026-04-13 10:36:09','2d2288a1-bda7-4e44-a832-3b2ad26b221d'),
(3608,17,7677,NULL,6338,1,'2026-04-13 10:46:44','2026-04-13 10:46:44','0cf3ad3d-25fb-47f3-96cf-da2e7b5fd659'),
(3609,10,7678,NULL,3957,1,'2026-04-13 10:46:44','2026-04-13 10:46:44','c8a5a652-95bf-4fce-8251-bf65a60d2d2d'),
(3610,17,7678,NULL,3956,1,'2026-04-13 10:46:44','2026-04-13 10:46:44','78311f33-b68c-4e75-b044-0605c6de9f71'),
(3611,17,7690,NULL,6338,1,'2026-04-13 10:47:11','2026-04-13 10:47:11','8ebd1d1a-09b6-4cd7-a988-1275ecd85afc'),
(3613,17,7708,NULL,7016,1,'2026-04-13 11:22:17','2026-04-13 11:22:17','4a3b5984-9136-4449-8995-9dbb6c3c7b26'),
(3616,17,7726,NULL,7016,1,'2026-04-13 12:24:04','2026-04-13 12:24:04','028ed67a-ac79-4324-a50d-52aef7f472c1'),
(3618,17,7732,NULL,7016,1,'2026-04-13 12:26:24','2026-04-13 12:26:24','a499e7cf-fabe-43ea-b6d1-4ba1b1c78154'),
(3620,17,7737,NULL,6344,1,'2026-04-13 12:27:25','2026-04-13 12:27:25','61e49034-ce6a-45c8-9279-603ba3007d9c'),
(3622,17,7747,NULL,4084,1,'2026-04-13 12:44:41','2026-04-13 12:44:41','e60e32c0-30ea-4d55-a369-00f22303c561'),
(3623,17,7765,NULL,4084,1,'2026-04-13 12:47:41','2026-04-13 12:47:41','18fdb267-ec9c-4a75-aeb9-669cde2899ca'),
(3625,17,7781,NULL,4084,1,'2026-04-13 12:48:59','2026-04-13 12:48:59','e8bf3137-f7f3-42d7-be60-e35bc5de5781'),
(3627,17,7794,NULL,4084,1,'2026-04-13 12:50:11','2026-04-13 12:50:11','fceff72d-7642-41b5-81ed-26e3bbc84b65'),
(3630,17,7810,NULL,4084,1,'2026-04-13 12:54:27','2026-04-13 12:54:27','f38d3e5b-7a77-4bd7-bfe3-928521943df7'),
(3631,2,7811,NULL,3953,1,'2026-04-13 12:54:27','2026-04-13 12:54:27','112af847-4d56-41df-84e4-1947034f092f'),
(3636,17,7838,NULL,4446,1,'2026-04-13 13:01:09','2026-04-13 13:01:09','f780ef66-3085-4643-9820-3f513488dcec'),
(3637,10,7839,NULL,4448,1,'2026-04-13 13:01:09','2026-04-13 13:01:09','efce9d43-c3c3-42a2-a0c6-5e66f2a494cd'),
(3638,17,7839,NULL,4531,1,'2026-04-13 13:01:09','2026-04-13 13:01:09','9a5285bf-9399-46c5-9f1a-16cb12dceeb1'),
(3639,2,7840,NULL,3953,1,'2026-04-13 13:01:09','2026-04-13 13:01:09','22938258-95ca-4c28-8f68-f6a8a065964c'),
(3641,17,7853,NULL,48,1,'2026-04-15 14:53:22','2026-04-15 14:53:22','0a75aa2d-70af-448a-b374-c441762dc634'),
(3643,17,7855,NULL,48,1,'2026-04-15 15:00:52','2026-04-15 15:00:52','e1dd7c5c-5582-45f0-b4bb-b407047d35ae'),
(3645,17,7857,NULL,48,1,'2026-04-15 15:01:22','2026-04-15 15:01:22','d64fe948-3b68-4e9c-b446-58a18cce51c5'),
(3648,17,250,NULL,7858,1,'2026-04-15 15:02:17','2026-04-15 15:02:17','15e7a5e7-8238-4327-a6a8-51109f8e3e12'),
(3649,17,7860,NULL,7858,1,'2026-04-15 15:02:17','2026-04-15 15:02:17','3c00c4c4-86ab-47df-a9d5-5373aad5750e'),
(3651,17,7862,NULL,7858,1,'2026-04-15 15:03:09','2026-04-15 15:03:09','a7603fe6-ade7-43cc-b926-ec35e47efd26'),
(3654,17,252,NULL,4446,1,'2026-04-15 15:18:25','2026-04-15 15:18:25','2131cbcf-a070-429e-af44-a585437f5f86'),
(3655,17,7864,NULL,4446,1,'2026-04-15 15:18:25','2026-04-15 15:18:25','a1d4d66b-728d-4cb0-beaa-7325cc2e03d1'),
(3656,17,7865,NULL,4446,1,'2026-04-15 15:18:28','2026-04-15 15:18:28','eebb4dab-59eb-432b-a7a8-992776b3a628'),
(3658,17,7867,NULL,4446,1,'2026-04-15 15:19:04','2026-04-15 15:19:04','dab2d4e0-f512-486c-acd5-eb091e8a079a'),
(3659,17,7868,NULL,4446,1,'2026-04-15 15:19:14','2026-04-15 15:19:14','0e15e424-6c70-4c8c-9cbb-56e0eaf734bb'),
(3661,17,7870,NULL,4446,1,'2026-04-15 15:19:53','2026-04-15 15:19:53','0412d617-93ea-4a94-b639-531ecf99e572'),
(3663,17,7871,NULL,7876,1,'2026-04-15 15:26:00','2026-04-15 15:26:00','d9ef57a4-1115-4699-93f6-f5abf8baae11'),
(3664,17,7878,NULL,7876,1,'2026-04-15 15:26:00','2026-04-15 15:26:00','1eeed93d-e6aa-48f4-90bd-71155b5bee23'),
(3666,17,7880,NULL,6567,1,'2026-04-15 17:06:15','2026-04-15 17:06:15','3a32b96a-39d1-4287-ac07-74c1ae134ee5'),
(3667,17,7881,NULL,6567,1,'2026-04-15 17:06:15','2026-04-15 17:06:15','c15abb48-438f-46de-b976-1fcd73259cc3'),
(3671,17,7892,NULL,4754,1,'2026-04-15 17:20:20','2026-04-15 17:20:20','6107c82a-e664-4d40-9ccd-a57ecaf205be'),
(3672,2,7894,NULL,3953,1,'2026-04-15 17:20:20','2026-04-15 17:20:20','00f96570-9551-4d02-9aa8-1bac7eedd022'),
(3673,17,7896,NULL,4754,1,'2026-04-15 17:20:22','2026-04-15 17:20:22','d9041096-aef7-424c-8548-64abdc976c2a'),
(3675,17,7912,NULL,4754,1,'2026-04-15 17:26:19','2026-04-15 17:26:19','68b15701-dac2-4fab-b5f5-c60cc2e2f500'),
(3676,17,7916,NULL,4754,1,'2026-04-15 17:27:05','2026-04-15 17:27:05','5a20427b-c47b-4f1e-bce8-e7f99958eb8f'),
(3678,10,7933,NULL,4950,1,'2026-04-16 12:20:07','2026-04-16 12:20:07','44f51b1d-c1a3-4fae-8b21-03d53ec0227b'),
(3681,17,7938,NULL,6727,1,'2026-04-16 12:36:18','2026-04-16 12:36:18','7197854b-5acb-4d43-804b-d4e45fa235a5'),
(3682,17,7939,NULL,6727,1,'2026-04-16 12:36:18','2026-04-16 12:36:18','13376952-1615-4d9e-8f62-5957b42bb2fd'),
(3686,17,7945,NULL,6727,1,'2026-04-16 12:41:20','2026-04-16 12:41:20','f2af31cd-6ef1-43d7-a997-75eb1c8bd4ed'),
(3687,10,7946,NULL,6726,1,'2026-04-16 12:41:20','2026-04-16 12:41:20','e503942d-a143-42a4-aad8-07ccc2a90619'),
(3691,17,7949,NULL,6727,1,'2026-04-16 12:44:03','2026-04-16 12:44:03','b1627824-24ce-4a64-bfac-23fd578e700b'),
(3692,10,7950,NULL,5076,1,'2026-04-16 12:44:04','2026-04-16 12:44:04','8e5b75bc-463f-457e-9279-b9619b7fd5e8'),
(3693,17,7950,NULL,5075,1,'2026-04-16 12:44:04','2026-04-16 12:44:04','89659899-22e9-4bc8-88c4-adbb9033a23e'),
(3697,17,7959,NULL,6727,1,'2026-04-16 12:49:02','2026-04-16 12:49:02','6ea99687-4e79-4d9c-977e-a4d319f0283c'),
(3698,10,7960,NULL,5076,1,'2026-04-16 12:49:02','2026-04-16 12:49:02','017f9dd8-66ef-4fe0-869f-878a5064b66c'),
(3699,17,7960,NULL,5075,1,'2026-04-16 12:49:02','2026-04-16 12:49:02','9f8db7d9-6dc1-4f19-b07e-0ebbe36abe42'),
(3700,17,7967,NULL,6727,1,'2026-04-16 12:49:06','2026-04-16 12:49:06','5635120d-3e17-4c3c-9b97-8ac19600c0c6'),
(3706,17,8003,NULL,6685,1,'2026-04-16 13:20:34','2026-04-16 13:20:34','4c82b50a-e847-4360-8a09-7ebc80d225a3'),
(3707,17,8004,NULL,6686,1,'2026-04-16 13:20:34','2026-04-16 13:20:34','eaf765c9-f735-411b-b998-894bd7ec788e'),
(3708,10,8005,NULL,6684,1,'2026-04-16 13:20:34','2026-04-16 13:20:34','36af654f-539e-4a9f-8e20-4abdb417c060'),
(3709,10,8006,NULL,6685,1,'2026-04-16 13:20:34','2026-04-16 13:20:34','147475ec-1314-4679-add0-07b526711570'),
(3710,17,8006,NULL,5075,1,'2026-04-16 13:20:34','2026-04-16 13:20:34','47583a53-cf4f-4f7d-9fe3-02cf5c441f22'),
(3711,17,8015,NULL,6685,1,'2026-04-16 13:21:16','2026-04-16 13:21:16','f71ac847-806e-48eb-8e32-c9d743227a08'),
(3712,17,8016,NULL,6685,1,'2026-04-16 13:21:19','2026-04-16 13:21:19','c69b4857-6dd0-4491-aa40-87329ec3bd58'),
(3714,17,8020,NULL,6567,1,'2026-04-16 13:27:28','2026-04-16 13:27:28','05da39d0-7154-497d-80a8-fab75cd4797d'),
(3715,17,8023,NULL,6567,1,'2026-04-16 13:27:32','2026-04-16 13:27:32','a78d1a88-892f-44e3-992b-acd9ab9fd36b'),
(3719,17,8027,NULL,6787,1,'2026-04-16 13:28:51','2026-04-16 13:28:51','06ad438c-ca88-425e-8ec6-6a1f4b2cebc5'),
(3720,17,8028,NULL,6785,1,'2026-04-16 13:28:51','2026-04-16 13:28:51','6b13cf16-cd75-4705-a9ef-2f71192f56f5'),
(3721,17,8029,NULL,6787,1,'2026-04-16 13:40:55','2026-04-16 13:40:55','3ff3dc21-08c1-4c1e-aa8b-4630c9dc1cb5'),
(3729,17,8047,NULL,6849,1,'2026-04-16 13:51:08','2026-04-16 13:51:08','9ec8a458-60dc-4b87-af86-5a37a140bab2'),
(3730,17,8048,NULL,6847,1,'2026-04-16 13:51:08','2026-04-16 13:51:08','9d9d28ba-d59f-4d44-847f-64cc6fa5e9c9'),
(3731,10,8049,NULL,6846,1,'2026-04-16 13:51:08','2026-04-16 13:51:08','3a326adc-27ef-44b0-9519-f4204d3a32c3'),
(3732,10,8050,NULL,6848,1,'2026-04-16 13:51:08','2026-04-16 13:51:08','1db939ec-079f-40c7-b1b6-0ecd7236eda1'),
(3733,17,8050,NULL,5075,1,'2026-04-16 13:51:08','2026-04-16 13:51:08','100f208b-83be-440a-aacb-c77d63a8ac7e'),
(3737,17,8060,NULL,7016,1,'2026-04-16 13:55:16','2026-04-16 13:55:16','d316d4cf-6c7b-4147-a605-bf904b5908ad'),
(3738,10,8061,NULL,7013,1,'2026-04-16 13:55:16','2026-04-16 13:55:16','2574d12b-5def-47e6-bb90-8e23d614d3ff'),
(3739,17,8061,NULL,7015,1,'2026-04-16 13:55:16','2026-04-16 13:55:16','aed89b24-85b7-4459-a93d-c25377a59da8'),
(3741,17,8064,NULL,7016,1,'2026-04-16 13:55:58','2026-04-16 13:55:58','34ee2028-5358-464a-ae69-d64d37ce5c26'),
(3742,17,8066,NULL,7016,1,'2026-04-16 13:56:02','2026-04-16 13:56:02','cb45f31f-1770-4d23-9f08-b5f262324a91'),
(3744,17,8071,NULL,6344,1,'2026-04-16 13:57:12','2026-04-16 13:57:12','9e87b6f5-76e9-41ee-a6f2-4a25b840da03'),
(3752,17,8090,NULL,6533,1,'2026-04-16 14:17:03','2026-04-16 14:17:03','5f29bf7c-65ff-4e37-b167-bcaa6bcdb776'),
(3753,17,8091,NULL,6533,1,'2026-04-16 14:17:04','2026-04-16 14:17:04','05545afb-8bac-437a-b4c3-f1951e010425'),
(3754,10,8092,NULL,6538,1,'2026-04-16 14:17:04','2026-04-16 14:17:04','0e55907f-d97f-460a-a738-f4373d42debd'),
(3755,10,8093,NULL,6537,1,'2026-04-16 14:17:04','2026-04-16 14:17:04','72b2ac0c-213a-4d04-bc4c-552e9c2927be'),
(3756,17,8093,NULL,5075,1,'2026-04-16 14:17:04','2026-04-16 14:17:04','a5c8a024-c729-4f27-b646-f4219401f2b9'),
(3757,17,8102,NULL,6533,1,'2026-04-16 14:17:06','2026-04-16 14:17:06','5976ad40-77d5-4d7c-b815-9af3f75d8f60'),
(3764,17,8117,NULL,5070,1,'2026-04-16 14:33:57','2026-04-16 14:33:57','3e2a0753-1dfe-4ac0-b12c-3d693ff1c830'),
(3765,17,8118,NULL,5070,1,'2026-04-16 14:33:57','2026-04-16 14:33:57','842d380d-c33c-4766-b1b3-f5e8a9293aee'),
(3766,10,8119,NULL,5076,1,'2026-04-16 14:33:57','2026-04-16 14:33:57','4c9f92a1-3d63-469c-aba5-2a6e3c8bb14b'),
(3767,17,8119,NULL,5075,1,'2026-04-16 14:33:57','2026-04-16 14:33:57','0bc26cdf-19a6-475c-89c4-385e973fef7d'),
(3774,17,8152,NULL,7113,1,'2026-04-16 14:47:37','2026-04-16 14:47:37','3becf4f2-49e7-4422-ac36-b1a984e7d46f'),
(3775,17,8153,NULL,7113,1,'2026-04-16 14:47:37','2026-04-16 14:47:37','f52810e5-3db4-4597-90c3-34f8999ee92b'),
(3776,10,8154,NULL,7110,1,'2026-04-16 14:47:37','2026-04-16 14:47:37','a2a567a7-1b49-4ae2-a72b-03f68d45a621'),
(3777,10,8155,NULL,7112,1,'2026-04-16 14:47:37','2026-04-16 14:47:37','dc0213d5-6e6f-402c-9009-bdbf89138604'),
(3778,17,8155,NULL,7114,1,'2026-04-16 14:47:37','2026-04-16 14:47:37','80342842-ff64-4bdd-8388-5a716e5dece4'),
(3779,17,8165,NULL,7113,1,'2026-04-16 14:47:40','2026-04-16 14:47:40','cdc9c784-2b86-4b6b-b5f3-affb59eba316'),
(3781,2,8170,NULL,4118,1,'2026-04-16 14:51:26','2026-04-16 14:51:26','63535911-e530-4c1f-a979-b3771cb8200a'),
(3784,5,145,1,912,1,'2026-04-16 14:52:31','2026-04-16 14:52:31','2422d53a-987d-4bf1-8173-282f834d7e34'),
(3785,2,8177,NULL,4118,1,'2026-04-16 14:52:31','2026-04-16 14:52:31','185691f6-6640-4f7c-abd3-475dce5c9244'),
(3786,5,8179,1,912,1,'2026-04-16 14:52:31','2026-04-16 14:52:31','045388b7-9ba2-47d0-a966-31d8297c02ee'),
(3788,17,8190,NULL,5070,1,'2026-04-16 14:56:08','2026-04-16 14:56:08','d84dfa03-572c-45af-a4b8-1267a5ed068e'),
(3793,10,112,NULL,8195,1,'2026-04-17 11:47:28','2026-04-17 11:47:28','24f00927-d215-47e4-ba05-bcdfd7210492'),
(3794,11,112,NULL,8196,1,'2026-04-17 11:47:28','2026-04-17 11:47:28','300413d0-7dce-4c9f-9dcd-9b1a2f68c71c'),
(3795,10,8197,NULL,8195,1,'2026-04-17 11:47:28','2026-04-17 11:47:28','700a3dd0-f253-4305-918a-799e8b542c55'),
(3796,11,8197,NULL,8196,1,'2026-04-17 11:47:28','2026-04-17 11:47:28','2b98670f-6fec-466e-b0f4-b4a1a36308e8'),
(3801,10,99,NULL,8200,1,'2026-04-17 11:54:44','2026-04-17 11:54:44','22ce2731-7c86-40fa-972c-8cf86840a857'),
(3802,11,99,NULL,8199,1,'2026-04-17 11:54:44','2026-04-17 11:54:44','fc58fd96-c4af-4eae-88bc-3b8a0778511e'),
(3803,10,8201,NULL,8200,1,'2026-04-17 11:54:44','2026-04-17 11:54:44','9d1ffd33-6ee1-4047-837b-e8f099aec3a5'),
(3804,11,8201,NULL,8199,1,'2026-04-17 11:54:44','2026-04-17 11:54:44','f5db0814-1c43-4943-ae9f-7903d7e122ff'),
(3809,10,89,NULL,8203,1,'2026-04-17 12:06:35','2026-04-17 12:06:35','ef263b6f-e61a-4064-be8f-0522a52454a9'),
(3810,11,89,NULL,8204,1,'2026-04-17 12:06:35','2026-04-17 12:06:35','e0e0066f-4459-4277-9aff-583a595703e0'),
(3811,10,8205,NULL,8203,1,'2026-04-17 12:06:35','2026-04-17 12:06:35','3d28b37e-ee97-409c-b7ff-3f9f177990ce'),
(3812,11,8205,NULL,8204,1,'2026-04-17 12:06:35','2026-04-17 12:06:35','ef033bbc-1f0e-4e30-a0cd-3af4ee0d8c23'),
(3814,17,8223,NULL,4084,1,'2026-04-17 12:23:55','2026-04-17 12:23:55','6dd9e246-5989-4f2e-a151-cfe8d9a04cc2'),
(3816,17,8227,NULL,4084,1,'2026-04-17 12:24:07','2026-04-17 12:24:07','85177cbf-d572-4bb9-bc12-926043dda58f'),
(3818,17,8231,NULL,6344,1,'2026-04-17 12:24:16','2026-04-17 12:24:16','9dfd2bd9-72f3-425d-a79a-5f3cc85e40f9'),
(3820,17,8235,NULL,4886,1,'2026-04-17 12:24:25','2026-04-17 12:24:25','14878880-b34e-4423-9663-0e36756b5b22'),
(3822,17,8239,NULL,4754,1,'2026-04-17 12:24:36','2026-04-17 12:24:36','b9797884-f214-4d53-a912-e37c67e194ae'),
(3824,17,8243,NULL,4446,1,'2026-04-17 12:24:44','2026-04-17 12:24:44','8a0a8470-14ce-4e56-a84e-af56189b7e19'),
(3826,17,8247,NULL,6337,1,'2026-04-17 12:24:54','2026-04-17 12:24:54','484f17d2-1864-4509-aabb-6a7b4e4433ca'),
(3828,17,8251,NULL,4893,1,'2026-04-17 12:25:05','2026-04-17 12:25:05','3f425470-934c-43bc-93dd-0fa49a33fa45'),
(3830,17,8255,NULL,4949,1,'2026-04-17 12:25:15','2026-04-17 12:25:15','596beadd-114c-4fc4-87c6-2a522e814455'),
(3832,17,8259,NULL,6338,1,'2026-04-17 12:25:24','2026-04-17 12:25:24','24e4c16c-1b94-4d5a-a629-2fcf0ecf3bd3'),
(3834,17,8263,NULL,4084,1,'2026-04-17 16:14:57','2026-04-17 16:14:57','f7e2c55e-0883-4d6e-bf20-356fabec7d7c'),
(3836,17,8267,NULL,4084,1,'2026-04-17 16:19:31','2026-04-17 16:19:31','700c9dba-f777-4c46-9037-acbf223d400e'),
(3838,17,8271,NULL,4886,1,'2026-04-17 16:23:19','2026-04-17 16:23:19','a0b31feb-7888-4104-824e-4217a106e70e'),
(3840,17,8275,NULL,4886,1,'2026-04-17 16:27:55','2026-04-17 16:27:55','254d95da-f56c-420f-989b-a0e3cbb96fce'),
(3842,17,8279,NULL,4084,1,'2026-04-17 16:28:25','2026-04-17 16:28:25','43adf4b5-c914-4626-8376-a7c47b4ff35e'),
(3844,17,8283,NULL,4084,1,'2026-04-17 16:28:38','2026-04-17 16:28:38','27e14eb7-d2a6-4974-8a76-6d366f911a09'),
(3846,17,8287,NULL,6344,1,'2026-04-17 16:28:49','2026-04-17 16:28:49','8152b6e5-252c-43ea-a096-227ae692f7bd'),
(3848,17,8291,NULL,4886,1,'2026-04-17 16:28:58','2026-04-17 16:28:58','96265a07-7b19-47a2-83b5-0e4d50ee9535'),
(3850,17,8295,NULL,4754,1,'2026-04-17 16:29:09','2026-04-17 16:29:09','a3876475-5e7a-4a12-b725-e39e583f7b10'),
(3852,17,8299,NULL,4446,1,'2026-04-17 16:29:19','2026-04-17 16:29:19','d7951f18-bceb-4564-8670-99edec950f56'),
(3854,17,8303,NULL,6337,1,'2026-04-17 16:29:29','2026-04-17 16:29:29','b61dabca-1c2d-4c28-b430-0782113026f3'),
(3856,17,8307,NULL,4893,1,'2026-04-17 16:29:38','2026-04-17 16:29:38','eabe43ac-a91a-46cb-9641-173d515c77dd'),
(3858,17,8311,NULL,4949,1,'2026-04-17 16:29:46','2026-04-17 16:29:46','cc002333-475c-431c-a654-4e6624feeeb4'),
(3860,17,8315,NULL,6338,1,'2026-04-17 16:29:55','2026-04-17 16:29:55','079d9798-91e3-4f1f-8ef9-25280720c520'),
(3862,17,8319,NULL,4893,1,'2026-04-17 16:33:14','2026-04-17 16:33:14','02b0c035-7cde-4e54-b604-840c1db86cb4'),
(3864,17,8323,NULL,6963,1,'2026-04-20 19:03:57','2026-04-20 19:03:57','8cdf4a54-aafb-43d2-ac60-06027dd0b3c9'),
(3866,17,8327,NULL,7016,1,'2026-04-20 19:04:59','2026-04-20 19:04:59','16045ebf-d7b7-49a7-9b8c-e1e701080a3b'),
(3868,17,8331,NULL,7113,1,'2026-04-20 19:05:12','2026-04-20 19:05:12','333c1523-0c36-483e-8564-d1358a5dd4c5'),
(3870,17,8335,NULL,5070,1,'2026-04-20 19:05:23','2026-04-20 19:05:23','267b39ce-76c3-46ea-824c-ec285ac44872'),
(3872,17,8339,NULL,6685,1,'2026-04-20 19:05:34','2026-04-20 19:05:34','f9e8bffb-04b3-4980-acbb-fef9ec540000'),
(3874,17,8343,NULL,6727,1,'2026-04-20 19:05:48','2026-04-20 19:05:48','3c116f98-bac4-459d-92ac-70e2006047e2'),
(3876,17,8347,NULL,6787,1,'2026-04-20 19:08:02','2026-04-20 19:08:02','88dc2338-d92f-4b5a-84ce-48098d672385'),
(3878,17,8351,NULL,6567,1,'2026-04-20 19:08:22','2026-04-20 19:08:22','3960d004-c677-478d-8440-5806c9e3c27e'),
(3880,17,8355,NULL,6533,1,'2026-04-20 19:09:20','2026-04-20 19:09:20','d99f00d3-edcb-4b69-840e-6e27c81de15c'),
(3882,17,8359,NULL,6849,1,'2026-04-20 19:13:53','2026-04-20 19:13:53','a759d1f3-0bbb-4bde-836e-34e5fe66ff64'),
(3884,17,8363,NULL,6567,1,'2026-04-20 19:14:16','2026-04-20 19:14:16','6479a2ef-a652-4dbc-8044-8d9b866eea29'),
(3888,17,8368,NULL,4084,1,'2026-04-20 19:15:07','2026-04-20 19:15:07','0ca68e0b-cb75-45c0-916a-07b5614e18e4'),
(3889,10,8369,NULL,4105,1,'2026-04-20 19:15:07','2026-04-20 19:15:07','ed9e481a-68c6-4180-a62b-8ecab55dcd35'),
(3890,17,8369,NULL,4090,1,'2026-04-20 19:15:07','2026-04-20 19:15:07','de1d7dc5-3d1b-46c3-b0d4-9c9664de094b'),
(3894,17,8374,NULL,4084,1,'2026-04-20 19:15:28','2026-04-20 19:15:28','be3ee8f2-bdd2-4731-b038-a7f3a8310a19'),
(3895,10,8375,NULL,4105,1,'2026-04-20 19:15:28','2026-04-20 19:15:28','d406c438-4a74-4811-8439-82993356dae8'),
(3896,17,8375,NULL,4090,1,'2026-04-20 19:15:28','2026-04-20 19:15:28','c7deeaff-3b77-4457-87ef-f715b0883c72'),
(3900,17,8380,NULL,6344,1,'2026-04-20 19:16:22','2026-04-20 19:16:22','1931e0f8-8fc8-4683-b4ae-fc052dfa264c'),
(3901,10,8381,NULL,4375,1,'2026-04-20 19:16:22','2026-04-20 19:16:22','f47671f7-2fdd-4975-9ac6-6f5159f2990b'),
(3902,17,8381,NULL,4372,1,'2026-04-20 19:16:22','2026-04-20 19:16:22','33e52175-a13a-40a7-87fe-7c80030c00c8'),
(3906,17,8386,NULL,4886,1,'2026-04-20 19:16:43','2026-04-20 19:16:43','3ba255a2-a290-440b-8f07-44824a08d7c5'),
(3907,10,8387,NULL,4888,1,'2026-04-20 19:16:43','2026-04-20 19:16:43','760f942a-7400-4b8b-9cb1-91a81c420250'),
(3908,17,8387,NULL,4887,1,'2026-04-20 19:16:43','2026-04-20 19:16:43','393b8359-0075-4d0a-8539-8872e2109380'),
(3912,17,8392,NULL,4754,1,'2026-04-20 19:17:00','2026-04-20 19:17:00','021152ce-53b9-45f1-b921-bbccf0d91a61'),
(3913,10,8393,NULL,4753,1,'2026-04-20 19:17:00','2026-04-20 19:17:00','695f10e9-7913-432b-bb39-41b18bc28202'),
(3914,17,8393,NULL,4752,1,'2026-04-20 19:17:00','2026-04-20 19:17:00','fa1dae7a-578d-4ede-9e9e-19e1bf4dc71e'),
(3918,17,8398,NULL,4446,1,'2026-04-20 19:17:18','2026-04-20 19:17:18','f0fe43ea-1abe-456d-8261-3c053d05589b'),
(3919,10,8399,NULL,4448,1,'2026-04-20 19:17:18','2026-04-20 19:17:18','238826ab-56e4-402c-bc96-d07d84abf48b'),
(3920,17,8399,NULL,4531,1,'2026-04-20 19:17:18','2026-04-20 19:17:18','d237db96-8f97-4e43-94c4-0b4dc2ba8ada'),
(3924,17,8404,NULL,6337,1,'2026-04-20 19:17:35','2026-04-20 19:17:35','87985d66-dec4-48a0-9ec1-f3bde2c6878a'),
(3925,10,8405,NULL,4630,1,'2026-04-20 19:17:35','2026-04-20 19:17:35','58cafe70-fe10-49cc-b490-7e2d178f5801'),
(3926,17,8405,NULL,4628,1,'2026-04-20 19:17:35','2026-04-20 19:17:35','333769f6-7e07-481b-ac0a-ea40a206191f'),
(3930,17,8410,NULL,4893,1,'2026-04-20 19:17:50','2026-04-20 19:17:50','5bea4919-5f93-4db0-9d5e-568e5a17ee6e'),
(3931,10,8411,NULL,4537,1,'2026-04-20 19:17:50','2026-04-20 19:17:50','b4417ef9-9082-476b-8971-3f8f5937f438'),
(3932,17,8411,NULL,4538,1,'2026-04-20 19:17:50','2026-04-20 19:17:50','4a832522-d15f-47f9-8f36-d38129804193'),
(3936,17,8416,NULL,4949,1,'2026-04-20 19:18:06','2026-04-20 19:18:06','708177ee-5ce5-4afc-bba5-1c7032b2e923'),
(3937,10,8417,NULL,4950,1,'2026-04-20 19:18:06','2026-04-20 19:18:06','0a387f51-73de-49cb-95f7-a5563dd17839'),
(3938,17,8417,NULL,4948,1,'2026-04-20 19:18:06','2026-04-20 19:18:06','19c90781-0b81-4215-8b62-e37b2a2c009a'),
(3942,17,8422,NULL,6338,1,'2026-04-20 19:18:24','2026-04-20 19:18:24','df571e51-c43b-4850-98e1-46dbf198969f'),
(3943,10,8423,NULL,3957,1,'2026-04-20 19:18:24','2026-04-20 19:18:24','93756289-cfdc-4e7b-9907-07c0218e6e68'),
(3944,17,8423,NULL,3956,1,'2026-04-20 19:18:24','2026-04-20 19:18:24','bbea600a-8758-4e28-b53a-9113db3010cb'),
(3948,17,8428,NULL,4893,1,'2026-04-20 19:28:02','2026-04-20 19:28:02','a709c012-d943-4979-a915-50048f2ba2f8'),
(3949,10,8429,NULL,4537,1,'2026-04-20 19:28:02','2026-04-20 19:28:02','8a8894b7-f1a8-48ce-83cc-376c94ecb82f'),
(3950,17,8429,NULL,4538,1,'2026-04-20 19:28:02','2026-04-20 19:28:02','cbb829b7-8ed8-4e90-b39e-25a9ea7c8f2a');
/*!40000 ALTER TABLE `relations` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `revisions`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `revisions` WRITE;
/*!40000 ALTER TABLE `revisions` DISABLE KEYS */;
INSERT INTO `revisions` VALUES
(21,89,1,1,''),
(23,89,1,2,'Applied “Draft 1”'),
(25,99,1,1,''),
(26,99,1,2,'Applied “Draft 1”'),
(28,89,1,3,'Applied “Draft 1”'),
(29,99,1,3,'Applied “Draft 1”'),
(30,112,1,1,''),
(31,112,1,2,'Applied “Draft 1”'),
(32,99,1,4,''),
(34,89,1,4,'Applied “Draft 1”'),
(36,112,1,3,'Applied “Draft 1”'),
(37,99,1,5,''),
(38,89,1,5,'Applied “Draft 1”'),
(39,89,1,6,'Applied “Draft 1”'),
(42,99,1,6,'Applied “Draft 1”'),
(43,99,1,7,'Applied “Draft 1”'),
(53,99,1,8,'Applied “Draft 1”'),
(54,99,1,9,'Applied “Draft 1”'),
(90,250,1,1,''),
(91,252,1,1,''),
(120,319,1,1,''),
(121,322,1,1,''),
(122,324,1,1,''),
(123,326,1,1,''),
(128,326,1,2,'Applied “Draft 1”'),
(129,322,1,2,'Applied “Draft 1”'),
(130,322,1,3,'Applied “Draft 1”'),
(265,658,1,1,NULL),
(281,655,1,2,NULL),
(282,656,1,3,NULL),
(319,785,1,1,NULL),
(320,786,1,1,NULL),
(321,787,1,1,NULL),
(322,788,1,1,NULL),
(323,789,1,1,NULL),
(324,790,1,1,NULL),
(341,112,1,4,'Applied “Draft 1”'),
(359,887,1,1,NULL),
(360,887,1,2,NULL),
(361,887,1,3,NULL),
(362,887,1,4,'Applied “Draft 1”'),
(363,887,1,5,NULL),
(364,887,1,6,'Applied “Draft 1”'),
(365,901,1,1,NULL),
(366,902,1,1,NULL),
(367,903,1,1,NULL),
(368,904,1,1,NULL),
(369,887,1,7,'Applied “Draft 1”'),
(370,912,1,1,NULL),
(385,947,1,1,NULL),
(389,961,1,1,NULL),
(391,963,1,1,NULL),
(393,965,1,1,NULL),
(444,1098,1,1,''),
(445,1099,1,1,NULL),
(446,1100,1,1,NULL),
(447,1101,1,1,NULL),
(448,1102,1,1,NULL),
(449,1108,1,1,''),
(450,1109,1,1,NULL),
(451,1110,1,1,NULL),
(452,1111,1,1,NULL),
(453,1112,1,1,NULL),
(454,1118,1,1,''),
(455,1119,1,1,NULL),
(456,1120,1,1,NULL),
(457,1121,1,1,NULL),
(458,1122,1,1,NULL),
(459,1128,1,1,''),
(460,1129,1,1,NULL),
(461,1132,1,1,''),
(462,1133,1,1,NULL),
(520,1286,1,1,''),
(555,912,1,2,'Applied “Draft 1”'),
(556,1367,1,1,NULL),
(557,912,1,3,'Applied “Draft 1”'),
(558,1372,1,1,NULL),
(559,912,1,4,'Applied “Draft 1”'),
(560,1385,1,1,NULL),
(561,1386,1,1,NULL),
(562,1387,1,1,NULL),
(563,1388,1,1,NULL),
(564,1389,1,1,NULL),
(565,1390,1,1,NULL),
(566,1391,1,1,NULL),
(567,1392,1,1,NULL),
(568,1393,1,1,NULL),
(569,912,1,5,'Applied “Draft 1”'),
(570,1367,1,2,NULL),
(571,1407,1,1,NULL),
(574,912,1,6,NULL),
(575,1417,1,1,NULL),
(836,1965,1,1,NULL),
(848,1977,1,1,NULL),
(864,1964,1,2,NULL),
(865,1966,1,2,NULL),
(876,2061,1,1,NULL),
(878,2020,1,3,NULL),
(1331,3086,1,1,''),
(1332,3087,1,1,NULL),
(1333,3088,1,1,NULL),
(1334,3089,1,1,NULL),
(1335,3090,1,1,NULL),
(1336,3091,1,1,NULL),
(1337,3092,1,1,NULL),
(1338,3093,1,1,NULL),
(1339,3116,1,1,NULL),
(1340,3117,1,1,NULL),
(1341,3118,1,1,NULL),
(1342,3119,1,1,NULL),
(1343,3120,1,1,NULL),
(1344,3121,1,1,NULL),
(1345,3122,1,1,NULL),
(1346,3102,1,1,NULL),
(1406,3086,1,2,'Applied “Draft 1”'),
(1407,3093,1,2,NULL),
(1414,3086,1,3,'Applied “Draft 1”'),
(1415,3093,1,3,NULL),
(1482,3086,1,4,'Applied “Draft 1”'),
(1483,3089,1,2,NULL),
(1484,3086,1,5,'Applied “Draft 1”'),
(1485,3086,1,6,'Applied “Draft 1”'),
(1486,3089,1,3,NULL),
(1487,3086,1,7,'Applied “Draft 1”'),
(1488,3089,1,4,NULL),
(1489,3086,1,8,'Applied “Draft 1”'),
(1490,3089,1,5,NULL),
(1491,3086,1,9,'Applied “Draft 1”'),
(1492,3089,1,6,NULL),
(1493,3086,1,10,'Applied “Draft 1”'),
(1494,3089,1,7,NULL),
(1495,3086,1,11,'Applied “Draft 1”'),
(1496,3089,1,8,NULL),
(1497,3086,1,12,'Applied “Draft 1”'),
(1498,3088,1,2,NULL),
(1499,3086,1,13,'Applied “Draft 1”'),
(1500,3088,1,3,NULL),
(1501,3086,1,14,'Applied “Draft 1”'),
(1502,3088,1,4,NULL),
(1503,3086,1,15,'Applied “Draft 1”'),
(1504,3090,1,2,NULL),
(1505,3086,1,16,'Applied “Draft 1”'),
(1506,3086,1,17,'Applied “Draft 1”'),
(1507,3090,1,3,NULL),
(1508,3086,1,18,'Applied “Draft 1”'),
(1509,3090,1,4,NULL),
(1510,3086,1,19,'Applied “Draft 1”'),
(1511,3090,1,5,NULL),
(1512,3086,1,20,'Applied “Draft 1”'),
(1513,3089,1,9,NULL),
(1514,3086,1,21,'Applied “Draft 1”'),
(1515,3089,1,10,NULL),
(1516,3086,1,22,'Applied “Draft 1”'),
(1517,3089,1,11,NULL),
(1518,3086,1,23,'Applied “Draft 1”'),
(1519,3090,1,6,NULL),
(1520,3086,1,24,'Applied “Draft 1”'),
(1521,3090,1,7,NULL),
(1522,3086,1,25,'Applied “Draft 1”'),
(1523,3090,1,8,NULL),
(1524,3086,1,26,'Applied “Draft 1”'),
(1525,3090,1,9,NULL),
(1526,3086,1,27,'Applied “Draft 1”'),
(1527,3093,1,4,NULL),
(1528,3116,1,2,NULL),
(1529,3117,1,2,NULL),
(1530,3118,1,2,NULL),
(1531,3119,1,2,NULL),
(1532,3120,1,2,NULL),
(1533,3121,1,2,NULL),
(1534,3122,1,2,NULL),
(1535,3086,1,28,'Applied “Draft 1”'),
(1536,3102,1,2,NULL),
(1537,3086,1,29,'Applied “Draft 1”'),
(1538,3102,1,3,NULL),
(1545,1952,1,5,NULL),
(1547,1953,1,3,NULL),
(1551,1957,1,3,NULL),
(1558,1951,1,11,'Applied “Draft 1”'),
(1559,1958,1,4,NULL),
(1560,1951,1,12,'Applied “Draft 1”'),
(1561,1958,1,5,NULL),
(1562,1951,1,13,'Applied “Draft 1”'),
(1563,2020,1,4,NULL),
(1564,1951,1,14,'Applied “Draft 1”'),
(1565,2020,1,5,NULL),
(1566,1951,1,15,'Applied “Draft 1”'),
(1567,2020,1,6,NULL),
(1568,1951,1,16,'Applied “Draft 1”'),
(1569,2020,1,7,NULL),
(1570,1951,1,17,'Applied “Draft 1”'),
(1571,2020,1,8,NULL),
(1572,1951,1,18,'Applied “Draft 1”'),
(1573,1964,1,3,NULL),
(1574,1951,1,19,'Applied “Draft 1”'),
(1575,1964,1,4,NULL),
(1576,1951,1,20,'Applied “Draft 1”'),
(1577,1966,1,3,NULL),
(1588,2061,1,2,NULL),
(1589,1951,1,21,'Applied “Draft 1”'),
(1590,1977,1,2,NULL),
(1591,1951,1,22,'Applied “Draft 1”'),
(1592,1952,1,6,NULL),
(1593,1951,1,23,'Applied “Draft 1”'),
(1594,1953,1,4,NULL),
(1595,3783,1,1,NULL),
(1596,3784,1,1,NULL),
(1597,3785,1,1,NULL),
(1598,3786,1,1,NULL),
(1599,1951,1,24,'Applied “Draft 1”'),
(1600,1952,1,7,NULL),
(1601,1953,1,5,NULL),
(1602,1957,1,4,NULL),
(1603,1951,1,25,'Applied “Draft 1”'),
(1604,1958,1,6,NULL),
(1609,2020,1,9,NULL),
(1610,1964,1,5,NULL),
(1611,1951,1,26,'Applied “Draft 1”'),
(1612,1953,1,6,NULL),
(1613,1966,1,4,NULL),
(1616,1951,1,27,'Applied “Draft 1”'),
(1617,1958,1,7,NULL),
(1620,3918,1,1,NULL),
(1621,3906,1,1,NULL),
(1622,1951,1,28,'Applied “Draft 1”'),
(1623,1951,1,29,'Applied “Draft 1”'),
(1624,1951,1,30,'Applied “Draft 1”'),
(1625,1958,1,8,NULL),
(1626,3929,1,1,NULL),
(1627,3937,1,1,NULL),
(1628,3918,1,2,NULL),
(1629,3906,1,2,NULL),
(1630,2020,1,10,NULL),
(1631,1951,1,31,'Applied “Draft 1”'),
(1632,1964,1,6,NULL),
(1633,1951,1,32,'Applied “Draft 1”'),
(1634,1964,1,7,NULL),
(1635,1951,1,33,'Applied “Draft 1”'),
(1636,2020,1,11,NULL),
(1637,1964,1,8,NULL),
(1638,1951,1,34,''),
(1639,1951,1,35,'Applied “Draft 1”'),
(1640,1953,1,7,NULL),
(1641,3968,1,1,NULL),
(1642,3969,1,1,NULL),
(1643,3970,1,1,NULL),
(1644,1957,1,5,NULL),
(1645,1951,1,36,'Applied “Draft 1”'),
(1646,1958,1,9,NULL),
(1647,1951,1,37,'Applied “Draft 1”'),
(1648,1951,1,38,''),
(1649,3086,1,30,'Applied “Draft 1”'),
(1650,3089,1,12,NULL),
(1651,3088,1,5,NULL),
(1652,3090,1,10,NULL),
(1653,3086,1,31,''),
(1654,3086,1,32,NULL),
(1655,3086,1,33,'Applied “Draft 1”'),
(1656,3089,1,13,NULL),
(1657,3090,1,11,NULL),
(1658,3086,1,34,'Applied “Draft 1”'),
(1659,3090,1,12,NULL),
(1660,3086,1,35,'Applied “Draft 1”'),
(1661,3089,1,14,NULL),
(1662,1951,1,39,'Applied “Draft 1”'),
(1663,1952,1,8,NULL),
(1664,1951,1,40,'Applied “Draft 1”'),
(1665,1951,1,41,'Applied “Draft 1”'),
(1666,1977,1,3,NULL),
(1667,4026,1,1,''),
(1668,4027,1,1,NULL),
(1669,4028,1,1,NULL),
(1670,4029,1,1,NULL),
(1671,4030,1,1,NULL),
(1672,4031,1,1,NULL),
(1673,4032,1,1,NULL),
(1674,4033,1,1,NULL),
(1675,4034,1,1,NULL),
(1676,4035,1,1,NULL),
(1677,4036,1,1,NULL),
(1678,4037,1,1,NULL),
(1679,4038,1,1,NULL),
(1680,4039,1,1,NULL),
(1681,4040,1,1,NULL),
(1682,4041,1,1,NULL),
(1683,4042,1,1,NULL),
(1684,4043,1,1,NULL),
(1685,4044,1,1,NULL),
(1686,4045,1,1,NULL),
(1687,4046,1,1,NULL),
(1688,4047,1,1,NULL),
(1689,4048,1,1,NULL),
(1690,4049,1,1,NULL),
(1691,4050,1,1,NULL),
(1692,4051,1,1,NULL),
(1693,4052,1,1,NULL),
(1694,4053,1,1,NULL),
(1695,4026,1,2,'Applied “Draft 1”'),
(1696,4027,1,2,NULL),
(1697,4028,1,2,NULL),
(1698,4029,1,2,NULL),
(1699,4030,1,2,NULL),
(1700,4031,1,2,NULL),
(1701,4032,1,2,NULL),
(1702,4033,1,2,NULL),
(1703,4038,1,2,NULL),
(1706,144,1,4,NULL),
(1707,145,1,2,NULL),
(1712,4026,1,3,'Applied “Draft 1”'),
(1713,4033,1,3,NULL),
(1718,1951,1,42,'Applied “Draft 1”'),
(1719,1964,1,9,NULL),
(1720,4026,1,4,'Applied “Draft 1”'),
(1721,4033,1,4,NULL),
(1722,4173,1,1,NULL),
(1726,4038,1,3,NULL),
(1727,4039,1,2,NULL),
(1728,4026,1,5,'Applied “Draft 1”'),
(1729,4039,1,3,NULL),
(1730,1951,1,43,'Applied “Draft 1”'),
(1731,1964,1,10,NULL),
(1732,1951,1,44,'Applied “Draft 1”'),
(1733,1964,1,11,NULL),
(1734,4026,1,6,'Applied “Draft 1”'),
(1735,4038,1,4,NULL),
(1736,4039,1,4,NULL),
(1737,4041,1,2,NULL),
(1738,4203,1,1,NULL),
(1739,4204,1,1,NULL),
(1740,4205,1,1,NULL),
(1741,4206,1,1,NULL),
(1742,4207,1,1,NULL),
(1743,4208,1,1,NULL),
(1744,4209,1,1,NULL),
(1745,4210,1,1,NULL),
(1746,4211,1,1,NULL),
(1747,4212,1,1,NULL),
(1748,4213,1,1,NULL),
(1749,4214,1,1,NULL),
(1750,4215,1,1,NULL),
(1751,4216,1,1,NULL),
(1752,4217,1,1,NULL),
(1753,4218,1,1,NULL),
(1755,4220,1,1,NULL),
(1756,4221,1,1,NULL),
(1758,4223,1,1,NULL),
(1759,4224,1,1,NULL),
(1760,4225,1,1,NULL),
(1761,4226,1,1,NULL),
(1762,4227,1,1,NULL),
(1763,4228,1,1,NULL),
(1764,4229,1,1,NULL),
(1765,4230,1,1,NULL),
(1766,4203,1,2,'Applied “Draft 1”'),
(1767,4216,1,2,NULL),
(1768,4218,1,2,NULL),
(1770,4220,1,2,NULL),
(1771,4221,1,2,NULL),
(1773,4223,1,2,NULL),
(1774,4224,1,2,NULL),
(1775,4225,1,2,NULL),
(1776,4226,1,2,NULL),
(1777,4227,1,2,NULL),
(1778,4203,1,3,''),
(1779,4203,1,4,'Applied “Draft 1”'),
(1780,4203,1,5,'Applied “Draft 1”'),
(1781,4216,1,3,NULL),
(1782,4303,1,1,''),
(1783,4304,1,1,NULL),
(1784,4305,1,1,NULL),
(1785,4306,1,1,NULL),
(1786,4307,1,1,NULL),
(1787,4308,1,1,NULL),
(1788,4309,1,1,NULL),
(1789,4310,1,1,NULL),
(1790,4311,1,1,NULL),
(1794,4315,1,1,NULL),
(1795,4316,1,1,NULL),
(1796,4317,1,1,NULL),
(1797,4318,1,1,NULL),
(1798,4319,1,1,NULL),
(1799,4320,1,1,NULL),
(1800,4321,1,1,NULL),
(1801,4322,1,1,NULL),
(1802,4323,1,1,NULL),
(1803,4324,1,1,NULL),
(1804,4325,1,1,NULL),
(1805,4326,1,1,NULL),
(1806,4327,1,1,NULL),
(1807,4328,1,1,NULL),
(1808,4303,1,2,'Applied “Draft 1”'),
(1809,4304,1,2,NULL),
(1810,4305,1,2,NULL),
(1811,4306,1,2,NULL),
(1812,4307,1,2,NULL),
(1813,4308,1,2,NULL),
(1814,4309,1,2,NULL),
(1815,4310,1,2,NULL),
(1816,4311,1,2,NULL),
(1820,4315,1,2,NULL),
(1821,4316,1,2,NULL),
(1822,4303,1,3,'Applied “Draft 1”'),
(1823,4318,1,2,NULL),
(1824,4319,1,2,NULL),
(1825,4320,1,2,NULL),
(1826,4321,1,2,NULL),
(1827,4322,1,2,NULL),
(1828,4323,1,2,NULL),
(1829,4324,1,2,NULL),
(1830,4325,1,2,NULL),
(1831,4326,1,2,NULL),
(1832,4327,1,2,NULL),
(1833,4418,1,1,NULL),
(1834,4419,1,1,NULL),
(1835,4420,1,1,NULL),
(1836,4421,1,1,NULL),
(1837,4422,1,1,NULL),
(1838,4423,1,1,NULL),
(1839,4424,1,1,NULL),
(1840,4425,1,1,NULL),
(1841,4426,1,1,NULL),
(1842,4427,1,1,NULL),
(1843,4428,1,1,NULL),
(1844,4429,1,1,NULL),
(1845,4430,1,1,NULL),
(1846,4431,1,1,NULL),
(1847,4432,1,1,NULL),
(1848,4433,1,1,NULL),
(1850,4435,1,1,NULL),
(1851,4436,1,1,NULL),
(1859,4445,1,1,NULL),
(1860,4418,1,2,'Applied “Draft 1”'),
(1861,4418,1,3,'Applied “Draft 1”'),
(1862,4430,1,2,NULL),
(1863,4418,1,4,''),
(1864,4502,1,1,NULL),
(1865,4503,1,1,NULL),
(1866,4504,1,1,NULL),
(1867,4505,1,1,NULL),
(1868,4506,1,1,NULL),
(1869,4507,1,1,NULL),
(1870,4508,1,1,NULL),
(1871,4509,1,1,NULL),
(1872,4510,1,1,NULL),
(1873,4511,1,1,NULL),
(1874,4512,1,1,NULL),
(1875,4513,1,1,NULL),
(1876,4514,1,1,NULL),
(1877,4515,1,1,NULL),
(1878,4516,1,1,NULL),
(1879,4517,1,1,NULL),
(1880,4518,1,1,NULL),
(1881,4519,1,1,NULL),
(1882,4520,1,1,NULL),
(1883,4521,1,1,NULL),
(1884,4522,1,1,NULL),
(1885,4523,1,1,NULL),
(1886,4524,1,1,NULL),
(1887,4525,1,1,NULL),
(1888,4526,1,1,NULL),
(1889,4527,1,1,NULL),
(1890,4529,1,1,NULL),
(1891,4502,1,2,'Applied “Draft 1”'),
(1892,4593,1,1,''),
(1893,4594,1,1,NULL),
(1894,4595,1,1,NULL),
(1895,4596,1,1,NULL),
(1896,4597,1,1,NULL),
(1897,4598,1,1,NULL),
(1898,4599,1,1,NULL),
(1899,4600,1,1,NULL),
(1900,4601,1,1,NULL),
(1901,4602,1,1,NULL),
(1902,4603,1,1,NULL),
(1903,4604,1,1,NULL),
(1904,4605,1,1,NULL),
(1905,4606,1,1,NULL),
(1906,4607,1,1,NULL),
(1907,4608,1,1,NULL),
(1908,4609,1,1,NULL),
(1909,4610,1,1,NULL),
(1910,4611,1,1,NULL),
(1911,4612,1,1,NULL),
(1912,4613,1,1,NULL),
(1913,4614,1,1,NULL),
(1914,4615,1,1,NULL),
(1915,4616,1,1,NULL),
(1916,4617,1,1,NULL),
(1917,4618,1,1,NULL),
(1918,4619,1,1,NULL),
(1919,4620,1,1,NULL),
(1920,4593,1,2,''),
(1921,4593,1,3,'Applied “Draft 1”'),
(1922,4600,1,2,NULL),
(1923,4601,1,2,NULL),
(1924,4602,1,2,NULL),
(1925,4603,1,2,NULL),
(1926,4604,1,2,NULL),
(1927,4605,1,2,NULL),
(1928,4606,1,2,NULL),
(1929,4608,1,2,NULL),
(1930,4609,1,2,NULL),
(1931,4610,1,2,NULL),
(1932,4611,1,2,NULL),
(1933,4612,1,2,NULL),
(1934,4613,1,2,NULL),
(1935,4614,1,2,NULL),
(1936,4615,1,2,NULL),
(1937,4593,1,4,''),
(1938,4593,1,5,'Applied “Draft 1”'),
(1939,4594,1,2,NULL),
(1940,4702,1,1,''),
(1941,4703,1,1,NULL),
(1942,4704,1,1,NULL),
(1943,4705,1,1,NULL),
(1944,4706,1,1,NULL),
(1945,4707,1,1,NULL),
(1946,4708,1,1,NULL),
(1947,4709,1,1,NULL),
(1948,4710,1,1,NULL),
(1949,4711,1,1,NULL),
(1950,4712,1,1,NULL),
(1951,4713,1,1,NULL),
(1952,4714,1,1,NULL),
(1953,4715,1,1,NULL),
(1954,4716,1,1,NULL),
(1955,4717,1,1,NULL),
(1957,4719,1,1,NULL),
(1958,4720,1,1,NULL),
(1960,4722,1,1,NULL),
(1961,4723,1,1,NULL),
(1963,4725,1,1,NULL),
(1964,4702,1,2,'Applied “Draft 1”'),
(1965,4703,1,2,NULL),
(1966,4704,1,2,NULL),
(1967,4705,1,2,NULL),
(1968,4706,1,2,NULL),
(1969,4707,1,2,NULL),
(1970,4708,1,2,NULL),
(1971,4709,1,2,NULL),
(1972,4714,1,2,NULL),
(1973,4715,1,2,NULL),
(1974,4717,1,2,NULL),
(1976,4719,1,2,NULL),
(1977,4720,1,2,NULL),
(1979,4722,1,2,NULL),
(1980,4723,1,2,NULL),
(1982,4780,1,1,NULL),
(1983,4781,1,1,NULL),
(1984,4782,1,1,NULL),
(1985,4702,1,3,''),
(1986,4805,1,1,''),
(1987,4806,1,1,NULL),
(1988,4807,1,1,NULL),
(1989,4808,1,1,NULL),
(1990,4809,1,1,NULL),
(1991,4810,1,1,NULL),
(1992,4811,1,1,NULL),
(1993,4812,1,1,NULL),
(1994,4813,1,1,NULL),
(1995,4814,1,1,NULL),
(1996,4815,1,1,NULL),
(1997,4816,1,1,NULL),
(1998,4817,1,1,NULL),
(1999,4818,1,1,NULL),
(2000,4819,1,1,NULL),
(2001,4820,1,1,NULL),
(2002,4821,1,1,NULL),
(2003,4822,1,1,NULL),
(2004,4823,1,1,NULL),
(2005,4824,1,1,NULL),
(2006,4825,1,1,NULL),
(2007,4826,1,1,NULL),
(2008,4827,1,1,NULL),
(2009,4805,1,2,'Applied “Draft 1”'),
(2010,4806,1,2,NULL),
(2011,4807,1,2,NULL),
(2012,4808,1,2,NULL),
(2013,4809,1,2,NULL),
(2014,4810,1,2,NULL),
(2015,4811,1,2,NULL),
(2016,4812,1,2,NULL),
(2017,4869,1,1,NULL),
(2018,4870,1,1,NULL),
(2019,4871,1,1,NULL),
(2020,4872,1,1,NULL),
(2021,4805,1,3,'Applied “Draft 1”'),
(2022,4813,1,2,NULL),
(2023,4805,1,4,''),
(2024,4502,1,3,'Applied “Draft 1”'),
(2025,4896,1,1,''),
(2026,4897,1,1,NULL),
(2027,4898,1,1,NULL),
(2028,4899,1,1,NULL),
(2029,4900,1,1,NULL),
(2030,4901,1,1,NULL),
(2031,4902,1,1,NULL),
(2032,4903,1,1,NULL),
(2033,4904,1,1,NULL),
(2034,4905,1,1,NULL),
(2035,4906,1,1,NULL),
(2036,4907,1,1,NULL),
(2037,4908,1,1,NULL),
(2038,4909,1,1,NULL),
(2039,4910,1,1,NULL),
(2040,4911,1,1,NULL),
(2041,4912,1,1,NULL),
(2042,4913,1,1,NULL),
(2043,4914,1,1,NULL),
(2044,4915,1,1,NULL),
(2045,4916,1,1,NULL),
(2046,4917,1,1,NULL),
(2047,4918,1,1,NULL),
(2048,4919,1,1,NULL),
(2049,4920,1,1,NULL),
(2050,4921,1,1,NULL),
(2051,4923,1,1,NULL),
(2052,4896,1,2,''),
(2053,1951,1,45,'Applied “Draft 1”'),
(2091,3086,1,36,'Applied “Draft 1”'),
(2092,3089,1,15,NULL),
(2093,3088,1,6,NULL),
(2094,3090,1,13,NULL),
(2095,3093,1,5,NULL),
(2096,3116,1,3,NULL),
(2097,3117,1,3,NULL),
(2098,3118,1,3,NULL),
(2099,3119,1,3,NULL),
(2100,3120,1,3,NULL),
(2101,3121,1,3,NULL),
(2102,3122,1,3,NULL),
(2103,5087,1,1,NULL),
(2104,3086,1,37,''),
(2105,3086,1,38,'Applied “Draft 1”'),
(2106,3089,1,16,NULL),
(2107,3090,1,14,NULL),
(2108,5108,1,1,''),
(2109,5109,1,1,NULL),
(2110,5110,1,1,NULL),
(2111,5111,1,1,NULL),
(2112,5112,1,1,NULL),
(2113,5113,1,1,NULL),
(2114,5114,1,1,NULL),
(2117,5117,1,1,NULL),
(2118,5118,1,1,NULL),
(2119,5119,1,1,NULL),
(2120,5120,1,1,NULL),
(2121,5121,1,1,NULL),
(2122,5122,1,1,NULL),
(2123,5108,1,2,'Applied “Draft 1”'),
(2124,5109,1,2,NULL),
(2125,5110,1,2,NULL),
(2126,5111,1,2,NULL),
(2127,3086,1,39,'Applied “Draft 1”'),
(2128,3089,1,17,NULL),
(2129,3086,1,40,''),
(2130,887,1,8,'Applied “Draft 1”'),
(2131,5161,1,1,NULL),
(2132,903,1,2,NULL),
(2133,887,1,9,'Applied “Draft 1”'),
(2134,887,1,10,''),
(2137,912,1,7,'Applied “Draft 1”'),
(2138,1367,1,3,NULL),
(2139,5178,1,1,NULL),
(2140,1385,1,2,NULL),
(2141,912,1,8,''),
(2144,5192,1,1,NULL),
(2147,143,1,20,NULL),
(2164,4203,1,6,'Applied “Draft 1”'),
(2165,4210,1,2,NULL),
(2170,1286,1,2,'Applied “Draft 1”'),
(2171,5256,1,1,NULL),
(2172,1286,1,3,'Applied “Draft 1”'),
(2173,5263,1,1,NULL),
(2174,5264,1,1,NULL),
(2175,5265,1,1,NULL),
(2221,604,1,31,NULL),
(2222,654,1,26,NULL),
(2223,657,1,23,NULL),
(2224,887,1,11,'Applied “Draft 1”'),
(2225,903,1,3,NULL),
(2232,5391,1,1,''),
(2233,5391,1,2,'Applied “Draft 1”'),
(2234,5397,1,1,NULL),
(2235,5391,1,3,'Applied “Draft 1”'),
(2236,5397,1,2,NULL),
(2237,5391,1,4,''),
(2238,5405,1,1,''),
(2239,5406,1,1,NULL),
(2240,5405,1,2,'Applied “Draft 1”'),
(2241,5406,1,2,NULL),
(2242,5405,1,3,''),
(2243,5391,1,5,'Applied “Draft 1”'),
(2244,5397,1,3,NULL),
(2245,5391,1,6,''),
(2246,5405,1,4,'Applied “Draft 1”'),
(2247,5406,1,3,NULL),
(2248,5405,1,5,'Applied “Draft 1”'),
(2249,5406,1,4,NULL),
(2250,5405,1,6,''),
(2251,5391,1,7,'Applied “Draft 1”'),
(2252,5397,1,4,NULL),
(2253,1951,1,46,'Applied “Draft 1”'),
(2254,1964,1,12,NULL),
(2255,1966,1,5,NULL),
(2266,1951,1,47,''),
(2267,4896,1,3,'Applied “Draft 1”'),
(2268,4911,1,2,NULL),
(2269,4912,1,2,NULL),
(2270,4913,1,2,NULL),
(2271,4914,1,2,NULL),
(2272,4915,1,2,NULL),
(2273,4916,1,2,NULL),
(2274,4917,1,2,NULL),
(2275,4918,1,2,NULL),
(2276,4919,1,2,NULL),
(2277,4920,1,2,NULL),
(2278,4921,1,2,NULL),
(2279,4026,1,7,'Applied “Draft 1”'),
(2280,4041,1,3,NULL),
(2281,4042,1,2,NULL),
(2282,4043,1,2,NULL),
(2283,4044,1,2,NULL),
(2284,4045,1,2,NULL),
(2285,4046,1,2,NULL),
(2286,4047,1,2,NULL),
(2287,4048,1,2,NULL),
(2288,4049,1,2,NULL),
(2289,4050,1,2,NULL),
(2290,4051,1,2,NULL),
(2291,4052,1,2,NULL),
(2292,4203,1,7,'Applied “Draft 1”'),
(2293,4218,1,3,NULL),
(2295,4220,1,3,NULL),
(2296,4221,1,3,NULL),
(2298,4223,1,3,NULL),
(2299,4224,1,3,NULL),
(2300,4225,1,3,NULL),
(2301,4226,1,3,NULL),
(2302,4227,1,3,NULL),
(2303,4303,1,4,'Applied “Draft 1”'),
(2304,4318,1,3,NULL),
(2305,4319,1,3,NULL),
(2306,4320,1,3,NULL),
(2307,4321,1,3,NULL),
(2308,5549,1,1,NULL),
(2309,4322,1,3,NULL),
(2310,4323,1,3,NULL),
(2311,4324,1,3,NULL),
(2312,4325,1,3,NULL),
(2313,4326,1,3,NULL),
(2314,4327,1,3,NULL),
(2315,4418,1,5,'Applied “Draft 1”'),
(2316,4433,1,2,NULL),
(2318,4435,1,2,NULL),
(2319,4436,1,2,NULL),
(2320,4418,1,6,'Applied “Draft 1”'),
(2321,4433,1,3,NULL),
(2322,4436,1,3,NULL),
(2324,4418,1,7,'Applied “Draft 1”'),
(2325,4433,1,4,NULL),
(2327,4435,1,3,NULL),
(2328,4436,1,4,NULL),
(2329,5580,1,1,NULL),
(2330,5594,1,1,NULL),
(2334,5598,1,1,NULL),
(2336,4502,1,4,'Applied “Draft 1”'),
(2337,4517,1,2,NULL),
(2338,4518,1,2,NULL),
(2339,4519,1,2,NULL),
(2340,4520,1,2,NULL),
(2341,4502,1,5,'Applied “Draft 1”'),
(2342,4517,1,3,NULL),
(2343,4520,1,3,NULL),
(2344,4521,1,2,NULL),
(2345,4522,1,2,NULL),
(2346,4523,1,2,NULL),
(2347,4524,1,2,NULL),
(2348,4525,1,2,NULL),
(2349,4526,1,2,NULL),
(2350,4527,1,2,NULL),
(2351,4593,1,6,'Applied “Draft 1”'),
(2352,4608,1,3,NULL),
(2353,4609,1,3,NULL),
(2354,4610,1,3,NULL),
(2355,4611,1,3,NULL),
(2356,4612,1,3,NULL),
(2357,5655,1,1,NULL),
(2358,4613,1,3,NULL),
(2359,4614,1,3,NULL),
(2360,4615,1,3,NULL),
(2361,5656,1,1,NULL),
(2362,4702,1,4,'Applied “Draft 1”'),
(2363,4717,1,3,NULL),
(2365,4719,1,3,NULL),
(2366,4720,1,3,NULL),
(2368,4722,1,3,NULL),
(2369,4723,1,3,NULL),
(2371,4780,1,2,NULL),
(2372,4781,1,2,NULL),
(2373,4782,1,2,NULL),
(2374,4805,1,5,'Applied “Draft 1”'),
(2375,4816,1,2,NULL),
(2376,4817,1,2,NULL),
(2377,4818,1,2,NULL),
(2378,4819,1,2,NULL),
(2379,4820,1,2,NULL),
(2380,4821,1,2,NULL),
(2381,4822,1,2,NULL),
(2382,4823,1,2,NULL),
(2383,4824,1,2,NULL),
(2384,4825,1,2,NULL),
(2385,4826,1,2,NULL),
(2386,5708,1,1,NULL),
(2387,912,1,9,'Applied “Draft 1”'),
(2388,1407,1,2,NULL),
(2389,912,1,10,''),
(2394,4203,1,8,'Applied “Draft 1”'),
(2395,5746,1,1,NULL),
(2396,5405,1,7,'Applied “Draft 1”'),
(2397,5391,1,8,'Applied “Draft 1”'),
(2398,5391,1,9,'Applied “Draft 1”'),
(2399,5405,1,8,'Applied “Draft 1”'),
(2400,1098,1,2,'Applied “Draft 1”'),
(2401,1098,1,3,'Applied “Draft 1”'),
(2402,4203,1,9,'Applied “Draft 1”'),
(2403,5770,1,1,''),
(2404,5772,1,1,''),
(2405,4702,1,5,'Applied “Draft 1”'),
(2406,4715,1,3,NULL),
(2407,4593,1,7,'Applied “Draft 1”'),
(2408,5779,1,1,''),
(2409,1132,1,2,'Applied “Draft 1”'),
(2410,5772,1,2,''),
(2411,1098,1,4,'Applied “Draft 1”'),
(2412,5772,1,3,''),
(2413,5779,1,2,'Applied “Draft 1”'),
(2414,5779,1,3,'Applied “Draft 1”'),
(2415,1118,1,2,'Applied “Draft 1”'),
(2416,5779,1,4,''),
(2417,5795,1,1,''),
(2428,302,1,2,NULL),
(2430,761,1,12,NULL),
(2440,867,1,13,NULL),
(2441,887,1,12,'Applied “Draft 1”'),
(2442,903,1,4,NULL),
(2443,4593,1,8,'Applied “Draft 1”'),
(2444,4620,1,2,NULL),
(2445,4702,1,6,'Applied “Draft 1”'),
(2446,4725,1,2,NULL),
(2447,4805,1,6,'Applied “Draft 1”'),
(2448,4827,1,2,NULL),
(2449,4303,1,5,'Applied “Draft 1”'),
(2450,4328,1,2,NULL),
(2451,4303,1,6,'Applied “Draft 1”'),
(2452,4328,1,3,NULL),
(2453,4418,1,8,'Applied “Draft 1”'),
(2454,4445,1,2,NULL),
(2455,4502,1,6,'Applied “Draft 1”'),
(2456,4529,1,2,NULL),
(2457,4896,1,4,'Applied “Draft 1”'),
(2458,4923,1,2,NULL),
(2459,3793,1,1,''),
(2460,3794,1,1,NULL),
(2461,3795,1,1,NULL),
(2462,3796,1,1,NULL),
(2463,3797,1,1,NULL),
(2464,3798,1,1,NULL),
(2465,3799,1,1,NULL),
(2466,3800,1,1,NULL),
(2467,3801,1,1,NULL),
(2468,3802,1,1,NULL),
(2469,3803,1,1,NULL),
(2470,3804,1,1,NULL),
(2471,3805,1,1,NULL),
(2472,3806,1,1,NULL),
(2473,3807,1,1,NULL),
(2474,3808,1,1,NULL),
(2475,3809,1,1,NULL),
(2476,3810,1,1,NULL),
(2477,3811,1,1,NULL),
(2478,3812,1,1,NULL),
(2479,3813,1,1,NULL),
(2480,3814,1,1,NULL),
(2481,3815,1,1,NULL),
(2482,3816,1,1,NULL),
(2483,3817,1,1,NULL),
(2484,3818,1,1,NULL),
(2485,3819,1,1,NULL),
(2486,3820,1,1,NULL),
(2487,3821,1,1,NULL),
(2488,3822,1,1,NULL),
(2489,3823,1,1,NULL),
(2490,3824,1,1,NULL),
(2491,1951,1,48,'Applied “Draft 1”'),
(2492,1977,1,4,NULL),
(2493,4203,1,10,'Applied “Draft 1”'),
(2494,4230,1,2,NULL),
(2495,4026,1,8,'Applied “Draft 1”'),
(2496,4053,1,2,NULL),
(2497,5108,1,3,'Applied “Draft 1”'),
(2498,5122,1,2,NULL),
(2499,3086,1,41,'Applied “Draft 1”'),
(2500,3102,1,4,NULL),
(2501,4702,1,7,'Applied “Draft 1”'),
(2502,4716,1,2,NULL),
(2503,4805,1,7,'Applied “Draft 1”'),
(2504,4815,1,2,NULL),
(2505,4896,1,5,'Applied “Draft 1”'),
(2506,5943,1,1,NULL),
(2507,4702,1,8,''),
(2508,4418,1,9,'Applied “Draft 1”'),
(2509,4432,1,2,NULL),
(2510,4593,1,9,'Applied “Draft 1”'),
(2511,4607,1,2,NULL),
(2512,1951,1,49,'Applied “Draft 1”'),
(2513,1965,1,2,NULL),
(2514,4203,1,11,'Applied “Draft 1”'),
(2515,4217,1,2,NULL),
(2516,4303,1,7,'Applied “Draft 1”'),
(2517,4317,1,2,NULL),
(2518,4026,1,9,'Applied “Draft 1”'),
(2519,4040,1,2,NULL),
(2520,4502,1,7,'Applied “Draft 1”'),
(2521,4516,1,2,NULL),
(2522,4026,1,10,'Applied “Draft 1”'),
(2523,4040,1,3,NULL),
(2524,4026,1,11,'Applied “Draft 1”'),
(2525,4040,1,4,NULL),
(2526,4026,1,12,'Applied “Draft 1”'),
(2527,4040,1,5,NULL),
(2528,4303,1,8,'Applied “Draft 1”'),
(2529,4317,1,3,NULL),
(2530,4805,1,8,'Applied “Draft 1”'),
(2531,4815,1,3,NULL),
(2532,4702,1,9,'Applied “Draft 1”'),
(2533,4716,1,3,NULL),
(2534,4203,1,12,'Applied “Draft 1”'),
(2535,4217,1,3,NULL),
(2536,4418,1,10,'Applied “Draft 1”'),
(2537,4432,1,3,NULL),
(2538,4593,1,10,'Applied “Draft 1”'),
(2539,4607,1,3,NULL),
(2540,4502,1,8,'Applied “Draft 1”'),
(2541,4516,1,3,NULL),
(2542,4896,1,6,'Applied “Draft 1”'),
(2543,5943,1,2,NULL),
(2544,1951,1,50,'Applied “Draft 1”'),
(2545,1965,1,3,NULL),
(2546,3793,1,2,'Applied “Draft 1”'),
(2547,3811,1,2,NULL),
(2549,750,1,2,NULL),
(2550,4026,1,13,'Applied “Draft 1”'),
(2551,4041,1,4,NULL),
(2555,774,1,5,NULL),
(2557,274,1,14,NULL),
(2560,843,1,7,NULL),
(2561,912,1,11,'Applied “Draft 1”'),
(2562,1407,1,3,NULL),
(2563,38,1,165,'Applied “Draft 1”'),
(2564,255,1,3,NULL),
(2565,4303,1,9,'Applied “Draft 1”'),
(2566,4303,1,10,'Applied “Draft 1”'),
(2567,4303,1,11,'Applied “Draft 1”'),
(2568,4702,1,10,'Applied “Draft 1”'),
(2569,4418,1,11,''),
(2570,4026,1,14,'Applied “Draft 1”'),
(2571,4502,1,9,'Applied “Draft 1”'),
(2572,4593,1,11,'Applied “Draft 1”'),
(2573,1951,1,51,''),
(2574,4203,1,13,''),
(2575,38,1,166,'Applied “Draft 1”'),
(2576,274,1,15,NULL),
(2578,38,1,167,'Applied “Draft 1”'),
(2579,274,1,16,NULL),
(2581,326,1,3,'Applied “Draft 1”'),
(2582,319,1,2,'Applied “Draft 1”'),
(2583,324,1,2,'Applied “Draft 1”'),
(2584,322,1,4,'Applied “Draft 1”'),
(2585,326,1,4,'Applied “Draft 1”'),
(2586,324,1,3,'Applied “Draft 1”'),
(2587,319,1,3,'Applied “Draft 1”'),
(2588,319,1,4,'Applied “Draft 1”'),
(2589,4026,1,15,'Applied “Draft 1”'),
(2590,38,1,168,'Applied “Draft 1”'),
(2591,604,1,32,NULL),
(2592,654,1,27,NULL),
(2593,656,1,4,NULL),
(2594,38,1,169,'Applied “Draft 1”'),
(2595,604,1,33,NULL),
(2596,654,1,28,NULL),
(2597,656,1,5,NULL),
(2598,38,1,170,'Applied “Draft 1”'),
(2599,761,1,13,NULL),
(2600,38,1,171,'Applied “Draft 1”'),
(2601,761,1,14,NULL),
(2602,38,1,172,'Applied “Draft 1”'),
(2603,274,1,17,NULL),
(2605,1132,1,3,'Applied “Draft 1”'),
(2606,1133,1,2,NULL),
(2607,5795,1,2,'Applied “Draft 1”'),
(2608,1132,1,4,'Applied “Draft 1”'),
(2609,5795,1,3,'Applied “Draft 1”'),
(2610,6157,1,1,''),
(2611,6158,1,1,NULL),
(2612,6159,1,1,NULL),
(2613,6160,1,1,NULL),
(2614,6166,1,1,''),
(2615,6167,1,1,NULL),
(2616,6168,1,1,NULL),
(2617,6156,1,1,''),
(2618,6174,1,1,''),
(2619,6175,1,1,NULL),
(2620,6179,1,1,''),
(2621,6180,1,1,NULL),
(2622,6181,1,1,NULL),
(2623,6182,1,1,NULL),
(2624,6183,1,1,NULL),
(2625,6156,1,2,'Applied “Draft 1”'),
(2626,6179,1,2,'Applied “Draft 1”'),
(2627,6182,1,2,NULL),
(2628,6196,1,1,''),
(2629,6197,1,1,NULL),
(2630,6198,1,1,NULL),
(2631,6199,1,1,NULL),
(2632,6196,1,2,'Applied “Draft 1”'),
(2633,6207,1,1,NULL),
(2634,6156,1,3,'Applied “Draft 1”'),
(2635,6212,1,1,''),
(2636,6213,1,1,NULL),
(2637,6216,1,1,''),
(2638,6217,1,1,NULL),
(2639,6218,1,1,NULL),
(2640,6219,1,1,NULL),
(2641,6224,1,1,''),
(2642,6225,1,1,NULL),
(2643,6226,1,1,NULL),
(2644,6227,1,1,NULL),
(2645,6232,1,1,''),
(2646,6233,1,1,NULL),
(2647,6211,1,1,''),
(2648,6232,1,2,'Applied “Draft 1”'),
(2649,6242,1,1,NULL),
(2650,6243,1,1,NULL),
(2651,6244,1,1,NULL),
(2652,6245,1,1,NULL),
(2653,6211,1,2,''),
(2654,6253,1,1,''),
(2655,6254,1,1,NULL),
(2656,6255,1,1,NULL),
(2657,6256,1,1,NULL),
(2658,6257,1,1,NULL),
(2659,6258,1,1,NULL),
(2660,6265,1,1,''),
(2661,6266,1,1,NULL),
(2662,6267,1,1,NULL),
(2663,6252,1,1,''),
(2664,38,1,173,'Applied “Draft 1”'),
(2665,143,1,21,NULL),
(2666,38,1,174,'Applied “Draft 1”'),
(2667,6278,1,1,NULL),
(2668,38,1,175,'Applied “Draft 1”'),
(2669,6278,1,2,NULL),
(2670,38,1,176,'Applied “Draft 1”'),
(2671,6278,1,3,NULL),
(2672,38,1,177,'Applied “Draft 1”'),
(2673,6278,1,4,NULL),
(2674,38,1,178,'Applied “Draft 1”'),
(2675,143,1,22,NULL),
(2676,38,1,179,'Applied “Draft 1”'),
(2677,843,1,8,NULL),
(2678,38,1,180,'Applied “Draft 1”'),
(2679,843,1,9,NULL),
(2680,38,1,181,'Applied “Draft 1”'),
(2681,843,1,10,NULL),
(2682,38,1,182,'Applied “Draft 1”'),
(2683,143,1,23,NULL),
(2684,38,1,183,'Applied “Draft 1”'),
(2685,143,1,24,NULL),
(2686,38,1,184,'Applied “Draft 1”'),
(2687,143,1,25,NULL),
(2688,38,1,185,'Applied “Draft 1”'),
(2689,38,1,186,''),
(2690,38,1,187,'Applied “Draft 1”'),
(2691,843,1,11,NULL),
(2692,6278,1,5,NULL),
(2693,38,1,188,'Applied “Draft 1”'),
(2694,4593,1,12,'Applied “Draft 1”'),
(2695,1951,1,52,'Applied “Draft 1”'),
(2696,4203,1,14,''),
(2697,4303,1,12,'Applied “Draft 1”'),
(2698,38,1,189,'Applied “Draft 1”'),
(2699,761,1,15,NULL),
(2700,6179,1,3,'Applied “Draft 1”'),
(2701,6232,1,3,'Applied “Draft 1”'),
(2702,6243,1,2,NULL),
(2703,6232,1,4,'Applied “Draft 1”'),
(2704,6242,1,2,NULL),
(2705,6253,1,2,'Applied “Draft 1”'),
(2706,6254,1,2,NULL),
(2707,6252,1,2,''),
(2708,6179,1,4,'Applied “Draft 1”'),
(2709,6216,1,2,'Applied “Draft 1”'),
(2710,6217,1,2,NULL),
(2711,6216,1,3,'Applied “Draft 1”'),
(2712,6219,1,2,NULL),
(2713,6196,1,3,'Applied “Draft 1”'),
(2714,6207,1,2,NULL),
(2715,5795,1,4,'Applied “Draft 1”'),
(2716,6156,1,4,'Applied “Draft 1”'),
(2717,6211,1,3,'Applied “Draft 1”'),
(2718,6196,1,4,'Applied “Draft 1”'),
(2719,6232,1,5,'Applied “Draft 1”'),
(2720,6216,1,4,'Applied “Draft 1”'),
(2721,6219,1,3,NULL),
(2722,6232,1,6,'Applied “Draft 1”'),
(2723,6233,1,2,NULL),
(2724,6242,1,3,NULL),
(2725,6243,1,3,NULL),
(2726,6244,1,2,NULL),
(2727,6245,1,2,NULL),
(2728,6232,1,7,'Applied “Draft 1”'),
(2729,6233,1,3,NULL),
(2730,6252,1,3,'Applied “Draft 1”'),
(2731,6196,1,5,'Applied “Draft 1”'),
(2732,6197,1,2,NULL),
(2733,6232,1,8,'Applied “Draft 1”'),
(2734,6244,1,3,NULL),
(2735,6224,1,2,'Applied “Draft 1”'),
(2736,6227,1,2,NULL),
(2737,6216,1,5,'Applied “Draft 1”'),
(2738,6217,1,3,NULL),
(2739,6216,1,6,'Applied “Draft 1”'),
(2740,6219,1,4,NULL),
(2741,6216,1,7,'Applied “Draft 1”'),
(2742,6218,1,2,NULL),
(2743,6216,1,8,'Applied “Draft 1”'),
(2744,6217,1,4,NULL),
(2745,38,1,190,'Applied “Draft 1”'),
(2746,604,1,34,NULL),
(2747,654,1,29,NULL),
(2748,656,1,6,NULL),
(2749,38,1,191,'Applied “Draft 1”'),
(2750,274,1,18,NULL),
(2751,6459,1,1,NULL),
(2752,6448,1,1,NULL),
(2753,6460,1,1,NULL),
(2754,6461,1,1,NULL),
(2755,6462,1,1,NULL),
(2756,6463,1,1,NULL),
(2757,38,1,192,''),
(2758,38,1,193,'Applied “Draft 1”'),
(2759,843,1,12,NULL),
(2760,38,1,194,'Applied “Draft 1”'),
(2761,761,1,16,NULL),
(2762,38,1,195,'Applied “Draft 1”'),
(2763,867,1,14,NULL),
(2764,38,1,196,'Applied “Draft 1”'),
(2765,143,1,26,NULL),
(2766,38,1,197,'Applied “Draft 1”'),
(2767,604,1,35,NULL),
(2768,654,1,30,NULL),
(2769,657,1,24,NULL),
(2770,785,1,2,NULL),
(2771,786,1,2,NULL),
(2772,789,1,2,NULL),
(2773,38,1,198,'Applied “Draft 1”'),
(2774,761,1,17,NULL),
(2775,38,1,199,'Applied “Draft 1”'),
(2776,761,1,18,NULL),
(2777,38,1,200,'Applied “Draft 1”'),
(2778,761,1,19,NULL),
(2779,38,1,201,'Applied “Draft 1”'),
(2780,761,1,20,NULL),
(2781,38,1,202,'Applied “Draft 1”'),
(2782,843,1,13,NULL),
(2783,38,1,203,'Applied “Draft 1”'),
(2784,6278,1,6,NULL),
(2785,843,1,14,NULL),
(2786,5108,1,4,'Applied “Draft 1”'),
(2787,5109,1,3,NULL),
(2788,5110,1,3,NULL),
(2789,5108,1,5,''),
(2790,5108,1,6,'Applied “Draft 1”'),
(2791,5110,1,4,NULL),
(2792,5111,1,3,NULL),
(2793,5108,1,7,''),
(2794,6550,1,1,''),
(2795,6551,1,1,NULL),
(2796,6552,1,1,NULL),
(2797,6553,1,1,NULL),
(2798,6554,1,1,NULL),
(2799,6555,1,1,NULL),
(2800,6556,1,1,NULL),
(2801,6557,1,1,NULL),
(2802,6558,1,1,NULL),
(2803,6559,1,1,NULL),
(2804,6560,1,1,NULL),
(2805,6561,1,1,NULL),
(2807,6563,1,1,NULL),
(2808,6564,1,1,NULL),
(2809,38,1,204,'Applied “Draft 1”'),
(2810,843,1,15,NULL),
(2811,38,1,205,'Applied “Draft 1”'),
(2812,843,1,16,NULL),
(2813,5108,1,8,'Applied “Draft 1”'),
(2814,5113,1,2,NULL),
(2815,5114,1,2,NULL),
(2818,5117,1,2,NULL),
(2819,5118,1,2,NULL),
(2820,5119,1,2,NULL),
(2821,5120,1,2,NULL),
(2822,38,1,206,'Applied “Draft 1”'),
(2823,6278,1,7,NULL),
(2824,112,1,5,'Applied “Draft 1”'),
(2825,99,1,10,'Applied “Draft 1”'),
(2826,6550,1,2,'Applied “Draft 1”'),
(2827,6551,1,2,NULL),
(2828,6552,1,2,NULL),
(2829,6553,1,2,NULL),
(2830,6555,1,2,NULL),
(2831,6556,1,2,NULL),
(2832,6557,1,2,NULL),
(2833,6558,1,2,NULL),
(2834,6559,1,2,NULL),
(2835,6560,1,2,NULL),
(2836,6561,1,2,NULL),
(2838,6550,1,3,''),
(2839,6647,1,1,''),
(2840,6648,1,1,NULL),
(2841,6649,1,1,NULL),
(2842,6650,1,1,NULL),
(2843,6651,1,1,NULL),
(2844,6652,1,1,NULL),
(2845,6653,1,1,NULL),
(2846,6654,1,1,NULL),
(2849,6657,1,1,NULL),
(2852,6660,1,1,NULL),
(2853,6647,1,2,'Applied “Draft 1”'),
(2854,6648,1,2,NULL),
(2855,6649,1,2,NULL),
(2856,6647,1,3,'Applied “Draft 1”'),
(2857,6648,1,3,NULL),
(2858,6649,1,3,NULL),
(2859,6650,1,2,NULL),
(2860,6652,1,2,NULL),
(2861,6653,1,2,NULL),
(2862,6654,1,2,NULL),
(2865,6657,1,2,NULL),
(2868,6647,1,4,'Applied “Draft 1”'),
(2869,6712,1,1,''),
(2870,6713,1,1,NULL),
(2871,6714,1,1,NULL),
(2872,6715,1,1,NULL),
(2873,6716,1,1,NULL),
(2874,6717,1,1,NULL),
(2875,6718,1,1,NULL),
(2876,6719,1,1,NULL),
(2877,6720,1,1,NULL),
(2878,6721,1,1,NULL),
(2879,6743,1,1,NULL),
(2880,6744,1,1,NULL),
(2881,6725,1,1,NULL),
(2882,6712,1,2,''),
(2883,6759,1,1,''),
(2884,6760,1,1,NULL),
(2885,6761,1,1,NULL),
(2886,6762,1,1,NULL),
(2887,6763,1,1,NULL),
(2888,6764,1,1,NULL),
(2889,6765,1,1,NULL),
(2890,6766,1,1,NULL),
(2891,6767,1,1,NULL),
(2892,6768,1,1,NULL),
(2893,6769,1,1,NULL),
(2894,6770,1,1,NULL),
(2895,6771,1,1,NULL),
(2896,6759,1,2,'Applied “Draft 1”'),
(2897,6760,1,2,NULL),
(2898,6761,1,2,NULL),
(2899,6762,1,2,NULL),
(2900,6764,1,2,NULL),
(2901,6765,1,2,NULL),
(2902,6766,1,2,NULL),
(2903,6767,1,2,NULL),
(2904,6768,1,2,NULL),
(2905,6769,1,2,NULL),
(2906,6770,1,2,NULL),
(2907,6804,1,1,NULL),
(2908,6759,1,3,''),
(2909,6818,1,1,''),
(2910,6819,1,1,NULL),
(2911,6820,1,1,NULL),
(2912,6821,1,1,NULL),
(2913,6822,1,1,NULL),
(2914,6823,1,1,NULL),
(2915,6824,1,1,NULL),
(2916,6825,1,1,NULL),
(2921,6830,1,1,NULL),
(2922,6818,1,2,'Applied “Draft 1”'),
(2923,6818,1,3,'Applied “Draft 1”'),
(2924,6819,1,2,NULL),
(2925,6820,1,2,NULL),
(2926,6821,1,2,NULL),
(2927,6823,1,2,NULL),
(2928,6824,1,2,NULL),
(2929,6825,1,2,NULL),
(2934,6818,1,4,''),
(2935,912,1,12,'Applied “Draft 1”'),
(2936,1367,1,4,NULL),
(2937,912,1,13,'Applied “Draft 1”'),
(2938,1367,1,5,NULL),
(2939,912,1,14,'Applied “Draft 1”'),
(2940,1367,1,6,NULL),
(2941,5178,1,2,NULL),
(2942,6892,1,1,NULL),
(2943,912,1,15,''),
(2944,912,1,16,'Applied “Draft 1”'),
(2945,5178,1,3,NULL),
(2946,912,1,17,'Applied “Draft 1”'),
(2947,5178,1,4,NULL),
(2948,912,1,18,'Applied “Draft 1”'),
(2949,5178,1,5,NULL),
(2950,912,1,19,'Applied “Draft 1”'),
(2951,6892,1,2,NULL),
(2952,912,1,20,'Applied “Draft 1”'),
(2953,1367,1,7,NULL),
(2954,6232,1,9,'Applied “Draft 1”'),
(2955,887,1,13,'Applied “Draft 1”'),
(2956,903,1,5,NULL),
(2957,887,1,14,'Applied “Draft 1”'),
(2958,903,1,6,NULL),
(2959,4203,1,15,'Applied “Draft 1”'),
(2960,6934,1,1,''),
(2961,6935,1,1,NULL),
(2962,6936,1,1,NULL),
(2963,6937,1,1,NULL),
(2964,6938,1,1,NULL),
(2965,6939,1,1,NULL),
(2970,6944,1,1,NULL),
(2971,6945,1,1,NULL),
(2972,6946,1,1,NULL),
(2973,6934,1,2,'Applied “Draft 1”'),
(2974,6935,1,2,NULL),
(2975,6936,1,2,NULL),
(2976,6937,1,2,NULL),
(2977,6939,1,2,NULL),
(2982,6944,1,2,NULL),
(2983,6945,1,2,NULL),
(2984,6979,1,1,NULL),
(2985,6980,1,1,NULL),
(2986,6981,1,1,NULL),
(2987,6934,1,3,''),
(2988,6997,1,1,''),
(2989,6998,1,1,NULL),
(2990,6999,1,1,NULL),
(2991,7000,1,1,NULL),
(2992,7001,1,1,NULL),
(2993,7002,1,1,NULL),
(2995,7004,1,1,NULL),
(2996,7005,1,1,NULL),
(2997,7006,1,1,NULL),
(2998,7007,1,1,NULL),
(2999,7008,1,1,NULL),
(3000,7009,1,1,NULL),
(3001,7010,1,1,NULL),
(3002,7011,1,1,NULL),
(3003,7012,1,1,NULL),
(3004,6997,1,2,'Applied “Draft 1”'),
(3005,6998,1,2,NULL),
(3006,6999,1,2,NULL),
(3007,7000,1,2,NULL),
(3008,7002,1,2,NULL),
(3014,7053,1,1,NULL),
(3019,6997,1,3,''),
(3020,3086,1,42,'Applied “Draft 1”'),
(3021,5108,1,9,'Applied “Draft 1”'),
(3022,7074,1,1,''),
(3023,7075,1,1,NULL),
(3024,7076,1,1,NULL),
(3025,7077,1,1,NULL),
(3026,7078,1,1,NULL),
(3027,7079,1,1,NULL),
(3028,7080,1,1,NULL),
(3029,7081,1,1,NULL),
(3030,7082,1,1,NULL),
(3031,7083,1,1,NULL),
(3032,7084,1,1,NULL),
(3033,7085,1,1,NULL),
(3034,7086,1,1,NULL),
(3035,7087,1,1,NULL),
(3036,7088,1,1,NULL),
(3037,7089,1,1,NULL),
(3038,7074,1,2,'Applied “Draft 1”'),
(3039,7074,1,3,'Applied “Draft 1”'),
(3040,7075,1,2,NULL),
(3041,7076,1,2,NULL),
(3042,7077,1,2,NULL),
(3043,7079,1,2,NULL),
(3044,7131,1,1,NULL),
(3047,7134,1,1,NULL),
(3048,7135,1,1,NULL),
(3049,7136,1,1,NULL),
(3050,7137,1,1,NULL),
(3052,7074,1,4,''),
(3053,3793,1,3,NULL),
(3054,912,1,21,'Applied “Draft 1”'),
(3055,1367,1,8,NULL),
(3056,38,1,207,'Applied “Draft 1”'),
(3057,761,1,21,NULL),
(3058,912,1,22,'Applied “Draft 1”'),
(3059,1367,1,9,NULL),
(3060,912,1,23,'Applied “Draft 1”'),
(3061,1367,1,10,NULL),
(3062,912,1,24,'Applied “Draft 1”'),
(3063,5178,1,6,NULL),
(3064,6892,1,3,NULL),
(3065,912,1,25,'Applied “Draft 1”'),
(3066,1367,1,11,NULL),
(3067,912,1,26,'Applied “Draft 1”'),
(3068,7190,1,1,NULL),
(3069,912,1,27,'Applied “Draft 1”'),
(3070,7190,1,2,NULL),
(3071,912,1,28,'Applied “Draft 1”'),
(3072,7190,1,3,NULL),
(3073,912,1,29,'Applied “Draft 1”'),
(3074,4026,1,16,'Applied “Draft 1”'),
(3075,4053,1,3,NULL),
(3076,4026,1,17,'Applied “Draft 1”'),
(3077,4053,1,4,NULL),
(3078,4805,1,9,'Applied “Draft 1”'),
(3079,4827,1,3,NULL),
(3080,4702,1,11,'Applied “Draft 1”'),
(3081,4725,1,3,NULL),
(3082,4418,1,12,'Applied “Draft 1”'),
(3083,4445,1,3,NULL),
(3084,4593,1,13,'Applied “Draft 1”'),
(3085,4620,1,3,NULL),
(3086,4502,1,10,'Applied “Draft 1”'),
(3087,4529,1,3,NULL),
(3088,4896,1,7,'Applied “Draft 1”'),
(3089,4923,1,3,NULL),
(3090,1951,1,53,'Applied “Draft 1”'),
(3091,1977,1,5,NULL),
(3092,4026,1,18,'Applied “Draft 1”'),
(3093,4053,1,5,NULL),
(3094,6712,1,3,'Applied “Draft 1”'),
(3095,6725,1,2,NULL),
(3096,6759,1,4,'Applied “Draft 1”'),
(3097,6771,1,2,NULL),
(3098,6647,1,5,'Applied “Draft 1”'),
(3099,6660,1,2,NULL),
(3100,6550,1,4,'Applied “Draft 1”'),
(3101,6564,1,2,NULL),
(3102,7074,1,5,'Applied “Draft 1”'),
(3103,7089,1,2,NULL),
(3104,6997,1,4,'Applied “Draft 1”'),
(3105,7012,1,2,NULL),
(3106,6818,1,5,'Applied “Draft 1”'),
(3107,6830,1,2,NULL),
(3108,6934,1,4,'Applied “Draft 1”'),
(3109,6946,1,2,NULL),
(3110,3086,1,43,'Applied “Draft 1”'),
(3111,3102,1,5,NULL),
(3112,5108,1,10,'Applied “Draft 1”'),
(3113,5122,1,3,NULL),
(3114,4026,1,19,'Applied “Draft 1”'),
(3115,4033,1,5,NULL),
(3116,4173,1,2,NULL),
(3117,7297,1,1,NULL),
(3118,7298,1,1,NULL),
(3119,7299,1,1,NULL),
(3120,4039,1,5,NULL),
(3121,4053,1,6,NULL),
(3122,4026,1,20,''),
(3123,4805,1,10,'Applied “Draft 1”'),
(3124,4812,1,3,NULL),
(3125,4869,1,2,NULL),
(3126,4813,1,3,NULL),
(3127,4814,1,2,NULL),
(3128,4827,1,4,NULL),
(3129,4805,1,11,''),
(3130,4702,1,12,'Applied “Draft 1”'),
(3131,4725,1,4,NULL),
(3132,4418,1,13,'Applied “Draft 1”'),
(3133,4445,1,4,NULL),
(3134,4418,1,14,''),
(3135,4418,1,15,'Applied “Draft 1”'),
(3136,4425,1,2,NULL),
(3137,4418,1,16,''),
(3138,4418,1,17,'Applied “Draft 1”'),
(3139,4419,1,2,NULL),
(3140,4418,1,18,''),
(3141,4418,1,19,'Applied “Draft 1”'),
(3142,4425,1,3,NULL),
(3143,7356,1,1,NULL),
(3144,7357,1,1,NULL),
(3145,7358,1,1,NULL),
(3146,7359,1,1,NULL),
(3147,4418,1,20,'Applied “Draft 1”'),
(3148,4425,1,4,NULL),
(3149,7357,1,2,NULL),
(3150,7358,1,2,NULL),
(3151,7359,1,2,NULL),
(3152,7356,1,2,NULL),
(3153,4418,1,21,'Applied “Draft 1”'),
(3154,4425,1,5,NULL),
(3155,4418,1,22,'Applied “Draft 1”'),
(3156,4425,1,6,NULL),
(3157,4593,1,14,'Applied “Draft 1”'),
(3158,4605,1,3,NULL),
(3159,4606,1,3,NULL),
(3160,4608,1,4,NULL),
(3161,4620,1,4,NULL),
(3162,4593,1,15,''),
(3163,4896,1,8,'Applied “Draft 1”'),
(3164,4898,1,2,NULL),
(3165,4899,1,2,NULL),
(3166,4900,1,2,NULL),
(3167,4923,1,4,NULL),
(3168,4896,1,9,'Applied “Draft 1”'),
(3169,4903,1,2,NULL),
(3170,4904,1,2,NULL),
(3171,4905,1,2,NULL),
(3172,4906,1,2,NULL),
(3173,4907,1,2,NULL),
(3174,4896,1,10,''),
(3175,4896,1,11,'Applied “Draft 1”'),
(3176,4908,1,2,NULL),
(3177,4896,1,12,''),
(3178,4502,1,11,'Applied “Draft 1”'),
(3179,4509,1,2,NULL),
(3180,4511,1,2,NULL),
(3181,4514,1,2,NULL),
(3182,4515,1,2,NULL),
(3183,4502,1,12,''),
(3184,1951,1,54,'Applied “Draft 1”'),
(3185,1952,1,9,NULL),
(3186,1958,1,10,NULL),
(3187,3929,1,2,NULL),
(3188,3937,1,2,NULL),
(3189,3918,1,3,NULL),
(3190,3906,1,3,NULL),
(3191,2020,1,12,NULL),
(3192,1964,1,13,NULL),
(3193,1951,1,55,''),
(3194,4303,1,13,'Applied “Draft 1”'),
(3195,4305,1,3,NULL),
(3196,4306,1,3,NULL),
(3197,4310,1,3,NULL),
(3198,4311,1,3,NULL),
(3199,7465,1,1,NULL),
(3200,7466,1,1,NULL),
(3201,7467,1,1,NULL),
(3202,4315,1,3,NULL),
(3203,4316,1,3,NULL),
(3204,4328,1,4,NULL),
(3205,4303,1,14,''),
(3206,6934,1,5,'Applied “Draft 1”'),
(3207,6937,1,3,NULL),
(3208,6934,1,6,'Applied “Draft 1”'),
(3209,6937,1,4,NULL),
(3210,6934,1,7,''),
(3211,6934,1,8,'Applied “Draft 1”'),
(3212,6937,1,5,NULL),
(3213,6934,1,9,'Applied “Draft 1”'),
(3214,6937,1,6,NULL),
(3215,6934,1,10,'Applied “Draft 1”'),
(3216,6937,1,7,NULL),
(3217,6997,1,5,'Applied “Draft 1”'),
(3218,6998,1,3,NULL),
(3219,6999,1,3,NULL),
(3220,7000,1,3,NULL),
(3221,6997,1,6,''),
(3222,6934,1,11,'Applied “Draft 1”'),
(3223,6939,1,3,NULL),
(3224,7524,1,1,NULL),
(3225,7525,1,1,NULL),
(3226,7512,1,1,NULL),
(3227,7526,1,1,NULL),
(3228,6944,1,3,NULL),
(3229,6945,1,3,NULL),
(3230,6979,1,2,NULL),
(3231,6980,1,2,NULL),
(3232,6981,1,2,NULL),
(3233,4593,1,16,'Applied “Draft 1”'),
(3234,4608,1,5,NULL),
(3235,4611,1,4,NULL),
(3236,4702,1,13,'Applied “Draft 1”'),
(3237,4717,1,4,NULL),
(3238,4722,1,4,NULL),
(3239,4702,1,14,'Applied “Draft 1”'),
(3240,4717,1,5,NULL),
(3241,4723,1,4,NULL),
(3242,4702,1,15,NULL),
(3243,4702,1,16,'Applied “Draft 1”'),
(3244,4714,1,3,NULL),
(3245,4702,1,17,'Applied “Draft 1”'),
(3246,4714,1,4,NULL),
(3247,4702,1,18,'Applied “Draft 1”'),
(3248,4704,1,3,NULL),
(3249,4705,1,3,NULL),
(3250,4714,1,5,NULL),
(3251,4717,1,6,NULL),
(3252,7582,1,1,NULL),
(3253,4719,1,4,NULL),
(3254,4720,1,4,NULL),
(3255,7583,1,1,NULL),
(3256,4722,1,5,NULL),
(3257,4723,1,5,NULL),
(3258,7566,1,1,NULL),
(3259,4780,1,3,NULL),
(3260,4781,1,3,NULL),
(3261,4782,1,3,NULL),
(3262,4702,1,19,''),
(3263,4502,1,13,'Applied “Draft 1”'),
(3264,4517,1,4,NULL),
(3265,4522,1,3,NULL),
(3266,4524,1,3,NULL),
(3267,4805,1,12,'Applied “Draft 1”'),
(3268,4816,1,3,NULL),
(3269,4817,1,3,NULL),
(3270,4805,1,13,''),
(3271,6550,1,5,'Applied “Draft 1”'),
(3272,6551,1,3,NULL),
(3273,6550,1,6,'Applied “Draft 1”'),
(3274,6552,1,3,NULL),
(3275,6553,1,3,NULL),
(3276,6555,1,3,NULL),
(3277,6556,1,3,NULL),
(3278,6557,1,3,NULL),
(3279,6558,1,3,NULL),
(3280,6559,1,3,NULL),
(3281,6560,1,3,NULL),
(3282,6561,1,3,NULL),
(3283,7634,1,1,NULL),
(3284,6550,1,7,''),
(3285,4896,1,13,'Applied “Draft 1”'),
(3286,4911,1,3,NULL),
(3287,4915,1,3,NULL),
(3288,4917,1,3,NULL),
(3289,4918,1,3,NULL),
(3290,4896,1,14,''),
(3291,1951,1,56,'Applied “Draft 1”'),
(3292,2020,1,13,NULL),
(3293,1966,1,6,NULL),
(3294,7659,1,1,NULL),
(3295,7673,1,1,NULL),
(3296,7674,1,1,NULL),
(3297,7663,1,1,NULL),
(3298,7664,1,1,NULL),
(3299,7661,1,1,NULL),
(3300,7662,1,1,NULL),
(3301,7675,1,1,NULL),
(3302,7665,1,1,NULL),
(3303,7676,1,1,NULL),
(3304,1951,1,57,''),
(3305,6997,1,7,'Applied “Draft 1”'),
(3306,7002,1,3,NULL),
(3307,7693,1,1,NULL),
(3308,7695,1,1,NULL),
(3309,7694,1,1,NULL),
(3310,7691,1,1,NULL),
(3311,7704,1,1,NULL),
(3312,7053,1,2,NULL),
(3313,7705,1,1,NULL),
(3314,7706,1,1,NULL),
(3315,7696,1,1,NULL),
(3316,7707,1,1,NULL),
(3317,6997,1,8,'Applied “Draft 1”'),
(3318,7002,1,4,NULL),
(3319,7706,1,2,NULL),
(3320,6997,1,9,'Applied “Draft 1”'),
(3321,7002,1,5,NULL),
(3322,7053,1,3,NULL),
(3323,4303,1,15,'Applied “Draft 1”'),
(3324,4318,1,4,NULL),
(3325,4026,1,21,'Applied “Draft 1”'),
(3326,4041,1,5,NULL),
(3327,4042,1,3,NULL),
(3328,4044,1,3,NULL),
(3329,4050,1,3,NULL),
(3330,4051,1,3,NULL),
(3331,4052,1,3,NULL),
(3332,38,1,208,'Applied “Draft 1”'),
(3333,785,1,3,NULL),
(3334,786,1,3,NULL),
(3335,788,1,2,NULL),
(3336,4203,1,16,'Applied “Draft 1”'),
(3337,4210,1,3,NULL),
(3338,4214,1,2,NULL),
(3339,4230,1,3,NULL),
(3340,4203,1,17,'Applied “Draft 1”'),
(3341,4218,1,4,NULL),
(3343,4220,1,4,NULL),
(3344,4221,1,4,NULL),
(3346,4223,1,4,NULL),
(3347,4224,1,4,NULL),
(3348,4225,1,4,NULL),
(3349,4227,1,4,NULL),
(3350,4203,1,18,'Applied “Draft 1”'),
(3351,4218,1,5,NULL),
(3352,4227,1,5,NULL),
(3353,4203,1,19,'Applied “Draft 1”'),
(3354,4216,1,4,NULL),
(3355,4218,1,6,NULL),
(3356,7797,1,1,NULL),
(3357,4220,1,5,NULL),
(3358,4221,1,5,NULL),
(3359,7809,1,1,NULL),
(3360,4223,1,5,NULL),
(3361,4224,1,5,NULL),
(3362,4225,1,5,NULL),
(3363,4227,1,6,NULL),
(3364,4418,1,23,'Applied “Draft 1”'),
(3365,4430,1,3,NULL),
(3366,4431,1,2,NULL),
(3367,4433,1,5,NULL),
(3368,7821,1,1,NULL),
(3369,4435,1,4,NULL),
(3370,4436,1,5,NULL),
(3371,5580,1,2,NULL),
(3372,5594,1,2,NULL),
(3373,7823,1,1,NULL),
(3374,7826,1,1,NULL),
(3375,7837,1,1,NULL),
(3376,5598,1,2,NULL),
(3377,7824,1,1,NULL),
(3378,250,1,2,'Applied “Draft 1”'),
(3379,250,1,3,'Applied “Draft 1”'),
(3380,250,1,4,'Applied “Draft 1”'),
(3381,250,1,5,'Applied “Draft 1”'),
(3382,250,1,6,''),
(3383,252,1,2,'Applied “Draft 1”'),
(3384,252,1,3,''),
(3385,252,1,4,'Applied “Draft 1”'),
(3386,252,1,5,''),
(3387,252,1,6,'Applied “Draft 1”'),
(3388,7871,1,1,''),
(3389,7871,1,2,'Applied “Draft 1”'),
(3390,7871,1,3,''),
(3391,7871,1,4,'Applied “Draft 1”'),
(3392,6550,1,8,'Applied “Draft 1”'),
(3393,6551,1,4,NULL),
(3394,6555,1,4,NULL),
(3395,6560,1,4,NULL),
(3396,4702,1,20,'Applied “Draft 1”'),
(3397,7891,1,1,NULL),
(3398,4715,1,4,NULL),
(3399,4709,1,3,NULL),
(3400,4702,1,21,''),
(3401,4702,1,22,'Applied “Draft 1”'),
(3402,4709,1,4,NULL),
(3403,7910,1,1,NULL),
(3404,7911,1,1,NULL),
(3405,4702,1,23,''),
(3406,38,1,209,'Applied “Draft 1”'),
(3407,867,1,15,NULL),
(3408,887,1,15,'Applied “Draft 1”'),
(3409,7924,1,1,NULL),
(3410,7925,1,1,NULL),
(3411,887,1,16,''),
(3412,912,1,30,'Applied “Draft 1”'),
(3413,5178,1,7,NULL),
(3414,6712,1,4,'Applied “Draft 1”'),
(3415,6713,1,2,NULL),
(3416,6717,1,2,NULL),
(3417,6718,1,2,NULL),
(3418,6712,1,5,'Applied “Draft 1”'),
(3419,6714,1,2,NULL),
(3420,6712,1,6,'Applied “Draft 1”'),
(3421,6715,1,2,NULL),
(3422,6712,1,7,'Applied “Draft 1”'),
(3423,6715,1,3,NULL),
(3424,6717,1,3,NULL),
(3425,6719,1,2,NULL),
(3426,6720,1,2,NULL),
(3427,6721,1,2,NULL),
(3428,6743,1,2,NULL),
(3429,6744,1,2,NULL),
(3430,6712,1,8,''),
(3431,6647,1,6,'Applied “Draft 1”'),
(3432,6648,1,4,NULL),
(3433,6649,1,4,NULL),
(3434,6650,1,3,NULL),
(3435,6652,1,3,NULL),
(3436,7996,1,1,NULL),
(3437,7997,1,1,NULL),
(3438,7998,1,1,NULL),
(3439,7999,1,1,NULL),
(3440,8000,1,1,NULL),
(3441,8001,1,1,NULL),
(3442,8002,1,1,NULL),
(3443,6647,1,7,NULL),
(3444,6647,1,8,''),
(3445,6550,1,9,'Applied “Draft 1”'),
(3446,6555,1,5,NULL),
(3447,6561,1,4,NULL),
(3448,6550,1,10,''),
(3449,6759,1,5,'Applied “Draft 1”'),
(3450,6760,1,3,NULL),
(3451,6759,1,6,''),
(3452,6818,1,6,'Applied “Draft 1”'),
(3453,6819,1,3,NULL),
(3454,6820,1,3,NULL),
(3455,6821,1,3,NULL),
(3456,6823,1,3,NULL),
(3457,6824,1,3,NULL),
(3458,6825,1,3,NULL),
(3459,8043,1,1,NULL),
(3460,8044,1,1,NULL),
(3461,8045,1,1,NULL),
(3462,8046,1,1,NULL),
(3463,6997,1,10,'Applied “Draft 1”'),
(3464,7000,1,4,NULL),
(3465,6997,1,11,'Applied “Draft 1”'),
(3466,7002,1,6,NULL),
(3467,6997,1,12,''),
(3468,4303,1,16,'Applied “Draft 1”'),
(3469,4318,1,5,NULL),
(3470,4319,1,4,NULL),
(3471,4323,1,4,NULL),
(3472,5108,1,11,'Applied “Draft 1”'),
(3473,5109,1,4,NULL),
(3474,5110,1,5,NULL),
(3475,5111,1,4,NULL),
(3476,5113,1,3,NULL),
(3477,5114,1,3,NULL),
(3478,8089,1,1,NULL),
(3479,8079,1,1,NULL),
(3480,5117,1,3,NULL),
(3481,5118,1,3,NULL),
(3482,5119,1,3,NULL),
(3483,5120,1,3,NULL),
(3484,5108,1,12,''),
(3485,3086,1,44,'Applied “Draft 1”'),
(3486,3089,1,18,NULL),
(3487,3090,1,15,NULL),
(3488,3093,1,6,NULL),
(3489,3116,1,4,NULL),
(3490,3117,1,4,NULL),
(3491,3118,1,4,NULL),
(3492,3119,1,4,NULL),
(3493,3120,1,4,NULL),
(3494,3121,1,4,NULL),
(3495,3122,1,4,NULL),
(3496,5087,1,2,NULL),
(3497,38,1,210,'Applied “Draft 1”'),
(3498,274,1,19,NULL),
(3499,6462,1,2,NULL),
(3500,7074,1,6,'Applied “Draft 1”'),
(3501,7075,1,3,NULL),
(3502,7076,1,3,NULL),
(3503,7077,1,3,NULL),
(3504,7079,1,3,NULL),
(3505,7131,1,2,NULL),
(3506,8151,1,1,NULL),
(3507,8138,1,1,NULL),
(3508,7134,1,2,NULL),
(3509,7135,1,2,NULL),
(3510,7136,1,2,NULL),
(3511,7137,1,2,NULL),
(3512,8139,1,1,NULL),
(3513,7074,1,7,''),
(3514,38,1,211,'Applied “Draft 1”'),
(3515,143,1,27,NULL),
(3516,144,1,5,NULL),
(3517,38,1,212,'Applied “Draft 1”'),
(3518,143,1,28,NULL),
(3519,144,1,6,NULL),
(3520,145,1,3,NULL),
(3521,38,1,213,'Applied “Draft 1”'),
(3522,274,1,20,NULL),
(3523,302,1,3,NULL),
(3524,3086,1,45,'Applied “Draft 1”'),
(3525,3093,1,7,NULL),
(3526,3118,1,5,NULL),
(3527,3120,1,5,NULL),
(3528,112,1,6,'Applied “Draft 1”'),
(3529,99,1,11,'Applied “Draft 1”'),
(3530,89,1,7,'Applied “Draft 1”'),
(3531,887,1,17,'Applied “Draft 1”'),
(3532,7924,1,2,NULL),
(3533,7925,1,2,NULL),
(3534,38,1,214,'Applied “Draft 1”'),
(3535,867,1,16,NULL),
(3536,5192,1,2,NULL),
(3537,4026,1,22,'Applied “Draft 1”'),
(3538,4027,1,3,NULL),
(3539,4203,1,20,'Applied “Draft 1”'),
(3540,4204,1,2,NULL),
(3541,4303,1,17,'Applied “Draft 1”'),
(3542,4304,1,3,NULL),
(3543,4805,1,14,'Applied “Draft 1”'),
(3544,4806,1,3,NULL),
(3545,4702,1,24,'Applied “Draft 1”'),
(3546,4703,1,3,NULL),
(3547,4418,1,24,'Applied “Draft 1”'),
(3548,4419,1,3,NULL),
(3549,4593,1,17,'Applied “Draft 1”'),
(3550,4594,1,3,NULL),
(3551,4502,1,14,'Applied “Draft 1”'),
(3552,4503,1,2,NULL),
(3553,4896,1,15,'Applied “Draft 1”'),
(3554,4897,1,2,NULL),
(3555,1951,1,58,'Applied “Draft 1”'),
(3556,1952,1,10,NULL),
(3557,4026,1,23,'Applied “Draft 1”'),
(3558,4027,1,4,NULL),
(3559,4026,1,24,'Applied “Draft 1”'),
(3560,4027,1,5,NULL),
(3561,4805,1,15,'Applied “Draft 1”'),
(3562,4806,1,4,NULL),
(3563,4805,1,16,'Applied “Draft 1”'),
(3564,4806,1,5,NULL),
(3565,4026,1,25,'Applied “Draft 1”'),
(3566,4027,1,6,NULL),
(3567,4203,1,21,'Applied “Draft 1”'),
(3568,4204,1,3,NULL),
(3569,4303,1,18,'Applied “Draft 1”'),
(3570,4304,1,4,NULL),
(3571,4805,1,17,'Applied “Draft 1”'),
(3572,4806,1,6,NULL),
(3573,4702,1,25,'Applied “Draft 1”'),
(3574,4703,1,4,NULL),
(3575,4418,1,25,'Applied “Draft 1”'),
(3576,4419,1,4,NULL),
(3577,4593,1,18,'Applied “Draft 1”'),
(3578,4594,1,4,NULL),
(3579,4502,1,15,'Applied “Draft 1”'),
(3580,4503,1,3,NULL),
(3581,4896,1,16,'Applied “Draft 1”'),
(3582,4897,1,3,NULL),
(3583,1951,1,59,'Applied “Draft 1”'),
(3584,1952,1,11,NULL),
(3585,4502,1,16,'Applied “Draft 1”'),
(3586,4529,1,4,NULL),
(3587,6934,1,12,'Applied “Draft 1”'),
(3588,6946,1,3,NULL),
(3589,6997,1,13,'Applied “Draft 1”'),
(3590,7012,1,3,NULL),
(3591,7074,1,8,'Applied “Draft 1”'),
(3592,7089,1,3,NULL),
(3593,3086,1,46,'Applied “Draft 1”'),
(3594,3102,1,6,NULL),
(3595,6647,1,9,'Applied “Draft 1”'),
(3596,6660,1,3,NULL),
(3597,6712,1,9,'Applied “Draft 1”'),
(3598,6725,1,3,NULL),
(3599,6759,1,7,'Applied “Draft 1”'),
(3600,6771,1,3,NULL),
(3601,6550,1,11,'Applied “Draft 1”'),
(3602,6564,1,3,NULL),
(3603,5108,1,13,'Applied “Draft 1”'),
(3604,5122,1,4,NULL),
(3605,6818,1,7,'Applied “Draft 1”'),
(3606,6830,1,3,NULL),
(3607,6550,1,12,'Applied “Draft 1”'),
(3608,6564,1,4,NULL),
(3609,4026,1,26,'Applied “Draft 1”'),
(3610,4038,1,5,NULL),
(3611,4053,1,7,NULL),
(3612,4203,1,22,'Applied “Draft 1”'),
(3613,4215,1,2,NULL),
(3614,4230,1,4,NULL),
(3615,4303,1,19,'Applied “Draft 1”'),
(3616,4315,1,4,NULL),
(3617,4328,1,5,NULL),
(3618,4805,1,18,'Applied “Draft 1”'),
(3619,4813,1,4,NULL),
(3620,4827,1,5,NULL),
(3621,4702,1,26,'Applied “Draft 1”'),
(3622,4714,1,6,NULL),
(3623,4725,1,5,NULL),
(3624,4418,1,26,'Applied “Draft 1”'),
(3625,4430,1,4,NULL),
(3626,4445,1,5,NULL),
(3627,4593,1,19,'Applied “Draft 1”'),
(3628,4605,1,4,NULL),
(3629,4620,1,5,NULL),
(3630,4502,1,17,'Applied “Draft 1”'),
(3631,4514,1,3,NULL),
(3632,4529,1,5,NULL),
(3633,4896,1,17,'Applied “Draft 1”'),
(3634,4908,1,3,NULL),
(3635,4923,1,5,NULL),
(3636,1951,1,60,'Applied “Draft 1”'),
(3637,2020,1,14,NULL),
(3638,1977,1,6,NULL),
(3639,4502,1,18,'Applied “Draft 1”'),
(3640,4514,1,4,NULL),
(3641,912,1,31,'Applied “Draft 1”'),
(3642,8432,1,1,NULL),
(3643,912,1,32,'Applied “Draft 1”'),
(3644,8437,1,1,''),
(3645,8438,1,1,NULL),
(3646,8439,1,1,NULL),
(3647,8440,1,1,NULL),
(3648,8437,1,2,'Applied “Draft 1”'),
(3649,8438,1,2,NULL),
(3650,8449,1,1,NULL),
(3651,8450,1,1,NULL),
(3652,8437,1,3,'Applied “Draft 1”'),
(3653,8438,1,3,NULL),
(3654,8439,1,2,NULL),
(3655,8440,1,2,NULL),
(3656,8437,1,4,'Applied “Draft 1”'),
(3657,8438,1,4,NULL),
(3658,8449,1,2,NULL),
(3659,8467,1,1,NULL),
(3660,8437,1,5,'Applied “Draft 1”'),
(3661,8438,1,5,NULL),
(3662,8449,1,3,NULL),
(3663,8467,1,2,NULL),
(3664,8437,1,6,'Applied “Draft 1”'),
(3665,8438,1,6,NULL),
(3666,8449,1,4,NULL),
(3667,8467,1,3,NULL),
(3668,8437,1,7,'Applied “Draft 1”'),
(3669,8438,1,7,NULL),
(3670,8449,1,5,NULL),
(3671,8467,1,4,NULL),
(3672,8437,1,8,'Applied “Draft 1”'),
(3673,8438,1,8,NULL),
(3674,8439,1,3,NULL),
(3675,8440,1,3,NULL),
(3676,8437,1,9,'Applied “Draft 1”'),
(3677,8438,1,9,NULL),
(3678,8439,1,4,NULL),
(3679,8440,1,4,NULL);
/*!40000 ALTER TABLE `revisions` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `searchindex`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `searchindex` WRITE;
/*!40000 ALTER TABLE `searchindex` DISABLE KEYS */;
INSERT INTO `searchindex` VALUES
(1,'email',0,1,' office finedigital co uk '),
(1,'firstname',0,1,''),
(1,'fullname',0,1,' dr rachel '),
(1,'lastname',0,1,' rachel '),
(1,'slug',0,1,''),
(1,'username',0,1,' office finedigital co uk '),
(2,'slug',0,1,''),
(2,'title',0,1,' home '),
(3,'slug',0,1,''),
(3,'title',0,1,' about '),
(4,'slug',0,1,''),
(4,'title',0,1,' contact '),
(5,'slug',0,1,''),
(5,'title',0,1,' conditions '),
(6,'slug',0,1,''),
(6,'title',0,1,' prices '),
(7,'alt',0,1,''),
(7,'extension',0,1,' png '),
(7,'filename',0,1,' logo png '),
(7,'kind',0,1,' image '),
(7,'slug',0,1,''),
(7,'title',0,1,' logo '),
(8,'slug',0,1,''),
(8,'title',0,1,' book consultation '),
(11,'slug',0,1,''),
(11,'title',0,1,' treatments '),
(12,'slug',0,1,''),
(12,'title',0,1,' acne '),
(13,'slug',0,1,''),
(13,'title',0,1,' acne scarring '),
(14,'slug',0,1,''),
(14,'title',0,1,' age spots '),
(15,'slug',0,1,''),
(15,'title',0,1,' crepey skin '),
(16,'slug',0,1,''),
(16,'title',0,1,' dark circles '),
(17,'slug',0,1,''),
(17,'title',0,1,' lines and wrinkles '),
(18,'slug',0,1,''),
(18,'title',0,1,' upper lip lines '),
(19,'slug',0,1,''),
(19,'title',0,1,' ageing '),
(20,'slug',0,1,''),
(20,'title',0,1,' neck lines '),
(21,'slug',0,1,''),
(21,'title',0,1,' neck lines '),
(22,'slug',0,1,''),
(22,'title',0,1,' anti wrinkle injections '),
(23,'slug',0,1,''),
(23,'title',0,1,' cryotherapy '),
(24,'slug',0,1,''),
(24,'title',0,1,' dermal filler '),
(25,'slug',0,1,''),
(25,'title',0,1,' skin consultations '),
(26,'slug',0,1,''),
(26,'title',0,1,' polynucleotides '),
(28,'slug',0,1,''),
(28,'title',0,1,' skin boosters '),
(29,'slug',0,1,''),
(29,'title',0,1,' bio stimulators '),
(30,'slug',0,1,''),
(30,'title',0,1,' microneedling '),
(31,'slug',0,1,''),
(31,'title',0,1,' chemical peels '),
(35,'slug',0,1,''),
(35,'title',0,1,' blog '),
(36,'alt',0,1,''),
(36,'extension',0,1,' png '),
(36,'filename',0,1,' logob png '),
(36,'kind',0,1,' image '),
(36,'slug',0,1,''),
(36,'title',0,1,' logo '),
(37,'slug',0,1,' temp rrcjtpbnoatrthppnvqrdlnvcjxjphzkaalu '),
(37,'title',0,1,' homepage '),
(38,'slug',0,1,' homepage '),
(38,'title',0,1,' homepage '),
(43,'slug',0,1,' book consultation '),
(43,'title',0,1,' book consultation '),
(44,'slug',0,1,' learn more '),
(44,'title',0,1,' learn more '),
(48,'alt',0,1,''),
(48,'extension',0,1,' jpg '),
(48,'filename',0,1,' shutterstock 1956162976 1 2048x1366 jpg '),
(48,'kind',0,1,' image '),
(48,'slug',0,1,''),
(48,'title',0,1,' shutterstock 1956162976 1 2048x1366 '),
(61,'slug',0,1,' learn more '),
(61,'title',0,1,' learn more '),
(62,'slug',0,1,' test '),
(62,'title',0,1,' test '),
(81,'alt',0,1,''),
(81,'extension',0,1,' webp '),
(81,'filename',0,1,' baton rouge office jpg webp '),
(81,'kind',0,1,' image '),
(81,'slug',0,1,''),
(81,'title',0,1,' baton rouge office jpg '),
(85,'slug',0,1,' temp yanlghiksayuupxycyhbdxrennvbwmbnoeos '),
(85,'title',0,1,''),
(86,'slug',0,1,' temp elkdoolrlnxpcggzqmknaaovipfxawztgttd '),
(86,'title',0,1,''),
(87,'slug',0,1,' temp xrdvngqzyacjfoaravastrgfszzrvjfwupoz '),
(87,'title',0,1,''),
(88,'slug',0,1,' temp hsjpxmnwvpuuxslczhyyjwbxzdgxchmotbvh '),
(88,'title',0,1,''),
(89,'slug',0,1,' prophilo '),
(89,'title',0,1,' polynucleotides treatment '),
(90,'alt',0,1,''),
(90,'extension',0,1,' jpg '),
(90,'filename',0,1,' before4 jpg '),
(90,'kind',0,1,' image '),
(90,'slug',0,1,''),
(90,'title',0,1,' before4 '),
(91,'alt',0,1,''),
(91,'extension',0,1,' jpg '),
(91,'filename',0,1,' after4 jpg '),
(91,'kind',0,1,' image '),
(91,'slug',0,1,''),
(91,'title',0,1,' after4 '),
(99,'slug',0,1,' micro needling '),
(99,'title',0,1,' phformula resurfacing '),
(103,'slug',0,1,' temp eczucndpelmcbofcgkaqlkysjduvmhzsrxbz '),
(103,'title',0,1,''),
(104,'slug',0,1,' temp whrcowofhfpshwbvvypmifonhqhbyqujjlxp '),
(104,'title',0,1,''),
(111,'slug',0,1,' temp sxwwgvyssycqewavwtgzcosmxdczanztinac '),
(111,'title',0,1,''),
(112,'slug',0,1,' test1 '),
(112,'title',0,1,' crows feet treatment '),
(143,'slug',0,1,' homepage '),
(143,'title',0,1,' reveal your natural beauty '),
(144,'slug',0,1,' book consultation '),
(144,'title',0,1,' book consultation '),
(145,'slug',0,1,' learn more '),
(145,'title',0,1,' learn more '),
(235,'slug',0,1,''),
(235,'title',0,1,' about me '),
(236,'slug',0,1,''),
(236,'title',0,1,' treatments '),
(237,'slug',0,1,''),
(237,'title',0,1,' prices '),
(238,'slug',0,1,''),
(238,'title',0,1,' contact '),
(239,'slug',0,1,''),
(239,'title',0,1,' botox dysport 2 '),
(240,'slug',0,1,''),
(240,'title',0,1,' dermal fillers '),
(241,'slug',0,1,''),
(241,'title',0,1,' lip enhancement '),
(242,'slug',0,1,''),
(242,'title',0,1,' facial contouring '),
(243,'slug',0,1,''),
(244,'slug',0,1,' privacy policy '),
(244,'title',0,1,' privacy policy '),
(245,'slug',0,1,' terms of service '),
(245,'title',0,1,' terms of service '),
(246,'slug',0,1,' facebook '),
(246,'title',0,1,' facebook '),
(247,'slug',0,1,' instagram '),
(247,'title',0,1,' instagram '),
(250,'slug',0,1,' introducing julaine '),
(250,'title',0,1,' introducing julaine '),
(252,'slug',0,1,' microneedling and polynucleotides '),
(252,'title',0,1,' microneedling and polynucleotides hello '),
(255,'slug',0,1,' blog posts '),
(255,'title',0,1,' blog posts '),
(261,'slug',0,1,' how it works '),
(261,'title',0,1,' how it works '),
(262,'slug',0,1,' initial consultation '),
(262,'title',0,1,' initial consultation '),
(263,'slug',0,1,' temp nlxkifxxvdscxbvhkfivzgovzenkympksrvj '),
(263,'title',0,1,''),
(266,'slug',0,1,' temp ebcppsbiyglengkcqvmwvqrpbknpuinmoefq '),
(266,'title',0,1,''),
(267,'slug',0,1,' temp sgqlrzasvrximzgmuktrhatbqlnuhdtshbjo '),
(267,'title',0,1,''),
(269,'slug',0,1,' temp dmcoepfpkxjgfvksiedvpnyakfdbftooscuf '),
(269,'title',0,1,''),
(274,'slug',0,1,' how it works '),
(274,'title',0,1,' what to expect '),
(275,'slug',0,1,' initial consultation '),
(275,'title',0,1,' initial consultation '),
(302,'slug',0,1,' book consultation works '),
(302,'title',0,1,' book consultation '),
(312,'alt',0,1,''),
(312,'extension',0,1,' jpg '),
(312,'filename',0,1,' drrach home banner jpg '),
(312,'kind',0,1,' image '),
(312,'slug',0,1,''),
(312,'title',0,1,' drrach home banner '),
(319,'slug',0,1,' emily johnson '),
(319,'title',0,1,' faye klavas '),
(320,'alt',0,1,''),
(320,'extension',0,1,' png '),
(320,'filename',0,1,' ellipse 9 png '),
(320,'kind',0,1,' image '),
(320,'slug',0,1,''),
(320,'title',0,1,' ellipse 9 '),
(322,'slug',0,1,' jessica williams '),
(322,'title',0,1,' hannah ainsworth '),
(324,'slug',0,1,' amanda brown '),
(324,'title',0,1,' eleanor crane '),
(326,'slug',0,1,' sarah mitchell '),
(326,'title',0,1,' kirsty partington '),
(330,'slug',0,1,' what our patients say '),
(330,'title',0,1,' what my patients say '),
(343,'slug',0,1,' temp zjrvvlgkzqvcossdcrczxsyxoxtrxbmbxqkt '),
(343,'title',0,1,''),
(348,'slug',0,1,' temp lzvyeytrqhjeckolrlslhccdbkerfdtqufbg '),
(348,'title',0,1,''),
(349,'slug',0,1,' temp opkwzijqrhcwynqkhppceiqsswyrdbsuxrod '),
(349,'title',0,1,''),
(352,'slug',0,1,' temp wexyjcfjleplrbnfambvsgitgzibotuqyufg '),
(352,'title',0,1,''),
(353,'slug',0,1,' temp uqhjrqukbjafnvugauvjrloacaphqhnynxqr '),
(353,'title',0,1,''),
(354,'slug',0,1,' temp pwtdzxiqvvbvlodtczhbopvzsnkbkcoxpdhr '),
(354,'title',0,1,''),
(355,'slug',0,1,' temp bqenovxuushfugbsgmrgnrrivgsuocfyftgl '),
(355,'title',0,1,''),
(356,'slug',0,1,' temp ueulohmlvftnpttugavoigplkmkpateaatdi '),
(356,'title',0,1,''),
(357,'slug',0,1,' temp tnragugzrodaaqdxbdwmzxrxwcbaudfrukyi '),
(357,'title',0,1,''),
(358,'slug',0,1,' one column test '),
(358,'title',0,1,''),
(359,'slug',0,1,' testtt '),
(359,'title',0,1,' elegant text section '),
(360,'slug',0,1,' test '),
(360,'title',0,1,' test '),
(377,'slug',0,1,' sdsddasddasads '),
(377,'title',0,1,' sdsddasddasads '),
(378,'slug',0,1,' sadasddsa '),
(378,'title',0,1,' sadasddsa '),
(379,'slug',0,1,' saffsasfa '),
(379,'title',0,1,' saffsasfa '),
(395,'slug',0,1,' test '),
(395,'title',0,1,' specialized in the subtle magic of clinically advanced treatments '),
(408,'slug',0,1,' heading '),
(408,'title',0,1,' heading '),
(409,'slug',0,1,' testasdsdadas '),
(409,'title',0,1,' testasdsdadas '),
(410,'slug',0,1,' saffsafsa '),
(410,'title',0,1,' saffsafsa '),
(411,'slug',0,1,' sadadsasdasdads '),
(411,'title',0,1,' sadadsasdasdads '),
(412,'slug',0,1,' dsadasdsasaddsa '),
(412,'title',0,1,' dsadasdsasaddsa '),
(529,'slug',0,1,' top spacer '),
(529,'title',0,1,' top spacer '),
(530,'slug',0,1,' top spacer '),
(530,'title',0,1,' bottom spacer '),
(542,'slug',0,1,' test '),
(542,'title',0,1,' for exquisitely natural results '),
(555,'slug',0,1,' temp ukhlfrkrwxvqphsxkdlvvvxiptnbnkyeulvy '),
(555,'title',0,1,''),
(556,'slug',0,1,' temp wmeimyvjylpqcjlosjessunwyhwkrrnjklnf '),
(556,'title',0,1,''),
(567,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(567,'title',0,1,''),
(568,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(568,'title',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(569,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(569,'title',0,1,''),
(570,'slug',0,1,' for exquisitely natural results '),
(570,'title',0,1,' for exquisitely natural results '),
(578,'slug',0,1,' testtt '),
(578,'title',0,1,' elegant text section '),
(579,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(579,'title',0,1,''),
(580,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(580,'title',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(581,'slug',0,1,' for exquisitely natural results '),
(581,'title',0,1,' for exquisitely natural results '),
(582,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(582,'title',0,1,''),
(592,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(592,'title',0,1,''),
(593,'slug',0,1,' testtt '),
(593,'title',0,1,' elegant text section '),
(594,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(594,'title',0,1,''),
(604,'slug',0,1,' one column test '),
(604,'title',0,1,' elegant text section '),
(605,'slug',0,1,' testtt '),
(605,'title',0,1,' elegant text section '),
(606,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(606,'title',0,1,''),
(607,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(607,'title',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(608,'slug',0,1,' for exquisitely natural results '),
(608,'title',0,1,' for exquisitely natural results '),
(609,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(609,'title',0,1,''),
(626,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(626,'title',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(632,'slug',0,1,' testtt '),
(632,'title',0,1,' elegant text section '),
(634,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(634,'title',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(635,'slug',0,1,' for exquisitely natural results '),
(635,'title',0,1,' for exquisitely natural results '),
(636,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(636,'title',0,1,''),
(648,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(648,'title',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(654,'slug',0,1,' testtt '),
(654,'title',0,1,' elegant text section '),
(655,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(655,'title',0,1,''),
(656,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(656,'title',0,1,' helping you look and feel your best at every stage of life '),
(657,'slug',0,1,' for exquisitely natural results '),
(657,'title',0,1,' for exquisitely natural results '),
(658,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(658,'title',0,1,''),
(750,'slug',0,1,' transformations '),
(750,'title',0,1,' patient transformations '),
(755,'slug',0,1,' temp hrsrtnjvjaeyevhqrflzvfvipyecbfknlxad '),
(755,'title',0,1,''),
(756,'slug',0,1,' temp ccleoexuyarlctsubwnoskazkbgvshwxhvgj '),
(756,'title',0,1,''),
(757,'alt',0,1,''),
(757,'extension',0,1,' jpg '),
(757,'filename',0,1,' drrach web 95 jpg '),
(757,'kind',0,1,' image '),
(757,'slug',0,1,''),
(757,'title',0,1,' dr rach web 95 '),
(761,'slug',0,1,' about dr rachel '),
(761,'title',0,1,' about dr rachel '),
(762,'slug',0,1,' about me '),
(762,'title',0,1,' about me '),
(763,'slug',0,1,' what to expect '),
(763,'title',0,1,' what to expect '),
(764,'slug',0,1,' consultation '),
(764,'title',0,1,' consultation '),
(774,'slug',0,1,' explore our services '),
(774,'title',0,1,' explore my services '),
(785,'slug',0,1,' one column test '),
(785,'title',0,1,' elegant text section '),
(786,'slug',0,1,' testtt '),
(786,'title',0,1,' elegant text section '),
(787,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(787,'title',0,1,''),
(788,'slug',0,1,' specialised in the subtle magic of clinically advanced treatments '),
(788,'title',0,1,' helping you look and feel your best at every stage of life '),
(789,'slug',0,1,' for exquisitely natural results '),
(789,'title',0,1,' for exquisitely natural results '),
(790,'slug',0,1,' temp gsjqarcyaoxbnckyesidrekuzhkajradrvdb '),
(790,'title',0,1,''),
(806,'slug',0,1,' about me '),
(806,'title',0,1,' about '),
(821,'alt',0,1,''),
(821,'extension',0,1,' jpg '),
(821,'filename',0,1,' drrach web 17 12 jpg '),
(821,'kind',0,1,' image '),
(821,'slug',0,1,''),
(821,'title',0,1,' dr rach web 17 12 '),
(843,'slug',0,1,' follow us for inspiration exclusive offers 2 '),
(843,'title',0,1,' follow us for inspiration '),
(849,'slug',0,1,' location and map '),
(849,'title',0,1,' location and map '),
(850,'slug',0,1,' book your consultation '),
(850,'title',0,1,' book your consultation 2 '),
(867,'slug',0,1,' location and map '),
(867,'title',0,1,' location and map '),
(868,'slug',0,1,' test '),
(868,'title',0,1,' test '),
(877,'slug',0,1,' how it works '),
(877,'title',0,1,' how it works '),
(887,'slug',0,1,' contacts '),
(887,'title',0,1,' contacts '),
(901,'slug',0,1,' hero contact '),
(901,'title',0,1,' hero contact '),
(902,'slug',0,1,' hero contact '),
(902,'title',0,1,' hero contact '),
(903,'slug',0,1,' hero contact '),
(903,'title',0,1,' contact '),
(904,'slug',0,1,' sfsaasfafs '),
(904,'title',0,1,' sfsaasfafs '),
(912,'slug',0,1,' about '),
(912,'title',0,1,' about '),
(947,'slug',0,1,' disclaimer1 '),
(947,'title',0,1,' disclaimer1 '),
(961,'slug',0,1,' disclaimer1 '),
(961,'title',0,1,' disclaimer1 '),
(963,'slug',0,1,' disclaimer1 '),
(963,'title',0,1,' disclaimer1 '),
(965,'slug',0,1,' disclaimer1 '),
(965,'title',0,1,' disclaimer1 '),
(1037,'alt',0,1,''),
(1037,'extension',0,1,' webp '),
(1037,'filename',0,1,' baton rouge office jpg 2026 02 21 155437 ezuv webp '),
(1037,'kind',0,1,' image '),
(1037,'slug',0,1,''),
(1037,'title',0,1,' baton rouge office jpg '),
(1098,'slug',0,1,' aptos thread lifts '),
(1098,'title',0,1,' aptos thread lifts 2 '),
(1099,'slug',0,1,' consultation dr ian strawford payable in advance non refundable '),
(1099,'title',0,1,' consultation dr ian strawford payable in advance non refundable '),
(1100,'slug',0,1,' mid face and jawline '),
(1100,'title',0,1,' mid face and jawline '),
(1101,'slug',0,1,' brow lift '),
(1101,'title',0,1,' brow lift '),
(1102,'slug',0,1,' additional threads '),
(1102,'title',0,1,' additional threads '),
(1108,'slug',0,1,' bio identical hormones for women and men '),
(1108,'title',0,1,' bio identical hormones for women and men '),
(1109,'slug',0,1,' initial consultation 45 minutes '),
(1109,'title',0,1,' initial consultation 45 minutes '),
(1110,'slug',0,1,' initial hormonal blood analysis '),
(1110,'title',0,1,' initial hormonal blood analysis '),
(1111,'slug',0,1,' follow up consultation '),
(1111,'title',0,1,' follow up consultation '),
(1112,'slug',0,1,' 6 8 weeks follow up bloods once on hrt '),
(1112,'title',0,1,' 6 8 weeks follow up bloods once on hrt '),
(1118,'slug',0,1,' botox anti wrinkle injections '),
(1118,'title',0,1,' botox anti wrinkle injections '),
(1119,'slug',0,1,' consultation nurse specialist refundable against treatment '),
(1119,'title',0,1,' consultation nurse specialist refundable against treatment '),
(1120,'slug',0,1,' one area '),
(1120,'title',0,1,' one area '),
(1121,'slug',0,1,' two areas '),
(1121,'title',0,1,' two areas '),
(1122,'slug',0,1,' three areas '),
(1122,'title',0,1,' three areas '),
(1128,'slug',0,1,' chemical peels '),
(1128,'title',0,1,' chemical peels '),
(1129,'slug',0,1,' treatment '),
(1129,'title',0,1,' treatment '),
(1132,'slug',0,1,' dermalux led phototherapy '),
(1132,'title',0,1,' treatment consultation '),
(1133,'slug',0,1,' dermalux single treatment '),
(1133,'title',0,1,' treatment consultation '),
(1285,'slug',0,1,' temp pelegzorxtwdhhbmygugjhjkbpbbhgkbmpoi '),
(1285,'title',0,1,''),
(1286,'slug',0,1,' test1 '),
(1286,'title',0,1,' test1 '),
(1289,'slug',0,1,' temp yqifyqnxhwjhqhaxqeyuwmmggawmbikhuggl '),
(1289,'title',0,1,''),
(1367,'slug',0,1,' what is treatment 3 '),
(1367,'title',0,1,' about dr rachel '),
(1372,'slug',0,1,' what is treatment 3 '),
(1372,'title',0,1,' what is treatment 3 '),
(1385,'slug',0,1,' frequently asked questions '),
(1385,'title',0,1,' frequently asked questions '),
(1386,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1386,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1387,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1387,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1388,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1388,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1389,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1389,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1390,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1390,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1391,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1391,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1392,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1392,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1393,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1393,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1407,'slug',0,1,' follow us for inspiration exclusive offers 2 '),
(1407,'title',0,1,' follow us for inspiration '),
(1415,'slug',0,1,' temp bfrmdbopfetezomtzohqrkaujhxmadnmfqkt '),
(1415,'title',0,1,''),
(1417,'slug',0,1,' test section '),
(1417,'title',0,1,' test section '),
(1419,'slug',0,1,' temp rgpcoojkpqipcuhvjsgbvlkjmpqwjqnaajtq '),
(1419,'title',0,1,''),
(1424,'slug',0,1,' test section '),
(1424,'title',0,1,' test section '),
(1425,'slug',0,1,' temp yhtxrmrnfarnqrfecefmdmqdpjwjnurpokhq '),
(1425,'title',0,1,' nnbbn '),
(1426,'slug',0,1,' temp jodbsjbbeldndcxxcrmehjtldidafinysdnj '),
(1426,'title',0,1,''),
(1427,'slug',0,1,' temp vdbbaquzojwwytsnxchwvrychzcycyowkikc '),
(1427,'title',0,1,''),
(1440,'slug',0,1,' temp kqjbywkwlgdmefvqxabhcqrlhjuxmrfuhaho '),
(1440,'title',0,1,''),
(1503,'alt',0,1,''),
(1503,'extension',0,1,' jpg '),
(1503,'filename',0,1,' jalupro jpg '),
(1503,'kind',0,1,' image '),
(1503,'slug',0,1,''),
(1503,'title',0,1,' jalupro '),
(1638,'alt',0,1,''),
(1638,'extension',0,1,' jpg '),
(1638,'filename',0,1,' jalupro 2 jpg '),
(1638,'kind',0,1,' image '),
(1638,'slug',0,1,''),
(1638,'title',0,1,' jalupro 2 '),
(1640,'alt',0,1,''),
(1640,'extension',0,1,' jpg '),
(1640,'filename',0,1,' jalupro3 jpg '),
(1640,'kind',0,1,' image '),
(1640,'slug',0,1,''),
(1640,'title',0,1,' jalupro3 '),
(1691,'alt',0,1,''),
(1691,'extension',0,1,' jpg '),
(1691,'filename',0,1,' jalupro4 jpg '),
(1691,'kind',0,1,' image '),
(1691,'slug',0,1,''),
(1691,'title',0,1,' jalupro4 '),
(1749,'alt',0,1,''),
(1749,'extension',0,1,' jpg '),
(1749,'filename',0,1,' jalupro5 jpg '),
(1749,'kind',0,1,' image '),
(1749,'slug',0,1,''),
(1749,'title',0,1,' jalupro5 '),
(1937,'alt',0,1,''),
(1937,'extension',0,1,' jpg '),
(1937,'filename',0,1,' drrach web 169 jpg '),
(1937,'kind',0,1,' image '),
(1937,'slug',0,1,''),
(1937,'title',0,1,' dr rach web 169 '),
(1939,'alt',0,1,''),
(1939,'extension',0,1,' jpg '),
(1939,'filename',0,1,' drrach web 132 jpg '),
(1939,'kind',0,1,' image '),
(1939,'slug',0,1,''),
(1939,'title',0,1,' dr rach web 132 '),
(1941,'alt',0,1,''),
(1941,'extension',0,1,' jpg '),
(1941,'filename',0,1,' drrach web 187 jpg '),
(1941,'kind',0,1,' image '),
(1941,'slug',0,1,''),
(1941,'title',0,1,' dr rach web 187 '),
(1946,'alt',0,1,''),
(1946,'extension',0,1,' jpg '),
(1946,'filename',0,1,' drrach web 192 jpg '),
(1946,'kind',0,1,' image '),
(1946,'slug',0,1,''),
(1946,'title',0,1,' dr rach web 192 '),
(1951,'slug',0,1,' sunekos '),
(1951,'title',0,1,' sunekos '),
(1952,'slug',0,1,' treatment 2 '),
(1952,'title',0,1,' sunekos eye treatment wirral '),
(1953,'slug',0,1,' treatment overview '),
(1953,'title',0,1,' treatment overview '),
(1957,'slug',0,1,' price '),
(1957,'title',0,1,' duration '),
(1958,'slug',0,1,' why choose this treatment '),
(1958,'title',0,1,' why choose sunekos eye treatment '),
(1963,'slug',0,1,' what is treatment 3 '),
(1963,'title',0,1,' your comprehensive skin consultation '),
(1964,'slug',0,1,' who should consider this treatment '),
(1964,'title',0,1,' who should consider sunekos eye treatment '),
(1965,'slug',0,1,' transformations '),
(1965,'title',0,1,' patient transformations '),
(1966,'slug',0,1,' frequently asked questions '),
(1966,'title',0,1,' frequently asked questions about sinekos '),
(1967,'slug',0,1,' q what happens during a consultation '),
(1967,'title',0,1,' q what happens during a consultation '),
(1968,'slug',0,1,' q how does a doctor led skin consultation differ from retail skincare advice '),
(1968,'title',0,1,' q how does a doctor led skin consultation differ from retail skincare advice '),
(1969,'slug',0,1,' q what are my treatment options '),
(1969,'title',0,1,' q what are my treatment options '),
(1970,'slug',0,1,' q how long until i see results '),
(1970,'title',0,1,' q how long until i see results '),
(1971,'slug',0,1,' q is it safe for darker skin '),
(1971,'title',0,1,' q is it safe for darker skin '),
(1972,'slug',0,1,' q what is the sp complex sensitivity test '),
(1972,'title',0,1,' q what is the sp complex sensitivity test '),
(1973,'slug',0,1,' q how much does consultation cost '),
(1973,'title',0,1,' q how much does consultation cost '),
(1974,'slug',0,1,' q can i combine with other treatments '),
(1974,'title',0,1,' q can i combine with other treatments '),
(1975,'slug',0,1,' q what is the radiance collection '),
(1975,'title',0,1,' q what is the radiance collection '),
(1976,'slug',0,1,' q what is the skin coach club '),
(1976,'title',0,1,' q what is the skin coach club '),
(1977,'slug',0,1,' still have questions '),
(1977,'title',0,1,' still have questions '),
(2006,'alt',0,1,''),
(2006,'extension',0,1,' jpg '),
(2006,'filename',0,1,' drrach web 107 jpg '),
(2006,'kind',0,1,' image '),
(2006,'slug',0,1,''),
(2006,'title',0,1,' dr rach web 107 '),
(2020,'slug',0,1,' what is treatment 3 '),
(2020,'title',0,1,' what is sunekos performa '),
(2034,'alt',0,1,''),
(2034,'extension',0,1,' jpg '),
(2034,'filename',0,1,' drrach web 110 jpg '),
(2034,'kind',0,1,' image '),
(2034,'slug',0,1,''),
(2034,'title',0,1,' dr rach web 110 '),
(2036,'alt',0,1,''),
(2036,'extension',0,1,' jpg '),
(2036,'filename',0,1,' dsc02593 jpg '),
(2036,'kind',0,1,' image '),
(2036,'slug',0,1,''),
(2036,'title',0,1,' dsc02593 '),
(2061,'slug',0,1,' q will people know that i have had treatment '),
(2061,'title',0,1,' will people know that i have had treatment '),
(2341,'alt',0,1,''),
(2341,'extension',0,1,' jpg '),
(2341,'filename',0,1,' drrach web 38 jpg '),
(2341,'kind',0,1,' image '),
(2341,'slug',0,1,''),
(2341,'title',0,1,' dr rach web 38 '),
(2342,'alt',0,1,''),
(2342,'extension',0,1,' jpg '),
(2342,'filename',0,1,' drrach web 43 jpg '),
(2342,'kind',0,1,' image '),
(2342,'slug',0,1,''),
(2342,'title',0,1,' dr rach web 43 '),
(2343,'alt',0,1,''),
(2343,'extension',0,1,' jpg '),
(2343,'filename',0,1,' drrach web 55 jpg '),
(2343,'kind',0,1,' image '),
(2343,'slug',0,1,''),
(2343,'title',0,1,' dr rach web 55 '),
(2578,'alt',0,1,''),
(2578,'extension',0,1,' jpg '),
(2578,'filename',0,1,' drrach web 38 2026 03 02 234722 daka jpg '),
(2578,'kind',0,1,' image '),
(2578,'slug',0,1,''),
(2578,'title',0,1,' dr rach web 38 '),
(2579,'alt',0,1,''),
(2579,'extension',0,1,' jpg '),
(2579,'filename',0,1,' drrach web 43 2026 03 02 234722 dlxi jpg '),
(2579,'kind',0,1,' image '),
(2579,'slug',0,1,''),
(2579,'title',0,1,' dr rach web 43 '),
(2580,'alt',0,1,''),
(2580,'extension',0,1,' jpg '),
(2580,'filename',0,1,' drrach web 55 2026 03 02 234722 thvg jpg '),
(2580,'kind',0,1,' image '),
(2580,'slug',0,1,''),
(2580,'title',0,1,' dr rach web 55 '),
(2581,'alt',0,1,''),
(2581,'extension',0,1,' jpg '),
(2581,'filename',0,1,' dsc04503 jpg '),
(2581,'kind',0,1,' image '),
(2581,'slug',0,1,''),
(2581,'title',0,1,' dsc04503 '),
(2582,'alt',0,1,''),
(2582,'extension',0,1,' jpg '),
(2582,'filename',0,1,' dsc04614 jpg '),
(2582,'kind',0,1,' image '),
(2582,'slug',0,1,''),
(2582,'title',0,1,' dsc04614 '),
(2583,'alt',0,1,''),
(2583,'extension',0,1,' jpg '),
(2583,'filename',0,1,' dsc04657 jpg '),
(2583,'kind',0,1,' image '),
(2583,'slug',0,1,''),
(2583,'title',0,1,' dsc04657 '),
(2698,'alt',0,1,''),
(2698,'extension',0,1,' jpg '),
(2698,'filename',0,1,' dsc03184 jpg '),
(2698,'kind',0,1,' image '),
(2698,'slug',0,1,''),
(2698,'title',0,1,' dsc03184 '),
(2711,'alt',0,1,''),
(2711,'extension',0,1,' jpg '),
(2711,'filename',0,1,' dsc03248 jpg '),
(2711,'kind',0,1,' image '),
(2711,'slug',0,1,''),
(2711,'title',0,1,' dsc03248 '),
(2712,'alt',0,1,''),
(2712,'extension',0,1,' jpg '),
(2712,'filename',0,1,' dsc03641 jpg '),
(2712,'kind',0,1,' image '),
(2712,'slug',0,1,''),
(2712,'title',0,1,' dsc03641 '),
(2905,'slug',0,1,''),
(2905,'title',0,1,' treatments '),
(2906,'slug',0,1,' 1 '),
(2906,'title',0,1,' cryotherapy '),
(2907,'slug',0,1,' 1 '),
(2907,'title',0,1,' jalupro young eye '),
(2908,'slug',0,1,' 1 '),
(2908,'title',0,1,' skin consultation '),
(2909,'slug',0,1,' 1 '),
(2909,'title',0,1,' sunekos '),
(2910,'slug',0,1,' 1 '),
(2910,'title',0,1,' julaine bio stimulator '),
(2911,'slug',0,1,' 1 '),
(2911,'title',0,1,' chemical peels '),
(2912,'slug',0,1,' 1 '),
(2912,'title',0,1,' microneedling '),
(2913,'slug',0,1,' 1 '),
(2913,'title',0,1,' skin boosters '),
(2914,'slug',0,1,' 1 '),
(2914,'title',0,1,' polynucleotides '),
(2915,'slug',0,1,' 1 '),
(2915,'title',0,1,' dermal fillers '),
(3047,'slug',0,1,' temp iidpdaivqfpgctixiebrnbbyfiaxdmpfntbg '),
(3047,'title',0,1,''),
(3086,'slug',0,1,' rosacea '),
(3086,'title',0,1,' rosacea '),
(3087,'slug',0,1,' treatment 2 '),
(3087,'title',0,1,' neck lines on the wirral '),
(3088,'slug',0,1,' what is treatment 3 '),
(3088,'title',0,1,' the four types of rosacea '),
(3089,'slug',0,1,' what is treatment 3 '),
(3089,'title',0,1,' rosacea condition '),
(3090,'slug',0,1,' what is treatment 3 '),
(3090,'title',0,1,' common rosacea triggers and how to treat '),
(3091,'slug',0,1,' still have questions '),
(3091,'title',0,1,' still have questions '),
(3092,'slug',0,1,' transformations '),
(3092,'title',0,1,' transformations '),
(3093,'slug',0,1,' frequently asked questions '),
(3093,'title',0,1,' frequently asked questions about rosacea condition '),
(3094,'slug',0,1,' q is rosacea treatment suitable for all skin types '),
(3094,'title',0,1,' q is rosacea treatment suitable for all skin types '),
(3095,'slug',0,1,' q how many treatment sessions will i need '),
(3095,'title',0,1,' q how many treatment sessions will i need '),
(3096,'slug',0,1,' q is rosacea treatment painful '),
(3096,'title',0,1,' q is rosacea treatment painful '),
(3097,'slug',0,1,' q how long is the recovery time '),
(3097,'title',0,1,' q how long is the recovery time '),
(3098,'slug',0,1,' q when will i see results and how long do they last '),
(3098,'title',0,1,' q when will i see results and how long do they last '),
(3099,'slug',0,1,' q are there any side effects or risks '),
(3099,'title',0,1,' q are there any side effects or risks '),
(3100,'slug',0,1,' q can i combine rosacea treatment with other treatments '),
(3100,'title',0,1,' q can i combine rosacea treatment with other treatments '),
(3101,'slug',0,1,' q what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(3101,'title',0,1,' q what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(3102,'slug',0,1,' still have questions '),
(3102,'title',0,1,' still have questions '),
(3116,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(3116,'title',0,1,' is rosacea treatment suitable for all skin types '),
(3117,'slug',0,1,' q how many treatment sessions will i need '),
(3117,'title',0,1,' how many treatment sessions will i need '),
(3118,'slug',0,1,' q is the neck line treatment painful '),
(3118,'title',0,1,' is rosacea treatment painful '),
(3119,'slug',0,1,' q how long is the recovery time '),
(3119,'title',0,1,' how long is the recovery time '),
(3120,'slug',0,1,' q when will i see results and how long do they last '),
(3120,'title',0,1,' when will i see results and how long do they last '),
(3121,'slug',0,1,' q can i treat tech neck even if i am in my 20s or 30s '),
(3121,'title',0,1,' are there any side effects or risks '),
(3122,'slug',0,1,' q can i combine neck line treatment with other treatments '),
(3122,'title',0,1,' can i combine rosacea treatment with other treatments '),
(3541,'slug',0,1,' 1 '),
(3541,'title',0,1,' rosacea '),
(3542,'slug',0,1,' 1 '),
(3542,'title',0,1,' ageing skin '),
(3543,'slug',0,1,' 1 '),
(3543,'title',0,1,' dark circles under the eyes '),
(3544,'slug',0,1,' 1 '),
(3544,'title',0,1,' crepey skin '),
(3545,'slug',0,1,' 1 '),
(3545,'title',0,1,' hyperpigmentation '),
(3546,'slug',0,1,' 1 '),
(3546,'title',0,1,' acne scarring '),
(3547,'slug',0,1,' 1 '),
(3547,'title',0,1,' upper lips lines '),
(3548,'slug',0,1,' 1 '),
(3548,'title',0,1,' lines and wrinkles '),
(3549,'slug',0,1,' 1 '),
(3549,'title',0,1,' rosacea '),
(3783,'slug',0,1,' one session '),
(3783,'title',0,1,' one session '),
(3784,'slug',0,1,' anaesthetic not normally required '),
(3784,'title',0,1,' anaesthetic not normally required '),
(3785,'slug',0,1,' results visible in 2 weeks '),
(3785,'title',0,1,' results visible in 2 weeks '),
(3786,'slug',0,1,' very low discomfort '),
(3786,'title',0,1,' very low discomfort '),
(3793,'slug',0,1,' anti wrinkle injections 2 '),
(3793,'title',0,1,' treatment 2 '),
(3794,'slug',0,1,' treatment 2 '),
(3794,'title',0,1,' treatment 2 '),
(3795,'slug',0,1,' treatment overview '),
(3795,'title',0,1,' treatment overview '),
(3796,'slug',0,1,' price '),
(3796,'title',0,1,' price '),
(3797,'slug',0,1,' price '),
(3797,'title',0,1,' procedure time '),
(3798,'slug',0,1,' price '),
(3798,'title',0,1,' recovery time '),
(3799,'slug',0,1,' price '),
(3799,'title',0,1,' duration '),
(3800,'slug',0,1,' one session '),
(3800,'title',0,1,' one session '),
(3801,'slug',0,1,' anaesthetic not normally required '),
(3801,'title',0,1,' anaesthetic not normally required '),
(3802,'slug',0,1,' results visible in 2 weeks '),
(3802,'title',0,1,' results visible in 2 weeks '),
(3803,'slug',0,1,' very low discomfort '),
(3803,'title',0,1,' very low discomfort '),
(3804,'slug',0,1,' why choose this treatment '),
(3804,'title',0,1,' why choose anti wrinkle injections '),
(3805,'slug',0,1,' targeted results '),
(3805,'title',0,1,' understand what bothers you '),
(3806,'slug',0,1,' safety first '),
(3806,'title',0,1,' subtle safe '),
(3807,'slug',0,1,' expert care '),
(3807,'title',0,1,' expert care '),
(3808,'slug',0,1,' proven excellence '),
(3808,'title',0,1,' proven excellence '),
(3809,'slug',0,1,' what is treatment 3 '),
(3809,'title',0,1,' what is treatment 2 '),
(3810,'slug',0,1,' who should consider this treatment '),
(3810,'title',0,1,' who should consider this treatment '),
(3811,'slug',0,1,' transformations '),
(3811,'title',0,1,' patient transformations '),
(3812,'slug',0,1,' frequently asked questions '),
(3812,'title',0,1,' frequently asked questions '),
(3813,'slug',0,1,' q how long do anti wrinkle injection results last '),
(3813,'title',0,1,' how long do anti wrinkle injection results last '),
(3814,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(3814,'title',0,1,' how many treatments will i need is it a one off treatment or ongoing '),
(3815,'slug',0,1,' q how permanent are the results '),
(3815,'title',0,1,' how permanent are the results '),
(3816,'slug',0,1,' q is the treatment safe '),
(3816,'title',0,1,' is the treatment safe '),
(3817,'slug',0,1,' q does it hurt how is the procedure done '),
(3817,'title',0,1,' does it hurt how is the procedure done '),
(3818,'slug',0,1,' q will i look frozen or expressionless '),
(3818,'title',0,1,' will i look frozen or expressionless '),
(3819,'slug',0,1,' q is there any downtime after treatment '),
(3819,'title',0,1,' is there any downtime after treatment '),
(3820,'slug',0,1,' q when will i see results '),
(3820,'title',0,1,' when will i see results '),
(3821,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(3821,'title',0,1,' can i combine anti wrinkle injections with other treatments '),
(3822,'slug',0,1,' q are there any side effects or risks '),
(3822,'title',0,1,' are there any side effects or risks '),
(3823,'slug',0,1,' q will people know that i have had treatment '),
(3823,'title',0,1,' will people know that i have had treatment '),
(3824,'slug',0,1,' still have questions '),
(3824,'title',0,1,' still have questions '),
(3825,'slug',0,1,' what is treatment 3 '),
(3825,'title',0,1,' what is treatment 2 '),
(3826,'slug',0,1,' frequently asked questions '),
(3826,'title',0,1,' frequently asked questions '),
(3827,'slug',0,1,' temp umpzilqrcarirotbcpcdiydlekhvucfryfsp '),
(3827,'title',0,1,' dassaasddas '),
(3906,'slug',0,1,' safety first '),
(3906,'title',0,1,' natural subtle results '),
(3918,'slug',0,1,' safety first '),
(3918,'title',0,1,' gentle yet effective '),
(3929,'slug',0,1,' safety first '),
(3929,'title',0,1,' patented non volumising formula '),
(3937,'slug',0,1,' safety first '),
(3937,'title',0,1,' targets root causes '),
(3953,'alt',0,1,''),
(3953,'extension',0,1,' jpg '),
(3953,'filename',0,1,' who should consider this treatment jpg '),
(3953,'kind',0,1,' image '),
(3953,'slug',0,1,''),
(3953,'title',0,1,' who should consider this treatment '),
(3956,'alt',0,1,''),
(3956,'extension',0,1,' jpg '),
(3956,'filename',0,1,' sunekos eye treatment 2 jpg '),
(3956,'kind',0,1,' image '),
(3956,'slug',0,1,''),
(3956,'title',0,1,' sunekos eye treatment 2 '),
(3957,'alt',0,1,''),
(3957,'extension',0,1,' jpg '),
(3957,'filename',0,1,' sunekos eye treatment jpg '),
(3957,'kind',0,1,' image '),
(3957,'slug',0,1,''),
(3957,'title',0,1,' sunekos eye treatment '),
(3968,'slug',0,1,' price '),
(3968,'title',0,1,' price '),
(3969,'slug',0,1,' price '),
(3969,'title',0,1,' procedure time '),
(3970,'slug',0,1,' price '),
(3970,'title',0,1,' recovery time '),
(4026,'slug',0,1,' anti wrinkle injection '),
(4026,'title',0,1,' anti wrinkle injections '),
(4027,'slug',0,1,' treatment 2 '),
(4027,'title',0,1,' anti wrinkle injections on the wirral '),
(4028,'slug',0,1,' treatment overview '),
(4028,'title',0,1,' treatment overview '),
(4029,'slug',0,1,' price '),
(4029,'title',0,1,' price '),
(4030,'slug',0,1,' price '),
(4030,'title',0,1,' procedure time '),
(4031,'slug',0,1,' price '),
(4031,'title',0,1,' recovery time '),
(4032,'slug',0,1,' price '),
(4032,'title',0,1,' duration '),
(4033,'slug',0,1,' why choose this treatment '),
(4033,'title',0,1,' why choose anti wrinkle injections '),
(4034,'slug',0,1,' safety first '),
(4034,'title',0,1,' patented non volumising formula '),
(4035,'slug',0,1,' safety first '),
(4035,'title',0,1,' targets root causes '),
(4036,'slug',0,1,' safety first '),
(4036,'title',0,1,' gentle yet effective '),
(4037,'slug',0,1,' safety first '),
(4037,'title',0,1,' natural subtle results '),
(4038,'slug',0,1,' what is treatment 3 '),
(4038,'title',0,1,' what are anti wrinkle injections '),
(4039,'slug',0,1,' who should consider this treatment '),
(4039,'title',0,1,' who should consider anti wrinkle injections '),
(4040,'slug',0,1,' transformations '),
(4040,'title',0,1,' patient transformations '),
(4041,'slug',0,1,' frequently asked questions '),
(4041,'title',0,1,' frequently asked questions about anti wrinkle injections '),
(4042,'slug',0,1,' q how long do anti wrinkle injection results last '),
(4042,'title',0,1,' how long do anti wrinkle injection results last '),
(4043,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4043,'title',0,1,' how many treatments will i need is it a one off treatment or ongoing '),
(4044,'slug',0,1,' q how permanent are the results '),
(4044,'title',0,1,' how permanent are the results '),
(4045,'slug',0,1,' q is the treatment safe '),
(4045,'title',0,1,' is the treatment safe '),
(4046,'slug',0,1,' q does it hurt how is the procedure done '),
(4046,'title',0,1,' does it hurt how is the procedure done '),
(4047,'slug',0,1,' q will i look frozen or expressionless '),
(4047,'title',0,1,' will i look frozen or expressionless '),
(4048,'slug',0,1,' q is there any downtime after treatment '),
(4048,'title',0,1,' is there any downtime after treatment '),
(4049,'slug',0,1,' q when will i see results '),
(4049,'title',0,1,' when will i see results '),
(4050,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(4050,'title',0,1,' can i combine anti wrinkle injections with other treatments '),
(4051,'slug',0,1,' q are there any side effects or risks '),
(4051,'title',0,1,' are there any side effects or risks '),
(4052,'slug',0,1,' q will people know that i have had treatment '),
(4052,'title',0,1,' will people know that i have had treatment '),
(4053,'slug',0,1,' still have questions '),
(4053,'title',0,1,' still have questions '),
(4082,'alt',0,1,''),
(4082,'extension',0,1,' jpg '),
(4082,'filename',0,1,' anti wrinkle injection rachel jpg '),
(4082,'kind',0,1,' image '),
(4082,'slug',0,1,''),
(4082,'title',0,1,' anti wrinkle injection rachel '),
(4083,'alt',0,1,''),
(4083,'extension',0,1,' jpg '),
(4083,'filename',0,1,' anti wrinkle injection wirral jpg '),
(4083,'kind',0,1,' image '),
(4083,'slug',0,1,''),
(4083,'title',0,1,' anti wrinkle injection wirral '),
(4084,'alt',0,1,''),
(4084,'extension',0,1,' jpg '),
(4084,'filename',0,1,' anti wrinkle injection jpg '),
(4084,'kind',0,1,' image '),
(4084,'slug',0,1,''),
(4084,'title',0,1,' anti wrinkle injection '),
(4088,'alt',0,1,''),
(4088,'extension',0,1,' jpg '),
(4088,'filename',0,1,' anti wrinkle injection wirral uk jpg '),
(4088,'kind',0,1,' image '),
(4088,'slug',0,1,''),
(4088,'title',0,1,' anti wrinkle injection wirral uk '),
(4089,'alt',0,1,''),
(4089,'extension',0,1,' jpg '),
(4089,'filename',0,1,' dsc02607 jpg '),
(4089,'kind',0,1,' image '),
(4089,'slug',0,1,''),
(4089,'title',0,1,' dsc02607 '),
(4090,'alt',0,1,''),
(4090,'extension',0,1,' jpg '),
(4090,'filename',0,1,' anti wrinkle injection wirral jpg '),
(4090,'kind',0,1,' image '),
(4090,'slug',0,1,''),
(4090,'title',0,1,' anti wrinkle injection wirral '),
(4105,'alt',0,1,''),
(4105,'extension',0,1,' jpg '),
(4105,'filename',0,1,' anti wrinkle injection client jpg '),
(4105,'kind',0,1,' image '),
(4105,'slug',0,1,''),
(4105,'title',0,1,' anti wrinkle injection client '),
(4118,'alt',0,1,''),
(4118,'extension',0,1,' jpg '),
(4118,'filename',0,1,' aesthetics by rachel banner jpg '),
(4118,'kind',0,1,' image '),
(4118,'slug',0,1,''),
(4118,'title',0,1,' aesthetics by rachel banner '),
(4126,'alt',0,1,''),
(4126,'extension',0,1,' jpg '),
(4126,'filename',0,1,' aesthetics by rachel home banner jpg '),
(4126,'kind',0,1,' image '),
(4126,'slug',0,1,''),
(4126,'title',0,1,' aesthetics by rachel home banner '),
(4173,'slug',0,1,' targeted results '),
(4173,'title',0,1,' targeted results '),
(4203,'slug',0,1,' julaine bio stimulators '),
(4203,'title',0,1,' bio stimulators '),
(4204,'slug',0,1,' treatment 2 '),
(4204,'title',0,1,' julaine bio stimulator '),
(4205,'slug',0,1,' treatment overview '),
(4205,'title',0,1,' treatment overview '),
(4206,'slug',0,1,' price '),
(4206,'title',0,1,' price '),
(4207,'slug',0,1,' price '),
(4207,'title',0,1,' procedure time '),
(4208,'slug',0,1,' price '),
(4208,'title',0,1,' recovery time '),
(4209,'slug',0,1,' price '),
(4209,'title',0,1,' duration '),
(4210,'slug',0,1,' why choose this treatment '),
(4210,'title',0,1,' why choose julaine bio stimulator '),
(4211,'slug',0,1,' targeted results '),
(4211,'title',0,1,' next generation swedish technology '),
(4212,'slug',0,1,' targeted results '),
(4212,'title',0,1,' the invisible transformation '),
(4213,'slug',0,1,' targeted results '),
(4213,'title',0,1,' true tissue regeneration '),
(4214,'slug',0,1,' targeted results '),
(4214,'title',0,1,' exceptional longevity '),
(4215,'slug',0,1,' what is treatment 3 '),
(4215,'title',0,1,' what is julaine '),
(4216,'slug',0,1,' who should consider this treatment '),
(4216,'title',0,1,' what areas can julaine treat '),
(4217,'slug',0,1,' transformations '),
(4217,'title',0,1,' patient transformations '),
(4218,'slug',0,1,' frequently asked questions '),
(4218,'title',0,1,' frequently asked questions about julaine bio stimulator '),
(4220,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4220,'title',0,1,' is julaine treatment painful '),
(4221,'slug',0,1,' q how permanent are the results '),
(4221,'title',0,1,' how many julaine sessions will i need '),
(4223,'slug',0,1,' q does it hurt how is the procedure done '),
(4223,'title',0,1,' how long do julaine results last '),
(4224,'slug',0,1,' q will i look frozen or expressionless '),
(4224,'title',0,1,' is there downtime after julaine '),
(4225,'slug',0,1,' q is there any downtime after treatment '),
(4225,'title',0,1,' can julaine be combined with other treatments '),
(4226,'slug',0,1,' q when will i see results '),
(4226,'title',0,1,' is julaine safe '),
(4227,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(4227,'title',0,1,' why did you choose julaine over older plla treatments such as sculptra '),
(4228,'slug',0,1,' q are there any side effects or risks '),
(4228,'title',0,1,' what skincare should i use after sunekos '),
(4229,'slug',0,1,' q will people know that i have had treatment '),
(4229,'title',0,1,' will people know that i have had treatment '),
(4230,'slug',0,1,' still have questions '),
(4230,'title',0,1,' still have questions '),
(4303,'slug',0,1,' chemical peels '),
(4303,'title',0,1,' chemical peels '),
(4304,'slug',0,1,' treatment 2 '),
(4304,'title',0,1,' chemical peels clinical grade skin resurfacing '),
(4305,'slug',0,1,' treatment overview '),
(4305,'title',0,1,' treatment overview '),
(4306,'slug',0,1,' price '),
(4306,'title',0,1,' price '),
(4307,'slug',0,1,' price '),
(4307,'title',0,1,' procedure time '),
(4308,'slug',0,1,' price '),
(4308,'title',0,1,' recovery time '),
(4309,'slug',0,1,' price '),
(4309,'title',0,1,' duration '),
(4310,'slug',0,1,' why choose this treatment '),
(4310,'title',0,1,' why choose chemical peels '),
(4311,'slug',0,1,' targeted results '),
(4311,'title',0,1,' accelerated cellular renewal '),
(4315,'slug',0,1,' what is treatment 3 '),
(4315,'title',0,1,' what is chemical resurfacing '),
(4316,'slug',0,1,' who should consider this treatment '),
(4316,'title',0,1,' who should consider chemical resurfacing '),
(4317,'slug',0,1,' transformations '),
(4317,'title',0,1,' patient transformations '),
(4318,'slug',0,1,' frequently asked questions '),
(4318,'title',0,1,' frequently asked questions about chemical peels '),
(4319,'slug',0,1,' q how long do anti wrinkle injection results last '),
(4319,'title',0,1,' how much downtime do chemical peels require '),
(4320,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4320,'title',0,1,' do chemical peels hurt '),
(4321,'slug',0,1,' q how permanent are the results '),
(4321,'title',0,1,' how many chemical peel sessions will i need '),
(4322,'slug',0,1,' q is the treatment safe '),
(4322,'title',0,1,' are chemical peels safe for dark skin '),
(4323,'slug',0,1,' q does it hurt how is the procedure done '),
(4323,'title',0,1,' what is the difference between glycolic salicylic and tca peels '),
(4324,'slug',0,1,' q will i look frozen or expressionless '),
(4324,'title',0,1,' can i combine chemical peels with other treatments '),
(4325,'slug',0,1,' q is there any downtime after treatment '),
(4325,'title',0,1,' what skincare should i use after a chemical peel '),
(4326,'slug',0,1,' q when will i see results '),
(4326,'title',0,1,' how do i prevent pigmentation after a peel '),
(4327,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(4327,'title',0,1,' can chemical peels treat acne '),
(4328,'slug',0,1,' still have questions '),
(4328,'title',0,1,' still have questions '),
(4355,'alt',0,1,''),
(4355,'extension',0,1,' jpg '),
(4355,'filename',0,1,' chemical peel wirral jpg '),
(4355,'kind',0,1,' image '),
(4355,'slug',0,1,''),
(4355,'title',0,1,' chemical peel wirral '),
(4372,'alt',0,1,''),
(4372,'extension',0,1,' jpg '),
(4372,'filename',0,1,' chemical peels wirral by dr rachel jpg '),
(4372,'kind',0,1,' image '),
(4372,'slug',0,1,''),
(4372,'title',0,1,' chemical peels wirral by dr rachel '),
(4373,'alt',0,1,''),
(4373,'extension',0,1,' jpg '),
(4373,'filename',0,1,' chemical peels wirral jpg '),
(4373,'kind',0,1,' image '),
(4373,'slug',0,1,''),
(4373,'title',0,1,' chemical peels wirral '),
(4375,'alt',0,1,''),
(4375,'extension',0,1,' jpg '),
(4375,'filename',0,1,' chemical peels wirral by rachel aesthetics jpg '),
(4375,'kind',0,1,' image '),
(4375,'slug',0,1,''),
(4375,'title',0,1,' chemical peels wirral by rachel aesthetics '),
(4413,'slug',0,1,' 1 '),
(4413,'title',0,1,' chemical peels '),
(4414,'slug',0,1,' 1 '),
(4414,'title',0,1,' anti wrinkle injections '),
(4415,'slug',0,1,' 1 '),
(4415,'title',0,1,' bio stimulators '),
(4417,'slug',0,1,' 1 '),
(4417,'title',0,1,' chemical peels '),
(4418,'slug',0,1,' microneedling '),
(4418,'title',0,1,' microneedling '),
(4419,'slug',0,1,' treatment 2 '),
(4419,'title',0,1,' medical microneedling wirral advanced skin regeneration '),
(4420,'slug',0,1,' treatment overview '),
(4420,'title',0,1,' treatment overview '),
(4421,'slug',0,1,' price '),
(4421,'title',0,1,' price '),
(4422,'slug',0,1,' price '),
(4422,'title',0,1,' procedure time '),
(4423,'slug',0,1,' price '),
(4423,'title',0,1,' recovery time '),
(4424,'slug',0,1,' price '),
(4424,'title',0,1,' duration '),
(4425,'slug',0,1,' why choose this treatment '),
(4425,'title',0,1,' why choose medical microneedling '),
(4426,'slug',0,1,' targeted results '),
(4426,'title',0,1,' true collagen induction '),
(4427,'slug',0,1,' targeted results '),
(4427,'title',0,1,' advanced serum technology '),
(4428,'slug',0,1,' targeted results '),
(4428,'title',0,1,' treats what lasers cannot '),
(4429,'slug',0,1,' targeted results '),
(4429,'title',0,1,' medical grade precision '),
(4430,'slug',0,1,' what is treatment 3 '),
(4430,'title',0,1,' what is medical microneedling '),
(4431,'slug',0,1,' who should consider this treatment '),
(4431,'title',0,1,' who should consider medical microneedling '),
(4432,'slug',0,1,' transformations '),
(4432,'title',0,1,' patient transformations '),
(4433,'slug',0,1,' frequently asked questions '),
(4433,'title',0,1,' frequently asked questions about microneedling '),
(4435,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4435,'title',0,1,' does microneedling hurt '),
(4436,'slug',0,1,' q how permanent are the results '),
(4436,'title',0,1,' when will i see results from microneedling '),
(4444,'slug',0,1,' q will people know that i have had treatment '),
(4444,'title',0,1,' will people know that i have had treatment '),
(4445,'slug',0,1,' still have questions '),
(4445,'title',0,1,' still have questions '),
(4446,'alt',0,1,''),
(4446,'extension',0,1,' jpg '),
(4446,'filename',0,1,' microneedling wirral featured image jpg '),
(4446,'kind',0,1,' image '),
(4446,'slug',0,1,''),
(4446,'title',0,1,' microneedling wirral featured image '),
(4447,'alt',0,1,''),
(4447,'extension',0,1,' jpg '),
(4447,'filename',0,1,' microneedling wirral patient jpg '),
(4447,'kind',0,1,' image '),
(4447,'slug',0,1,''),
(4447,'title',0,1,' microneedling wirral patient '),
(4448,'alt',0,1,''),
(4448,'extension',0,1,' jpg '),
(4448,'filename',0,1,' microneedling wirral treatment jpg '),
(4448,'kind',0,1,' image '),
(4448,'slug',0,1,''),
(4448,'title',0,1,' microneedling wirral treatment '),
(4502,'slug',0,1,' skin boosters '),
(4502,'title',0,1,' skin boosters '),
(4503,'slug',0,1,' treatment 2 '),
(4503,'title',0,1,' skin boosters wirral doctor led injectable hydration '),
(4504,'slug',0,1,' treatment overview '),
(4504,'title',0,1,' treatment overview '),
(4505,'slug',0,1,' price '),
(4505,'title',0,1,' price '),
(4506,'slug',0,1,' price '),
(4506,'title',0,1,' procedure time '),
(4507,'slug',0,1,' price '),
(4507,'title',0,1,' recovery time '),
(4508,'slug',0,1,' price '),
(4508,'title',0,1,' duration '),
(4509,'slug',0,1,' why choose this treatment '),
(4509,'title',0,1,' why choose skin boosters '),
(4510,'slug',0,1,' targeted results '),
(4510,'title',0,1,' intelligent skin hydration '),
(4511,'slug',0,1,' targeted results '),
(4511,'title',0,1,' quality not volume '),
(4512,'slug',0,1,' targeted results '),
(4512,'title',0,1,' treats what skincare cannot '),
(4513,'slug',0,1,' targeted results '),
(4513,'title',0,1,' medical grade science '),
(4514,'slug',0,1,' what is treatment 3 '),
(4514,'title',0,1,' what are skin boosters '),
(4515,'slug',0,1,' who should consider this treatment '),
(4515,'title',0,1,' who should consider skin boosters '),
(4516,'slug',0,1,' transformations '),
(4516,'title',0,1,' patient transformations '),
(4517,'slug',0,1,' frequently asked questions '),
(4517,'title',0,1,' frequently asked questions about skin booster injectable treatments '),
(4518,'slug',0,1,' q how long do anti wrinkle injection results last '),
(4518,'title',0,1,' do skin boosters hurt '),
(4519,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4519,'title',0,1,' when will i see results from skin boosters '),
(4520,'slug',0,1,' q how permanent are the results '),
(4520,'title',0,1,' are skin boosters safe '),
(4521,'slug',0,1,' q is the treatment safe '),
(4521,'title',0,1,' what is the downtime after skin boosters '),
(4522,'slug',0,1,' q does it hurt how is the procedure done '),
(4522,'title',0,1,' how long do skin booster results last '),
(4523,'slug',0,1,' q will i look frozen or expressionless '),
(4523,'title',0,1,' how many treatments will i need '),
(4524,'slug',0,1,' q is there any downtime after treatment '),
(4524,'title',0,1,' what is the difference between neauvia hydro deluxe and profhilo '),
(4525,'slug',0,1,' q when will i see results '),
(4525,'title',0,1,' can i combine skin boosters with other treatments '),
(4526,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(4526,'title',0,1,' how can i extend my skin booster results '),
(4527,'slug',0,1,' q are there any side effects or risks '),
(4527,'title',0,1,' will skin boosters help my acne scars '),
(4528,'slug',0,1,' q will people know that i have had treatment '),
(4528,'title',0,1,' will people know that i have had treatment '),
(4529,'slug',0,1,' still have questions '),
(4529,'title',0,1,' still have questions '),
(4531,'alt',0,1,''),
(4531,'extension',0,1,' jpg '),
(4531,'filename',0,1,' microneedling wirral happy patient jpg '),
(4531,'kind',0,1,' image '),
(4531,'slug',0,1,''),
(4531,'title',0,1,' microneedling wirral happy patient '),
(4536,'alt',0,1,''),
(4536,'extension',0,1,' jpg '),
(4536,'filename',0,1,' skin booster in wirral patient jpg '),
(4536,'kind',0,1,' image '),
(4536,'slug',0,1,''),
(4536,'title',0,1,' skin booster in wirral patient '),
(4537,'alt',0,1,''),
(4537,'extension',0,1,' jpg '),
(4537,'filename',0,1,' skin booster in wirral jpg '),
(4537,'kind',0,1,' image '),
(4537,'slug',0,1,''),
(4537,'title',0,1,' skin booster in wirral '),
(4538,'alt',0,1,''),
(4538,'extension',0,1,' jpg '),
(4538,'filename',0,1,' skin booster injection jpg '),
(4538,'kind',0,1,' image '),
(4538,'slug',0,1,''),
(4538,'title',0,1,' skin booster injection '),
(4539,'alt',0,1,''),
(4539,'extension',0,1,' jpg '),
(4539,'filename',0,1,' skin booster featured image jpg '),
(4539,'kind',0,1,' image '),
(4539,'slug',0,1,''),
(4539,'title',0,1,' skin booster featured image '),
(4593,'slug',0,1,' polynucleotides '),
(4593,'title',0,1,' polynucleotides '),
(4594,'slug',0,1,' treatment 2 '),
(4594,'title',0,1,' polynucleotides regenerative skin treatment '),
(4595,'slug',0,1,' treatment overview '),
(4595,'title',0,1,' treatment overview '),
(4596,'slug',0,1,' price '),
(4596,'title',0,1,' price '),
(4597,'slug',0,1,' price '),
(4597,'title',0,1,' procedure time '),
(4598,'slug',0,1,' price '),
(4598,'title',0,1,' recovery time '),
(4599,'slug',0,1,' price '),
(4599,'title',0,1,' duration '),
(4600,'slug',0,1,' why choose this treatment '),
(4600,'title',0,1,' why choose polynucleotide treatment '),
(4601,'slug',0,1,' targeted results '),
(4601,'title',0,1,' true regenerative medicine '),
(4602,'slug',0,1,' targeted results '),
(4602,'title',0,1,' treats what others cannot '),
(4603,'slug',0,1,' targeted results '),
(4603,'title',0,1,' natural lasting results '),
(4604,'slug',0,1,' targeted results '),
(4604,'title',0,1,' medical grade safety '),
(4605,'slug',0,1,' what is treatment 3 '),
(4605,'title',0,1,' what are polynucleotides '),
(4606,'slug',0,1,' who should consider this treatment '),
(4606,'title',0,1,' who should consider polynucleotides '),
(4607,'slug',0,1,' transformations '),
(4607,'title',0,1,' patient transformations '),
(4608,'slug',0,1,' frequently asked questions '),
(4608,'title',0,1,' frequently asked questions about polynucleotide treatment '),
(4609,'slug',0,1,' q how long do anti wrinkle injection results last '),
(4609,'title',0,1,' are polynucleotides safe '),
(4610,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4610,'title',0,1,' how long before i see results '),
(4611,'slug',0,1,' q how permanent are the results '),
(4611,'title',0,1,' is there any downtime '),
(4612,'slug',0,1,' q is the treatment safe '),
(4612,'title',0,1,' does it hurt '),
(4613,'slug',0,1,' q does it hurt how is the procedure done '),
(4613,'title',0,1,' whats the difference between polynucleotides and profhilo '),
(4614,'slug',0,1,' q will i look frozen or expressionless '),
(4614,'title',0,1,' can polynucleotides treat my dark circles '),
(4615,'slug',0,1,' q is there any downtime after treatment '),
(4615,'title',0,1,' can i combine polynucleotides with other treatments '),
(4616,'slug',0,1,' q when will i see results '),
(4616,'title',0,1,' is sunekos treatment safe '),
(4617,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(4617,'title',0,1,' can i combine anti wrinkle injections with other treatments '),
(4618,'slug',0,1,' q are there any side effects or risks '),
(4618,'title',0,1,' what skincare should i use after sunekos '),
(4619,'slug',0,1,' q will people know that i have had treatment '),
(4619,'title',0,1,' will people know that i have had treatment '),
(4620,'slug',0,1,' still have questions '),
(4620,'title',0,1,' still have questions '),
(4623,'alt',0,1,''),
(4623,'extension',0,1,' jpg '),
(4623,'filename',0,1,' skin booster in wirral patient 2026 03 19 160130 wzqx jpg '),
(4623,'kind',0,1,' image '),
(4623,'slug',0,1,''),
(4623,'title',0,1,' skin booster in wirral patient '),
(4624,'alt',0,1,''),
(4624,'extension',0,1,' jpg '),
(4624,'filename',0,1,' skin booster in wirral 2026 03 19 160131 sunv jpg '),
(4624,'kind',0,1,' image '),
(4624,'slug',0,1,''),
(4624,'title',0,1,' skin booster in wirral '),
(4625,'alt',0,1,''),
(4625,'extension',0,1,' jpg '),
(4625,'filename',0,1,' skin booster injection 2026 03 19 160131 ommu jpg '),
(4625,'kind',0,1,' image '),
(4625,'slug',0,1,''),
(4625,'title',0,1,' skin booster injection '),
(4626,'alt',0,1,''),
(4626,'extension',0,1,' jpg '),
(4626,'filename',0,1,' skin booster featured image 2026 03 19 160132 hjhh jpg '),
(4626,'kind',0,1,' image '),
(4626,'slug',0,1,''),
(4626,'title',0,1,' skin booster featured image '),
(4627,'alt',0,1,''),
(4627,'extension',0,1,' jpg '),
(4627,'filename',0,1,' polynucleotides in wirral featured jpg '),
(4627,'kind',0,1,' image '),
(4627,'slug',0,1,''),
(4627,'title',0,1,' polynucleotides in wirral featured '),
(4628,'alt',0,1,''),
(4628,'extension',0,1,' jpg '),
(4628,'filename',0,1,' polynucleotides in wirral uk jpg '),
(4628,'kind',0,1,' image '),
(4628,'slug',0,1,''),
(4628,'title',0,1,' polynucleotides in wirral uk '),
(4629,'alt',0,1,''),
(4629,'extension',0,1,' jpg '),
(4629,'filename',0,1,' polynucleotides in wirral jpg '),
(4629,'kind',0,1,' image '),
(4629,'slug',0,1,''),
(4629,'title',0,1,' polynucleotides in wirral '),
(4630,'alt',0,1,''),
(4630,'extension',0,1,' jpg '),
(4630,'filename',0,1,' polynucleotides treatment in wirral jpg '),
(4630,'kind',0,1,' image '),
(4630,'slug',0,1,''),
(4630,'title',0,1,' polynucleotides treatment in wirral '),
(4702,'slug',0,1,' dermal fillers '),
(4702,'title',0,1,' dermal fillers '),
(4703,'slug',0,1,' treatment 2 '),
(4703,'title',0,1,' dermal fillers natural facial rejuvenation '),
(4704,'slug',0,1,' treatment overview '),
(4704,'title',0,1,' treatment overview '),
(4705,'slug',0,1,' price '),
(4705,'title',0,1,' price '),
(4706,'slug',0,1,' price '),
(4706,'title',0,1,' procedure time '),
(4707,'slug',0,1,' price '),
(4707,'title',0,1,' recovery time '),
(4708,'slug',0,1,' price '),
(4708,'title',0,1,' duration '),
(4709,'slug',0,1,' why choose this treatment '),
(4709,'title',0,1,' why a consultation comes first '),
(4710,'slug',0,1,' targeted results '),
(4710,'title',0,1,' true regenerative medicine '),
(4711,'slug',0,1,' targeted results '),
(4711,'title',0,1,' treats what others cannot '),
(4712,'slug',0,1,' targeted results '),
(4712,'title',0,1,' natural lasting results '),
(4713,'slug',0,1,' targeted results '),
(4713,'title',0,1,' medical grade safety '),
(4714,'slug',0,1,' what is treatment 3 '),
(4714,'title',0,1,' what are dermal fillers '),
(4715,'slug',0,1,' who should consider this treatment '),
(4715,'title',0,1,' what areas can dermal fillers treat '),
(4716,'slug',0,1,' transformations '),
(4716,'title',0,1,' patient transformations '),
(4717,'slug',0,1,' frequently asked questions '),
(4717,'title',0,1,' frequently asked questions about dermal fillers '),
(4719,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4719,'title',0,1,' how long do dermal fillers last '),
(4720,'slug',0,1,' q how permanent are the results '),
(4720,'title',0,1,' what is the aftercare for dermal fillers '),
(4722,'slug',0,1,' q does it hurt how is the procedure done '),
(4722,'title',0,1,' can dermal fillers look natural '),
(4723,'slug',0,1,' q will i look frozen or expressionless '),
(4723,'title',0,1,' what is the difference between dermal fillers and anti wrinkle injections '),
(4725,'slug',0,1,' still have questions '),
(4725,'title',0,1,' still have questions '),
(4752,'alt',0,1,''),
(4752,'extension',0,1,' jpg '),
(4752,'filename',0,1,' dermal fillers treatement wirral jpg '),
(4752,'kind',0,1,' image '),
(4752,'slug',0,1,''),
(4752,'title',0,1,' dermal fillers treatement wirral '),
(4753,'alt',0,1,''),
(4753,'extension',0,1,' jpg '),
(4753,'filename',0,1,' dermal fillers wirral jpg '),
(4753,'kind',0,1,' image '),
(4753,'slug',0,1,''),
(4753,'title',0,1,' dermal fillers wirral '),
(4754,'alt',0,1,''),
(4754,'extension',0,1,' jpg '),
(4754,'filename',0,1,' dermal fillers wirral fetured image jpg '),
(4754,'kind',0,1,' image '),
(4754,'slug',0,1,''),
(4754,'title',0,1,' dermal fillers wirral fetured image '),
(4780,'slug',0,1,' can dermal fillers be reversed '),
(4780,'title',0,1,' can dermal fillers be reversed '),
(4781,'slug',0,1,' how much do dermal fillers cost '),
(4781,'title',0,1,' how much do dermal fillers cost '),
(4782,'slug',0,1,' can men have dermal fillers '),
(4782,'title',0,1,' can men have dermal fillers '),
(4805,'slug',0,1,' cryotherapy '),
(4805,'title',0,1,' cryotherapy '),
(4806,'slug',0,1,' treatment 2 '),
(4806,'title',0,1,' expert cryotherapy treatment by dr rachel '),
(4807,'slug',0,1,' treatment overview '),
(4807,'title',0,1,' treatment overview '),
(4808,'slug',0,1,' price '),
(4808,'title',0,1,' price '),
(4809,'slug',0,1,' price '),
(4809,'title',0,1,' procedure time '),
(4810,'slug',0,1,' price '),
(4810,'title',0,1,' recovery time '),
(4811,'slug',0,1,' price '),
(4811,'title',0,1,' duration '),
(4812,'slug',0,1,' why choose this treatment '),
(4812,'title',0,1,' why choose cryotherapy for skin lesions '),
(4813,'slug',0,1,' what is treatment 3 '),
(4813,'title',0,1,' what is cryotherapy treatment '),
(4814,'slug',0,1,' who should consider this treatment '),
(4814,'title',0,1,' who should consider cryotherapy '),
(4815,'slug',0,1,' transformations '),
(4815,'title',0,1,' patient transformations '),
(4816,'slug',0,1,' frequently asked questions '),
(4816,'title',0,1,' frequently asked questions about cryotherapy '),
(4817,'slug',0,1,' q how long do anti wrinkle injection results last '),
(4817,'title',0,1,' how long does the treatment take '),
(4818,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4818,'title',0,1,' does cryotherapy hurt '),
(4819,'slug',0,1,' q how permanent are the results '),
(4819,'title',0,1,' what happens immediately after treatment '),
(4820,'slug',0,1,' q is the treatment safe '),
(4820,'title',0,1,' how long does it take to heal '),
(4821,'slug',0,1,' q does it hurt how is the procedure done '),
(4821,'title',0,1,' will i have a scar '),
(4822,'slug',0,1,' q will i look frozen or expressionless '),
(4822,'title',0,1,' will the treated area look lighter than my skin '),
(4823,'slug',0,1,' q is there any downtime after treatment '),
(4823,'title',0,1,' is there any downtime '),
(4824,'slug',0,1,' can dermal fillers be reversed '),
(4824,'title',0,1,' will the lesion come back '),
(4825,'slug',0,1,' how much do dermal fillers cost '),
(4825,'title',0,1,' can i have multiple lesions treated at once '),
(4826,'slug',0,1,' can men have dermal fillers '),
(4826,'title',0,1,' what is the difference between the cryoiq pen and liquid nitrogen '),
(4827,'slug',0,1,' still have questions '),
(4827,'title',0,1,' still have questions '),
(4869,'slug',0,1,' precision technology '),
(4869,'title',0,1,' precision technology '),
(4870,'slug',0,1,' quick effective '),
(4870,'title',0,1,' quick effective '),
(4871,'slug',0,1,' doctor led expertise '),
(4871,'title',0,1,' doctor led expertise '),
(4872,'slug',0,1,' proven results '),
(4872,'title',0,1,' proven results '),
(4886,'alt',0,1,''),
(4886,'extension',0,1,' jpg '),
(4886,'filename',0,1,' cryotherapy in wirral jpg '),
(4886,'kind',0,1,' image '),
(4886,'slug',0,1,''),
(4886,'title',0,1,' cryotherapy in wirral '),
(4887,'alt',0,1,''),
(4887,'extension',0,1,' jpg '),
(4887,'filename',0,1,' cryotherapy treatment in wirral clinic jpg '),
(4887,'kind',0,1,' image '),
(4887,'slug',0,1,''),
(4887,'title',0,1,' cryotherapy treatment in wirral clinic '),
(4888,'alt',0,1,''),
(4888,'extension',0,1,' jpg '),
(4888,'filename',0,1,' cryotherapy treatment in wirral jpg '),
(4888,'kind',0,1,' image '),
(4888,'slug',0,1,''),
(4888,'title',0,1,' cryotherapy treatment in wirral '),
(4893,'alt',0,1,''),
(4893,'extension',0,1,' jpg '),
(4893,'filename',0,1,' skin booster in wirral fetured image jpg '),
(4893,'kind',0,1,' image '),
(4893,'slug',0,1,''),
(4893,'title',0,1,' skin booster in wirral fetured image '),
(4896,'slug',0,1,' skin consultation '),
(4896,'title',0,1,' skin consultation '),
(4897,'slug',0,1,' treatment 2 '),
(4897,'title',0,1,' skin consultation by dr rachel '),
(4898,'slug',0,1,' treatment overview '),
(4898,'title',0,1,' treatment overview '),
(4899,'slug',0,1,' price '),
(4899,'title',0,1,' price '),
(4900,'slug',0,1,' price '),
(4900,'title',0,1,' procedure time '),
(4901,'slug',0,1,' price '),
(4901,'title',0,1,' recovery time '),
(4902,'slug',0,1,' price '),
(4902,'title',0,1,' duration '),
(4903,'slug',0,1,' why choose this treatment '),
(4903,'title',0,1,' why book a skin consultation '),
(4904,'slug',0,1,' targeted results '),
(4904,'title',0,1,' understand what bothers you '),
(4905,'slug',0,1,' targeted results '),
(4905,'title',0,1,' test your skins tolerance '),
(4906,'slug',0,1,' targeted results '),
(4906,'title',0,1,' get your personalised plan '),
(4907,'slug',0,1,' targeted results '),
(4907,'title',0,1,' ongoing support '),
(4908,'slug',0,1,' what is treatment 3 '),
(4908,'title',0,1,' your comprehensive skin consultation '),
(4909,'slug',0,1,' who should consider this treatment '),
(4909,'title',0,1,' who will benefit from a skin consultation '),
(4910,'slug',0,1,' transformations '),
(4910,'title',0,1,' transformations '),
(4911,'slug',0,1,' frequently asked questions '),
(4911,'title',0,1,' frequently asked questions about skin consultation with dr rachel '),
(4912,'slug',0,1,' q how long do anti wrinkle injection results last '),
(4912,'title',0,1,' what happens during a consultation '),
(4913,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(4913,'title',0,1,' how does a doctor led skin consultation differ from retail skincare advice '),
(4914,'slug',0,1,' q how permanent are the results '),
(4914,'title',0,1,' what are my treatment options '),
(4915,'slug',0,1,' q is the treatment safe '),
(4915,'title',0,1,' how long until i see results '),
(4916,'slug',0,1,' q does it hurt how is the procedure done '),
(4916,'title',0,1,' is it safe for darker skin '),
(4917,'slug',0,1,' q will i look frozen or expressionless '),
(4917,'title',0,1,' what is the sp complex sensitivity test '),
(4918,'slug',0,1,' q is there any downtime after treatment '),
(4918,'title',0,1,' how much does a skin consultation cost '),
(4919,'slug',0,1,' q when will i see results '),
(4919,'title',0,1,' can i combine with other treatments '),
(4920,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(4920,'title',0,1,' what is the radiance collection '),
(4921,'slug',0,1,' q are there any side effects or risks '),
(4921,'title',0,1,' what is the skin coach club '),
(4922,'slug',0,1,' q will people know that i have had treatment '),
(4922,'title',0,1,' will people know that i have had treatment '),
(4923,'slug',0,1,' still have questions '),
(4923,'title',0,1,' still have questions '),
(4948,'alt',0,1,''),
(4948,'extension',0,1,' jpg '),
(4948,'filename',0,1,' skin consultation wirral by dr rachel jpg '),
(4948,'kind',0,1,' image '),
(4948,'slug',0,1,''),
(4948,'title',0,1,' skin consultation wirral by dr rachel '),
(4949,'alt',0,1,''),
(4949,'extension',0,1,' jpg '),
(4949,'filename',0,1,' skin consultation wirral featured image jpg '),
(4949,'kind',0,1,' image '),
(4949,'slug',0,1,''),
(4949,'title',0,1,' skin consultation wirral featured image '),
(4950,'alt',0,1,''),
(4950,'extension',0,1,' jpg '),
(4950,'filename',0,1,' skin consultation wirral jpg '),
(4950,'kind',0,1,' image '),
(4950,'slug',0,1,''),
(4950,'title',0,1,' skin consultation wirral '),
(4980,'alt',0,1,''),
(4980,'extension',0,1,' jpg '),
(4980,'filename',0,1,' sunekos treatment wirral fetured image jpg '),
(4980,'kind',0,1,' image '),
(4980,'slug',0,1,''),
(4980,'title',0,1,' sunekos treatment wirral fetured image '),
(4994,'alt',0,1,''),
(4994,'extension',0,1,' jpg '),
(4994,'filename',0,1,' dr rachel jpg '),
(4994,'kind',0,1,' image '),
(4994,'slug',0,1,''),
(4994,'title',0,1,' dr rachel '),
(4995,'slug',0,1,' saddsdas '),
(4995,'title',0,1,' saddsdas '),
(5014,'slug',0,1,' temp jkjicecplsvxavfhjilihzkpqchqqxydwevv '),
(5014,'title',0,1,''),
(5070,'alt',0,1,''),
(5070,'extension',0,1,' png '),
(5070,'filename',0,1,' rosacea codition png '),
(5070,'kind',0,1,' image '),
(5070,'slug',0,1,''),
(5070,'title',0,1,' rosacea codition '),
(5071,'alt',0,1,''),
(5071,'extension',0,1,' png '),
(5071,'filename',0,1,' rosacea condition 2 png '),
(5071,'kind',0,1,' image '),
(5071,'slug',0,1,''),
(5071,'title',0,1,' rosacea condition 2 '),
(5075,'alt',0,1,''),
(5075,'extension',0,1,' jpg '),
(5075,'filename',0,1,' aesthetics by dr rachel clinic jpg '),
(5075,'kind',0,1,' image '),
(5075,'slug',0,1,''),
(5075,'title',0,1,' aesthetics by dr rachel clinic '),
(5076,'alt',0,1,''),
(5076,'extension',0,1,' jpg '),
(5076,'filename',0,1,' aesthetics by dr rachel jpg '),
(5076,'kind',0,1,' image '),
(5076,'slug',0,1,''),
(5076,'title',0,1,' aesthetics by dr rachel '),
(5087,'slug',0,1,' what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(5087,'title',0,1,' what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(5108,'slug',0,1,' neck lines '),
(5108,'title',0,1,' neck lines '),
(5109,'slug',0,1,' what is treatment 3 '),
(5109,'title',0,1,' neck lines '),
(5110,'slug',0,1,' what is treatment 3 '),
(5110,'title',0,1,' what causes neck lines '),
(5111,'slug',0,1,' what is treatment 3 '),
(5111,'title',0,1,' how i treat neck lines at aesthetics by dr rachel '),
(5112,'slug',0,1,' transformations '),
(5112,'title',0,1,' transformations '),
(5113,'slug',0,1,' frequently asked questions '),
(5113,'title',0,1,' frequently asked questions about neck lines '),
(5114,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(5114,'title',0,1,' is neck line treatment suitable for all skin types '),
(5117,'slug',0,1,' q how long is the recovery time '),
(5117,'title',0,1,' how long is the recovery time '),
(5118,'slug',0,1,' q when will i see results and how long do they last '),
(5118,'title',0,1,' when will i see results and how long do they last '),
(5119,'slug',0,1,' q can i treat tech neck even if i am in my 20s or 30s '),
(5119,'title',0,1,' can i treat tech neck even if i am in my 20s or 30s '),
(5120,'slug',0,1,' q can i combine neck line treatment with other treatments '),
(5120,'title',0,1,' can i combine neck line treatment with other treatments '),
(5121,'slug',0,1,' what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(5121,'title',0,1,' what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(5122,'slug',0,1,' still have questions '),
(5122,'title',0,1,' still have questions '),
(5154,'slug',0,1,' temp cxymmgjcfgyvisxugmnofaqbuqacixmlpidg '),
(5154,'title',0,1,''),
(5161,'slug',0,1,' a '),
(5161,'title',0,1,' a '),
(5178,'slug',0,1,' what is treatment 3 '),
(5178,'title',0,1,' aesthetics by dr rachel '),
(5192,'slug',0,1,' book consultation '),
(5192,'title',0,1,' book consultation '),
(5239,'slug',0,1,' temp gnbvwcowghabrerqbtcbjmxpsboumanldjau '),
(5239,'title',0,1,''),
(5240,'slug',0,1,' temp emysnpbgfsbpcfufsgvkxxpkqtnhesivhsam '),
(5240,'title',0,1,''),
(5241,'slug',0,1,' temp xxrflzqrcknwesucunnmnavocolquwfvzhzz '),
(5241,'title',0,1,''),
(5256,'slug',0,1,' test '),
(5256,'title',0,1,' test '),
(5263,'slug',0,1,' sdasda '),
(5263,'title',0,1,' sdasda '),
(5264,'slug',0,1,' dssadasdsdadsa '),
(5264,'title',0,1,' dssadasdsdadsa '),
(5265,'slug',0,1,' sdaadsasd '),
(5265,'title',0,1,' sdaadsasd '),
(5372,'alt',0,1,''),
(5372,'extension',0,1,' jpg '),
(5372,'filename',0,1,' rectangle 80 jpg '),
(5372,'kind',0,1,' image '),
(5372,'slug',0,1,''),
(5372,'title',0,1,' rectangle 80 '),
(5373,'alt',0,1,''),
(5373,'extension',0,1,' jpg '),
(5373,'filename',0,1,' rectangle 81 jpg '),
(5373,'kind',0,1,' image '),
(5373,'slug',0,1,''),
(5373,'title',0,1,' rectangle 81 '),
(5374,'alt',0,1,''),
(5374,'extension',0,1,' jpg '),
(5374,'filename',0,1,' rectangle 82 jpg '),
(5374,'kind',0,1,' image '),
(5374,'slug',0,1,''),
(5374,'title',0,1,' rectangle 82 '),
(5389,'email',0,1,' info finedigital co uk '),
(5389,'title',0,1,' 2026 03 20 13 33 42 '),
(5389,'yourmessage',0,1,' test message from new form '),
(5389,'yourname',0,1,' lubo '),
(5389,'yournumber',0,1,' 312481288214 '),
(5390,'email',0,1,' info finedigital co uk '),
(5390,'hidden',0,1,''),
(5390,'title',0,1,' 2026 03 20 13 34 33 '),
(5390,'yourmessage',0,1,' test the honeypot '),
(5390,'yourname',0,1,' lubo '),
(5390,'yournumber',0,1,' 9123912391239 '),
(5391,'slug',0,1,' sams transformation '),
(5391,'title',0,1,' sams transformation '),
(5397,'slug',0,1,' sams transformation '),
(5397,'title',0,1,' sams transformation '),
(5405,'slug',0,1,' anitas transformation '),
(5405,'title',0,1,' anitas transformation '),
(5406,'slug',0,1,' sams transformation '),
(5406,'title',0,1,' anitas transformation '),
(5549,'slug',0,1,' q how permanent are the results '),
(5549,'title',0,1,' when will i see results from chemical peels '),
(5580,'slug',0,1,' q is the treatment safe '),
(5580,'title',0,1,' what is the downtime after microneedling '),
(5594,'slug',0,1,' q does it hurt how is the procedure done '),
(5594,'title',0,1,' is microneedling safe for dark skin '),
(5598,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(5598,'title',0,1,' can microneedling help with hair loss '),
(5655,'slug',0,1,' q is the treatment safe '),
(5655,'title',0,1,' how many treatments will i need '),
(5656,'slug',0,1,' are they suitable for menopausal skin '),
(5656,'title',0,1,' are they suitable for menopausal skin '),
(5708,'slug',0,1,' can men have dermal fillers '),
(5708,'title',0,1,' is cryotherapy safe for children '),
(5722,'slug',0,1,' 1 '),
(5722,'title',0,1,' polynucleotides '),
(5723,'slug',0,1,' 1 '),
(5723,'title',0,1,' dermal fillers '),
(5724,'slug',0,1,' 1 '),
(5724,'title',0,1,' skin boosters '),
(5725,'slug',0,1,' 1 '),
(5725,'title',0,1,' microneedling '),
(5726,'slug',0,1,' 1 '),
(5726,'title',0,1,' cryotherapy '),
(5727,'slug',0,1,' 1 '),
(5727,'title',0,1,' skin consultation '),
(5728,'slug',0,1,' sdasda '),
(5728,'title',0,1,' sdasda '),
(5741,'slug',0,1,''),
(5741,'title',0,1,' case studies '),
(5743,'slug',0,1,' temp tbmdwgejoxpmwxcxppcuamgtqytsbfcxscld '),
(5743,'title',0,1,''),
(5746,'slug',0,1,' featured showcase 1 '),
(5746,'title',0,1,' featured showcase 1 '),
(5763,'slug',0,1,' temp fzpeonaihozuxnenlyvanudfunjkfflckjct '),
(5763,'title',0,1,''),
(5766,'slug',0,1,' temp zsqvbmcclvpacujzmyiyhitbgyxkldsjpnnk '),
(5766,'title',0,1,''),
(5767,'slug',0,1,' temp grlmfyenpfwpeaklnohqpilldonlepvqdump '),
(5767,'title',0,1,''),
(5768,'slug',0,1,' temp lzrfvftbewltmaghqgvzwfuvjptvoilgtron '),
(5768,'title',0,1,''),
(5769,'slug',0,1,' temp lcemxlvknmsrgklypuaggpxfzbqmqipoagnh '),
(5769,'title',0,1,''),
(5770,'slug',0,1,' custom group '),
(5770,'title',0,1,' custom group '),
(5772,'slug',0,1,' custom group 2 '),
(5772,'title',0,1,' custom group 2 '),
(5779,'slug',0,1,' third section '),
(5779,'title',0,1,' christmas special package '),
(5788,'slug',0,1,' aptos thread lifts '),
(5788,'title',0,1,' aptos thread lifts 2 '),
(5794,'slug',0,1,' temp bhlmjvwicttnqetxislqvdlzhrjholmlpius '),
(5794,'title',0,1,''),
(5795,'slug',0,1,' grupa 1 '),
(5795,'title',0,1,' consultation '),
(5943,'slug',0,1,' transformations '),
(5943,'title',0,1,' patient transformations '),
(6031,'slug',0,1,''),
(6031,'title',0,1,' skin consultation '),
(6081,'slug',0,1,' 1 '),
(6081,'title',0,1,' julaine '),
(6082,'slug',0,1,' 1 '),
(6082,'title',0,1,' chemical peels '),
(6083,'slug',0,1,' 1 '),
(6083,'title',0,1,' microneedling '),
(6084,'slug',0,1,' 1 '),
(6084,'title',0,1,' dermal fillers '),
(6156,'slug',0,1,' injectable treatments '),
(6156,'title',0,1,' injectable treatments '),
(6157,'slug',0,1,' upper face anti wrinkle injections '),
(6157,'title',0,1,' upper face anti wrinkle injections '),
(6158,'slug',0,1,' one area '),
(6158,'title',0,1,' one area '),
(6159,'slug',0,1,' two areas '),
(6159,'title',0,1,' two areas '),
(6160,'slug',0,1,' three areas '),
(6160,'title',0,1,' three areas '),
(6161,'slug',0,1,' temp gxdavnikdakdczydldnhwfqesesgaqbbtork '),
(6161,'title',0,1,''),
(6166,'slug',0,1,' lower face rejuvenation toxin '),
(6166,'title',0,1,' lower face rejuvenation toxin '),
(6167,'slug',0,1,' lower face radiance lift '),
(6167,'title',0,1,' lower face radiance lift '),
(6168,'slug',0,1,' masseter reduction jaw slimming '),
(6168,'title',0,1,' masseter reduction jaw slimming '),
(6174,'slug',0,1,' excessive sweating treatments '),
(6174,'title',0,1,' excessive sweating treatments '),
(6175,'slug',0,1,' under arm '),
(6175,'title',0,1,' under arm '),
(6179,'slug',0,1,' dermal filler '),
(6179,'title',0,1,' dermal filler '),
(6180,'slug',0,1,' structural rejuvenation '),
(6180,'title',0,1,' structural rejuvenation '),
(6181,'slug',0,1,' mid face rejuvenation '),
(6181,'title',0,1,' mid face rejuvenation '),
(6182,'slug',0,1,' lower face rejuvenation '),
(6182,'title',0,1,' lower face rejuvenation '),
(6183,'slug',0,1,' full face rejuvenation '),
(6183,'title',0,1,' full face rejuvenation '),
(6195,'slug',0,1,' temp naijbgxpujdqyiylwpykdtwrtsxsdywlymbk '),
(6195,'title',0,1,''),
(6196,'slug',0,1,' signature combination treatments '),
(6196,'title',0,1,' signature combination treatments '),
(6197,'slug',0,1,' signature radiance lift '),
(6197,'title',0,1,' signature radiance lift '),
(6198,'slug',0,1,' structural filler treatment '),
(6198,'title',0,1,' structural filler treatment '),
(6199,'slug',0,1,' complete radiance programme includes 3 skin boosters '),
(6199,'title',0,1,' complete radiance programme includes 3 skin boosters '),
(6207,'slug',0,1,' perioral rejuvenation '),
(6207,'title',0,1,' perioral rejuvenation '),
(6211,'slug',0,1,' skin health regenerative treatments '),
(6211,'title',0,1,' skin health regenerative treatments '),
(6212,'slug',0,1,' skin consultation analysis '),
(6212,'title',0,1,' skin consultation analysis '),
(6213,'slug',0,1,' comprehensive skin consultation 60 mins '),
(6213,'title',0,1,' comprehensive skin consultation 60 mins '),
(6216,'slug',0,1,' skin resurfacing treatments '),
(6216,'title',0,1,' skin resurfacing treatments '),
(6217,'slug',0,1,' phformula skin resurfacing course of 4 treatments '),
(6217,'title',0,1,' phformula skin resurfacing '),
(6218,'slug',0,1,' advanced tca touch '),
(6218,'title',0,1,' advanced tca touch '),
(6219,'slug',0,1,' biorepeel medical microneedling course of 4 treatments '),
(6219,'title',0,1,' biorepeel medical microneedling '),
(6224,'slug',0,1,' advanced regenerative microneedling '),
(6224,'title',0,1,' advanced regenerative microneedling '),
(6225,'slug',0,1,' skin boost microneedling nctf '),
(6225,'title',0,1,' skin boost microneedling nctf '),
(6226,'slug',0,1,' regenerative microneedling pdrn most popular '),
(6226,'title',0,1,' regenerative microneedling pdrn most popular '),
(6227,'slug',0,1,' exosome microneedling purasomes '),
(6227,'title',0,1,' exosome microneedling purasomes '),
(6232,'slug',0,1,' injectable skin regeneration '),
(6232,'title',0,1,' injectable skin regeneration '),
(6233,'slug',0,1,' skin boosters course of 3 '),
(6233,'title',0,1,' skin boosters '),
(6242,'slug',0,1,' polynucleotide treatments course of 3 '),
(6242,'title',0,1,' polynucleotide treatments '),
(6243,'slug',0,1,' under eye radiance renewal sunekos most popular for under eye rejuvenation '),
(6243,'title',0,1,' under eye radiance renewal sunekos most popular for under eye rejuvenation '),
(6244,'slug',0,1,' under eye radiance repair polynucleotides '),
(6244,'title',0,1,' under eye radiance repair polynucleotides '),
(6245,'slug',0,1,' julaine '),
(6245,'title',0,1,' julaine '),
(6252,'slug',0,1,' lesion removal '),
(6252,'title',0,1,' skin lesion removal '),
(6253,'slug',0,1,' cryotherapy '),
(6253,'title',0,1,' cryotherapy '),
(6254,'slug',0,1,' consultation '),
(6254,'title',0,1,' consultation '),
(6255,'slug',0,1,' single lesion removal '),
(6255,'title',0,1,' single lesion removal '),
(6256,'slug',0,1,' additional lesion same session '),
(6256,'title',0,1,' additional lesion same session '),
(6257,'slug',0,1,' follow up retreatment if required '),
(6257,'title',0,1,' follow up retreatment if required '),
(6258,'slug',0,1,' verrucae removal 2 treatments '),
(6258,'title',0,1,' verrucae removal 2 treatments '),
(6265,'slug',0,1,' mole mapping '),
(6265,'title',0,1,' mole mapping '),
(6266,'slug',0,1,' up to 3 moles with dermatologist report '),
(6266,'title',0,1,' up to 3 moles with dermatologist report '),
(6267,'slug',0,1,' up to 6 moles with dermatologist report '),
(6267,'title',0,1,' up to 6 moles with dermatologist report '),
(6278,'slug',0,1,' reviews '),
(6278,'title',0,1,' reviews '),
(6337,'alt',0,1,''),
(6337,'extension',0,1,' jpg '),
(6337,'filename',0,1,' polynucleotides treatment wirral jpg '),
(6337,'kind',0,1,' image '),
(6337,'slug',0,1,''),
(6337,'title',0,1,' polynucleotides treatment wirral '),
(6338,'alt',0,1,''),
(6338,'extension',0,1,' jpg '),
(6338,'filename',0,1,' sunekos treatment wirral jpg '),
(6338,'kind',0,1,' image '),
(6338,'slug',0,1,''),
(6338,'title',0,1,' sunekos treatment wirral '),
(6344,'alt',0,1,''),
(6344,'extension',0,1,' png '),
(6344,'filename',0,1,' chemicla peel in the wirral png '),
(6344,'kind',0,1,' image '),
(6344,'slug',0,1,''),
(6344,'title',0,1,' chemicla peel in the wirral '),
(6347,'alt',0,1,''),
(6347,'extension',0,1,' jpg '),
(6347,'filename',0,1,' home rachel1 jpg '),
(6347,'kind',0,1,' image '),
(6347,'slug',0,1,''),
(6347,'title',0,1,' home rachel1 '),
(6448,'slug',0,1,' personalised treatment plan '),
(6448,'title',0,1,' your treatment plan '),
(6459,'slug',0,1,' initial consultation '),
(6459,'title',0,1,' your personal consultation '),
(6460,'slug',0,1,' informed consent and preparation '),
(6460,'title',0,1,' preparing for your treatment '),
(6461,'slug',0,1,' treatment aftercare '),
(6461,'title',0,1,' your treatment appointment '),
(6462,'slug',0,1,' section four '),
(6462,'title',0,1,' aftercare support '),
(6463,'slug',0,1,' section five '),
(6463,'title',0,1,' review and ongoing care '),
(6531,'alt',0,1,''),
(6531,'extension',0,1,' png '),
(6531,'filename',0,1,' neck lines condition 1 png '),
(6531,'kind',0,1,' image '),
(6531,'slug',0,1,''),
(6531,'title',0,1,' neck lines condition 1 '),
(6532,'alt',0,1,''),
(6532,'extension',0,1,' png '),
(6532,'filename',0,1,' neck lines condition 3 png '),
(6532,'kind',0,1,' image '),
(6532,'slug',0,1,''),
(6532,'title',0,1,' neck lines condition 3 '),
(6533,'alt',0,1,''),
(6533,'extension',0,1,' png '),
(6533,'filename',0,1,' neck lines condition2 png '),
(6533,'kind',0,1,' image '),
(6533,'slug',0,1,''),
(6533,'title',0,1,' neck lines condition2 '),
(6537,'alt',0,1,''),
(6537,'extension',0,1,' png '),
(6537,'filename',0,1,' neck lines condition 1 png '),
(6537,'kind',0,1,' image '),
(6537,'slug',0,1,''),
(6537,'title',0,1,' neck lines condition 1 '),
(6538,'alt',0,1,''),
(6538,'extension',0,1,' png '),
(6538,'filename',0,1,' neck lines condition 3 png '),
(6538,'kind',0,1,' image '),
(6538,'slug',0,1,''),
(6538,'title',0,1,' neck lines condition 3 '),
(6550,'slug',0,1,' ageing skin '),
(6550,'title',0,1,' ageing skin '),
(6551,'slug',0,1,' what is treatment 3 '),
(6551,'title',0,1,' ageing skin '),
(6552,'slug',0,1,' what is treatment 3 '),
(6552,'title',0,1,' what causes skin to age '),
(6553,'slug',0,1,' what is treatment 3 '),
(6553,'title',0,1,' what causes skin to age 2 '),
(6554,'slug',0,1,' transformations '),
(6554,'title',0,1,' transformations '),
(6555,'slug',0,1,' frequently asked questions '),
(6555,'title',0,1,' frequently asked questions about ageing '),
(6556,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(6556,'title',0,1,' at what age should i start anti ageing treatments '),
(6557,'slug',0,1,' q how many treatment sessions will i need '),
(6557,'title',0,1,' will i still look like myself after treatment '),
(6558,'slug',0,1,' q is the neck line treatment painful '),
(6558,'title',0,1,' how many treatments will i need '),
(6559,'slug',0,1,' q how long is the recovery time '),
(6559,'title',0,1,' is there any downtime '),
(6560,'slug',0,1,' q when will i see results and how long do they last '),
(6560,'title',0,1,' how long do results last '),
(6561,'slug',0,1,' q can i treat tech neck even if i am in my 20s or 30s '),
(6561,'title',0,1,' can i combine different anti ageing treatments '),
(6563,'slug',0,1,' what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(6563,'title',0,1,' what makes aesthetics by dr rachel different for rosacea treatment in wirral '),
(6564,'slug',0,1,' still have questions '),
(6564,'title',0,1,' still have questions '),
(6565,'alt',0,1,''),
(6565,'extension',0,1,' png '),
(6565,'filename',0,1,' aging skin condition wirral 1 png '),
(6565,'kind',0,1,' image '),
(6565,'slug',0,1,''),
(6565,'title',0,1,' aging skin condition wirral 1 '),
(6566,'alt',0,1,''),
(6566,'extension',0,1,' png '),
(6566,'filename',0,1,' aging skin condition wirral 3 png '),
(6566,'kind',0,1,' image '),
(6566,'slug',0,1,''),
(6566,'title',0,1,' aging skin condition wirral 3 '),
(6567,'alt',0,1,''),
(6567,'extension',0,1,' png '),
(6567,'filename',0,1,' aging skin condition wirral png '),
(6567,'kind',0,1,' image '),
(6567,'slug',0,1,''),
(6567,'title',0,1,' aging skin condition wirral '),
(6647,'slug',0,1,' lines and wrinkles '),
(6647,'title',0,1,' lines and wrinkles '),
(6648,'slug',0,1,' what is treatment 3 '),
(6648,'title',0,1,' lines and wrinkles '),
(6649,'slug',0,1,' what is treatment 3 '),
(6649,'title',0,1,' what causes lines and wrinkles '),
(6650,'slug',0,1,' what is treatment 3 '),
(6650,'title',0,1,' what causes lines and wrinkles 2 '),
(6651,'slug',0,1,' transformations '),
(6651,'title',0,1,' transformations '),
(6652,'slug',0,1,' frequently asked questions '),
(6652,'title',0,1,' frequently asked questions about lines and wrinkles '),
(6653,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(6653,'title',0,1,' at what age should i start treating lines and wrinkles '),
(6654,'slug',0,1,' q how many treatment sessions will i need '),
(6654,'title',0,1,' will i still be able to move my face naturally after anti wrinkle injections '),
(6657,'slug',0,1,' q when will i see results and how long do they last '),
(6657,'title',0,1,' is there any downtime '),
(6660,'slug',0,1,' still have questions '),
(6660,'title',0,1,' still have questions '),
(6684,'alt',0,1,''),
(6684,'extension',0,1,' png '),
(6684,'filename',0,1,' lines and wrinkles condition 2 png '),
(6684,'kind',0,1,' image '),
(6684,'slug',0,1,''),
(6684,'title',0,1,' lines and wrinkles condition 2 '),
(6685,'alt',0,1,''),
(6685,'extension',0,1,' png '),
(6685,'filename',0,1,' lines and wrinkles condition 3 png '),
(6685,'kind',0,1,' image '),
(6685,'slug',0,1,''),
(6685,'title',0,1,' lines and wrinkles condition 3 '),
(6686,'alt',0,1,''),
(6686,'extension',0,1,' png '),
(6686,'filename',0,1,' lines and wrinkles condition png '),
(6686,'kind',0,1,' image '),
(6686,'slug',0,1,''),
(6686,'title',0,1,' lines and wrinkles condition '),
(6712,'slug',0,1,' dark circles under the eyes '),
(6712,'title',0,1,' dark circles under the eyes '),
(6713,'slug',0,1,' what is treatment 3 '),
(6713,'title',0,1,' dark circles under the eyes '),
(6714,'slug',0,1,' what is treatment 3 '),
(6714,'title',0,1,' what causes dark circles under the eyes '),
(6715,'slug',0,1,' what is treatment 3 '),
(6715,'title',0,1,' what causes dark circles under the eyes 2 '),
(6716,'slug',0,1,' transformations '),
(6716,'title',0,1,' transformations '),
(6717,'slug',0,1,' frequently asked questions '),
(6717,'title',0,1,' frequently asked questions about dark circles under the eyes '),
(6718,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(6718,'title',0,1,' can dark circles be treated with non surgical aesthetic treatment '),
(6719,'slug',0,1,' q how many treatment sessions will i need '),
(6719,'title',0,1,' am i a suitable candidate for under eye treatment '),
(6720,'slug',0,1,' q is the neck line treatment painful '),
(6720,'title',0,1,' can dark circles be permanently removed '),
(6721,'slug',0,1,' q how long is the recovery time '),
(6721,'title',0,1,' what makes aesthetics by dr rachel different for under eye treatment '),
(6722,'slug',0,1,' q when will i see results and how long do they last '),
(6722,'title',0,1,' when will i see results and how long do they last '),
(6723,'slug',0,1,' q can i treat tech neck even if i am in my 20s or 30s '),
(6723,'title',0,1,' can i treat tech neck even if i am in my 20s or 30s '),
(6724,'slug',0,1,' q can i combine neck line treatment with other treatments '),
(6724,'title',0,1,' can i combine neck line treatment with other treatments '),
(6725,'slug',0,1,' still have questions '),
(6725,'title',0,1,' still have questions '),
(6726,'alt',0,1,''),
(6726,'extension',0,1,' png '),
(6726,'filename',0,1,' dar circles aroung the eyes 2 png '),
(6726,'kind',0,1,' image '),
(6726,'slug',0,1,''),
(6726,'title',0,1,' dar circles aroung the eyes 2 '),
(6727,'alt',0,1,''),
(6727,'extension',0,1,' png '),
(6727,'filename',0,1,' dar circles aroung the eyes png '),
(6727,'kind',0,1,' image '),
(6727,'slug',0,1,''),
(6727,'title',0,1,' dar circles aroung the eyes '),
(6743,'slug',0,1,' does under eye treatment hurt '),
(6743,'title',0,1,' does under eye treatment hurt '),
(6744,'slug',0,1,' are there any risks or side effects '),
(6744,'title',0,1,' are there any risks or side effects '),
(6759,'slug',0,1,' crepey skin '),
(6759,'title',0,1,' crepey skin '),
(6760,'slug',0,1,' what is treatment 3 '),
(6760,'title',0,1,' crepey skin '),
(6761,'slug',0,1,' what is treatment 3 '),
(6761,'title',0,1,' what causes crepey skin '),
(6762,'slug',0,1,' what is treatment 3 '),
(6762,'title',0,1,' what causes crepey skin 2 '),
(6763,'slug',0,1,' transformations '),
(6763,'title',0,1,' transformations '),
(6764,'slug',0,1,' frequently asked questions '),
(6764,'title',0,1,' frequently asked questions about crepey skin '),
(6765,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(6765,'title',0,1,' can crepey skin actually be improved '),
(6766,'slug',0,1,' q how many treatment sessions will i need '),
(6766,'title',0,1,' what is the difference between crepey skin and wrinkles '),
(6767,'slug',0,1,' q is the neck line treatment painful '),
(6767,'title',0,1,' at what age does crepey skin typically appear '),
(6768,'slug',0,1,' q how long is the recovery time '),
(6768,'title',0,1,' how many treatments will i need '),
(6769,'slug',0,1,' does under eye treatment hurt '),
(6769,'title',0,1,' is there any downtime after treatment '),
(6770,'slug',0,1,' are there any risks or side effects '),
(6770,'title',0,1,' can you treat crepey skin on the body as well as the face '),
(6771,'slug',0,1,' still have questions '),
(6771,'title',0,1,' still have questions '),
(6785,'alt',0,1,''),
(6785,'extension',0,1,' png '),
(6785,'filename',0,1,' creepy skin condition 1 png '),
(6785,'kind',0,1,' image '),
(6785,'slug',0,1,''),
(6785,'title',0,1,' creepy skin condition 1 '),
(6786,'alt',0,1,''),
(6786,'extension',0,1,' png '),
(6786,'filename',0,1,' creepy skin condition 2 png '),
(6786,'kind',0,1,' image '),
(6786,'slug',0,1,''),
(6786,'title',0,1,' creepy skin condition 2 '),
(6787,'alt',0,1,''),
(6787,'extension',0,1,' png '),
(6787,'filename',0,1,' creepy skin condition 3 png '),
(6787,'kind',0,1,' image '),
(6787,'slug',0,1,''),
(6787,'title',0,1,' creepy skin condition 3 '),
(6804,'slug',0,1,' why should i choose a medical professional for these treatments '),
(6804,'title',0,1,' why should i choose a medical professional for these treatments '),
(6818,'slug',0,1,' hyperpigmentation '),
(6818,'title',0,1,' hyperpigmentation '),
(6819,'slug',0,1,' what is treatment 3 '),
(6819,'title',0,1,' hyperpigmentation and age spots '),
(6820,'slug',0,1,' what is treatment 3 '),
(6820,'title',0,1,' understanding the different types of hyperpigmentation '),
(6821,'slug',0,1,' what is treatment 3 '),
(6821,'title',0,1,' what causes hyperpigmentation and age spots '),
(6822,'slug',0,1,' transformations '),
(6822,'title',0,1,' transformations '),
(6823,'slug',0,1,' frequently asked questions '),
(6823,'title',0,1,' frequently asked questions about hyperpigmentation '),
(6824,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(6824,'title',0,1,' can hyperpigmentation be completely removed '),
(6825,'slug',0,1,' q how many treatment sessions will i need '),
(6825,'title',0,1,' how long does it take to see results '),
(6830,'slug',0,1,' still have questions '),
(6830,'title',0,1,' still have questions '),
(6846,'alt',0,1,''),
(6846,'extension',0,1,' png '),
(6846,'filename',0,1,' hyperpigmentaion condition 1 png '),
(6846,'kind',0,1,' image '),
(6846,'slug',0,1,''),
(6846,'title',0,1,' hyperpigmentaion condition 1 '),
(6847,'alt',0,1,''),
(6847,'extension',0,1,' png '),
(6847,'filename',0,1,' hyperpigmentaion condition 2 png '),
(6847,'kind',0,1,' image '),
(6847,'slug',0,1,''),
(6847,'title',0,1,' hyperpigmentaion condition 2 '),
(6848,'alt',0,1,''),
(6848,'extension',0,1,' png '),
(6848,'filename',0,1,' hyperpigmentaion condition 3 png '),
(6848,'kind',0,1,' image '),
(6848,'slug',0,1,''),
(6848,'title',0,1,' hyperpigmentaion condition 3 '),
(6849,'alt',0,1,''),
(6849,'extension',0,1,' png '),
(6849,'filename',0,1,' hyperpigmentaion condition png '),
(6849,'kind',0,1,' image '),
(6849,'slug',0,1,''),
(6849,'title',0,1,' hyperpigmentaion condition '),
(6892,'slug',0,1,' what is treatment 3 '),
(6892,'title',0,1,' my philosophy '),
(6932,'slug',0,1,' temp ojjxpretbvkvdrdfenljibriogyazdufbbpj '),
(6932,'title',0,1,' video '),
(6933,'slug',0,1,' temp kgymzwqltbjhcpjynysfhckucwxbpqaazfjz '),
(6933,'title',0,1,''),
(6934,'slug',0,1,' acne scarring '),
(6934,'title',0,1,' acne scarring '),
(6935,'slug',0,1,' what is treatment 3 '),
(6935,'title',0,1,' acne scarring '),
(6936,'slug',0,1,' what is treatment 3 '),
(6936,'title',0,1,' what causes acne scarring '),
(6937,'slug',0,1,' what is treatment 3 '),
(6937,'title',0,1,' types of acne scars '),
(6938,'slug',0,1,' transformations '),
(6938,'title',0,1,' transformations '),
(6939,'slug',0,1,' frequently asked questions '),
(6939,'title',0,1,' frequently asked questions about acne scarring '),
(6944,'slug',0,1,' does under eye treatment hurt '),
(6944,'title',0,1,' can acne scars be completely removed '),
(6945,'slug',0,1,' are there any risks or side effects '),
(6945,'title',0,1,' how long does it take to see results '),
(6946,'slug',0,1,' still have questions '),
(6946,'title',0,1,' still have questions '),
(6960,'alt',0,1,''),
(6960,'extension',0,1,' png '),
(6960,'filename',0,1,' acne scarring 2 png '),
(6960,'kind',0,1,' image '),
(6960,'slug',0,1,''),
(6960,'title',0,1,' acne scarring 2 '),
(6961,'alt',0,1,''),
(6961,'extension',0,1,' png '),
(6961,'filename',0,1,' acne scarring 3 png '),
(6961,'kind',0,1,' image '),
(6961,'slug',0,1,''),
(6961,'title',0,1,' acne scarring 3 '),
(6962,'alt',0,1,''),
(6962,'extension',0,1,' png '),
(6962,'filename',0,1,' acne scarring 4 png '),
(6962,'kind',0,1,' image '),
(6962,'slug',0,1,''),
(6962,'title',0,1,' acne scarring 4 '),
(6963,'alt',0,1,''),
(6963,'extension',0,1,' png '),
(6963,'filename',0,1,' acne scarring png '),
(6963,'kind',0,1,' image '),
(6963,'slug',0,1,''),
(6963,'title',0,1,' acne scarring '),
(6979,'slug',0,1,' do i need to wait until my acne has cleared before treating scars '),
(6979,'title',0,1,' do i need to wait until my acne has cleared before treating scars '),
(6980,'slug',0,1,' is there any downtime after treatment '),
(6980,'title',0,1,' is there any downtime after treatment '),
(6981,'slug',0,1,' how many treatments will i need '),
(6981,'title',0,1,' how many treatments will i need '),
(6997,'slug',0,1,' acne '),
(6997,'title',0,1,' acne '),
(6998,'slug',0,1,' what is treatment 3 '),
(6998,'title',0,1,' acne '),
(6999,'slug',0,1,' what is treatment 3 '),
(6999,'title',0,1,' what causes acne '),
(7000,'slug',0,1,' what is treatment 3 '),
(7000,'title',0,1,' types of acne '),
(7001,'slug',0,1,' transformations '),
(7001,'title',0,1,' transformations '),
(7002,'slug',0,1,' frequently asked questions '),
(7002,'title',0,1,' frequently asked questions about acne '),
(7004,'slug',0,1,' q how many treatment sessions will i need '),
(7004,'title',0,1,' can acne scars get worse over time if left untreated '),
(7005,'slug',0,1,' q is the neck line treatment painful '),
(7005,'title',0,1,' can i combine acne scar treatment with other aesthetic treatments '),
(7006,'slug',0,1,' q how long is the recovery time '),
(7006,'title',0,1,' will my acne scars come back after treatment '),
(7007,'slug',0,1,' does under eye treatment hurt '),
(7007,'title',0,1,' can acne scars be completely removed '),
(7008,'slug',0,1,' are there any risks or side effects '),
(7008,'title',0,1,' how long does it take to see results '),
(7009,'slug',0,1,' do i need to wait until my acne has cleared before treating scars '),
(7009,'title',0,1,' do i need to wait until my acne has cleared before treating scars '),
(7010,'slug',0,1,' is there any downtime after treatment '),
(7010,'title',0,1,' is there any downtime after treatment '),
(7011,'slug',0,1,' how many treatments will i need '),
(7011,'title',0,1,' how many treatments will i need '),
(7012,'slug',0,1,' still have questions '),
(7012,'title',0,1,' still have questions '),
(7013,'alt',0,1,''),
(7013,'extension',0,1,' png '),
(7013,'filename',0,1,' acne 2 png '),
(7013,'kind',0,1,' image '),
(7013,'slug',0,1,''),
(7013,'title',0,1,' acne 2 '),
(7014,'alt',0,1,''),
(7014,'extension',0,1,' png '),
(7014,'filename',0,1,' acne 3 png '),
(7014,'kind',0,1,' image '),
(7014,'slug',0,1,''),
(7014,'title',0,1,' acne 3 '),
(7015,'alt',0,1,''),
(7015,'extension',0,1,' png '),
(7015,'filename',0,1,' acne 4 png '),
(7015,'kind',0,1,' image '),
(7015,'slug',0,1,''),
(7015,'title',0,1,' acne 4 '),
(7016,'alt',0,1,''),
(7016,'extension',0,1,' png '),
(7016,'filename',0,1,' acne png '),
(7016,'kind',0,1,' image '),
(7016,'slug',0,1,''),
(7016,'title',0,1,' acne '),
(7053,'slug',0,1,' can professional treatments help if i have already tried everything from the pharmacy '),
(7053,'title',0,1,' can professional treatments help if i have already tried everything from the pharmacy '),
(7074,'slug',0,1,' upper lip lines '),
(7074,'title',0,1,' upper lip lines '),
(7075,'slug',0,1,' what is treatment 3 '),
(7075,'title',0,1,' upper lip lines '),
(7076,'slug',0,1,' what is treatment 3 '),
(7076,'title',0,1,' what causes upper lip lines '),
(7077,'slug',0,1,' what is treatment 3 '),
(7077,'title',0,1,' types of upper lip lines '),
(7078,'slug',0,1,' transformations '),
(7078,'title',0,1,' transformations '),
(7079,'slug',0,1,' frequently asked questions '),
(7079,'title',0,1,' frequently asked questions about upper lip lines '),
(7080,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(7080,'title',0,1,' what is the difference between treating acne scars at an aesthetic clinic versus using over the counter scar creams '),
(7081,'slug',0,1,' q how many treatment sessions will i need '),
(7081,'title',0,1,' can acne scars get worse over time if left untreated '),
(7082,'slug',0,1,' q is the neck line treatment painful '),
(7082,'title',0,1,' can i combine acne scar treatment with other aesthetic treatments '),
(7083,'slug',0,1,' q how long is the recovery time '),
(7083,'title',0,1,' will my acne scars come back after treatment '),
(7084,'slug',0,1,' does under eye treatment hurt '),
(7084,'title',0,1,' can acne scars be completely removed '),
(7085,'slug',0,1,' are there any risks or side effects '),
(7085,'title',0,1,' how long does it take to see results '),
(7086,'slug',0,1,' do i need to wait until my acne has cleared before treating scars '),
(7086,'title',0,1,' do i need to wait until my acne has cleared before treating scars '),
(7087,'slug',0,1,' is there any downtime after treatment '),
(7087,'title',0,1,' is there any downtime after treatment '),
(7088,'slug',0,1,' how many treatments will i need '),
(7088,'title',0,1,' how many treatments will i need '),
(7089,'slug',0,1,' still have questions '),
(7089,'title',0,1,' still have questions '),
(7110,'alt',0,1,''),
(7110,'extension',0,1,' jpg '),
(7110,'filename',0,1,' upper lip 2 1 jpg '),
(7110,'kind',0,1,' image '),
(7110,'slug',0,1,''),
(7110,'title',0,1,' upper lip 2 1 '),
(7112,'alt',0,1,''),
(7112,'extension',0,1,' jpg '),
(7112,'filename',0,1,' upper lip 3 jpg '),
(7112,'kind',0,1,' image '),
(7112,'slug',0,1,''),
(7112,'title',0,1,' upper lip 3 '),
(7113,'alt',0,1,''),
(7113,'extension',0,1,' jpg '),
(7113,'filename',0,1,' upper lip 4 jpg '),
(7113,'kind',0,1,' image '),
(7113,'slug',0,1,''),
(7113,'title',0,1,' upper lip 4 '),
(7114,'alt',0,1,''),
(7114,'extension',0,1,' jpg '),
(7114,'filename',0,1,' upper lip jpg '),
(7114,'kind',0,1,' image '),
(7114,'slug',0,1,''),
(7114,'title',0,1,' upper lip '),
(7131,'slug',0,1,' why do i have smokers lines if i have never smoked '),
(7131,'title',0,1,' why do i have smokers lines if i have never smoked '),
(7134,'slug',0,1,' is treatment for upper lip lines painful '),
(7134,'title',0,1,' is treatment for upper lip lines painful '),
(7135,'slug',0,1,' at what age should i start treating lip lines '),
(7135,'title',0,1,' at what age should i start treating lip lines '),
(7136,'slug',0,1,' will i still be able to smile and talk normally '),
(7136,'title',0,1,' will i still be able to smile and talk normally '),
(7137,'slug',0,1,' will treating lip lines make my lips look bigger '),
(7137,'title',0,1,' will treating lip lines make my lips look bigger '),
(7154,'slug',0,1,' 1 '),
(7154,'title',0,1,' dark circles under the eyes '),
(7155,'slug',0,1,' 1 '),
(7155,'title',0,1,' crepey skin '),
(7156,'slug',0,1,' 1 '),
(7156,'title',0,1,' lines and wrinkles '),
(7157,'slug',0,1,' 1 '),
(7157,'title',0,1,' ageing skin '),
(7158,'slug',0,1,' 1 '),
(7158,'title',0,1,' upper lip lines '),
(7159,'slug',0,1,' 1 '),
(7159,'title',0,1,' acne '),
(7160,'slug',0,1,' 1 '),
(7160,'title',0,1,' hyperpigmentation '),
(7161,'slug',0,1,' 1 '),
(7161,'title',0,1,' acne scarring '),
(7162,'slug',0,1,' 1 '),
(7162,'title',0,1,' neck lines '),
(7190,'slug',0,1,' video '),
(7190,'title',0,1,' video 2 '),
(7297,'slug',0,1,' targeted results '),
(7297,'title',0,1,' subtle safe '),
(7298,'slug',0,1,' targeted results '),
(7298,'title',0,1,' expert care '),
(7299,'slug',0,1,' targeted results '),
(7299,'title',0,1,' proven excellence '),
(7356,'slug',0,1,' true collagen induction '),
(7356,'title',0,1,' true collagen induction '),
(7357,'slug',0,1,' advanced serum technology '),
(7357,'title',0,1,' advanced serum technology '),
(7358,'slug',0,1,' treats what lasers cannot '),
(7358,'title',0,1,' treats what lasers cannot '),
(7359,'slug',0,1,' medical precision '),
(7359,'title',0,1,' medical precision '),
(7465,'slug',0,1,' targeted results '),
(7465,'title',0,1,' bespoke intelligent formulations '),
(7466,'slug',0,1,' targeted results '),
(7466,'title',0,1,' treats what high street skincare cannot '),
(7467,'slug',0,1,' targeted results '),
(7467,'title',0,1,' medical grade safety '),
(7512,'slug',0,1,' q is the neck line treatment painful '),
(7512,'title',0,1,' can i combine acne scar treatment with other aesthetic treatments '),
(7524,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(7524,'title',0,1,' what is the difference between treating acne scars at an aesthetic clinic versus using over the counter scar creams '),
(7525,'slug',0,1,' q how many treatment sessions will i need '),
(7525,'title',0,1,' can acne scars get worse over time if left untreated '),
(7526,'slug',0,1,' q how long is the recovery time '),
(7526,'title',0,1,' will my acne scars come back after treatment '),
(7566,'slug',0,1,' q is there any downtime after treatment '),
(7566,'title',0,1,' are dermal fillers safe '),
(7582,'slug',0,1,' q how long do anti wrinkle injection results last '),
(7582,'title',0,1,' do dermal fillers hurt '),
(7583,'slug',0,1,' q is the treatment safe '),
(7583,'title',0,1,' will i look swollen or bruised after treatment '),
(7634,'slug',0,1,' q can i combine neck line treatment with other treatments '),
(7634,'title',0,1,' what makes aesthetics by dr rachel different for anti ageing treatment in wirral '),
(7659,'slug',0,1,' q how long do anti wrinkle injection results last '),
(7659,'title',0,1,' how many sunekos eye treatment sessions will i need '),
(7661,'slug',0,1,' q will i look frozen or expressionless '),
(7661,'title',0,1,' what is the difference between sunekos eye treatment and tear trough filler '),
(7662,'slug',0,1,' q is there any downtime after treatment '),
(7662,'title',0,1,' can sunekos eye treatment treat dark circles '),
(7663,'slug',0,1,' q is the treatment safe '),
(7663,'title',0,1,' when will i see results from sunekos eye treatment '),
(7664,'slug',0,1,' q does it hurt how is the procedure done '),
(7664,'title',0,1,' how long do sunekos eye treatment results last '),
(7665,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(7665,'title',0,1,' can i combine sunekos with other treatments '),
(7673,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(7673,'title',0,1,' is sunekos eye treatment painful '),
(7674,'slug',0,1,' q how permanent are the results '),
(7674,'title',0,1,' what is the downtime after sunekos eye treatment '),
(7675,'slug',0,1,' q when will i see results '),
(7675,'title',0,1,' is sunekos treatment safe '),
(7676,'slug',0,1,' q are there any side effects or risks '),
(7676,'title',0,1,' what skincare should i use after sunekos '),
(7691,'slug',0,1,' should i avoid wearing makeup if i have acne '),
(7691,'title',0,1,' should i avoid wearing makeup if i have acne '),
(7693,'slug',0,1,' q is neck line treatment suitable for all skin types '),
(7693,'title',0,1,' why do i still have acne as an adult '),
(7694,'slug',0,1,' will acne treatment make my skin dry and sensitive '),
(7694,'title',0,1,' will acne treatment make my skin dry and sensitive '),
(7695,'slug',0,1,' how long does it take to see results from acne treatment '),
(7695,'title',0,1,' how long does it take to see results from acne treatment '),
(7696,'slug',0,1,' is professional acne treatment safe for darker skin tones '),
(7696,'title',0,1,' is professional acne treatment safe for darker skin tones '),
(7704,'slug',0,1,' what if my acne is related to my hormones '),
(7704,'title',0,1,' what if my acne is related to my hormones '),
(7705,'slug',0,1,' can acne treatment help with the red or dark marks left behind after spots heal '),
(7705,'title',0,1,' can acne treatment help with the red or dark marks left behind after spots heal '),
(7706,'slug',0,1,' how often will i need to come in for acne treatment '),
(7706,'title',0,1,' how often will i need to come in for acne treatment '),
(7707,'slug',0,1,' what should i do about acne that keeps coming back in the same area '),
(7707,'title',0,1,' what should i do about acne that keeps coming back in the same area '),
(7797,'slug',0,1,' q how long do anti wrinkle injection results last '),
(7797,'title',0,1,' is julaine different from dermal fillers '),
(7809,'slug',0,1,' q is the treatment safe '),
(7809,'title',0,1,' when will i see results from julaine '),
(7821,'slug',0,1,' q how long do anti wrinkle injection results last '),
(7821,'title',0,1,' how many microneedling sessions will i need '),
(7823,'slug',0,1,' q will i look frozen or expressionless '),
(7823,'title',0,1,' what is the difference between nctf pdrns and exosomes '),
(7824,'slug',0,1,' q are there any side effects or risks '),
(7824,'title',0,1,' what skincare should i use after microneedling '),
(7826,'slug',0,1,' q is there any downtime after treatment '),
(7826,'title',0,1,' can microneedling treat acne scars '),
(7837,'slug',0,1,' q when will i see results '),
(7837,'title',0,1,' how does microneedling compare to laser resurfacing '),
(7858,'alt',0,1,''),
(7858,'extension',0,1,' jpg '),
(7858,'filename',0,1,' julaine vial jpg '),
(7858,'kind',0,1,' image '),
(7858,'slug',0,1,''),
(7858,'title',0,1,' julaine vial '),
(7871,'slug',0,1,' unlocking radiant skin top 5 essential tips for healthy skin '),
(7871,'title',0,1,' unlocking radiant skin top 5 essential tips for healthy skin '),
(7876,'alt',0,1,''),
(7876,'extension',0,1,' jpg '),
(7876,'filename',0,1,' radiant skin glow jpg '),
(7876,'kind',0,1,' image '),
(7876,'slug',0,1,''),
(7876,'title',0,1,' radiant skin glow '),
(7891,'slug',0,1,' why choose this treatment '),
(7891,'title',0,1,' why choose dermal fillers '),
(7910,'slug',0,1,' qwddw '),
(7910,'title',0,1,' card 1 '),
(7911,'slug',0,1,' qwddw '),
(7911,'title',0,1,' card 2 '),
(7924,'slug',0,1,' location and map '),
(7924,'title',0,1,' location and map '),
(7925,'slug',0,1,' book consultation '),
(7925,'title',0,1,' book consultation '),
(7996,'slug',0,1,' q can i treat tech neck even if i am in my 20s or 30s '),
(7996,'title',0,1,' can i combine different treatments '),
(7997,'slug',0,1,' q can i combine neck line treatment with other treatments '),
(7997,'title',0,1,' what makes aesthetics by dr rachel different '),
(7998,'slug',0,1,' at what age should i start treating lines and wrinkles '),
(7998,'title',0,1,' at what age should i start treating lines and wrinkles '),
(7999,'slug',0,1,' will i still be able to move my face naturally after anti wrinkle injections '),
(7999,'title',0,1,' will i still be able to move my face naturally after anti wrinkle injections '),
(8000,'slug',0,1,' is there any downtime '),
(8000,'title',0,1,' is there any downtime '),
(8001,'slug',0,1,' how long do results last '),
(8001,'title',0,1,' how long do results last '),
(8002,'slug',0,1,' is the treatment painful '),
(8002,'title',0,1,' is the treatment painful '),
(8043,'slug',0,1,' q is the neck line treatment painful '),
(8043,'title',0,1,' will the pigmentation come back after treatment '),
(8044,'slug',0,1,' q how long is the recovery time '),
(8044,'title',0,1,' are treatments suitable for all skin types '),
(8045,'slug',0,1,' does under eye treatment hurt '),
(8045,'title',0,1,' can i treat hyperpigmentation at home '),
(8046,'slug',0,1,' are there any risks or side effects '),
(8046,'title',0,1,' what makes aesthetics by dr rachel different for pigmentation treatment '),
(8079,'slug',0,1,' q is the neck line treatment painful '),
(8079,'title',0,1,' is the neck line treatment painful '),
(8089,'slug',0,1,' q how many treatment sessions will i need '),
(8089,'title',0,1,' how many treatment sessions will i need '),
(8138,'slug',0,1,' will treatment stop my lipstick from bleeding '),
(8138,'title',0,1,' will treatment stop my lipstick from bleeding '),
(8139,'slug',0,1,' can i prevent upper lip lines from getting worse '),
(8139,'title',0,1,' can i prevent upper lip lines from getting worse '),
(8151,'slug',0,1,' how long do upper lip line treatments last '),
(8151,'title',0,1,' how long do upper lip line treatments last '),
(8195,'alt',0,1,''),
(8195,'extension',0,1,' jpg '),
(8195,'filename',0,1,' crows feet treatment before jpg '),
(8195,'kind',0,1,' image '),
(8195,'slug',0,1,''),
(8195,'title',0,1,' crows feet treatment before '),
(8196,'alt',0,1,''),
(8196,'extension',0,1,' jpg '),
(8196,'filename',0,1,' crows feet treatment after jpg '),
(8196,'kind',0,1,' image '),
(8196,'slug',0,1,''),
(8196,'title',0,1,' crows feet treatment after '),
(8199,'alt',0,1,''),
(8199,'extension',0,1,' jpg '),
(8199,'filename',0,1,' phformula resurfacing after jpg '),
(8199,'kind',0,1,' image '),
(8199,'slug',0,1,''),
(8199,'title',0,1,' phformula resurfacing after '),
(8200,'alt',0,1,''),
(8200,'extension',0,1,' jpg '),
(8200,'filename',0,1,' phformula resurfacing before jpg '),
(8200,'kind',0,1,' image '),
(8200,'slug',0,1,''),
(8200,'title',0,1,' phformula resurfacing before '),
(8203,'alt',0,1,''),
(8203,'extension',0,1,' jpg '),
(8203,'filename',0,1,' polynucleotides before jpg '),
(8203,'kind',0,1,' image '),
(8203,'slug',0,1,''),
(8203,'title',0,1,' polynucleotides before '),
(8204,'alt',0,1,''),
(8204,'extension',0,1,' jpg '),
(8204,'filename',0,1,' polynucleotides after jpg '),
(8204,'kind',0,1,' image '),
(8204,'slug',0,1,''),
(8204,'title',0,1,' polynucleotides after '),
(8432,'slug',0,1,' video block '),
(8432,'title',0,1,' video block '),
(8437,'slug',0,1,' privacy policy '),
(8437,'title',0,1,' privacy policy '),
(8438,'slug',0,1,' privacy policy '),
(8438,'title',0,1,' privacy policy '),
(8439,'slug',0,1,' privacy policy '),
(8439,'title',0,1,' privacy policy '),
(8440,'slug',0,1,' privacy policy '),
(8440,'title',0,1,' privacy policy '),
(8449,'slug',0,1,' privacy policy '),
(8449,'title',0,1,' title '),
(8450,'slug',0,1,' privacy policy '),
(8450,'title',0,1,' privacy policy '),
(8467,'slug',0,1,' title '),
(8467,'title',0,1,' title ');
/*!40000 ALTER TABLE `searchindex` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `searchindexqueue`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `searchindexqueue` WRITE;
/*!40000 ALTER TABLE `searchindexqueue` DISABLE KEYS */;
/*!40000 ALTER TABLE `searchindexqueue` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `searchindexqueue_fields`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `searchindexqueue_fields` WRITE;
/*!40000 ALTER TABLE `searchindexqueue_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `searchindexqueue_fields` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sections`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sections` WRITE;
/*!40000 ALTER TABLE `sections` DISABLE KEYS */;
INSERT INTO `sections` VALUES
(1,NULL,'Pages','pages','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-11-30 19:23:46','2025-11-30 19:23:46',NULL,'a51e9966-ae3c-43a3-b17a-e41c3cfae2ba'),
(2,NULL,'Treatments','treatments','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-11-30 19:24:15','2025-11-30 19:24:15',NULL,'d4de9e34-cb7e-4113-989b-f14f4c3536d3'),
(3,NULL,'Conditions','conditions','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-11-30 19:24:31','2025-11-30 19:24:31',NULL,'618ae0d4-4ee0-41b7-b790-720b07c1f413'),
(4,NULL,'Blog','blog','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-11-30 19:24:44','2025-11-30 19:24:44',NULL,'f19eafef-7292-4716-a258-d9bf85bfc10b'),
(5,NULL,'Homepage','homepage','single',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-11-30 19:27:45','2025-11-30 19:27:45',NULL,'508da987-f99e-43bc-bf89-c10fc03a27d2'),
(6,NULL,'Transformations','transformations','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-12-02 13:23:15','2025-12-02 13:23:15',NULL,'cbc5061d-a74e-463d-ab5e-7c5fd4103496'),
(7,NULL,'Testimonials','testimonials','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2025-12-04 17:10:23','2025-12-04 17:10:23',NULL,'a76886f6-a966-4056-995c-ac7bda316a07'),
(8,NULL,'Contacts','contacts','single',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2026-02-08 09:03:29','2026-02-08 09:03:29',NULL,'66ccd9d4-a371-41cf-8ce9-1a673ccb927d'),
(9,NULL,'About','about','single',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2026-02-08 10:03:48','2026-02-08 10:03:48',NULL,'3ab8a613-21c3-46fb-9b46-9978c63ba4b8'),
(10,4,'Prices','prices','structure',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2026-02-21 21:50:15','2026-03-25 12:53:08',NULL,'fe38ddc7-9164-4903-9f4e-c01f9d5126d8'),
(11,NULL,'Case Studies','caseStudies','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2026-02-22 00:36:33','2026-02-22 00:36:33',NULL,'89f97553-241f-489b-921a-493ca7be1fbf'),
(12,NULL,'Test section','testSection','single',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2026-02-24 14:02:21','2026-02-24 14:02:21',NULL,'08dd03a9-f011-4dbe-9890-87c0fc2849be');
/*!40000 ALTER TABLE `sections` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sections_entrytypes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sections_entrytypes` WRITE;
/*!40000 ALTER TABLE `sections_entrytypes` DISABLE KEYS */;
INSERT INTO `sections_entrytypes` VALUES
(1,4,1,NULL,NULL,NULL),
(2,4,1,NULL,NULL,NULL),
(3,42,1,NULL,NULL,NULL),
(4,9,1,NULL,NULL,NULL),
(5,5,1,NULL,NULL,NULL),
(6,3,1,NULL,NULL,NULL),
(7,13,1,NULL,NULL,NULL),
(8,5,1,NULL,NULL,NULL),
(9,5,1,NULL,NULL,NULL),
(10,5,2,NULL,NULL,NULL),
(10,40,1,NULL,NULL,NULL),
(10,46,3,NULL,NULL,NULL),
(11,43,1,NULL,NULL,NULL),
(12,5,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `sections_entrytypes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sections_sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sections_sites` WRITE;
/*!40000 ALTER TABLE `sections_sites` DISABLE KEYS */;
INSERT INTO `sections_sites` VALUES
(1,1,1,1,'{slug}','pages/_entry.twig',1,'2025-11-30 19:23:46','2025-11-30 19:23:46','6c481b8d-dba7-4f31-bd67-7c4c8580e34b'),
(2,2,1,1,'treatments/{slug}','treatments/_entry.twig',1,'2025-11-30 19:24:15','2025-11-30 19:24:15','c3566c84-c4f6-442f-a9bd-a03eda49c031'),
(3,3,1,1,'conditions/{slug}','conditions/_entry.twig',1,'2025-11-30 19:24:31','2025-11-30 19:24:31','fc2f2661-e99d-4559-9887-0b597e9d4482'),
(4,4,1,1,'blog/{slug}','blog/_entry.twig',1,'2025-11-30 19:24:44','2025-11-30 19:24:44','018dab3e-fae2-4734-b534-e20827fc80c6'),
(5,5,1,1,'__home__','index.twig',1,'2025-11-30 19:27:45','2025-11-30 19:27:45','e4387475-752e-4d50-b86b-87ce96e2522e'),
(6,6,1,0,NULL,NULL,1,'2025-12-02 13:23:15','2025-12-02 13:24:57','3ec7636a-9e6a-4113-8710-9104e2493171'),
(7,7,1,0,NULL,NULL,1,'2025-12-04 17:10:23','2025-12-04 17:10:23','e2ba9cdf-b3e8-4d21-a1b2-ee95a59172e1'),
(8,8,1,1,'contacts','contact.twig',1,'2026-02-08 09:03:29','2026-02-08 09:06:20','3f5ebd94-2be8-4572-ac56-39e6cd26e152'),
(9,9,1,1,'about','about.twig',1,'2026-02-08 10:03:48','2026-02-08 10:03:48','960cb5b1-34de-45ad-95e5-16830404025c'),
(10,10,1,0,NULL,NULL,1,'2026-02-21 21:50:15','2026-02-21 22:56:30','e97c85b5-0126-476a-a80e-593ccc544731'),
(11,11,1,1,'case-studies/{slug}','case-studies/_entry.twig',1,'2026-02-22 00:36:33','2026-02-22 00:36:33','e431c2ba-21fe-4f35-93a3-dd9e5f2d2f38'),
(12,12,1,1,'test-section','about.twig',1,'2026-02-24 14:02:21','2026-02-24 14:02:21','02fd5705-d7bb-4d7d-923e-b9035868d3b7');
/*!40000 ALTER TABLE `sections_sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `seomatic_metabundles`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `seomatic_metabundles` WRITE;
/*!40000 ALTER TABLE `seomatic_metabundles` DISABLE KEYS */;
INSERT INTO `seomatic_metabundles` VALUES
(1,'2026-04-15 17:38:09','2026-04-15 17:40:46','9c738f2e-6d7b-49f6-895c-e09518da7318','1.0.71','__GLOBAL_BUNDLE__',1,'__GLOBAL_BUNDLE__','__GLOBAL_BUNDLE__','__GLOBAL_BUNDLE__',NULL,'',1,'[]','2026-04-15 17:40:46','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"\",\"siteNamePosition\":\"before\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ seomatic.helper.safeCanonicalUrl() }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"none\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"none\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Aesthetics by Dr Rachel\",\"siteAlternateName\":\"\",\"identity\":{\"siteType\":\"Organization\",\"siteSubType\":\"LocalBusiness\",\"siteSpecificType\":\"none\",\"computedType\":\"LocalBusiness\",\"genericName\":\"\",\"genericAlternateName\":\"\",\"genericDescription\":\"\",\"genericUrl\":\"\",\"genericImage\":\"\",\"genericImageWidth\":\"\",\"genericImageHeight\":\"\",\"genericImageIds\":\"\",\"genericTelephone\":\"\",\"genericEmail\":\"\",\"genericStreetAddress\":\"\",\"genericAddressLocality\":\"\",\"genericAddressRegion\":\"\",\"genericPostalCode\":\"\",\"genericAddressCountry\":\"\",\"genericGeoLatitude\":\"\",\"genericGeoLongitude\":\"\",\"personGender\":\"Male\",\"personBirthPlace\":\"\",\"organizationDuns\":\"\",\"organizationFounder\":\"\",\"organizationFoundingDate\":\"\",\"organizationFoundingLocation\":\"\",\"organizationContactPoints\":\"\",\"corporationTickerSymbol\":\"\",\"localBusinessPriceRange\":\"$\",\"localBusinessOpeningHours\":[{\"open\":null,\"close\":null},{\"open\":null,\"close\":null},{\"open\":null,\"close\":null},{\"open\":null,\"close\":null},{\"open\":null,\"close\":null},{\"open\":null,\"close\":null},{\"open\":null,\"close\":null}],\"restaurantServesCuisine\":\"\",\"restaurantMenuUrl\":\"\",\"restaurantReservationsUrl\":\"\"},\"creator\":{\"siteType\":\"Organization\",\"siteSubType\":\"LocalBusiness\",\"siteSpecificType\":\"\",\"computedType\":\"Organization\",\"genericName\":\"\",\"genericAlternateName\":\"\",\"genericDescription\":\"\",\"genericUrl\":\"\",\"genericImage\":\"\",\"genericImageWidth\":\"\",\"genericImageHeight\":\"\",\"genericImageIds\":[],\"genericTelephone\":\"\",\"genericEmail\":\"\",\"genericStreetAddress\":\"\",\"genericAddressLocality\":\"\",\"genericAddressRegion\":\"\",\"genericPostalCode\":\"\",\"genericAddressCountry\":\"\",\"genericGeoLatitude\":\"\",\"genericGeoLongitude\":\"\",\"personGender\":\"\",\"personBirthPlace\":\"\",\"organizationDuns\":\"\",\"organizationFounder\":\"\",\"organizationFoundingDate\":\"\",\"organizationFoundingLocation\":\"\",\"organizationContactPoints\":[],\"corporationTickerSymbol\":\"\",\"localBusinessPriceRange\":\"\",\"localBusinessOpeningHours\":[],\"restaurantServesCuisine\":\"\",\"restaurantMenuUrl\":\"\",\"restaurantReservationsUrl\":\"\"},\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":{\"twitter\":{\"siteName\":\"Twitter\",\"handle\":\"twitter\",\"url\":\"\"},\"facebook\":{\"siteName\":\"Facebook\",\"handle\":\"facebook\",\"url\":\"\"},\"wikipedia\":{\"siteName\":\"Wikipedia\",\"handle\":\"wikipedia\",\"url\":\"\"},\"linkedin\":{\"siteName\":\"LinkedIn\",\"handle\":\"linkedin\",\"url\":\"\"},\"googleplus\":{\"siteName\":\"Google+\",\"handle\":\"googleplus\",\"url\":\"\"},\"youtube\":{\"siteName\":\"YouTube\",\"handle\":\"youtube\",\"url\":\"\"},\"instagram\":{\"siteName\":\"Instagram\",\"handle\":\"instagram\",\"url\":\"\"},\"pinterest\":{\"siteName\":\"Pinterest\",\"handle\":\"pinterest\",\"url\":\"\"},\"github\":{\"siteName\":\"GitHub\",\"handle\":\"github\",\"url\":\"\"},\"vimeo\":{\"siteName\":\"Vimeo\",\"handle\":\"vimeo\",\"url\":\"\"}},\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":{\"generator\":{\"charset\":\"\",\"content\":\"SEOmatic\",\"httpEquiv\":\"\",\"name\":\"generator\",\"property\":null,\"include\":true,\"key\":\"generator\",\"environment\":null,\"dependencies\":{\"config\":[\"generatorEnabled\"]},\"tagAttrs\":[]},\"keywords\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.seoKeywords }}\",\"httpEquiv\":\"\",\"name\":\"keywords\",\"property\":null,\"include\":true,\"key\":\"keywords\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"description\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.seoDescription }}\",\"httpEquiv\":\"\",\"name\":\"description\",\"property\":null,\"include\":true,\"key\":\"description\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"referrer\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.referrer }}\",\"httpEquiv\":\"\",\"name\":\"referrer\",\"property\":null,\"include\":true,\"key\":\"referrer\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"robots\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.robots }}\",\"httpEquiv\":\"\",\"name\":\"robots\",\"property\":null,\"include\":true,\"key\":\"robots\",\"environment\":{\"live\":{\"content\":\"{{ seomatic.meta.robots }}\"},\"staging\":{\"content\":\"none\"},\"local\":{\"content\":\"none\"}},\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":{\"fb:profile_id\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.facebookProfileId }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"fb:profile_id\",\"include\":true,\"key\":\"fb:profile_id\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"fb:app_id\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.facebookAppId }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"fb:app_id\",\"include\":true,\"key\":\"fb:app_id\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:locale\":{\"charset\":\"\",\"content\":\"{{ craft.app.language |replace({\\\"-\\\": \\\"_\\\"}) }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:locale\",\"include\":true,\"key\":\"og:locale\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:locale:alternate\":{\"charset\":\"\",\"content\":\"\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:locale:alternate\",\"include\":true,\"key\":\"og:locale:alternate\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:site_name\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.siteName }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:site_name\",\"include\":true,\"key\":\"og:site_name\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:type\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogType }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:type\",\"include\":true,\"key\":\"og:type\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:url\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.canonicalUrl }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:url\",\"include\":true,\"key\":\"og:url\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:title\":{\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.ogSiteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogTitle }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:title\",\"include\":true,\"key\":\"og:title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:description\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogDescription }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:description\",\"include\":true,\"key\":\"og:description\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:image\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImage }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image\",\"include\":true,\"key\":\"og:image\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:image:width\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImageWidth }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image:width\",\"include\":true,\"key\":\"og:image:width\",\"environment\":null,\"dependencies\":{\"tag\":[\"og:image\"]},\"tagAttrs\":[]},\"og:image:height\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImageHeight }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image:height\",\"include\":true,\"key\":\"og:image:height\",\"environment\":null,\"dependencies\":{\"tag\":[\"og:image\"]},\"tagAttrs\":[]},\"og:image:alt\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImageDescription }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image:alt\",\"include\":true,\"key\":\"og:image:alt\",\"environment\":null,\"dependencies\":{\"tag\":[\"og:image\"]},\"tagAttrs\":[]},\"og:see_also\":{\"charset\":\"\",\"content\":\"\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:see_also\",\"include\":true,\"key\":\"og:see_also\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"facebook-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.facebookSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"facebook-domain-verification\",\"property\":null,\"include\":true,\"key\":\"facebook-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"facebookSiteVerification\"]},\"tagAttrs\":[]}},\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":{\"twitter:card\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterCard }}\",\"httpEquiv\":\"\",\"name\":\"twitter:card\",\"property\":null,\"include\":true,\"key\":\"twitter:card\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:site\":{\"charset\":\"\",\"content\":\"@{{ seomatic.site.twitterHandle }}\",\"httpEquiv\":\"\",\"name\":\"twitter:site\",\"property\":null,\"include\":true,\"key\":\"twitter:site\",\"environment\":null,\"dependencies\":{\"site\":[\"twitterHandle\"]},\"tagAttrs\":[]},\"twitter:creator\":{\"charset\":\"\",\"content\":\"@{{ seomatic.meta.twitterCreator }}\",\"httpEquiv\":\"\",\"name\":\"twitter:creator\",\"property\":null,\"include\":true,\"key\":\"twitter:creator\",\"environment\":null,\"dependencies\":{\"meta\":[\"twitterCreator\"]},\"tagAttrs\":[]},\"twitter:title\":{\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.twitterSiteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterTitle }}\",\"httpEquiv\":\"\",\"name\":\"twitter:title\",\"property\":null,\"include\":true,\"key\":\"twitter:title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:description\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterDescription }}\",\"httpEquiv\":\"\",\"name\":\"twitter:description\",\"property\":null,\"include\":true,\"key\":\"twitter:description\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:image\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImage }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image\",\"property\":null,\"include\":true,\"key\":\"twitter:image\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:image:width\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImageWidth }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image:width\",\"property\":null,\"include\":true,\"key\":\"twitter:image:width\",\"environment\":null,\"dependencies\":{\"tag\":[\"twitter:image\"]},\"tagAttrs\":[]},\"twitter:image:height\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImageHeight }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image:height\",\"property\":null,\"include\":true,\"key\":\"twitter:image:height\",\"environment\":null,\"dependencies\":{\"tag\":[\"twitter:image\"]},\"tagAttrs\":[]},\"twitter:image:alt\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImageDescription }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image:alt\",\"property\":null,\"include\":true,\"key\":\"twitter:image:alt\",\"environment\":null,\"dependencies\":{\"tag\":[\"twitter:image\"]},\"tagAttrs\":[]}},\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":null,\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":{\"google-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.googleSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"google-site-verification\",\"property\":null,\"include\":true,\"key\":\"google-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"googleSiteVerification\"]},\"tagAttrs\":[]},\"bing-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.bingSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"msvalidate.01\",\"property\":null,\"include\":true,\"key\":\"bing-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"bingSiteVerification\"]},\"tagAttrs\":[]},\"pinterest-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.pinterestSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"p:domain_verify\",\"property\":null,\"include\":true,\"key\":\"pinterest-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"pinterestSiteVerification\"]},\"tagAttrs\":[]}},\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":{\"canonical\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.meta.canonicalUrl }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"canonical\",\"sizes\":\"\",\"type\":\"\",\"include\":true,\"key\":\"canonical\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"home\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.helper.siteUrl(\\\"\\/\\\") }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"home\",\"sizes\":\"\",\"type\":\"\",\"include\":true,\"key\":\"home\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"author\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.helper.siteUrl(\\\"\\/humans.txt\\\") }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"author\",\"sizes\":\"\",\"type\":\"text\\/plain\",\"include\":true,\"key\":\"author\",\"environment\":null,\"dependencies\":{\"frontend_template\":[\"humans\"]},\"tagAttrs\":[]},\"publisher\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.site.googlePublisherLink }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"publisher\",\"sizes\":\"\",\"type\":\"\",\"include\":true,\"key\":\"publisher\",\"environment\":null,\"dependencies\":{\"site\":[\"googlePublisherLink\"]},\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":{\"gtag\":{\"name\":\"Google gtag.js\",\"description\":\"The global site tag (gtag.js) is a JavaScript tagging framework and API that allows you to send event data to AdWords, DoubleClick, and Google Analytics. Instead of having to manage multiple tags for different products, you can use gtag.js and more easily benefit from the latest tracking features and integrations as they become available. [Learn More](https:\\/\\/developers.google.com\\/gtagjs\\/)\",\"templatePath\":\"_frontend\\/scripts\\/gtagHead.twig\",\"templateString\":\"{% set gtagProperty = googleAnalyticsId.value ??? googleAdWordsId.value ??? dcFloodlightId.value ??? null %}\\n{% if gtagProperty %}\\nwindow.dataLayer = window.dataLayer || [{% if dataLayer is defined and dataLayer %}{{ dataLayer |json_encode() |raw }}{% endif %}];\\nfunction gtag(){dataLayer.push(arguments)};\\ngtag(\'js\', new Date());\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if googleAnalyticsId.value %}\\n{%- set gtagConfig = \\\"{\\\"\\n    ~ \\\"\'send_page_view\': #{pageView ? \'true\' : \'false\'},\\\"\\n    ~ \\\"\'anonymize_ip\': #{ipAnonymization.value ? \'true\' : \'false\'},\\\"\\n    ~ \\\"\'link_attribution\': #{enhancedLinkAttribution.value ? \'true\' : \'false\'},\\\"\\n    ~ \\\"\'allow_display_features\': #{displayFeatures.value ? \'true\' : \'false\'}\\\"\\n    ~ \\\"}\\\"\\n-%}\\ngtag(\'config\', \'{{ googleAnalyticsId.value }}\', {{ gtagConfig }});\\n{% endif %}\\n{% if googleAdWordsId.value %}\\n{%- set gtagConfig = \\\"{\\\"\\n    ~ \\\"\'send_page_view\': #{pageView ? \'true\' : \'false\'}\\\"\\n    ~ \\\"}\\\"\\n-%}\\ngtag(\'config\', \'{{ googleAdWordsId.value }}\', {{ gtagConfig }});\\n{% endif %}\\n{% if dcFloodlightId.value %}\\n{%- set gtagConfig = \\\"{\\\"\\n    ~ \\\"\'send_page_view\': #{pageView ? \'true\' : \'false\'}\\\"\\n    ~ \\\"}\\\"\\n-%}\\ngtag(\'config\', \'{{ dcFloodlightId.value }}\', {{ gtagConfig }});\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/gtagBody.twig\",\"bodyTemplateString\":\"{% set gtagProperty = googleAnalyticsId.value ??? googleAdWordsId.value ??? dcFloodlightId.value ??? null %}\\n{% if gtagProperty %}\\n<script async src=\\\"{{ gtagScriptUrl.value }}?id={{ gtagProperty }}\\\"><\\/script>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"googleAnalyticsId\":{\"title\":\"Google Analytics Measurement\\/Tracking ID\",\"instructions\":\"Only enter the ID, e.g.: `G-XXXXXXXXXX` or `UA-XXXXXX-XX`, not the entire script code. [Learn More](https:\\/\\/support.google.com\\/analytics\\/answer\\/1032385?hl=e)\",\"type\":\"string\",\"value\":\"\"},\"googleAdWordsId\":{\"title\":\"AdWords Conversion ID\",\"instructions\":\"Only enter the ID, e.g.: `AW-XXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.google.com\\/adwords-remarketing-tag\\/)\",\"type\":\"string\",\"value\":\"\"},\"dcFloodlightId\":{\"title\":\"DoubleClick Floodlight ID\",\"instructions\":\"Only enter the ID, e.g.: `DC-XXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/support.google.com\\/dcm\\/partner\\/answer\\/7568534)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send PageView\",\"instructions\":\"Controls whether the `gtag.js` script automatically sends a PageView to Google Analytics, AdWords, and DoubleClick Floodlight when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"ipAnonymization\":{\"title\":\"Google Analytics IP Anonymization\",\"instructions\":\"In some cases, you might need to anonymize the IP addresses of hits sent to Google Analytics. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/gtagjs\\/ip-anonymization)\",\"type\":\"bool\",\"value\":false},\"displayFeatures\":{\"title\":\"Google Analytics Display Features\",\"instructions\":\"The display features plugin for gtag.js can be used to enable Advertising Features in Google Analytics, such as Remarketing, Demographics and Interest Reporting, and more. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/gtagjs\\/display-features)\",\"type\":\"bool\",\"value\":false},\"enhancedLinkAttribution\":{\"title\":\"Google Analytics Enhanced Link Attribution\",\"instructions\":\"Enhanced link attribution improves click track reporting by automatically differentiating between multiple link clicks that have the same URL on a given page. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/gtagjs\\/enhanced-link-attribution)\",\"type\":\"bool\",\"value\":false},\"gtagScriptUrl\":{\"title\":\"Google gtag.js Script URL\",\"instructions\":\"The URL to the Google gtag.js tracking script. Normally this should not be changed, unless you locally cache it. The JavaScript `dataLayer` will automatically be set to the `dataLayer` Twig template variable.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.googletagmanager.com\\/gtag\\/js\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"gtag\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"googleTagManager\":{\"name\":\"Google Tag Manager\",\"description\":\"Google Tag Manager is a tag management system that allows you to quickly and easily update tags and code snippets on your website. Once the Tag Manager snippet has been added to your website or mobile app, you can configure tags via a web-based user interface without having to alter and deploy additional code. [Learn More](https:\\/\\/support.google.com\\/tagmanager\\/answer\\/6102821?hl=en)\",\"templatePath\":\"_frontend\\/scripts\\/googleTagManagerHead.twig\",\"templateString\":\"{% if googleTagManagerId.value is defined and googleTagManagerId.value and not seomatic.helper.isPreview %}\\nwindow.{{ dataLayerVariableName.value }} = window.{{ dataLayerVariableName.value }} || [];\\n{% if dataLayer is defined and dataLayer %}window.{{ dataLayerVariableName.value }}.push({{ dataLayer |json_encode() |raw }});{% endif %}\\n(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\\n\'{{ googleTagManagerUrl.value }}?id=\'+i+dl;f.parentNode.insertBefore(j,f);\\n})(window,document,\'script\',\'{{ dataLayerVariableName.value }}\',\'{{ googleTagManagerId.value }}\');\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/googleTagManagerBody.twig\",\"bodyTemplateString\":\"{% if googleTagManagerId.value is defined and googleTagManagerId.value and not seomatic.helper.isPreview %}\\n<noscript><iframe src=\\\"{{ googleTagManagerNoScriptUrl.value }}?id={{ googleTagManagerId.value }}\\\"\\nheight=\\\"0\\\" width=\\\"0\\\" style=\\\"display:none;visibility:hidden\\\"><\\/iframe><\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"googleTagManagerId\":{\"title\":\"Google Tag Manager ID\",\"instructions\":\"Only enter the ID, e.g.: `GTM-XXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.google.com\\/tag-manager\\/quickstart)\",\"type\":\"string\",\"value\":\"\"},\"dataLayerVariableName\":{\"title\":\"DataLayer Variable Name\",\"instructions\":\"The name to use for the JavaScript DataLayer variable. The value of this variable will be set to the `dataLayer` Twig template variable.\",\"type\":\"string\",\"value\":\"dataLayer\"},\"googleTagManagerUrl\":{\"title\":\"Google Tag Manager Script URL\",\"instructions\":\"The URL to the Google Tag Manager script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.googletagmanager.com\\/gtm.js\"},\"googleTagManagerNoScriptUrl\":{\"title\":\"Google Tag Manager Script &lt;noscript&gt; URL\",\"instructions\":\"The URL to the Google Tag Manager `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.googletagmanager.com\\/ns.html\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"googleTagManager\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"facebookPixel\":{\"name\":\"Facebook Pixel\",\"description\":\"The Facebook pixel is an analytics tool that helps you measure the effectiveness of your advertising. You can use the Facebook pixel to understand the actions people are taking on your website and reach audiences you care about. [Learn More](https:\\/\\/www.facebook.com\\/business\\/help\\/651294705016616)\",\"templatePath\":\"_frontend\\/scripts\\/facebookPixelHead.twig\",\"templateString\":\"{% if facebookPixelId.value is defined and facebookPixelId.value %}\\n!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?\\nn.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;\\nn.push=n;n.loaded=!0;n.version=\'2.0\';n.queue=[];t=b.createElement(e);t.async=!0;\\nt.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,\\ndocument,\'script\',\'{{ facebookPixelUrl.value }}\');\\nfbq(\'init\', \'{{ facebookPixelId.value }}\');\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if pageView %}\\nfbq(\'track\', \'PageView\');\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/facebookPixelBody.twig\",\"bodyTemplateString\":\"{% if facebookPixelId.value is defined and facebookPixelId.value %}\\n<noscript><img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none\\\"\\nsrc=\\\"{{ facebookPixelNoScriptUrl.value }}?id={{ facebookPixelId.value }}&ev=PageView&noscript=1\\\" \\/><\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"facebookPixelId\":{\"title\":\"Facebook Pixel ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.facebook.com\\/docs\\/facebook-pixel\\/api-reference)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Facebook Pixel PageView\",\"instructions\":\"Controls whether the Facebook Pixel script automatically sends a PageView to Facebook Analytics when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"facebookPixelUrl\":{\"title\":\"Facebook Pixel Script URL\",\"instructions\":\"The URL to the Facebook Pixel script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"},\"facebookPixelNoScriptUrl\":{\"title\":\"Facebook Pixel Script &lt;noscript&gt; URL\",\"instructions\":\"The URL to the Facebook Pixel `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.facebook.com\\/tr\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"facebookPixel\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"linkedInInsight\":{\"name\":\"LinkedIn Insight\",\"description\":\"The LinkedIn Insight Tag is a lightweight JavaScript tag that powers conversion tracking, retargeting, and web analytics for LinkedIn ad campaigns.\",\"templatePath\":\"_frontend\\/scripts\\/linkedInInsightHead.twig\",\"templateString\":\"{% if dataPartnerId.value is defined and dataPartnerId.value %}\\n_linkedin_data_partner_id = \\\"{{ dataPartnerId.value }}\\\";\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/linkedInInsightBody.twig\",\"bodyTemplateString\":\"{% if dataPartnerId.value is defined and dataPartnerId.value %}\\n<script type=\\\"text\\/javascript\\\">\\n(function(){var s = document.getElementsByTagName(\\\"script\\\")[0];\\n    var b = document.createElement(\\\"script\\\");\\n    b.type = \\\"text\\/javascript\\\";b.async = true;\\n    b.src = \\\"{{ linkedInInsightUrl.value }}\\\";\\n    s.parentNode.insertBefore(b, s);})();\\n<\\/script>\\n<noscript>\\n<img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none;\\\" alt=\\\"\\\" src=\\\"{{ linkedInInsightNoScriptUrl.value }}?pid={{ dataPartnerId.value }}&fmt=gif\\\" \\/>\\n<\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":3,\"vars\":{\"dataPartnerId\":{\"title\":\"LinkedIn Data Partner ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/www.linkedin.com\\/help\\/lms\\/answer\\/65513\\/adding-the-linkedin-insight-tag-to-your-website?lang=en)\",\"type\":\"string\",\"value\":\"\"},\"linkedInInsightUrl\":{\"title\":\"LinkedIn Insight Script URL\",\"instructions\":\"The URL to the LinkedIn Insight script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/snap.licdn.com\\/li.lms-analytics\\/insight.min.js\"},\"linkedInInsightNoScriptUrl\":{\"title\":\"LinkedIn Insight &lt;noscript&gt; URL\",\"instructions\":\"The URL to the LinkedIn Insight `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/dc.ads.linkedin.com\\/collect\\/\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"linkedInInsight\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"hubSpot\":{\"name\":\"HubSpot\",\"description\":\"If you\'re not hosting your entire website on HubSpot, or have pages on your website that are not hosted on HubSpot, you\'ll need to install the HubSpot tracking code on your non-HubSpot pages in order to capture those analytics.\",\"templatePath\":null,\"templateString\":\"\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/hubSpotBody.twig\",\"bodyTemplateString\":\"{% if hubSpotId.value is defined and hubSpotId.value %}\\n<script type=\\\"text\\/javascript\\\" id=\\\"hs-script-loader\\\" async defer src=\\\"{{ hubSpotUrl.value }}{{ hubSpotId.value }}.js\\\"><\\/script>\\n{% endif %}\\n\",\"bodyPosition\":3,\"vars\":{\"hubSpotId\":{\"title\":\"HubSpot ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/knowledge.hubspot.com\\/articles\\/kcs_article\\/reports\\/install-the-hubspot-tracking-code)\",\"type\":\"string\",\"value\":\"\"},\"hubSpotUrl\":{\"title\":\"HubSpot Script URL\",\"instructions\":\"The URL to the HubSpot script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"\\/\\/js.hs-scripts.com\\/\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"hubSpot\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"pinterestTag\":{\"name\":\"Pinterest Tag\",\"description\":\"The Pinterest tag allows you to track actions people take on your website after viewing your Promoted Pin. You can use this information to measure return on ad spend (RoAS) and create audiences to target on your Promoted Pins. [Learn More](https:\\/\\/help.pinterest.com\\/en\\/business\\/article\\/track-conversions-with-pinterest-tag)\",\"templatePath\":\"_frontend\\/scripts\\/pinterestTagHead.twig\",\"templateString\":\"{% if pinterestTagId.value is defined and pinterestTagId.value %}\\n!function(e){if(!window.pintrk){window.pintrk=function(){window.pintrk.queue.push(\\nArray.prototype.slice.call(arguments))};var\\nn=window.pintrk;n.queue=[],n.version=\\\"3.0\\\";var\\nt=document.createElement(\\\"script\\\");t.async=!0,t.src=e;var\\nr=document.getElementsByTagName(\\\"script\\\")[0];r.parentNode.insertBefore(t,r)}}(\\\"{{ pinterestTagUrl.value }}\\\");\\npintrk(\'load\', \'{{ pinterestTagId.value }}\');\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if pageView %}\\npintrk(\'page\');\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/pinterestTagBody.twig\",\"bodyTemplateString\":\"{% if pinterestTagId.value is defined and pinterestTagId.value %}\\n<noscript><img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none;\\\" alt=\\\"\\\" src=\\\"{{ pinterestTagNoScriptUrl.value }}?tid={{ pinterestTagId.value }}&noscript=1\\\" \\/><\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"pinterestTagId\":{\"title\":\"Pinterest Tag ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.pinterest.com\\/docs\\/ad-tools\\/conversion-tag\\/)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Pinterest Tag PageView\",\"instructions\":\"Controls whether the Pinterest Tag script automatically sends a PageView to when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"pinterestTagUrl\":{\"title\":\"Pinterest Tag Script URL\",\"instructions\":\"The URL to the Pinterest Tag script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/s.pinimg.com\\/ct\\/core.js\"},\"pinterestTagNoScriptUrl\":{\"title\":\"Pinterest Tag Script &lt;noscript&gt; URL\",\"instructions\":\"The URL to the Pinterest Tag `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/ct.pinterest.com\\/v3\\/\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"pinterestTag\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"fathom\":{\"name\":\"Fathom\",\"description\":\"Fathom is a simple, light-weight, privacy-first alternative to Google Analytics. So, stop scrolling through pages of reports and collecting gobs of personal data about your visitors, both of which you probably don’t need. [Learn More](https:\\/\\/usefathom.com\\/)\",\"templatePath\":\"_frontend\\/scripts\\/fathomAnalytics.twig\",\"templateString\":\"{% if siteId.value is defined and siteId.value %}\\n(function() {\\nvar tag = document.createElement(\'script\');\\ntag.src = \\\"{{ scriptUrl.value }}\\\";\\ntag.defer = true;\\ntag.setAttribute(\\\"data-site\\\", \\\"{{ siteId.value | raw }}\\\");\\n{% if honorDnt.value %}\\ntag.setAttribute(\\\"data-honor-dnt\\\", \\\"true\\\");\\n{% endif %}\\n{% if disableAutoTracking.value %}\\ntag.setAttribute(\\\"data-auto\\\", \\\"false\\\");\\n{% endif %}\\n{% if ignoreCanonicals.value %}\\ntag.setAttribute(\\\"data-canonical\\\", \\\"false\\\");\\n{% endif %}\\n{% if excludedDomains.value | length %}\\ntag.setAttribute(\\\"data-excluded-domains\\\", \\\"{{ excludedDomains.value | raw }}\\\");\\n{% endif %}\\n{% if includedDomains.value | length %}\\ntag.setAttribute(\\\"data-included-domains\\\", \\\"{{ includedDomains.value | raw }}\\\");\\n{% endif %}\\nvar firstScriptTag = document.getElementsByTagName(\'script\')[0];\\nfirstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\\n})();\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":\"\",\"bodyPosition\":2,\"vars\":{\"siteId\":{\"title\":\"Site ID\",\"instructions\":\"Only enter the Site ID, not the entire script code. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking)\",\"type\":\"string\",\"value\":\"\"},\"honorDnt\":{\"title\":\"Honoring Do Not Track (DNT)\",\"instructions\":\"By default we track every visitor to your website, regardless of them having DNT turned on or not. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"bool\",\"value\":false},\"disableAutoTracking\":{\"title\":\"Disable automatic tracking\",\"instructions\":\"By default, we track a page view every time a visitor to your website loads a page with our script on it. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"bool\",\"value\":false},\"ignoreCanonicals\":{\"title\":\"Ignore canonicals\",\"instructions\":\"If there’s a canonical URL in place, then by default we use it instead of the current URL. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"bool\",\"value\":false},\"excludedDomains\":{\"title\":\"Excluded Domains\",\"instructions\":\"You exclude one or several domains, so our tracker will track things on every domain, except the ones excluded. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"string\",\"value\":\"\"},\"includedDomains\":{\"title\":\"Included Domains\",\"instructions\":\"If you want to go in the opposite direction and only track stats on a specific domain. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"string\",\"value\":\"\"},\"scriptUrl\":{\"title\":\"Fathom Script URL\",\"instructions\":\"The URL to the Fathom tracking script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/cdn.usefathom.com\\/script.js\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"fathom\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"matomo\":{\"name\":\"Matomo\",\"description\":\"Matomo is a Google Analytics alternative that protects your data and your customers\' privacy [Learn More](https:\\/\\/matomo.org\\/)\",\"templatePath\":\"_frontend\\/scripts\\/matomoAnalytics.twig\",\"templateString\":\"{% if siteId.value is defined and siteId.value and scriptUrl.value is defined and scriptUrl.value | length %}\\nvar _paq = window._paq = window._paq || [];\\n{% if sendPageView.value %}\\n_paq.push([\'trackPageView\']);\\n{% endif %}\\n{% if sendPageView.value %}\\n_paq.push([\'enableLinkTracking\']);\\n{% endif %}\\n(function() {\\nvar u=\\\"{{ scriptUrl.value }}\\\";\\n_paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\\n_paq.push([\'setSiteId\', {{ siteId.value }}]);\\nvar d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\\ng.type=\'text\\/javascript\'; g.async=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\\n})();\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":\"\",\"bodyPosition\":2,\"vars\":{\"siteId\":{\"title\":\"Site ID\",\"instructions\":\"Only enter the Site ID, not the entire script code. [Learn More](https:\\/\\/developer.matomo.org\\/guides\\/tracking-javascript-guide)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Matomo PageView\",\"instructions\":\"Controls whether the Matomo script automatically sends a PageView when your pages are loaded. [Learn More](https:\\/\\/developer.matomo.org\\/api-reference\\/tracking-javascript)\",\"type\":\"bool\",\"value\":true},\"enableLinkTracking\":{\"title\":\"Enable Link Tracking\",\"instructions\":\"Install link tracking on all applicable link elements. [Learn More](https:\\/\\/developer.matomo.org\\/api-reference\\/tracking-javascript)\",\"type\":\"bool\",\"value\":true},\"scriptUrl\":{\"title\":\"Matomo Script URL\",\"instructions\":\"The URL to the Matomo tracking script. This will vary depending on whether you are using Matomo Cloud or Matomo On-Premise. [Learn More](https:\\/\\/developer.matomo.org\\/guides\\/tracking-javascript-guide)\",\"type\":\"string\",\"value\":\"\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"matomo\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"plausible\":{\"name\":\"Plausible\",\"description\":\"Plausible is a lightweight and open-source website analytics tool. No cookies and fully compliant with GDPR, CCPA and PECR. [Learn More](https:\\/\\/plausible.io\\/)\",\"templatePath\":\"_frontend\\/scripts\\/plausibleAnalytics.twig\",\"templateString\":\"{% if siteDomain.value is defined and siteDomain.value %}\\n(function() {\\nvar tag = document.createElement(\'script\');\\ntag.src = \\\"{{ scriptUrl.value }}\\\";\\ntag.defer = true;\\ntag.setAttribute(\\\"data-domain\\\", \\\"{{ siteDomain.value | raw }}\\\");\\nvar firstScriptTag = document.getElementsByTagName(\'script\')[0];\\nfirstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\\n})();\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":\"\",\"bodyPosition\":2,\"vars\":{\"siteDomain\":{\"title\":\"Site Domain\",\"instructions\":\"Only enter the site domain, not the entire script code. [Learn More](https:\\/\\/plausible.io\\/docs\\/plausible-script)\",\"type\":\"string\",\"value\":\"\"},\"scriptUrl\":{\"title\":\"Plausible Script URL\",\"instructions\":\"The URL to the Plausible tracking script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/plausible.io\\/js\\/plausible.js\"}},\"dataLayer\":[],\"deprecated\":false,\"deprecationNotice\":\"\",\"discontinued\":false,\"include\":false,\"key\":\"plausible\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"googleAnalytics\":{\"name\":\"Google Analytics (old)\",\"description\":\"Google Analytics gives you the digital analytics tools you need to analyze data from all touchpoints in one place, for a deeper understanding of the customer experience. You can then share the insights that matter with your whole organization. [Learn More](https:\\/\\/www.google.com\\/analytics\\/analytics\\/)\",\"templatePath\":\"_frontend\\/scripts\\/googleAnalytics.twig\",\"templateString\":\"{% if trackingId.value is defined and trackingId.value %}\\n(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\\n(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\\nm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\\n})(window,document,\'script\',\'{{ analyticsUrl.value }}\',\'ga\');\\nga(\'create\', \'{{ trackingId.value |raw }}\', \'auto\'{% if linker.value %}, {allowLinker: true}{% endif %});\\n{% if ipAnonymization.value %}\\nga(\'set\', \'anonymizeIp\', true);\\n{% endif %}\\n{% if displayFeatures.value %}\\nga(\'require\', \'displayfeatures\');\\n{% endif %}\\n{% if ecommerce.value %}\\nga(\'require\', \'ecommerce\');\\n{% endif %}\\n{% if enhancedEcommerce.value %}\\nga(\'require\', \'ec\');\\n{% endif %}\\n{% if enhancedLinkAttribution.value %}\\nga(\'require\', \'linkid\');\\n{% endif %}\\n{% if enhancedLinkAttribution.value %}\\nga(\'require\', \'linker\');\\n{% endif %}\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if pageView %}\\nga(\'send\', \'pageview\');\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":\"\",\"bodyPosition\":2,\"vars\":{\"trackingId\":{\"title\":\"Google Analytics Tracking ID\",\"instructions\":\"Only enter the ID, e.g.: `UA-XXXXXX-XX`, not the entire script code. [Learn More](https:\\/\\/support.google.com\\/analytics\\/answer\\/1032385?hl=e)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Google Analytics PageView\",\"instructions\":\"Controls whether the Google Analytics script automatically sends a PageView to Google Analytics when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"ipAnonymization\":{\"title\":\"Google Analytics IP Anonymization\",\"instructions\":\"When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as technically feasible at the earliest possible stage of the collection network.\",\"type\":\"bool\",\"value\":false},\"displayFeatures\":{\"title\":\"Display Features\",\"instructions\":\"The display features plugin for analytics.js can be used to enable Advertising Features in Google Analytics, such as Remarketing, Demographics and Interest Reporting, and more. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/display-features)\",\"type\":\"bool\",\"value\":false},\"ecommerce\":{\"title\":\"Ecommerce\",\"instructions\":\"Ecommerce tracking allows you to measure the number of transactions and revenue that your website generates. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/ecommerce)\",\"type\":\"bool\",\"value\":false},\"enhancedEcommerce\":{\"title\":\"Enhanced Ecommerce\",\"instructions\":\"The enhanced ecommerce plug-in for analytics.js enables the measurement of user interactions with products on ecommerce websites across the user\'s shopping experience, including: product impressions, product clicks, viewing product details, adding a product to a shopping cart, initiating the checkout process, transactions, and refunds. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/enhanced-ecommerce)\",\"type\":\"bool\",\"value\":false},\"enhancedLinkAttribution\":{\"title\":\"Enhanced Link Attribution\",\"instructions\":\"Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/enhanced-link-attribution)\",\"type\":\"bool\",\"value\":false},\"linker\":{\"title\":\"Linker\",\"instructions\":\"The linker plugin simplifies the process of implementing cross-domain tracking as described in the Cross-domain Tracking guide for analytics.js. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/linker)\",\"type\":\"bool\",\"value\":false},\"analyticsUrl\":{\"title\":\"Google Analytics Script URL\",\"instructions\":\"The URL to the Google Analytics tracking script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.google-analytics.com\\/analytics.js\"}},\"dataLayer\":[],\"deprecated\":true,\"deprecationNotice\":\"Universal Analytics (which is what this script uses) is being [discontinued on July 1st, 2023](https:\\/\\/support.google.com\\/analytics\\/answer\\/11583528). You should use Google gtag.js or Google Tag Manager instead and transition to a new GA4 property.\",\"discontinued\":false,\"include\":false,\"key\":\"googleAnalytics\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null}},\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"dateModified\":null,\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":null,\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":null,\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":null,\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":null,\"isAccessibleForFree\":null,\"dateCreated\":null,\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":{\"type\":\"EntryPoint\",\"urlTemplate\":\"{{ seomatic.site.siteLinksSearchTarget }}\"},\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"},\"identity\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.site.identity.computedType }}\",\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\",\"graph\":null,\"include\":true,\"key\":\"identity\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"priceRange\":\"{{ seomatic.site.identity.localBusinessPriceRange }}\",\"paymentAccepted\":null,\"branchOf\":null,\"openingHours\":[],\"currenciesAccepted\":null,\"memberOf\":null,\"foundingLocation\":\"{{ seomatic.site.identity.organizationFoundingLocation }}\",\"hasOfferCatalog\":null,\"awards\":null,\"alumni\":null,\"nonprofitStatus\":null,\"slogan\":null,\"owns\":null,\"award\":null,\"event\":null,\"makesOffer\":null,\"review\":null,\"hasPOS\":null,\"duns\":\"{{ seomatic.site.identity.organizationDuns }}\",\"brand\":null,\"knowsLanguage\":null,\"department\":null,\"knowsAbout\":null,\"foundingDate\":\"{{ seomatic.site.identity.organizationFoundingDate }}\",\"diversityPolicy\":null,\"leiCode\":null,\"publishingPrinciples\":null,\"logo\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.helper.socialTransform(seomatic.site.identity.genericImageIds[0], \\\"schema-logo\\\") }}\",\"width\":\"{{ seomatic.helper.socialTransformWidth(seomatic.site.identity.genericImageIds[0], \\\"schema-logo\\\") }}\",\"height\":\"{{ seomatic.helper.socialTransformHeight(seomatic.site.identity.genericImageIds[0], \\\"schema-logo\\\") }}\"},\"ownershipFundingInfo\":null,\"reviews\":null,\"isicV4\":null,\"telephone\":\"{{ seomatic.site.identity.genericTelephone }}\",\"location\":null,\"correctionsPolicy\":null,\"areaServed\":null,\"funding\":null,\"employee\":null,\"numberOfEmployees\":null,\"hasMerchantReturnPolicy\":null,\"iso6523Code\":null,\"taxID\":null,\"naics\":null,\"founders\":null,\"contactPoint\":null,\"serviceArea\":null,\"globalLocationNumber\":null,\"keywords\":null,\"email\":\"{{ seomatic.site.identity.genericEmail }}\",\"ethicsPolicy\":null,\"sponsor\":null,\"agentInteractionStatistic\":null,\"employees\":null,\"events\":null,\"interactionStatistic\":null,\"legalName\":null,\"vatID\":null,\"members\":null,\"funder\":null,\"aggregateRating\":null,\"hasCredential\":null,\"seeks\":null,\"subOrganization\":null,\"dissolutionDate\":null,\"contactPoints\":[],\"founder\":\"{{ seomatic.site.identity.organizationFounder }}\",\"unnamedSourcesPolicy\":null,\"parentOrganization\":null,\"address\":{\"type\":\"PostalAddress\",\"streetAddress\":\"{{ seomatic.site.identity.genericStreetAddress }}\",\"addressLocality\":\"{{ seomatic.site.identity.genericAddressLocality }}\",\"addressRegion\":\"{{ seomatic.site.identity.genericAddressRegion }}\",\"postalCode\":\"{{ seomatic.site.identity.genericPostalCode }}\",\"addressCountry\":\"{{ seomatic.site.identity.genericAddressCountry }}\"},\"faxNumber\":null,\"actionableFeedbackPolicy\":null,\"diversityStaffingReport\":null,\"hasCertification\":null,\"member\":null,\"name\":\"{{ seomatic.site.identity.genericName }}\",\"description\":\"{{ seomatic.site.identity.genericDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.site.identity.genericUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.site.identity.genericImage }}\",\"width\":\"{{ seomatic.site.identity.genericImageWidth }}\",\"height\":\"{{ seomatic.site.identity.genericImageHeight }}\"},\"additionalType\":null,\"potentialAction\":null,\"alternateName\":\"{{ seomatic.site.identity.genericAlternateName }}\",\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":null,\"geoTouches\":null,\"geo\":{\"type\":\"GeoCoordinates\",\"latitude\":\"{{ seomatic.site.identity.genericGeoLatitude }}\",\"longitude\":\"{{ seomatic.site.identity.genericGeoLongitude }}\"},\"containedInPlace\":null,\"amenityFeature\":null,\"longitude\":null,\"geoOverlaps\":null,\"geoDisjoint\":null,\"maximumAttendeeCapacity\":null,\"maps\":null,\"geoWithin\":null,\"additionalProperty\":null,\"photos\":null,\"smokingAllowed\":null,\"publicAccess\":null,\"geoCrosses\":null,\"tourBookingPage\":null,\"branchCode\":null,\"geoEquals\":null,\"hasDriveThroughService\":null,\"latitude\":null,\"geoContains\":null,\"hasMap\":null,\"specialOpeningHoursSpecification\":null,\"openingHoursSpecification\":null,\"photo\":null,\"isAccessibleForFree\":null,\"geoCovers\":null,\"geoCoveredBy\":null,\"map\":null,\"geoIntersects\":null,\"containedIn\":null,\"containsPlace\":null},\"creator\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.site.creator.computedType }}\",\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\",\"graph\":null,\"include\":true,\"key\":\"creator\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"memberOf\":null,\"foundingLocation\":\"{{ seomatic.site.creator.organizationFoundingLocation }}\",\"hasOfferCatalog\":null,\"awards\":null,\"alumni\":null,\"nonprofitStatus\":null,\"slogan\":null,\"owns\":null,\"award\":null,\"event\":null,\"makesOffer\":null,\"review\":null,\"hasPOS\":null,\"duns\":\"{{ seomatic.site.creator.organizationDuns }}\",\"brand\":null,\"knowsLanguage\":null,\"department\":null,\"knowsAbout\":null,\"foundingDate\":\"{{ seomatic.site.creator.organizationFoundingDate }}\",\"diversityPolicy\":null,\"leiCode\":null,\"publishingPrinciples\":null,\"logo\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.helper.socialTransform(seomatic.site.creator.genericImageIds[0], \\\"schema-logo\\\") }}\",\"width\":\"{{ seomatic.helper.socialTransformWidth(seomatic.site.creator.genericImageIds[0], \\\"schema-logo\\\") }}\",\"height\":\"{{ seomatic.helper.socialTransformHeight(seomatic.site.creator.genericImageIds[0], \\\"schema-logo\\\") }}\"},\"ownershipFundingInfo\":null,\"reviews\":null,\"isicV4\":null,\"telephone\":\"{{ seomatic.site.creator.genericTelephone }}\",\"location\":null,\"correctionsPolicy\":null,\"areaServed\":null,\"funding\":null,\"employee\":null,\"numberOfEmployees\":null,\"hasMerchantReturnPolicy\":null,\"iso6523Code\":null,\"taxID\":null,\"naics\":null,\"founders\":null,\"contactPoint\":null,\"serviceArea\":null,\"globalLocationNumber\":null,\"keywords\":null,\"email\":\"{{ seomatic.site.creator.genericEmail }}\",\"ethicsPolicy\":null,\"sponsor\":null,\"agentInteractionStatistic\":null,\"employees\":null,\"events\":null,\"interactionStatistic\":null,\"legalName\":null,\"vatID\":null,\"members\":null,\"funder\":null,\"aggregateRating\":null,\"hasCredential\":null,\"seeks\":null,\"subOrganization\":null,\"dissolutionDate\":null,\"contactPoints\":[],\"founder\":\"{{ seomatic.site.creator.organizationFounder }}\",\"unnamedSourcesPolicy\":null,\"parentOrganization\":null,\"address\":{\"type\":\"PostalAddress\",\"streetAddress\":\"{{ seomatic.site.creator.genericStreetAddress }}\",\"addressLocality\":\"{{ seomatic.site.creator.genericAddressLocality }}\",\"addressRegion\":\"{{ seomatic.site.creator.genericAddressRegion }}\",\"postalCode\":\"{{ seomatic.site.creator.genericPostalCode }}\",\"addressCountry\":\"{{ seomatic.site.creator.genericAddressCountry }}\"},\"faxNumber\":null,\"actionableFeedbackPolicy\":null,\"diversityStaffingReport\":null,\"hasCertification\":null,\"member\":null,\"name\":\"{{ seomatic.site.creator.genericName }}\",\"description\":\"{{ seomatic.site.creator.genericDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.site.creator.genericUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.site.creator.genericImage }}\",\"width\":\"{{ seomatic.site.creator.genericImageWidth }}\",\"height\":\"{{ seomatic.site.creator.genericImageHeight }}\"},\"additionalType\":null,\"potentialAction\":null,\"alternateName\":\"{{ seomatic.site.creator.genericAlternateName }}\",\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":{\"humans\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"\\/* TEAM *\\/\\n\\nCreator: {{ seomatic.site.creator.genericName ?? \\\"n\\/a\\\" }}\\nURL: {{ parseEnv(seomatic.site.creator.genericUrl ?? \\\"n\\/a\\\") }}\\nDescription: {{ seomatic.site.creator.genericDescription ?? \\\"n\\/a\\\" }}\\n\\n\\/* THANKS *\\/\\n\\nCraft CMS - https:\\/\\/craftcms.com\\nPixel & Tonic - https:\\/\\/pixelandtonic.com\\n\\n\\/* SITE *\\/\\n\\nStandards: HTML5, CSS3\\nComponents: Craft CMS 5, Yii2, PHP, JavaScript, SEOmatic\\n\",\"siteId\":null,\"include\":true,\"handle\":\"humans\",\"path\":\"humans.txt\",\"template\":\"_frontend\\/pages\\/humans.twig\",\"controller\":\"frontend-template\",\"action\":\"humans\"},\"robots\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"# robots.txt for {{ seomatic.helper.baseSiteUrl(\\\"\\/\\\") }}\\n\\n{{ seomatic.helper.sitemapIndex() }}\\n{% switch seomatic.config.environment %}\\n\\n{% case \\\"live\\\" %}\\n\\n# live - don\'t allow web crawlers to index cpresources\\/ or vendor\\/\\n\\nUser-agent: *\\nDisallow: \\/cpresources\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/.env\\nDisallow: \\/cache\\/\\n\\n{% case \\\"staging\\\" %}\\n\\n# staging - disallow all\\n\\nUser-agent: *\\nDisallow: \\/\\n\\n{% case \\\"local\\\" %}\\n\\n# local - disallow all\\n\\nUser-agent: *\\nDisallow: \\/\\n\\n{% default %}\\n\\n# default - don\'t allow web crawlers to index cpresources\\/ or vendor\\/\\n\\nUser-agent: *\\nDisallow: \\/cpresources\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/.env\\nDisallow: \\/cache\\/\\n\\n{% endswitch %}\\n\",\"siteId\":null,\"include\":true,\"handle\":\"robots\",\"path\":\"robots.txt\",\"template\":\"_frontend\\/pages\\/robots.twig\",\"controller\":\"frontend-template\",\"action\":\"robots\"},\"ads\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"# ads.txt file for {{ seomatic.helper.baseSiteUrl(\\\"\\/\\\") }}\\n# More info: https:\\/\\/support.google.com\\/admanager\\/answer\\/7441288?hl=en\\n{{ seomatic.helper.baseSiteUrl(\\\"\\/\\\") }},123,DIRECT\\n\",\"siteId\":null,\"include\":false,\"handle\":\"ads\",\"path\":\"ads.txt\",\"template\":\"_frontend\\/pages\\/ads.twig\",\"controller\":\"frontend-template\",\"action\":\"ads\"},\"security\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"# security.txt file for {{ seomatic.helper.baseSiteUrl(\\\"\\/\\\") }} - more info: https:\\/\\/securitytxt.org\\/\\n\\n# (required) Contact email address for security issues\\nContact: mailto:user@example.com\\n\\n# (required) Expiration date for the security information herein\\nExpires: {{ date(\'+1 year\')|atom }}\\n\\n# (optional) OpenPGP key:\\nEncryption: {{ url(\'pgp-key.txt\') }}\\n\\n# (optional) Security policy page:\\nPolicy: {{ url(\'security-policy\') }}\\n\\n# (optional) Security acknowledgements page:\\nAcknowledgements: {{ url(\'hall-of-fame\') }}\\n\",\"siteId\":null,\"include\":false,\"handle\":\"security\",\"path\":\".well-known\\/security.txt\",\"template\":\"_frontend\\/pages\\/security.twig\",\"controller\":\"frontend-template\",\"action\":\"security\"}},\"name\":\"Frontend Templates\",\"description\":\"Templates that are rendered on the frontend\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":\"SeomaticEditableTemplate\",\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(2,'2026-04-15 17:38:09','2026-04-20 19:49:42','48f0572a-9c0a-4e16-8a64-aef7ae7ce92e','1.0.31','section',9,'About','about','single',NULL,'about.twig',1,'{\"1\":{\"id\":9,\"sectionId\":9,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"about\",\"template\":\"about.twig\",\"language\":\"en\"}}','2026-04-20 19:49:42','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(3,'2026-04-15 17:38:09','2026-04-15 17:38:09','50c7e935-fac7-401a-a956-0cf32de94b61','1.0.31','section',4,'Blog','blog','channel',NULL,'blog/_entry.twig',1,'{\"1\":{\"id\":4,\"sectionId\":4,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"blog\\/{slug}\",\"template\":\"blog\\/_entry.twig\",\"language\":\"en\"}}','2026-04-15 15:26:00','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(4,'2026-04-15 17:38:09','2026-04-15 17:38:09','ced09022-ca48-4d88-aad7-9510dbae6c58','1.0.31','section',11,'Case Studies','caseStudies','channel',NULL,'case-studies/_entry.twig',1,'{\"1\":{\"id\":11,\"sectionId\":11,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"case-studies\\/{slug}\",\"template\":\"case-studies\\/_entry.twig\",\"language\":\"en\"}}','2026-03-23 17:02:10','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(5,'2026-04-15 17:38:09','2026-04-20 19:14:16','9f457e89-9ca7-4442-9acc-3e5614a5772c','1.0.31','section',3,'Conditions','conditions','channel',NULL,'conditions/_entry.twig',1,'{\"1\":{\"id\":3,\"sectionId\":3,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"conditions\\/{slug}\",\"template\":\"conditions\\/_entry.twig\",\"language\":\"en\"}}','2026-04-20 19:14:14','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(6,'2026-04-15 17:38:09','2026-04-17 12:13:22','29439f17-6b4e-4057-86ba-2397be867de6','1.0.31','section',8,'Contacts','contacts','single',NULL,'contact.twig',1,'{\"1\":{\"id\":8,\"sectionId\":8,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"contacts\",\"template\":\"contact.twig\",\"language\":\"en\"}}','2026-04-17 12:13:20','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(7,'2026-04-15 17:38:09','2026-04-17 12:19:22','14fdd8ae-7ce2-4134-bed7-e4c38a7be86f','1.0.31','section',5,'Homepage','homepage','single',NULL,'index.twig',1,'{\"1\":{\"id\":5,\"sectionId\":5,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"__home__\",\"template\":\"index.twig\",\"language\":\"en\"}}','2026-04-17 12:19:20','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(8,'2026-04-15 17:38:09','2026-04-20 20:13:57','1e86c390-7862-42f4-8613-59b2688881c3','1.0.31','section',1,'Pages','pages','channel',NULL,'pages/_entry.twig',1,'{\"1\":{\"id\":1,\"sectionId\":1,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"{slug}\",\"template\":\"pages\\/_entry.twig\",\"language\":\"en\"}}','2026-03-20 10:50:16','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(9,'2026-04-15 17:38:09','2026-04-15 17:38:09','ea676fe7-76b0-4357-9f82-04f3c5c26359','1.0.31','section',12,'Test section','testSection','single',NULL,'about.twig',1,'{\"1\":{\"id\":12,\"sectionId\":12,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"test-section\",\"template\":\"about.twig\",\"language\":\"en\"}}','2026-02-24 14:02:21','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),
(10,'2026-04-15 17:38:09','2026-04-20 19:28:02','706723da-1118-462a-be18-d44d30697d86','1.0.31','section',2,'Treatments','treatments','channel',NULL,'treatments/_entry.twig',1,'{\"1\":{\"id\":2,\"sectionId\":2,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"treatments\\/{slug}\",\"template\":\"treatments\\/_entry.twig\",\"language\":\"en\"}}','2026-04-20 19:28:01','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"sameAsGlobal\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"sameAsGlobal\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"Rachel Siton Website\",\"siteAlternateName\":\"\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapAssetTransform\":null,\"newsSitemap\":false,\"newsPublicationName\":\"\",\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"sitemapPageSize\":500,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"https:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"specialty\":null,\"breadcrumb\":null,\"lastReviewed\":null,\"mainContentOfPage\":null,\"significantLinks\":null,\"reviewedBy\":null,\"relatedLink\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"speakable\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"associatedMedia\":null,\"publisherImprint\":null,\"pattern\":null,\"audio\":null,\"recordedAt\":null,\"hasPart\":null,\"awards\":null,\"encoding\":null,\"workTranslation\":null,\"releasedEvent\":null,\"workExample\":null,\"spatial\":null,\"accessModeSufficient\":null,\"award\":null,\"review\":null,\"interpretedAsClaim\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"exampleOfWork\":null,\"genre\":null,\"translationOfWork\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"acquireLicensePage\":null,\"assesses\":null,\"creativeWorkStatus\":null,\"sdLicense\":null,\"educationalUse\":null,\"countryOfOrigin\":null,\"contentRating\":null,\"locationCreated\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"accessibilitySummary\":null,\"commentCount\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOnUrl\":null,\"license\":null,\"usageInfo\":null,\"publication\":null,\"timeRequired\":null,\"interactivityType\":null,\"publishingPrinciples\":null,\"contributor\":null,\"citation\":null,\"conditionsOfAccess\":null,\"learningResourceType\":null,\"correction\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"reviews\":null,\"isPartOf\":null,\"producer\":null,\"thumbnail\":null,\"accessMode\":null,\"editEIDR\":null,\"temporalCoverage\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"educationalAlignment\":null,\"funding\":null,\"material\":null,\"alternativeHeadline\":null,\"version\":null,\"isFamilyFriendly\":null,\"materialExtent\":null,\"discussionUrl\":null,\"size\":null,\"maintainer\":null,\"copyrightNotice\":null,\"comment\":null,\"offers\":null,\"text\":null,\"fileFormat\":null,\"encodings\":null,\"about\":null,\"audience\":null,\"keywords\":null,\"spatialCoverage\":null,\"sponsor\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"contentLocation\":null,\"interactionStatistic\":null,\"encodingFormat\":null,\"archivedAt\":null,\"mainEntity\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"isAccessibleForFree\":null,\"dateCreated\":\"{{ entry.dateCreated |atom }}\",\"teaches\":null,\"thumbnailUrl\":null,\"accountablePerson\":null,\"typicalAgeRange\":null,\"sdDatePublished\":null,\"funder\":null,\"expires\":null,\"aggregateRating\":null,\"temporal\":null,\"accessibilityControl\":null,\"accessibilityFeature\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"provider\":null,\"abstract\":null,\"digitalSourceType\":null,\"position\":null,\"mentions\":null,\"sourceOrganization\":null,\"video\":null,\"editor\":null,\"creditText\":null,\"schemaVersion\":null,\"translator\":null,\"accessibilityHazard\":null,\"contentReferenceTime\":null,\"educationalLevel\":null,\"character\":null,\"isBasedOn\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"additionalType\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"alternateName\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\"}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":false,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":false,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}');
/*!40000 ALTER TABLE `seomatic_metabundles` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sequences`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sequences` WRITE;
/*!40000 ALTER TABLE `sequences` DISABLE KEYS */;
/*!40000 ALTER TABLE `sequences` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `shunnedmessages`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `shunnedmessages` WRITE;
/*!40000 ALTER TABLE `shunnedmessages` DISABLE KEYS */;
/*!40000 ALTER TABLE `shunnedmessages` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sitegroups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sitegroups` WRITE;
/*!40000 ALTER TABLE `sitegroups` DISABLE KEYS */;
INSERT INTO `sitegroups` VALUES
(1,'Rachel Siton Website','2025-11-29 11:54:53','2025-11-29 11:54:53',NULL,'fc0600a1-3aa7-48c0-8a68-c49f00062f24');
/*!40000 ALTER TABLE `sitegroups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sites`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sites` WRITE;
/*!40000 ALTER TABLE `sites` DISABLE KEYS */;
INSERT INTO `sites` VALUES
(1,1,1,'true','Rachel Siton Website','default','en',1,'$PRIMARY_SITE_URL',1,'2025-11-29 11:54:53','2025-11-29 11:54:53',NULL,'36505853-1fbd-4631-856c-a5b50c2c059f');
/*!40000 ALTER TABLE `sites` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `sso_identities`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `sso_identities` WRITE;
/*!40000 ALTER TABLE `sso_identities` DISABLE KEYS */;
/*!40000 ALTER TABLE `sso_identities` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `structureelements`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `structureelements` WRITE;
/*!40000 ALTER TABLE `structureelements` DISABLE KEYS */;
INSERT INTO `structureelements` VALUES
(1,1,NULL,1,1,60,0,'2025-11-29 12:58:28','2026-04-03 12:21:41','6997ac5c-8486-424f-874a-1740720faf47'),
(2,1,2,1,2,3,1,'2025-11-29 12:58:28','2025-11-29 12:58:28','9fbff690-32d0-46b3-a372-c87f08d1fa91'),
(3,1,3,1,52,53,1,'2025-11-29 12:58:35','2026-04-03 12:21:41','04d44cc1-2324-4624-a103-0bf99a9294dd'),
(4,1,4,1,56,57,1,'2025-11-29 12:58:41','2026-04-03 12:21:41','0233e5d4-8376-448a-ae84-30e58e9838e1'),
(5,1,5,1,26,49,1,'2025-11-29 12:58:47','2026-04-03 12:21:41','170cb8c1-ff10-4106-a38a-1adc53012cac'),
(6,1,6,1,50,51,1,'2025-11-29 12:58:53','2026-04-03 12:21:41','74d27bc9-00e2-44d6-a7b5-95eb104a19ca'),
(7,1,8,1,58,59,1,'2025-11-30 11:23:32','2026-04-03 12:21:41','ea3b8b33-1f29-4eee-ae9f-6ff50871edfc'),
(8,1,11,1,4,25,1,'2025-11-30 12:04:32','2026-03-20 20:17:49','6f4dc006-1aa2-4d6f-87f7-76ecfb2bb0b8'),
(28,1,35,1,54,55,1,'2025-11-30 12:27:29','2026-04-03 12:21:41','8095d38e-23fe-49ca-861a-051b98949e76'),
(29,2,NULL,29,1,10,0,'2025-12-02 21:42:11','2025-12-02 21:42:46','89dbf8bb-cdfe-4328-8d63-11c8679a8567'),
(30,2,235,29,2,3,1,'2025-12-02 21:42:11','2025-12-02 21:42:11','7786f8f5-bcf9-4c6c-99ec-e0388f1324a3'),
(31,2,236,29,4,5,1,'2025-12-02 21:42:21','2025-12-02 21:42:21','f890e45e-9856-401c-8f3d-856a260e731f'),
(32,2,237,29,6,7,1,'2025-12-02 21:42:36','2025-12-02 21:42:36','278c5405-7724-4729-9815-a7b9ae3b4207'),
(33,2,238,29,8,9,1,'2025-12-02 21:42:46','2025-12-02 21:42:46','3031c073-ae30-4108-8300-7a5fe4fd5b3c'),
(34,3,NULL,34,1,10,0,'2025-12-02 21:43:52','2026-03-26 10:31:59','85a453be-d282-464f-a465-3ae75f79e8a9'),
(43,1,2909,1,21,22,2,'2026-03-03 07:58:02','2026-03-20 20:17:49','760c240f-58d0-4920-bcce-2fd52ecab39b'),
(50,1,3541,1,29,30,2,'2026-03-03 11:08:11','2026-03-26 08:56:06','39c12743-3dc2-4304-89d2-2f1599ffb424'),
(60,1,4414,1,5,6,2,'2026-03-18 23:31:20','2026-03-20 20:17:49','ab6dddc1-4122-4a6d-bb1b-841d35c5a95d'),
(61,1,4415,1,19,20,2,'2026-03-18 23:31:20','2026-03-20 20:17:49','1613709d-2698-4e32-af61-49d8c8e42c88'),
(62,1,4417,1,23,24,2,'2026-03-18 23:32:48','2026-03-20 20:17:49','b21b4c84-ef14-4e5c-9bcb-23ea471cfa21'),
(63,1,5722,1,13,14,2,'2026-03-20 20:17:19','2026-03-20 20:17:49','ca527c87-e4f8-4b9c-9c26-b7534be2f56c'),
(64,1,5723,1,7,8,2,'2026-03-20 20:17:19','2026-03-20 20:17:49','12954adb-fcd9-44b6-a319-09bfec8246b7'),
(65,1,5724,1,17,18,2,'2026-03-20 20:17:19','2026-03-20 20:17:49','5c76cea0-bc14-4665-8faf-a8e6a306faeb'),
(66,1,5725,1,11,12,2,'2026-03-20 20:17:19','2026-03-20 20:17:49','33dd6158-b29c-4c57-9904-ea8612a0246b'),
(67,1,5726,1,9,10,2,'2026-03-20 20:17:19','2026-03-20 20:17:49','036a7409-6120-450f-8a87-03c4b1898cc4'),
(68,1,5727,1,15,16,2,'2026-03-20 20:17:19','2026-03-20 20:17:49','71977932-e125-4f10-a98f-6c3ee21efdcc'),
(70,4,NULL,70,1,34,0,'2026-03-25 12:53:08','2026-03-27 14:50:02','ecf03c88-87b9-46ea-a60d-387671bdf171'),
(75,4,1132,70,2,3,1,'2026-03-25 12:53:08','2026-03-27 13:24:52','77bd661f-4c7a-46da-a18d-958fea4b6878'),
(82,4,5795,70,4,5,1,'2026-03-25 17:54:16','2026-03-27 13:24:52','335a0d55-0d2b-4b44-91a6-b3ff37b3c57f'),
(83,1,6031,1,27,28,2,'2026-03-26 08:56:03','2026-03-26 08:56:06','caf69a05-670f-40aa-82e7-3599a91b3e1e'),
(84,3,6081,34,2,3,1,'2026-03-26 10:31:52','2026-03-26 10:31:52','0c6e0b0e-689f-4d0d-8ee3-52eaeb13cd10'),
(85,3,6082,34,8,9,1,'2026-03-26 10:31:52','2026-03-26 10:31:59','af3376bc-e25b-4eb3-8b2e-c81b323652b5'),
(86,3,6083,34,4,5,1,'2026-03-26 10:31:52','2026-03-26 10:31:59','d1c375a5-1be9-4e3e-b5ff-e80fe66d6c69'),
(87,3,6084,34,6,7,1,'2026-03-26 10:31:52','2026-03-26 10:31:59','f0a6fa76-04f0-465b-a3dc-986ff073f431'),
(88,4,6156,70,6,7,1,'2026-03-27 13:25:02','2026-03-27 13:25:02','53b2eaf2-c0d6-4308-8b59-d7e99775c58a'),
(89,4,6157,70,8,9,1,'2026-03-27 13:25:20','2026-03-27 13:25:20','d2cf9d90-b3f8-4124-81ae-775e5c78d6f7'),
(90,4,6166,70,10,11,1,'2026-03-27 13:26:47','2026-03-27 13:26:47','3b3f328d-ad95-4a9c-9c32-a7ca06d28265'),
(91,4,6174,70,12,13,1,'2026-03-27 13:57:18','2026-03-27 13:57:18','ca755ef2-ef1f-48c9-869f-b5268d17994e'),
(92,4,6179,70,14,15,1,'2026-03-27 13:57:43','2026-03-27 13:57:43','9a738118-9bf7-4891-b309-e72a8253246e'),
(93,4,6196,70,16,17,1,'2026-03-27 14:18:41','2026-03-27 14:18:41','69efdcc9-9160-440c-8c02-a27fa870724a'),
(94,4,6211,70,18,19,1,'2026-03-27 14:20:52','2026-03-27 14:20:52','7cdb6ddb-d9c2-4fbf-b1d1-00068775de87'),
(95,4,6212,70,20,21,1,'2026-03-27 14:21:27','2026-03-27 14:21:27','089a7d56-f9fe-4f44-9e82-c5d02bfd2a46'),
(96,4,6216,70,22,23,1,'2026-03-27 14:22:02','2026-03-27 14:22:02','b72379a1-0e00-4268-bb6b-552cf6720dd0'),
(97,4,6224,70,24,25,1,'2026-03-27 14:25:17','2026-03-27 14:25:17','0e018df7-6d15-42d6-a8ff-13d740a0c9f3'),
(98,4,6232,70,26,27,1,'2026-03-27 14:26:51','2026-03-27 14:26:51','763cb262-af94-43a5-a53c-bd70c807ff65'),
(99,4,6252,70,28,29,1,'2026-03-27 14:48:25','2026-03-27 14:48:25','2f221e14-d9bf-4bc6-9ff2-fc8db1313ff6'),
(100,4,6253,70,30,31,1,'2026-03-27 14:48:42','2026-03-27 14:48:42','ffd9d2bd-cc0d-40d4-a348-c2a01db3175a'),
(101,4,6265,70,32,33,1,'2026-03-27 14:50:02','2026-03-27 14:50:02','d3c5164a-6acd-4d4b-a368-2c1e62ee480b'),
(102,1,7154,1,31,32,2,'2026-04-03 12:21:24','2026-04-03 12:21:24','8f3a77cf-2ee4-4759-b803-df6240a99882'),
(103,1,7155,1,33,34,2,'2026-04-03 12:21:24','2026-04-03 12:21:24','564e8ff0-5627-4f5e-bbe0-71b3fc6841ae'),
(104,1,7156,1,35,36,2,'2026-04-03 12:21:24','2026-04-03 12:21:24','dcbb77dd-9c9e-48e1-a043-02d0a02a023f'),
(105,1,7157,1,37,38,2,'2026-04-03 12:21:41','2026-04-03 12:21:41','02299d72-666f-45cf-9fae-204c73db3828'),
(106,1,7158,1,39,40,2,'2026-04-03 12:21:41','2026-04-03 12:21:41','c53aa186-33eb-4efa-b63a-8889edaaa316'),
(107,1,7159,1,41,42,2,'2026-04-03 12:21:41','2026-04-03 12:21:41','adf3ab59-737b-49cb-89cf-135a8fc66b54'),
(108,1,7160,1,43,44,2,'2026-04-03 12:21:41','2026-04-03 12:21:41','8f7c8507-bd56-4f26-9c5a-f861d68e2ff3'),
(109,1,7161,1,45,46,2,'2026-04-03 12:21:41','2026-04-03 12:21:41','70652eea-4dfb-4bbb-945e-ab73d853e4bc'),
(110,1,7162,1,47,48,2,'2026-04-03 12:21:41','2026-04-03 12:21:41','ca991d38-53a1-42be-9270-e4222e38d101');
/*!40000 ALTER TABLE `structureelements` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `structures`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `structures` WRITE;
/*!40000 ALTER TABLE `structures` DISABLE KEYS */;
INSERT INTO `structures` VALUES
(1,2,'2025-11-29 12:58:00','2025-11-29 12:58:00',NULL,'339bcf18-6efd-4767-9e8b-56717a6b6332'),
(2,1,'2025-12-02 21:41:44','2025-12-02 21:41:44',NULL,'6c9b03a6-fc1c-46fe-a5e9-dc9ebd824709'),
(3,1,'2025-12-02 21:41:54','2025-12-02 21:41:54',NULL,'a9611aa3-3160-4426-ad49-76481adb739f'),
(4,1,'2026-03-25 12:53:08','2026-03-25 12:53:08',NULL,'ef4e9cf9-4aab-4b7a-af5d-8ca86816d0f4');
/*!40000 ALTER TABLE `structures` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `systemmessages`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `systemmessages` WRITE;
/*!40000 ALTER TABLE `systemmessages` DISABLE KEYS */;
/*!40000 ALTER TABLE `systemmessages` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `taggroups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `taggroups` WRITE;
/*!40000 ALTER TABLE `taggroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `taggroups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `tags`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `tags` WRITE;
/*!40000 ALTER TABLE `tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `tags` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `tokens`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `tokens` WRITE;
/*!40000 ALTER TABLE `tokens` DISABLE KEYS */;
INSERT INTO `tokens` VALUES
(126,'EsGv2tU85acaYp3IIaB4_atOcsVOE8KQ','[\"preview\\/preview\",{\"elementType\":\"craft\\\\elements\\\\Entry\",\"canonicalId\":8437,\"siteId\":1,\"draftId\":null,\"revisionId\":null,\"userId\":1}]',NULL,NULL,'2026-04-21 20:04:24','2026-04-20 20:04:24','2026-04-20 20:04:24','5557791c-0add-464f-997d-25af1c524b1c');
/*!40000 ALTER TABLE `tokens` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `usergroups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `usergroups` WRITE;
/*!40000 ALTER TABLE `usergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `usergroups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `usergroups_users`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `usergroups_users` WRITE;
/*!40000 ALTER TABLE `usergroups_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `usergroups_users` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `userpermissions`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `userpermissions` WRITE;
/*!40000 ALTER TABLE `userpermissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `userpermissions` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `userpermissions_usergroups`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `userpermissions_usergroups` WRITE;
/*!40000 ALTER TABLE `userpermissions_usergroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `userpermissions_usergroups` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `userpermissions_users`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `userpermissions_users` WRITE;
/*!40000 ALTER TABLE `userpermissions_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `userpermissions_users` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `userpreferences`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `userpreferences` WRITE;
/*!40000 ALTER TABLE `userpreferences` DISABLE KEYS */;
INSERT INTO `userpreferences` VALUES
(1,'{\"language\":\"en\"}');
/*!40000 ALTER TABLE `userpreferences` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `users`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES
(1,NULL,NULL,1,0,0,0,1,'office@finedigital.co.uk','Dr Rachel',NULL,'Rachel','office@finedigital.co.uk','$2y$13$LmftKZjIZiCmGITEIT0hUOudOhP7zcUKRQ6rgJqoaX7N0dLzF9yra','2026-04-20 20:40:31',NULL,NULL,NULL,'2026-03-22 21:22:38',NULL,1,NULL,NULL,NULL,0,'2025-11-29 11:54:53','2025-11-29 11:54:53','2026-04-20 20:40:31');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `volumefolders`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `volumefolders` WRITE;
/*!40000 ALTER TABLE `volumefolders` DISABLE KEYS */;
INSERT INTO `volumefolders` VALUES
(1,NULL,NULL,'Temporary Uploads',NULL,'2025-11-29 12:56:45','2025-11-29 12:56:45','bd2865fc-6995-4e1f-ae87-c0edb11dd7dc'),
(2,1,NULL,'user_1','user_1/','2025-11-29 12:56:45','2025-11-29 12:56:45','8f98a38c-42e3-4c7a-8958-68d210ec4ffe'),
(3,NULL,1,'Images','','2025-11-30 11:07:44','2025-11-30 11:07:44','7b6d9ce5-479c-4e22-bb1a-49c4a830c14c');
/*!40000 ALTER TABLE `volumefolders` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `volumes`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `volumes` WRITE;
/*!40000 ALTER TABLE `volumes` DISABLE KEYS */;
INSERT INTO `volumes` VALUES
(1,2,'Images','images','images','','','','site',NULL,'none',NULL,1,'2025-11-30 11:07:44','2025-11-30 11:07:44',NULL,'64c9f579-ab20-40f7-9af8-73f9db7a4394');
/*!40000 ALTER TABLE `volumes` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `webauthn`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `webauthn` WRITE;
/*!40000 ALTER TABLE `webauthn` DISABLE KEYS */;
/*!40000 ALTER TABLE `webauthn` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping data for table `widgets`
--

SET @OLD_AUTOCOMMIT=@@AUTOCOMMIT, @@AUTOCOMMIT=0;
LOCK TABLES `widgets` WRITE;
/*!40000 ALTER TABLE `widgets` DISABLE KEYS */;
INSERT INTO `widgets` VALUES
(1,1,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}','2025-11-29 12:15:36','2025-11-29 12:15:36','865289e6-4b8d-4a49-9975-33ffab9dafb3'),
(2,1,'craft\\widgets\\CraftSupport',2,NULL,'[]','2025-11-29 12:15:36','2025-11-29 12:15:36','798b3338-6c1c-41eb-8af6-4b994408e53a'),
(3,1,'craft\\widgets\\Updates',3,NULL,'[]','2025-11-29 12:15:36','2025-11-29 12:15:36','6dc8a8d5-c24b-4f6b-94a0-0efbcd1998ac'),
(4,1,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}','2025-11-29 12:15:36','2025-11-29 12:15:36','1ae93b94-465c-4740-b11f-33d2a0599650');
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
COMMIT;
SET AUTOCOMMIT=@OLD_AUTOCOMMIT;

--
-- Dumping routines for database 'rachel_craft'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_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-04-20 20:58:19
