/*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: hermeswp_rachel
-- ------------------------------------------------------
-- 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=969 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=2948 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`),
  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=2948 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,
  `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',
  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=45 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=50 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=72 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=328 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=51 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',
  `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=4 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=4896 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=1184 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=1271 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`),
  CONSTRAINT `fk_xpqoyxepemehnwoiynwlzzhcbubskcrdeivs` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2395 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 `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=39 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=50 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=4 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 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`)),
  `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`),
  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 'hermeswp_rachel'
--
/*!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-03-03  8:13:59
/*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: hermeswp_rachel
-- ------------------------------------------------------
-- 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',NULL,1285,645,20567,NULL,NULL,NULL,'2025-11-30 14:11:48','2025-11-30 14:11:48','2025-11-30 14:11:48'),
(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');
/*!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,NULL),
(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);
/*!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
(2,1,'title','2025-11-30 12:26:41',0,1),
(3,1,'url','2026-02-08 10:05:52',0,1),
(4,1,'url','2026-02-08 09:06:41',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-02-21 23:03:38',0,1),
(8,1,'newWindow','2025-11-30 11:53:17',0,1),
(8,1,'title','2025-11-30 11:53:51',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-02-21 23:06:22',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','2025-12-02 15:34:34',0,1),
(93,1,'postDate','2025-12-02 15:41:06',0,1),
(93,1,'slug','2025-12-02 15:41:06',0,1),
(93,1,'title','2025-12-02 15:40:59',0,1),
(93,1,'uri','2025-12-02 15:41:06',0,1),
(97,1,'postDate','2025-12-02 15:42:14',0,1),
(97,1,'slug','2025-12-02 15:42:14',0,1),
(97,1,'title','2025-12-02 15:42:10',0,1),
(97,1,'uri','2025-12-02 15:42:14',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','2025-12-02 15:42:24',0,1),
(105,1,'postDate','2025-12-02 16:15:48',0,1),
(105,1,'slug','2025-12-02 16:15:44',0,1),
(105,1,'title','2025-12-02 16:15:44',0,1),
(105,1,'uri','2025-12-02 16:15: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','2025-12-02 16:26:11',0,1),
(117,1,'slug','2025-12-02 16:47:03',0,1),
(117,1,'title','2026-02-08 10:19:31',0,1),
(117,1,'uri','2025-12-02 16:47:03',0,1),
(143,1,'primaryOwnerId','2025-12-08 10:15:37',0,1),
(143,1,'title','2025-12-07 14:39:54',0,1),
(144,1,'primaryOwnerId','2025-12-02 21:31:23',0,1),
(149,1,'primaryOwnerId','2025-12-07 09:16:48',0,1),
(235,1,'title','2025-12-02 22:25:41',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','2025-12-02 22:26:26',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','2025-12-02 22:26:30',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','2025-12-03 07:52:56',0,1),
(250,1,'slug','2025-12-03 07:52:38',0,1),
(250,1,'title','2025-12-03 07:52:38',0,1),
(250,1,'uri','2025-12-03 07:52:38',0,1),
(252,1,'postDate','2025-12-03 07:54:20',0,1),
(252,1,'slug','2025-12-03 07:54:07',0,1),
(252,1,'title','2025-12-03 07:54:07',0,1),
(252,1,'uri','2025-12-03 07:54:07',0,1),
(258,1,'primaryOwnerId','2025-12-07 09:16:48',0,1),
(259,1,'primaryOwnerId','2026-02-21 23:28:36',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-02-05 08:00:00',0,1),
(275,1,'primaryOwnerId','2025-12-03 19:05:19',0,1),
(276,1,'primaryOwnerId','2026-02-05 08:00:00',0,1),
(276,1,'title','2026-02-05 08:00:00',0,1),
(281,1,'primaryOwnerId','2025-12-07 09:14:31',0,1),
(282,1,'primaryOwnerId','2025-12-07 09:14:31',0,1),
(287,1,'primaryOwnerId','2025-12-03 18:27:27',0,1),
(298,1,'primaryOwnerId','2025-12-07 09:14:31',0,1),
(299,1,'primaryOwnerId','2025-12-07 09:14:31',0,1),
(305,1,'primaryOwnerId','2025-12-07 09:14:31',0,1),
(310,1,'primaryOwnerId','2026-02-21 23:28:36',0,1),
(318,1,'primaryOwnerId','2026-02-21 23:28:36',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','2025-12-04 17:55:59',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','2025-12-04 17:57:01',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','2025-12-04 17:57:39',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','2025-12-04 17:58:12',0,1),
(335,1,'primaryOwnerId','2026-02-21 23:28:36',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','2025-12-07 14:46:22',0,1),
(654,1,'primaryOwnerId','2025-12-07 14:46:22',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','2025-12-07 09:17:46',0,1),
(657,1,'primaryOwnerId','2025-12-07 14:46:22',0,1),
(755,1,'title','2025-12-07 13:55:48',0,1),
(761,1,'primaryOwnerId','2026-02-21 23:28:36',0,1),
(836,1,'postDate','2025-12-08 10:21:06',0,1),
(836,1,'slug','2025-12-08 10:21:06',0,1),
(836,1,'status','2025-12-08 10:21:06',0,1),
(836,1,'title','2025-12-08 10:21:05',0,1),
(838,1,'postDate','2025-12-08 10:23:30',0,1),
(838,1,'slug','2025-12-08 10:23:30',0,1),
(838,1,'status','2025-12-08 10:23:30',0,1),
(838,1,'title','2025-12-08 10:23:29',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),
(887,1,'fieldLayoutId','2026-02-08 09:21:04',0,1),
(887,1,'typeId','2026-02-08 09:21:04',0,1),
(918,1,'title','2026-02-21 15:05:37',0,1),
(926,1,'primaryOwnerId','2026-02-24 14:48:15',0,1),
(926,1,'title','2026-02-21 15:17:06',0,1),
(945,1,'primaryOwnerId','2026-02-21 15:46:44',0,1),
(984,1,'primaryOwnerId','2026-02-21 15:46:44',0,1),
(984,1,'title','2026-02-21 15:46:44',0,1),
(1002,1,'primaryOwnerId','2026-02-21 15:52:58',0,1),
(1002,1,'title','2026-02-21 15:51:33',0,1),
(1011,1,'primaryOwnerId','2026-02-21 15:51:33',0,1),
(1011,1,'title','2026-02-21 15:51:33',0,1),
(1043,1,'primaryOwnerId','2026-02-21 16:07:21',0,1),
(1043,1,'title','2026-02-21 16:01:12',0,1),
(1061,1,'title','2026-02-21 16:12:02',0,1),
(1075,1,'primaryOwnerId','2026-02-21 16:21:12',0,1),
(1075,1,'title','2026-02-21 16:21:12',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-02-21 22:43:45',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-02-21 22:59:48',0,1),
(1133,1,'postDate','2026-02-21 23:00:21',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-02-21 23:00:16',0,1),
(1157,1,'postDate','2026-02-21 23:51:06',0,1),
(1157,1,'slug','2026-02-21 23:51:06',0,1),
(1157,1,'title','2026-02-21 23:51:06',0,1),
(1157,1,'uri','2026-02-21 23:51:06',0,1),
(1161,1,'postDate','2026-02-22 00:07:00',0,1),
(1161,1,'slug','2026-02-22 00:06:50',0,1),
(1161,1,'title','2026-02-22 00:33:44',0,1),
(1161,1,'uri','2026-02-22 00:06:50',0,1),
(1216,1,'primaryOwnerId','2026-02-22 22:28:10',0,1),
(1239,1,'primaryOwnerId','2026-02-22 21:21:52',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),
(1334,1,'primaryOwnerId','2026-02-22 22:00:26',0,1),
(1367,1,'primaryOwnerId','2026-02-22 22:19:04',0,1),
(1425,1,'title','2026-02-24 14:40:04',0,1),
(1441,1,'title','2026-03-02 17:05:50',0,1),
(1442,1,'primaryOwnerId','2026-03-02 17:13:22',0,1),
(1442,1,'title','2026-03-02 17:05:50',0,1),
(1443,1,'primaryOwnerId','2026-03-02 17:36:24',0,1),
(1444,1,'primaryOwnerId','2026-03-02 17:21:22',0,1),
(1445,1,'primaryOwnerId','2026-03-02 17:34:03',0,1),
(1445,1,'title','2026-03-02 17:21:22',0,1),
(1446,1,'primaryOwnerId','2026-03-02 17:35:59',0,1),
(1446,1,'title','2026-03-02 17:21:22',0,1),
(1447,1,'primaryOwnerId','2026-03-02 17:36:24',0,1),
(1447,1,'title','2026-03-02 17:21:22',0,1),
(1452,1,'primaryOwnerId','2026-03-02 17:38:50',0,1),
(1452,1,'title','2026-03-02 17:38:23',0,1),
(1457,1,'primaryOwnerId','2026-03-02 19:47:34',0,1),
(1457,1,'title','2026-03-02 18:44:27',0,1),
(1458,1,'primaryOwnerId','2026-03-02 18:44:27',0,1),
(1458,1,'title','2026-03-02 18:44:27',0,1),
(1459,1,'primaryOwnerId','2026-03-02 19:49:44',0,1),
(1459,1,'title','2026-03-02 19:44:37',0,1),
(1460,1,'primaryOwnerId','2026-03-02 19:50:16',0,1),
(1461,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1461,1,'title','2026-03-02 19:07:29',0,1),
(1462,1,'primaryOwnerId','2026-03-02 19:21:42',0,1),
(1462,1,'title','2026-03-02 19:07:29',0,1),
(1463,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1463,1,'title','2026-03-02 19:26:19',0,1),
(1464,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1464,1,'title','2026-03-02 19:26:19',0,1),
(1465,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1465,1,'title','2026-03-02 19:26:19',0,1),
(1466,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1466,1,'title','2026-03-02 19:26:19',0,1),
(1467,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1467,1,'title','2026-03-02 19:26:19',0,1),
(1468,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1468,1,'title','2026-03-02 19:26:19',0,1),
(1469,1,'primaryOwnerId','2026-03-02 19:26:19',0,1),
(1469,1,'title','2026-03-02 19:26:19',0,1),
(1486,1,'primaryOwnerId','2026-03-02 20:06:41',0,1),
(1488,1,'primaryOwnerId','2026-03-02 20:06:41',0,1),
(1489,1,'primaryOwnerId','2026-03-02 20:06:41',0,1),
(1490,1,'primaryOwnerId','2026-03-02 20:06:41',0,1),
(1509,1,'primaryOwnerId','2026-03-02 20:06:41',0,1),
(1519,1,'primaryOwnerId','2026-03-02 20:06:25',0,1),
(1534,1,'primaryOwnerId','2026-03-02 20:06:25',0,1),
(1549,1,'primaryOwnerId','2026-03-02 20:06:25',0,1),
(1554,1,'primaryOwnerId','2026-03-02 20:06:41',0,1),
(1571,1,'primaryOwnerId','2026-03-02 17:47:21',0,1),
(1572,1,'primaryOwnerId','2026-03-02 17:47:21',0,1),
(1572,1,'title','2026-03-02 17:42:37',0,1),
(1573,1,'primaryOwnerId','2026-03-02 17:42:37',0,1),
(1573,1,'title','2026-03-02 17:42:37',0,1),
(1574,1,'primaryOwnerId','2026-03-02 17:42:37',0,1),
(1574,1,'title','2026-03-02 17:42:37',0,1),
(1575,1,'primaryOwnerId','2026-03-02 17:42:37',0,1),
(1575,1,'title','2026-03-02 17:42:37',0,1),
(1787,1,'primaryOwnerId','2026-03-02 20:06:40',0,1),
(1802,1,'slug','2026-03-02 21:12:34',0,1),
(1802,1,'title','2026-03-02 21:11:55',0,1),
(1802,1,'uri','2026-03-02 21:12:34',0,1),
(1803,1,'primaryOwnerId','2026-03-02 21:12:52',0,1),
(1803,1,'title','2026-03-02 21:11:55',0,1),
(1804,1,'primaryOwnerId','2026-03-02 21:11:55',0,1),
(1805,1,'primaryOwnerId','2026-03-02 21:11:55',0,1),
(1806,1,'primaryOwnerId','2026-03-02 21:11:55',0,1),
(1807,1,'primaryOwnerId','2026-03-02 21:11:55',0,1),
(1808,1,'primaryOwnerId','2026-03-02 21:11:55',0,1),
(1809,1,'primaryOwnerId','2026-03-02 21:16:57',0,1),
(1809,1,'title','2026-03-02 21:16:57',0,1),
(1810,1,'primaryOwnerId','2026-03-02 21:16:57',0,1),
(1810,1,'title','2026-03-02 21:16:57',0,1),
(1811,1,'primaryOwnerId','2026-03-02 21:16:57',0,1),
(1811,1,'title','2026-03-02 21:16:57',0,1),
(1812,1,'primaryOwnerId','2026-03-02 21:16:57',0,1),
(1812,1,'title','2026-03-02 21:16:57',0,1),
(1813,1,'primaryOwnerId','2026-03-02 21:16:57',0,1),
(1813,1,'title','2026-03-02 21:16:57',0,1),
(1814,1,'primaryOwnerId','2026-03-02 21:30:03',0,1),
(1814,1,'title','2026-03-02 21:29:26',0,1),
(1815,1,'primaryOwnerId','2026-03-02 21:44:06',0,1),
(1815,1,'title','2026-03-02 21:29:26',0,1),
(1817,1,'primaryOwnerId','2026-03-02 21:29:26',0,1),
(1827,1,'primaryOwnerId','2026-03-02 21:11:55',0,1),
(1951,1,'slug','2026-03-02 21:54:33',0,1),
(1951,1,'title','2026-03-02 21:54:33',0,1),
(1952,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1952,1,'title','2026-03-02 21:54:33',0,1),
(1953,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1954,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1955,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1956,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1957,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1958,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1958,1,'title','2026-03-02 21:54:33',0,1),
(1959,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1960,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1960,1,'title','2026-03-02 21:54:33',0,1),
(1961,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1961,1,'title','2026-03-02 21:54:33',0,1),
(1962,1,'primaryOwnerId','2026-03-02 21:54:33',0,1),
(1962,1,'title','2026-03-02 21:54:33',0,1),
(1964,1,'primaryOwnerId','2026-03-02 22:03:47',0,1),
(1964,1,'title','2026-03-02 22:03:47',0,1),
(1966,1,'primaryOwnerId','2026-03-02 22:03:47',0,1),
(2020,1,'primaryOwnerId','2026-03-02 22:05:29',0,1),
(2081,1,'slug','2026-03-02 22:08:30',0,1),
(2081,1,'title','2026-03-02 22:25:33',0,1),
(2081,1,'uri','2026-03-02 22:08:30',0,1),
(2082,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2082,1,'title','2026-03-02 22:25:33',0,1),
(2083,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2084,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2085,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2086,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2087,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2088,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2088,1,'title','2026-03-02 22:25:33',0,1),
(2089,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2089,1,'title','2026-03-02 22:25:33',0,1),
(2090,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2090,1,'title','2026-03-02 22:25:33',0,1),
(2091,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2091,1,'title','2026-03-02 22:25:33',0,1),
(2092,1,'primaryOwnerId','2026-03-02 22:25:33',0,1),
(2092,1,'title','2026-03-02 22:25:33',0,1),
(2093,1,'primaryOwnerId','2026-03-02 22:42:57',0,1),
(2162,1,'slug','2026-03-02 22:42:38',0,1),
(2162,1,'title','2026-03-02 22:42:38',0,1),
(2163,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2163,1,'title','2026-03-02 22:42:38',0,1),
(2164,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2165,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2166,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2167,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2168,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2169,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2169,1,'title','2026-03-02 22:42:38',0,1),
(2170,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2170,1,'title','2026-03-02 22:42:38',0,1),
(2171,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2171,1,'title','2026-03-02 22:42:38',0,1),
(2172,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2172,1,'title','2026-03-02 22:42:38',0,1),
(2173,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2173,1,'title','2026-03-02 22:42:38',0,1),
(2174,1,'primaryOwnerId','2026-03-02 22:44:08',0,1),
(2174,1,'title','2026-03-02 22:42:38',0,1),
(2175,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2175,1,'title','2026-03-02 22:42:38',0,1),
(2177,1,'primaryOwnerId','2026-03-02 22:42:38',0,1),
(2286,1,'slug','2026-03-02 23:14:36',0,1),
(2286,1,'title','2026-03-02 23:14:59',0,1),
(2287,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2287,1,'title','2026-03-02 23:14:36',0,1),
(2288,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2289,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2290,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2291,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2292,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2293,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2293,1,'title','2026-03-02 23:14:36',0,1),
(2294,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2294,1,'title','2026-03-02 23:14:36',0,1),
(2295,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2295,1,'title','2026-03-02 23:14:36',0,1),
(2296,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2296,1,'title','2026-03-02 23:14:36',0,1),
(2297,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2297,1,'title','2026-03-02 23:14:36',0,1),
(2298,1,'primaryOwnerId','2026-03-02 23:15:24',0,1),
(2298,1,'title','2026-03-02 23:14:36',0,1),
(2299,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2299,1,'title','2026-03-02 23:14:36',0,1),
(2301,1,'primaryOwnerId','2026-03-02 23:14:36',0,1),
(2409,1,'slug','2026-03-02 23:27:02',0,1),
(2409,1,'title','2026-03-02 23:27:02',0,1),
(2410,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2410,1,'title','2026-03-02 23:27:02',0,1),
(2411,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2412,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2413,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2414,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2415,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2416,1,'primaryOwnerId','2026-03-02 23:27:02',0,1),
(2416,1,'title','2026-03-02 23:27:02',0,1),
(2417,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2417,1,'title','2026-03-02 23:27:03',0,1),
(2418,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2418,1,'title','2026-03-02 23:27:03',0,1),
(2419,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2419,1,'title','2026-03-02 23:27:03',0,1),
(2420,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2420,1,'title','2026-03-02 23:27:03',0,1),
(2421,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2421,1,'title','2026-03-02 23:27:03',0,1),
(2422,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2422,1,'title','2026-03-02 23:27:03',0,1),
(2424,1,'primaryOwnerId','2026-03-02 23:27:03',0,1),
(2523,1,'slug','2026-03-02 23:57:48',0,1),
(2523,1,'title','2026-03-02 23:57:48',0,1),
(2524,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2524,1,'title','2026-03-02 23:57:48',0,1),
(2525,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2526,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2527,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2528,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2529,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2530,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2530,1,'title','2026-03-02 23:57:48',0,1),
(2531,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2531,1,'title','2026-03-02 23:57:48',0,1),
(2532,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2532,1,'title','2026-03-02 23:57:48',0,1),
(2533,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2533,1,'title','2026-03-02 23:57:48',0,1),
(2534,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2534,1,'title','2026-03-02 23:57:48',0,1),
(2535,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2535,1,'title','2026-03-02 23:57:48',0,1),
(2536,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2536,1,'title','2026-03-02 23:57:48',0,1),
(2538,1,'primaryOwnerId','2026-03-02 23:57:48',0,1),
(2643,1,'slug','2026-03-03 00:20:08',0,1),
(2643,1,'title','2026-03-03 00:20:08',0,1),
(2644,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2644,1,'title','2026-03-03 00:14:33',0,1),
(2645,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2646,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2647,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2648,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2649,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2650,1,'primaryOwnerId','2026-03-03 00:15:48',0,1),
(2650,1,'title','2026-03-03 00:14:33',0,1),
(2651,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2651,1,'title','2026-03-03 00:14:33',0,1),
(2652,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2652,1,'title','2026-03-03 00:14:33',0,1),
(2653,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2653,1,'title','2026-03-03 00:14:33',0,1),
(2654,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2654,1,'title','2026-03-03 00:14:33',0,1),
(2655,1,'primaryOwnerId','2026-03-03 00:14:33',0,1),
(2655,1,'title','2026-03-03 00:14:33',0,1),
(2656,1,'primaryOwnerId','2026-03-03 00:21:05',0,1),
(2656,1,'title','2026-03-03 00:20:07',0,1),
(2658,1,'primaryOwnerId','2026-03-03 00:25:49',0,1),
(2659,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2659,1,'title','2026-03-03 00:25:48',0,1),
(2660,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2660,1,'title','2026-03-03 00:25:48',0,1),
(2661,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2661,1,'title','2026-03-03 00:25:48',0,1),
(2662,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2662,1,'title','2026-03-03 00:25:48',0,1),
(2663,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2663,1,'title','2026-03-03 00:25:48',0,1),
(2665,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2665,1,'title','2026-03-03 00:25:48',0,1),
(2666,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2666,1,'title','2026-03-03 00:25:48',0,1),
(2667,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2667,1,'title','2026-03-03 00:25:48',0,1),
(2668,1,'primaryOwnerId','2026-03-03 00:25:48',0,1),
(2668,1,'title','2026-03-03 00:25:48',0,1),
(2778,1,'slug','2026-03-03 00:28:32',0,1),
(2778,1,'title','2026-03-03 00:28:32',0,1),
(2778,1,'uri','2026-03-03 00:28:32',0,1),
(2779,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2779,1,'title','2026-03-03 07:55:09',0,1),
(2780,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2781,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2782,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2783,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2784,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2785,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2785,1,'title','2026-03-03 07:55:09',0,1),
(2786,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2786,1,'title','2026-03-03 07:55:09',0,1),
(2787,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2787,1,'title','2026-03-03 07:55:09',0,1),
(2788,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2788,1,'title','2026-03-03 07:55:09',0,1),
(2789,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2789,1,'title','2026-03-03 07:55:09',0,1),
(2790,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2790,1,'title','2026-03-03 07:55:09',0,1),
(2791,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2791,1,'title','2026-03-03 07:55:09',0,1),
(2793,1,'primaryOwnerId','2026-03-03 07:55:09',0,1),
(2908,1,'title','2026-03-03 07:58:48',0,1),
(2909,1,'title','2026-03-03 07:58:37',0,1),
(2918,1,'slug','2026-03-03 08:13:29',0,1),
(2918,1,'title','2026-03-03 08:13:29',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-02-21 23:28:36',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','2025-12-02 15:40:07',0,1),
(89,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2025-12-02 15:40:17',0,1),
(89,1,12,'bcabfcb9-19e8-44e6-8f09-e37ebd2791d1','2025-12-02 17:03:57',0,1),
(93,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-12-02 15:41:01',0,1),
(93,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-02 15:41:04',0,1),
(97,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-12-02 15:42:10',0,1),
(97,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-02 15:42:13',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','2025-12-02 15:42:28',0,1),
(99,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2025-12-02 15:42:32',0,1),
(99,1,12,'bcabfcb9-19e8-44e6-8f09-e37ebd2791d1','2025-12-02 17:46:07',0,1),
(105,1,7,'94e2f239-5ede-4bbd-8ca2-92c5147918d8','2025-12-02 21:09:19',0,1),
(105,1,13,'e29b7cc1-1c1e-414d-93ca-11ce7716b219','2025-12-02 16:48:06',0,1),
(105,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2025-12-02 21:01:57',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','2025-12-15 09:01:44',0,1),
(112,1,11,'d5803862-14af-411a-83a8-0734f3d68687','2025-12-02 16:48:40',0,1),
(112,1,12,'bcabfcb9-19e8-44e6-8f09-e37ebd2791d1','2025-12-02 16:48:40',0,1),
(117,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-02-24 14:48:15',0,1),
(117,1,13,'e29b7cc1-1c1e-414d-93ca-11ce7716b219','2025-12-02 17:18:14',0,1),
(117,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2025-12-02 21:02:05',0,1),
(143,1,2,'cec5ecd1-20c2-44f9-b9ce-018d169101d7','2025-12-08 10:05:39',0,1),
(143,1,3,'12def3da-8ca1-48fa-891d-c3798b3b46e9','2025-12-02 19:02:37',0,1),
(143,1,3,'5dfd8cfe-1390-4f09-9378-3016c101b1dc','2025-12-02 17:36:07',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','2025-12-02 17:36:07',0,1),
(143,1,6,'d1187881-9f88-406c-a476-52d43ed1ca77','2025-12-02 21:31:23',0,1),
(143,1,8,'238ce99e-fad8-4e55-b39c-58e5e5704123','2025-12-08 10:15:37',0,1),
(144,1,1,'306c8a8b-7513-4a3f-82c5-7797d86388ed','2025-12-02 21:31:23',0,1),
(190,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2025-12-02 20:01:57',0,1),
(190,1,3,'f6773126-ca9b-4379-9aa4-35fdc0de9bbd','2025-12-02 20:01:57',0,1),
(190,1,4,'d5be8f8e-04d2-4f39-bd44-54d27923b9d5','2025-12-02 20:01:57',0,1),
(190,1,13,'49644737-b16a-4ec0-9507-72c7d47013c5','2025-12-02 19:52:52',0,1),
(204,1,14,'16daf059-c7fd-4b72-a424-158e791ae13c','2025-12-02 21:08:01',0,1),
(204,1,15,'e2ce4804-fbe9-43d5-8161-304ca9bcd25d','2025-12-02 21:08:36',0,1),
(204,1,16,'d401ee3a-400c-47c1-b52e-7ca24db6b7f3','2025-12-02 21:08:16',0,1),
(244,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-12-02 22:26:26',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','2025-12-02 22:26:30',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','2025-12-02 22:10:43',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','2025-12-02 22:11:01',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','2025-12-03 07:52:41',0,1),
(250,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2025-12-03 07:52:56',0,1),
(252,1,17,'83e6b444-62be-401e-aadc-b5db0004e217','2025-12-03 07:54:10',0,1),
(252,1,20,'966e4d54-8540-4d35-be11-59c9ca1f49b0','2025-12-03 07:54:18',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,6,'11bf274a-ace0-4e3c-b321-ae01246cd640','2025-12-03 19:14:29',0,1),
(274,1,22,'ceffcd5c-99fd-407b-ad8e-814ebcf245fa','2026-02-05 08:00:00',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),
(276,1,3,'e7689c08-7dfa-49a7-bd36-805fe89ac1e3','2026-02-05 08:00:00',0,1),
(276,1,4,'a3a4499b-38c4-49c1-93eb-05cf9d0e9152','2026-02-05 08:00:00',0,1),
(287,1,5,'209bfbdc-be9c-4933-96f5-5c10d80de891','2025-12-03 18:27:27',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','2025-12-04 17:56:03',0,1),
(319,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2025-12-04 17:56:10',0,1),
(319,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2025-12-04 17:56:15',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','2025-12-04 17:57:05',0,1),
(322,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2025-12-04 17:57:11',0,1),
(322,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2025-12-04 17:57:12',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','2025-12-04 17:57:43',0,1),
(324,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2025-12-04 17:57:45',0,1),
(324,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2025-12-04 17:57:50',0,1),
(326,1,2,'90b06f70-ec9f-49d9-b838-cef50698ec38','2025-12-04 17:58:28',0,1),
(326,1,3,'16de76fd-a825-41df-9b9d-8fe41ce48ada','2025-12-04 17:58:14',0,1),
(326,1,3,'fc67ba9e-5144-49e5-9c18-5fea452bce42','2025-12-04 17:58:19',0,1),
(326,1,4,'67df7d0c-ae22-4046-8a69-b0f66abff507','2025-12-04 17:58:25',0,1),
(330,1,5,'5dbdee7d-8d17-44c9-8581-679879c315ca','2025-12-04 18:16:24',0,1),
(330,1,15,'4977ef85-8f70-4b78-8499-ac4fe3031f69','2025-12-04 18:16:24',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,51,'7b267ef7-86ed-4004-9260-e710ae7fb28e','2025-12-07 14:46:22',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),
(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','2025-12-07 14:46:22',0,1),
(655,1,44,'8b2111a4-335b-497f-94da-aaed1b3e0328','2025-12-07 09:17:46',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','2025-12-07 09:19:05',0,1),
(657,1,33,'1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2','2025-12-07 09:23:04',0,1),
(755,1,61,'9a33b5b2-2b33-4dff-9ed2-dfce2474973e','2025-12-07 13:55:46',0,1),
(761,1,6,'b5c7b570-446c-4de6-a9bb-cd9581c73e24','2025-12-07 14:46:22',0,1),
(761,1,55,'cedb678d-86a4-4d73-865d-e821937bc248','2026-02-21 23:28:36',0,1),
(834,1,12,'12ab5942-8eb1-4e8d-af73-0d67149caea5','2025-12-08 10:19:16',0,1),
(834,1,12,'24a9c864-a05b-496f-92d0-6072f45d84fe','2025-12-08 10:19:42',0,1),
(834,1,17,'420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d','2025-12-08 10:18:33',0,1),
(834,1,24,'c6ba37df-5856-4b99-abff-ee5ac2023dee','2025-12-08 10:17:28',0,1),
(834,1,30,'08c9532b-900d-4f33-8644-fbd2b4a0448e','2025-12-08 10:19:13',0,1),
(834,1,55,'3a7f3567-350e-41a1-9bb8-129cd9a6c519','2025-12-08 10:20:02',0,1),
(834,1,55,'d41d3f08-74c0-46b1-804a-884be4a6fffa','2025-12-08 10:20:02',0,1),
(835,1,50,'efc59f9e-ed22-476e-a4bb-ce8ebd251340','2025-12-08 10:20:59',0,1),
(836,1,1,'306c8a8b-7513-4a3f-82c5-7797d86388ed','2025-12-08 10:21:05',0,1),
(836,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-12-08 10:21:05',0,1),
(836,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-08 10:21:05',0,1),
(837,1,32,'2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9','2025-12-08 10:23:38',0,1),
(838,1,1,'306c8a8b-7513-4a3f-82c5-7797d86388ed','2025-12-08 10:23:29',0,1),
(838,1,3,'28396760-6b42-4e26-91fe-691bb1d0f638','2025-12-08 10:23:29',0,1),
(838,1,5,'34edbdad-80cc-455a-8024-e4ad5cc55f12','2025-12-08 10:23:29',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),
(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-02-08 09:29:50',0,1),
(887,1,46,'52f962b8-3d4a-4f5e-8e56-eb9108a237b7','2026-02-08 09:14:32',0,1),
(912,1,7,'162f8255-7c25-4ad1-8848-780feda02831','2026-02-22 22:19:04',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),
(926,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-02-22 00:34:17',0,1),
(926,1,3,'417ec013-10ea-4c74-9ebb-451de4da5f3f','2026-02-21 15:15:35',0,1),
(926,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-02-21 15:17:06',0,1),
(926,1,69,'b88966fc-0b88-461c-956d-3ecfdf5fe6f0','2026-02-24 14:48:15',0,1),
(945,1,3,'27981bad-5628-40c6-8263-ab2118bca482','2026-02-21 15:39:55',0,1),
(945,1,3,'a2a192d6-b8b6-40f0-9ac2-e971e485a9e8','2026-02-21 15:39:55',0,1),
(945,1,64,'707b0270-058e-4815-8353-a09c723e049b','2026-02-21 15:46:44',0,1),
(945,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-02-21 15:33:15',0,1),
(984,1,3,'13f581e3-1751-464d-9b4b-65a1a57a2c2e','2026-02-21 15:46:44',0,1),
(1002,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-02-21 15:52:04',0,1),
(1002,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-02-21 15:52:04',0,1),
(1002,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-02-21 15:51:33',0,1),
(1011,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-02-21 15:51:33',0,1),
(1011,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-02-21 15:51:33',0,1),
(1043,1,3,'b813f809-47c0-4f2e-9d84-af3f38d219d8','2026-02-21 16:01:12',0,1),
(1043,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-02-21 16:01:12',0,1),
(1043,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-02-21 16:07:21',0,1),
(1075,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-02-21 16:21:12',0,1),
(1075,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-02-21 16:21:12',0,1),
(1098,1,3,'25b468f4-fac1-403c-a17f-13e13e0e9b60','2026-02-21 22:43:50',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-02-21 22:44:04',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-02-21 22:57:34',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-02-21 22:59:55',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-02-21 23:00:15',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-02-21 23:00:19',0,1),
(1133,1,3,'e86dfba6-6dfe-41e3-a5ab-0057691cb97d','2026-02-21 23:00:21',0,1),
(1161,1,7,'00bc2085-e013-4955-9a8c-9713f15eac95','2026-02-22 22:28:10',0,1),
(1161,1,17,'532dac3c-d10a-4183-93e4-92dc9b29362b','2026-02-22 00:06:42',0,1),
(1216,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-02-22 18:53:48',0,1),
(1216,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-02-22 20:58:05',0,1),
(1216,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-02-22 20:59:10',0,1),
(1216,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-02-22 00:29:01',0,1),
(1216,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-02-22 20:58:05',0,1),
(1216,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-02-22 00:28:19',0,1),
(1216,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-02-22 20:59:10',0,1),
(1216,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-02-22 20:58:05',0,1),
(1216,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-02-22 00:22:36',0,1),
(1216,1,3,'bae8aad6-de36-441f-bb76-34f1e3a478b2','2026-02-22 20:59:10',0,1),
(1216,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-02-22 18:53:48',0,1),
(1216,1,4,'189b4eff-c4aa-4bd6-885c-24922e54375f','2026-02-22 20:58:05',0,1),
(1216,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-02-22 00:29:01',0,1),
(1216,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-02-22 20:59:10',0,1),
(1216,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-02-22 00:28:19',0,1),
(1216,1,4,'aa302180-85b3-4ce4-a24d-7851a05f80b3','2026-02-22 18:53:48',0,1),
(1216,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-02-22 00:29:01',0,1),
(1216,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-02-22 18:53:48',0,1),
(1216,1,15,'780ba720-3833-46e6-89d7-7d24cc606852','2026-02-22 20:58:05',0,1),
(1216,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-02-22 21:16:12',0,1),
(1216,1,70,'fb812f21-7614-47e0-b55a-8ed5607b5f4b','2026-02-22 22:28:10',0,1),
(1286,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-02-22 00:42:12',0,1),
(1286,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-02-22 00:42:17',0,1),
(1334,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-02-22 22:00:26',0,1),
(1334,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-02-22 22:00:26',0,1),
(1334,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-02-22 22:00:26',0,1),
(1334,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-02-22 22:00:26',0,1),
(1334,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-02-22 22:00:26',0,1),
(1334,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-02-22 22:00:26',0,1),
(1334,1,3,'bae8aad6-de36-441f-bb76-34f1e3a478b2','2026-02-22 22:00:26',0,1),
(1334,1,4,'189b4eff-c4aa-4bd6-885c-24922e54375f','2026-02-22 22:00:26',0,1),
(1334,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-02-22 22:00:26',0,1),
(1334,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-02-22 22:00:26',0,1),
(1334,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-02-22 22:00:26',0,1),
(1334,1,15,'780ba720-3833-46e6-89d7-7d24cc606852','2026-02-22 22:00:26',0,1),
(1334,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-02-22 22:00:26',0,1),
(1367,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-02-22 22:19:04',0,1),
(1422,1,28,'0f4b4599-37ec-4e32-951d-314472221e14','2026-02-24 14:17:15',0,1),
(1423,1,14,'16daf059-c7fd-4b72-a424-158e791ae13c','2026-02-24 14:31:45',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),
(1428,1,6,'d1187881-9f88-406c-a476-52d43ed1ca77','2026-02-24 14:43:36',0,1),
(1441,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 20:06:40',0,1),
(1441,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-02 17:11:13',0,1),
(1442,1,3,'06ee9e91-0695-45d2-b6e6-9c976f1c2bd3','2026-03-02 17:13:22',0,1),
(1442,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-03-02 17:05:50',0,1),
(1442,1,3,'417ec013-10ea-4c74-9ebb-451de4da5f3f','2026-03-02 17:13:22',0,1),
(1442,1,3,'5db102a4-8437-416e-be95-5eab08c6ded8','2026-03-02 17:13:22',0,1),
(1442,1,3,'5db50043-52e9-4e56-ba19-ac40464d29e4','2026-03-02 17:13:22',0,1),
(1442,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 17:05:50',0,1),
(1442,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 17:05:50',0,1),
(1443,1,3,'27981bad-5628-40c6-8263-ab2118bca482','2026-03-02 17:21:22',0,1),
(1443,1,3,'a2a192d6-b8b6-40f0-9ac2-e971e485a9e8','2026-03-02 17:21:22',0,1),
(1443,1,64,'707b0270-058e-4815-8353-a09c723e049b','2026-03-02 17:21:22',0,1),
(1443,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 17:36:24',0,1),
(1444,1,3,'0f7cd089-87a8-4797-9e78-54d87e5faefd','2026-03-02 17:21:22',0,1),
(1444,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 17:21:22',0,1),
(1445,1,3,'0f7cd089-87a8-4797-9e78-54d87e5faefd','2026-03-02 17:21:22',0,1),
(1445,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 17:21:22',0,1),
(1445,1,3,'4c4b22bb-5fe8-416c-8823-615a5318a82f','2026-03-02 17:34:03',0,1),
(1445,1,3,'7b421ddd-f8ff-42a3-8082-c778636c4b86','2026-03-02 17:21:22',0,1),
(1446,1,3,'0f7cd089-87a8-4797-9e78-54d87e5faefd','2026-03-02 17:21:22',0,1),
(1446,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 17:21:22',0,1),
(1446,1,3,'4c4b22bb-5fe8-416c-8823-615a5318a82f','2026-03-02 17:35:59',0,1),
(1446,1,3,'7b421ddd-f8ff-42a3-8082-c778636c4b86','2026-03-02 17:21:22',0,1),
(1447,1,3,'0f7cd089-87a8-4797-9e78-54d87e5faefd','2026-03-02 17:21:54',0,1),
(1447,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 17:21:54',0,1),
(1447,1,3,'4c4b22bb-5fe8-416c-8823-615a5318a82f','2026-03-02 17:36:24',0,1),
(1447,1,3,'7b421ddd-f8ff-42a3-8082-c778636c4b86','2026-03-02 17:21:22',0,1),
(1452,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 17:38:23',0,1),
(1452,1,3,'f8e6258b-90c5-4137-bace-60c62639da4a','2026-03-02 17:38:50',0,1),
(1452,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 17:38:50',0,1),
(1457,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-02 18:15:17',0,1),
(1457,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 18:31:09',0,1),
(1457,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-03-02 19:47:09',0,1),
(1457,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 18:37:35',0,1),
(1457,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 18:31:09',0,1),
(1457,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 18:44:27',0,1),
(1457,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 19:47:09',0,1),
(1457,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 18:27:42',0,1),
(1457,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-02 18:44:27',0,1),
(1457,1,3,'bae8aad6-de36-441f-bb76-34f1e3a478b2','2026-03-02 19:47:09',0,1),
(1457,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 18:25:32',0,1),
(1457,1,4,'189b4eff-c4aa-4bd6-885c-24922e54375f','2026-03-02 18:31:09',0,1),
(1457,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-03-02 18:22:44',0,1),
(1457,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 19:47:34',0,1),
(1457,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-02 17:48:48',0,1),
(1457,1,4,'aa302180-85b3-4ce4-a24d-7851a05f80b3','2026-03-02 18:15:17',0,1),
(1457,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 18:37:35',0,1),
(1457,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-02 18:22:44',0,1),
(1457,1,15,'780ba720-3833-46e6-89d7-7d24cc606852','2026-03-02 18:27:42',0,1),
(1457,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-02 18:22:44',0,1),
(1457,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-03-02 17:56:13',0,1),
(1457,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 18:36:15',0,1),
(1458,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-02 18:40:58',0,1),
(1458,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 18:39:40',0,1),
(1458,1,3,'3ca08555-77e8-454e-8700-705a90cc539c','2026-03-02 18:43:11',0,1),
(1458,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 18:43:11',0,1),
(1458,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 18:39:40',0,1),
(1458,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 18:44:27',0,1),
(1458,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 18:43:11',0,1),
(1458,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 18:39:40',0,1),
(1458,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-02 18:41:15',0,1),
(1458,1,3,'bae8aad6-de36-441f-bb76-34f1e3a478b2','2026-03-02 18:43:11',0,1),
(1458,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 18:40:58',0,1),
(1458,1,4,'26816f50-cf23-4107-b380-4cc8fc57871b','2026-03-02 18:39:40',0,1),
(1458,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 18:40:58',0,1),
(1458,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-02 18:40:58',0,1),
(1458,1,4,'aa302180-85b3-4ce4-a24d-7851a05f80b3','2026-03-02 18:39:40',0,1),
(1458,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 18:43:11',0,1),
(1458,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-02 18:43:10',0,1),
(1458,1,15,'780ba720-3833-46e6-89d7-7d24cc606852','2026-03-02 18:39:40',0,1),
(1458,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-02 18:39:40',0,1),
(1458,1,69,'9551510c-7e7c-4050-86b6-7d7743d053b7','2026-03-02 18:22:44',0,1),
(1459,1,2,'118194fa-ddcc-47a9-a830-ee1ba1c92a86','2026-03-02 19:44:37',0,1),
(1459,1,3,'b813f809-47c0-4f2e-9d84-af3f38d219d8','2026-03-02 19:49:26',0,1),
(1459,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 19:44:37',0,1),
(1459,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 19:49:44',0,1),
(1460,1,3,'b711d73c-2e12-484e-aa49-7fbd53b17a66','2026-03-02 19:50:16',0,1),
(1460,1,3,'f6773126-ca9b-4379-9aa4-35fdc0de9bbd','2026-03-02 19:50:16',0,1),
(1461,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-02 19:07:29',0,1),
(1461,1,3,'96d1abae-7af3-4774-9e8c-ee2ca0c789ec','2026-03-02 19:07:29',0,1),
(1461,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 19:26:19',0,1),
(1462,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:07:29',0,1),
(1462,1,4,'d460f3f1-fc2f-49ef-8ca8-93fbd178a05a','2026-03-02 19:07:29',0,1),
(1462,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:21:42',0,1),
(1463,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1463,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1464,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1464,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1465,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1465,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1466,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1466,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1467,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1467,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1468,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1468,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1469,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-02 19:26:19',0,1),
(1469,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-02 19:26:19',0,1),
(1571,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 17:40:46',0,1),
(1571,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 17:47:21',0,1),
(1572,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 17:42:37',0,1),
(1572,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 17:47:21',0,1),
(1573,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 17:42:37',0,1),
(1573,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 17:42:37',0,1),
(1574,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 17:42:37',0,1),
(1574,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 17:42:37',0,1),
(1575,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 17:42:37',0,1),
(1575,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 17:42:37',0,1),
(1787,1,69,'37c1e4a7-843a-47db-a135-c26b80d0a6f7','2026-03-02 20:06:40',0,1),
(1802,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 21:44:06',0,1),
(1802,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-02 21:42:37',0,1),
(1803,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 21:11:55',0,1),
(1803,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 21:12:53',0,1),
(1804,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 21:11:55',0,1),
(1805,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:11:55',0,1),
(1806,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:11:55',0,1),
(1808,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:11:55',0,1),
(1809,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 21:16:57',0,1),
(1809,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 21:16:57',0,1),
(1809,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 21:16:57',0,1),
(1810,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:16:57',0,1),
(1810,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:16:57',0,1),
(1811,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:16:57',0,1),
(1811,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:16:57',0,1),
(1812,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:16:57',0,1),
(1812,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:16:57',0,1),
(1813,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:16:57',0,1),
(1813,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:16:57',0,1),
(1814,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 21:29:26',0,1),
(1814,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 21:29:26',0,1),
(1814,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 21:29:26',0,1),
(1814,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 21:29:26',0,1),
(1814,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 21:29:26',0,1),
(1814,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 21:29:26',0,1),
(1814,1,3,'a8216afd-a278-431d-9241-249a8482c463','2026-03-02 21:29:26',0,1),
(1814,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 21:29:26',0,1),
(1814,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 21:29:26',0,1),
(1814,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-02 21:30:03',0,1),
(1814,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 21:29:26',0,1),
(1814,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 21:29:26',0,1),
(1815,1,2,'118194fa-ddcc-47a9-a830-ee1ba1c92a86','2026-03-02 21:44:06',0,1),
(1815,1,3,'b813f809-47c0-4f2e-9d84-af3f38d219d8','2026-03-02 21:29:26',0,1),
(1815,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 21:29:26',0,1),
(1815,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 21:31:39',0,1),
(1817,1,3,'13b81fd6-015d-4533-92c8-003014ed992f','2026-03-02 21:29:26',0,1),
(1817,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 21:29:26',0,1),
(1827,1,3,'6340ecc1-eebe-4e50-a4a5-4fe538c00786','2026-03-02 21:11:55',0,1),
(1827,1,3,'da0f7ef2-9f36-432c-b279-50a04db13c9f','2026-03-02 21:11:55',0,1),
(1951,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 22:05:29',0,1),
(1951,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-02 21:54:33',0,1),
(1952,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 21:54:33',0,1),
(1952,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 21:54:33',0,1),
(1953,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 21:54:33',0,1),
(1954,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:54:33',0,1),
(1955,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:54:33',0,1),
(1956,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:54:33',0,1),
(1957,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 21:54:33',0,1),
(1958,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 21:54:33',0,1),
(1958,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 21:54:33',0,1),
(1958,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 21:54:33',0,1),
(1959,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:54:33',0,1),
(1959,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:54:33',0,1),
(1960,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:54:33',0,1),
(1960,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:54:33',0,1),
(1961,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:54:33',0,1),
(1961,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:54:33',0,1),
(1962,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 21:54:33',0,1),
(1962,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 21:54:33',0,1),
(1964,1,3,'b813f809-47c0-4f2e-9d84-af3f38d219d8','2026-03-02 22:03:47',0,1),
(1964,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 22:03:47',0,1),
(1964,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 22:03:47',0,1),
(1966,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 22:03:47',0,1),
(2020,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 22:05:29',0,1),
(2020,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 22:05:29',0,1),
(2020,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 22:05:29',0,1),
(2020,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-02 22:03:47',0,1),
(2020,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-02 22:03:47',0,1),
(2020,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 22:05:29',0,1),
(2081,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 22:42:58',0,1),
(2082,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-03-02 22:25:33',0,1),
(2082,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 22:25:33',0,1),
(2082,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 22:25:33',0,1),
(2083,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 22:25:33',0,1),
(2084,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:25:33',0,1),
(2085,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:25:33',0,1),
(2086,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:25:33',0,1),
(2087,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:25:33',0,1),
(2088,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 22:25:33',0,1),
(2088,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 22:25:33',0,1),
(2088,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 22:25:33',0,1),
(2089,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:25:33',0,1),
(2089,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:25:33',0,1),
(2090,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:25:33',0,1),
(2090,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:25:33',0,1),
(2091,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:25:33',0,1),
(2091,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:25:33',0,1),
(2092,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:25:33',0,1),
(2092,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:25:33',0,1),
(2093,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 22:42:57',0,1),
(2162,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 22:44:08',0,1),
(2163,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 22:42:38',0,1),
(2163,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 22:42:38',0,1),
(2164,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 22:42:38',0,1),
(2165,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:42:38',0,1),
(2166,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:42:38',0,1),
(2167,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:42:38',0,1),
(2168,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 22:42:38',0,1),
(2169,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 22:42:38',0,1),
(2169,1,3,'f8e6258b-90c5-4137-bace-60c62639da4a','2026-03-02 22:42:38',0,1),
(2169,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 22:42:38',0,1),
(2169,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 22:42:38',0,1),
(2170,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:42:38',0,1),
(2170,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:42:38',0,1),
(2171,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:42:38',0,1),
(2171,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:42:38',0,1),
(2172,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:42:38',0,1),
(2172,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:42:38',0,1),
(2173,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 22:42:38',0,1),
(2173,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 22:42:38',0,1),
(2174,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 22:42:38',0,1),
(2174,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 22:42:38',0,1),
(2174,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 22:42:38',0,1),
(2174,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 22:42:38',0,1),
(2174,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 22:42:38',0,1),
(2174,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 22:42:38',0,1),
(2174,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 22:44:08',0,1),
(2174,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 22:42:38',0,1),
(2174,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-02 22:44:08',0,1),
(2174,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 22:42:38',0,1),
(2174,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 22:42:38',0,1),
(2175,1,3,'b813f809-47c0-4f2e-9d84-af3f38d219d8','2026-03-02 22:42:38',0,1),
(2175,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 22:42:38',0,1),
(2175,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 22:42:38',0,1),
(2177,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 22:42:38',0,1),
(2286,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 23:15:24',0,1),
(2286,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-02 23:14:36',0,1),
(2287,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 23:14:36',0,1),
(2287,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 23:14:36',0,1),
(2288,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 23:14:36',0,1),
(2289,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 23:14:36',0,1),
(2292,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 23:14:36',0,1),
(2293,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 23:14:36',0,1),
(2293,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 23:14:36',0,1),
(2293,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 23:14:36',0,1),
(2294,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:14:36',0,1),
(2294,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:14:36',0,1),
(2295,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:14:36',0,1),
(2295,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:14:36',0,1),
(2296,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:14:36',0,1),
(2296,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:14:36',0,1),
(2297,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:14:36',0,1),
(2297,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:14:36',0,1),
(2298,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-02 23:14:36',0,1),
(2298,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 23:14:36',0,1),
(2298,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 23:14:36',0,1),
(2298,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 23:14:36',0,1),
(2298,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 23:14:36',0,1),
(2298,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 23:14:36',0,1),
(2298,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 23:14:36',0,1),
(2298,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 23:14:36',0,1),
(2298,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 23:14:36',0,1),
(2298,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-02 23:15:24',0,1),
(2298,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 23:14:36',0,1),
(2298,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-02 23:14:36',0,1),
(2298,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-02 23:14:36',0,1),
(2298,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 23:14:36',0,1),
(2299,1,2,'118194fa-ddcc-47a9-a830-ee1ba1c92a86','2026-03-02 23:14:36',0,1),
(2299,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 23:14:36',0,1),
(2299,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 23:14:36',0,1),
(2301,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 23:14:36',0,1),
(2409,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 23:27:02',0,1),
(2410,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 23:27:02',0,1),
(2410,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 23:27:02',0,1),
(2411,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 23:27:02',0,1),
(2412,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 23:27:02',0,1),
(2415,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 23:27:02',0,1),
(2416,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 23:27:02',0,1),
(2416,1,3,'f8e6258b-90c5-4137-bace-60c62639da4a','2026-03-02 23:27:02',0,1),
(2416,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 23:27:02',0,1),
(2416,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 23:27:02',0,1),
(2417,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:27:03',0,1),
(2417,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:27:03',0,1),
(2418,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:27:03',0,1),
(2418,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:27:03',0,1),
(2419,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:27:03',0,1),
(2419,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:27:03',0,1),
(2420,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:27:03',0,1),
(2420,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:27:03',0,1),
(2421,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-02 23:27:03',0,1),
(2421,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 23:27:03',0,1),
(2421,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 23:27:03',0,1),
(2421,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 23:27:03',0,1),
(2421,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 23:27:03',0,1),
(2421,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 23:27:03',0,1),
(2421,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 23:27:03',0,1),
(2421,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 23:27:03',0,1),
(2421,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 23:27:03',0,1),
(2421,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 23:27:03',0,1),
(2421,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 23:27:03',0,1),
(2422,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 23:27:03',0,1),
(2422,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 23:27:03',0,1),
(2424,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 23:27:03',0,1),
(2523,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-02 23:57:48',0,1),
(2523,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-02 23:57:48',0,1),
(2524,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-02 23:57:48',0,1),
(2524,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-02 23:57:48',0,1),
(2525,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-02 23:57:48',0,1),
(2526,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 23:57:48',0,1),
(2529,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-02 23:57:48',0,1),
(2530,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-02 23:57:48',0,1),
(2530,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-02 23:57:48',0,1),
(2530,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-02 23:57:48',0,1),
(2531,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:57:48',0,1),
(2531,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:57:48',0,1),
(2532,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:57:48',0,1),
(2532,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:57:48',0,1),
(2533,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:57:48',0,1),
(2533,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:57:48',0,1),
(2534,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-02 23:57:48',0,1),
(2534,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-02 23:57:48',0,1),
(2535,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-02 23:57:48',0,1),
(2535,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-02 23:57:48',0,1),
(2535,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-02 23:57:48',0,1),
(2535,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-02 23:57:48',0,1),
(2535,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-02 23:57:48',0,1),
(2535,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-02 23:57:48',0,1),
(2535,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-02 23:57:48',0,1),
(2535,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-02 23:57:48',0,1),
(2535,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-02 23:57:48',0,1),
(2535,1,4,'8f4ed747-6538-42b3-9204-10e4e72f859a','2026-03-02 23:57:48',0,1),
(2535,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-02 23:57:48',0,1),
(2535,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-02 23:57:48',0,1),
(2535,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-02 23:57:48',0,1),
(2535,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-02 23:57:48',0,1),
(2536,1,2,'118194fa-ddcc-47a9-a830-ee1ba1c92a86','2026-03-02 23:57:48',0,1),
(2536,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-02 23:57:48',0,1),
(2536,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-02 23:57:48',0,1),
(2538,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-02 23:57:48',0,1),
(2643,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-03 00:25:49',0,1),
(2643,1,17,'15c485a1-c1dd-465e-93b2-21f693927c55','2026-03-03 00:14:33',0,1),
(2644,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-03 00:14:33',0,1),
(2644,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-03 00:14:33',0,1),
(2645,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-03 00:14:33',0,1),
(2646,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 00:14:33',0,1),
(2647,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 00:14:33',0,1),
(2649,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 00:14:33',0,1),
(2650,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-03 00:14:33',0,1),
(2650,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-03 00:15:48',0,1),
(2650,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-03 00:14:33',0,1),
(2651,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 00:14:33',0,1),
(2651,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 00:14:33',0,1),
(2652,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 00:14:33',0,1),
(2652,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 00:14:33',0,1),
(2653,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 00:14:33',0,1),
(2653,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 00:14:33',0,1),
(2654,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 00:14:33',0,1),
(2654,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 00:14:33',0,1),
(2655,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-03 00:14:33',0,1),
(2655,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-03 00:14:33',0,1),
(2655,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-03 00:14:33',0,1),
(2655,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-03 00:14:33',0,1),
(2655,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-03 00:14:33',0,1),
(2655,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-03 00:14:33',0,1),
(2655,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-03 00:14:33',0,1),
(2655,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-03 00:14:33',0,1),
(2655,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-03 00:14:33',0,1),
(2655,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-03 00:14:33',0,1),
(2655,1,10,'00524f8a-98d9-4f47-b5d0-b4c407115118','2026-03-03 00:14:33',0,1),
(2655,1,17,'7509c6f1-b682-433b-9708-0d83e83f3a1f','2026-03-03 00:14:33',0,1),
(2655,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-03 00:14:33',0,1),
(2656,1,2,'118194fa-ddcc-47a9-a830-ee1ba1c92a86','2026-03-03 00:21:05',0,1),
(2656,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-03 00:20:07',0,1),
(2656,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-03 00:20:07',0,1),
(2658,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-03 00:25:48',0,1),
(2659,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2659,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2660,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2660,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2661,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2661,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2662,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2662,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2663,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2663,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2665,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2665,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2666,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2666,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2667,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2667,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2668,1,3,'df226ae8-fb69-4583-a72e-59db675487cd','2026-03-03 00:25:48',0,1),
(2668,1,71,'c7f394f7-2697-451f-b233-0583f7d2fee4','2026-03-03 00:25:48',0,1),
(2778,1,7,'29d63d2b-11ad-46b5-a496-080579503dd7','2026-03-03 07:55:09',0,1),
(2779,1,3,'14363a43-2d96-4339-9c8f-1176bb7ac41a','2026-03-03 07:55:09',0,1),
(2779,1,3,'733c704a-1ef5-425f-82bb-2c7ed16220f6','2026-03-03 07:55:09',0,1),
(2779,1,4,'da1cef0a-85ef-4a87-845c-ae060c5f178a','2026-03-03 07:55:09',0,1),
(2780,1,65,'73dce444-eee4-4675-a8d9-a73001443f8d','2026-03-03 07:55:09',0,1),
(2781,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 07:55:09',0,1),
(2782,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 07:55:09',0,1),
(2783,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 07:55:09',0,1),
(2784,1,3,'313cb0aa-4d8a-4d0a-a17d-7fd4bf6b49c9','2026-03-03 07:55:09',0,1),
(2785,1,3,'3cbe2fed-6999-4764-ab9a-308f0b982499','2026-03-03 07:55:09',0,1),
(2785,1,4,'45c80109-3898-433b-96cc-3838022d84f9','2026-03-03 07:55:09',0,1),
(2785,1,66,'6f4c8f61-5636-4286-821a-9523fa0e924f','2026-03-03 07:55:09',0,1),
(2786,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 07:55:09',0,1),
(2786,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 07:55:09',0,1),
(2787,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 07:55:09',0,1),
(2787,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 07:55:09',0,1),
(2788,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 07:55:09',0,1),
(2788,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 07:55:09',0,1),
(2789,1,3,'6ca65211-02ec-4f68-960c-39eb200c7e18','2026-03-03 07:55:09',0,1),
(2789,1,4,'28708981-cf62-4bc8-916e-3de90d2c1149','2026-03-03 07:55:09',0,1),
(2790,1,3,'275f9f89-7d68-41ef-9e4d-b2f9f830d528','2026-03-03 07:55:09',0,1),
(2790,1,3,'2b3e1715-32ff-447b-9460-6469aeb01c95','2026-03-03 07:55:09',0,1),
(2790,1,3,'556a3ac6-956d-48f1-b64a-184871e63dde','2026-03-03 07:55:09',0,1),
(2790,1,3,'662abfc6-cb86-492b-a40d-00775916402e','2026-03-03 07:55:09',0,1),
(2790,1,3,'7139eaa1-a3c8-41e6-8bea-bbf2be110df9','2026-03-03 07:55:09',0,1),
(2790,1,3,'80b2559f-f6ea-4425-a80c-d4905608eff9','2026-03-03 07:55:09',0,1),
(2790,1,3,'a0af3f1d-586c-4a0f-a63b-23905a40f7f4','2026-03-03 07:55:09',0,1),
(2790,1,4,'09b096a5-3744-49b5-aca3-68c5a759cee3','2026-03-03 07:55:09',0,1),
(2790,1,4,'2e2b47ba-c967-4b16-8293-07e5c74319fe','2026-03-03 07:55:09',0,1),
(2790,1,4,'c38db626-85ba-4201-9240-e8c2b19beb5e','2026-03-03 07:55:09',0,1),
(2790,1,71,'0e712616-4ff7-45e0-bd93-b25da08757d3','2026-03-03 07:55:09',0,1),
(2791,1,3,'ec84beab-fa56-42e3-aba5-c6f50d7ff782','2026-03-03 07:55:09',0,1),
(2791,1,20,'e7f2072c-cd79-4083-a671-932331be040a','2026-03-03 07:55:09',0,1),
(2793,1,63,'4573ea0a-fba5-43ea-9ffe-aa0440e2c854','2026-03-03 07:55:09',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),
(348,604,1,1,'Draft 1',NULL,1,NULL,1),
(349,654,1,1,'Draft 1',NULL,1,NULL,1),
(351,657,1,1,'Draft 1',NULL,1,NULL,1),
(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),
(508,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),
(554,761,1,1,'Draft 1',NULL,1,NULL,1),
(555,774,1,1,'Draft 1',NULL,1,NULL,1),
(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),
(560,143,1,1,'Draft 1',NULL,1,NULL,1),
(561,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);
/*!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,'view','2025-12-03 09:29:40'),
(2,1,1,NULL,'edit','2025-11-30 12:26:41'),
(2,1,1,NULL,'save','2025-11-30 12:26:41'),
(3,1,1,NULL,'edit','2026-02-08 10:05:51'),
(3,1,1,NULL,'save','2026-02-08 10:05:52'),
(4,1,1,NULL,'edit','2026-02-08 09:06:40'),
(4,1,1,NULL,'save','2026-02-08 09:06:41'),
(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-02-21 23:03:37'),
(6,1,1,NULL,'save','2026-02-21 23:03:38'),
(8,1,1,NULL,'edit','2026-02-24 14:13:16'),
(8,1,1,NULL,'save','2026-02-24 14:13:17'),
(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-02-21 23:06:22'),
(35,1,1,NULL,'save','2026-02-21 23:06:22'),
(37,1,1,NULL,'save','2025-11-30 19:26:58'),
(38,1,1,NULL,'edit','2026-02-21 23:28:34'),
(38,1,1,NULL,'save','2026-02-21 23:28:36'),
(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','2025-12-02 17:03:56'),
(89,1,1,NULL,'save','2025-12-02 17:03:57'),
(93,1,1,NULL,'save','2025-12-02 15:41:06'),
(97,1,1,NULL,'save','2025-12-02 15:42:14'),
(99,1,1,NULL,'edit','2025-12-02 17:46:05'),
(99,1,1,NULL,'save','2025-12-02 17:46:07'),
(105,1,1,NULL,'edit','2025-12-02 21:09:18'),
(105,1,1,NULL,'save','2025-12-02 21:09:19'),
(112,1,1,NULL,'edit','2025-12-15 09:01:44'),
(112,1,1,NULL,'save','2025-12-15 09:01:44'),
(117,1,1,NULL,'edit','2026-02-24 14:48:13'),
(117,1,1,NULL,'save','2026-02-24 14:48:15'),
(143,1,1,NULL,'edit','2026-02-24 14:43:40'),
(143,1,1,NULL,'save','2025-12-04 08:58:20'),
(143,1,1,NULL,'view','2025-12-04 17:07:02'),
(144,1,1,NULL,'edit','2025-12-02 21:31:20'),
(144,1,1,NULL,'view','2025-12-04 17:07:02'),
(190,1,1,NULL,'edit','2025-12-02 20:01:56'),
(190,1,1,NULL,'save','2025-12-02 20:01:57'),
(204,1,1,NULL,'edit','2025-12-02 21:08:36'),
(204,1,1,NULL,'save','2025-12-02 21:08:36'),
(235,1,1,NULL,'edit','2025-12-02 22:25:40'),
(235,1,1,NULL,'save','2025-12-02 22:25:41'),
(239,1,1,NULL,'save','2025-12-02 22:25:52'),
(244,1,1,NULL,'save','2025-12-02 22:26:26'),
(245,1,1,NULL,'save','2025-12-02 22:26:30'),
(246,1,1,NULL,'save','2025-12-02 22:10:43'),
(247,1,1,NULL,'save','2025-12-02 22:11:01'),
(250,1,1,NULL,'save','2025-12-03 07:52:56'),
(252,1,1,NULL,'save','2025-12-03 07:54:20'),
(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-02-05 07:59:58'),
(274,1,1,NULL,'save','2025-12-03 19:16:27'),
(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'),
(276,1,1,NULL,'edit','2026-02-05 07:59:57'),
(287,1,1,NULL,'edit','2025-12-03 18:27:25'),
(287,1,1,NULL,'view','2025-12-03 18:56:04'),
(319,1,1,NULL,'save','2025-12-04 17:56:51'),
(319,1,1,NULL,'view','2025-12-04 17:58:00'),
(322,1,1,NULL,'edit','2025-12-04 18:18:55'),
(322,1,1,NULL,'save','2025-12-04 18:18:56'),
(322,1,1,NULL,'view','2025-12-04 18:19:18'),
(324,1,1,NULL,'save','2025-12-04 17:57:55'),
(324,1,1,NULL,'view','2025-12-04 17:57:57'),
(326,1,1,NULL,'edit','2025-12-04 18:18:03'),
(326,1,1,NULL,'save','2025-12-04 18:18:04'),
(326,1,1,NULL,'view','2025-12-04 18:17:59'),
(330,1,1,NULL,'edit','2025-12-04 18:16:23'),
(330,1,1,NULL,'save','2025-12-04 18:16:24'),
(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','2025-12-08 10:20:02'),
(604,1,1,NULL,'save','2025-12-07 09:14:29'),
(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','2025-12-08 10:21:06'),
(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','2025-12-07 09:17:28'),
(657,1,1,NULL,'edit','2025-12-08 10:23:38'),
(657,1,1,NULL,'save','2025-12-07 09:14:26'),
(755,1,1,NULL,'save','2025-12-07 13:55:48'),
(761,1,1,NULL,'edit','2026-02-24 14:17:15'),
(761,1,1,NULL,'save','2025-12-07 14:41:55'),
(762,1,1,NULL,'edit','2025-12-07 14:41:37'),
(774,1,1,NULL,'edit','2026-02-24 14:31:45'),
(836,1,1,NULL,'save','2025-12-08 10:21:06'),
(838,1,1,NULL,'save','2025-12-08 10:23:30'),
(849,1,1,NULL,'edit','2026-02-03 08:48:38'),
(850,1,1,NULL,'edit','2026-02-03 08:48:36'),
(887,1,1,NULL,'edit','2026-02-08 09:29:48'),
(887,1,1,NULL,'save','2026-02-08 09:29:50'),
(912,1,1,NULL,'edit','2026-02-22 22:18:13'),
(912,1,1,NULL,'save','2026-02-22 22:19:04'),
(918,1,1,NULL,'save','2026-02-21 15:05:57'),
(920,1,1,NULL,'edit','2026-02-21 15:10:45'),
(926,1,1,NULL,'edit','2026-02-24 14:48:13'),
(945,1,1,NULL,'edit','2026-02-21 15:46:42'),
(984,1,1,NULL,'edit','2026-02-21 15:46:41'),
(1002,1,1,NULL,'edit','2026-02-21 15:52:56'),
(1011,1,1,NULL,'edit','2026-02-21 15:51:18'),
(1043,1,1,NULL,'edit','2026-02-21 16:07:19'),
(1061,1,1,NULL,'save','2026-02-21 16:12:02'),
(1075,1,1,NULL,'edit','2026-02-21 16:21:10'),
(1098,1,1,NULL,'save','2026-02-21 22:49:52'),
(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,'save','2026-02-21 22:58:49'),
(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,'save','2026-02-21 23:00:22'),
(1133,1,1,NULL,'save','2026-02-21 23:00:21'),
(1157,1,1,NULL,'edit','2026-02-21 23:59:18'),
(1157,1,1,NULL,'save','2026-02-21 23:51:06'),
(1161,1,1,NULL,'edit','2026-02-22 22:28:08'),
(1161,1,1,NULL,'save','2026-02-22 22:28:10'),
(1216,1,1,NULL,'edit','2026-02-22 22:28:08'),
(1226,1,1,NULL,'edit','2026-02-22 21:20:00'),
(1239,1,1,NULL,'edit','2026-02-22 21:21:46'),
(1286,1,1,NULL,'save','2026-02-22 00:42:18'),
(1334,1,1,NULL,'edit','2026-02-22 22:00:25'),
(1367,1,1,NULL,'edit','2026-02-22 22:19:02'),
(1417,1,1,NULL,'edit','2026-02-24 14:40:16'),
(1425,1,1,NULL,'save','2026-02-24 14:40:04'),
(1441,1,1,NULL,'edit','2026-03-02 20:06:39'),
(1441,1,1,NULL,'save','2026-03-02 20:06:40'),
(1442,1,1,NULL,'edit','2026-03-02 17:13:20'),
(1443,1,1,NULL,'edit','2026-03-02 17:36:22'),
(1444,1,1,NULL,'edit','2026-03-02 17:20:23'),
(1445,1,1,NULL,'edit','2026-03-02 17:33:59'),
(1445,1,1,NULL,'save','2026-03-02 17:21:00'),
(1446,1,1,NULL,'edit','2026-03-02 17:35:57'),
(1447,1,1,NULL,'edit','2026-03-02 17:36:21'),
(1452,1,1,NULL,'edit','2026-03-02 17:39:30'),
(1457,1,1,NULL,'edit','2026-03-02 19:47:32'),
(1458,1,1,NULL,'edit','2026-03-02 18:44:10'),
(1459,1,1,NULL,'edit','2026-03-02 19:49:42'),
(1460,1,1,NULL,'edit','2026-03-02 19:50:14'),
(1461,1,1,NULL,'edit','2026-03-02 19:26:17'),
(1462,1,1,NULL,'edit','2026-03-02 19:21:39'),
(1463,1,1,NULL,'edit','2026-03-02 19:24:14'),
(1464,1,1,NULL,'edit','2026-03-02 19:24:40'),
(1465,1,1,NULL,'edit','2026-03-02 19:24:56'),
(1466,1,1,NULL,'edit','2026-03-02 19:25:10'),
(1467,1,1,NULL,'edit','2026-03-02 19:25:26'),
(1468,1,1,NULL,'edit','2026-03-02 19:25:48'),
(1469,1,1,NULL,'edit','2026-03-02 19:26:03'),
(1571,1,1,NULL,'edit','2026-03-02 17:47:19'),
(1572,1,1,NULL,'edit','2026-03-02 17:47:18'),
(1573,1,1,NULL,'edit','2026-03-02 17:41:55'),
(1574,1,1,NULL,'edit','2026-03-02 17:42:13'),
(1575,1,1,NULL,'edit','2026-03-02 17:42:34'),
(1787,1,1,NULL,'edit','2026-03-02 20:06:39'),
(1802,1,1,NULL,'edit','2026-03-02 21:44:04'),
(1802,1,1,NULL,'save','2026-03-02 21:44:06'),
(1803,1,1,NULL,'edit','2026-03-02 21:12:51'),
(1804,1,1,NULL,'edit','2026-03-02 21:11:08'),
(1805,1,1,NULL,'edit','2026-03-02 21:10:38'),
(1806,1,1,NULL,'edit','2026-03-02 21:10:48'),
(1807,1,1,NULL,'edit','2026-03-02 21:10:57'),
(1808,1,1,NULL,'edit','2026-03-02 21:11:04'),
(1809,1,1,NULL,'edit','2026-03-02 21:16:55'),
(1810,1,1,NULL,'edit','2026-03-02 21:15:12'),
(1811,1,1,NULL,'edit','2026-03-02 21:15:29'),
(1812,1,1,NULL,'edit','2026-03-02 21:16:24'),
(1812,1,1,NULL,'save','2026-03-02 21:16:38'),
(1813,1,1,NULL,'edit','2026-03-02 21:16:53'),
(1814,1,1,NULL,'edit','2026-03-02 21:40:29'),
(1815,1,1,NULL,'edit','2026-03-02 21:44:04'),
(1817,1,1,NULL,'edit','2026-03-02 21:29:24'),
(1827,1,1,NULL,'edit','2026-03-02 21:10:05'),
(1951,1,1,NULL,'edit','2026-03-02 22:05:28'),
(1951,1,1,NULL,'save','2026-03-02 22:05:29'),
(1952,1,1,NULL,'edit','2026-03-02 21:49:35'),
(1953,1,1,NULL,'edit','2026-03-02 21:50:27'),
(1954,1,1,NULL,'edit','2026-03-02 21:49:47'),
(1955,1,1,NULL,'edit','2026-03-02 21:50:02'),
(1956,1,1,NULL,'edit','2026-03-02 21:50:11'),
(1957,1,1,NULL,'edit','2026-03-02 21:50:25'),
(1958,1,1,NULL,'edit','2026-03-02 21:52:10'),
(1958,1,1,NULL,'save','2026-03-02 21:52:16'),
(1959,1,1,NULL,'edit','2026-03-02 21:51:21'),
(1960,1,1,NULL,'edit','2026-03-02 21:51:36'),
(1961,1,1,NULL,'edit','2026-03-02 21:51:51'),
(1962,1,1,NULL,'edit','2026-03-02 21:52:05'),
(1963,1,1,NULL,'edit','2026-03-02 21:52:37'),
(1964,1,1,NULL,'edit','2026-03-02 22:00:11'),
(1966,1,1,NULL,'edit','2026-03-02 22:03:46'),
(2020,1,1,NULL,'edit','2026-03-02 22:05:27'),
(2081,1,1,NULL,'edit','2026-03-02 22:42:56'),
(2081,1,1,NULL,'save','2026-03-02 22:42:58'),
(2082,1,1,NULL,'edit','2026-03-02 22:09:37'),
(2083,1,1,NULL,'edit','2026-03-02 22:10:33'),
(2084,1,1,NULL,'edit','2026-03-02 22:10:03'),
(2085,1,1,NULL,'edit','2026-03-02 22:10:11'),
(2086,1,1,NULL,'edit','2026-03-02 22:10:19'),
(2087,1,1,NULL,'edit','2026-03-02 22:10:30'),
(2088,1,1,NULL,'edit','2026-03-02 22:25:31'),
(2089,1,1,NULL,'edit','2026-03-02 22:24:28'),
(2090,1,1,NULL,'edit','2026-03-02 22:24:47'),
(2091,1,1,NULL,'edit','2026-03-02 22:25:04'),
(2092,1,1,NULL,'edit','2026-03-02 22:25:27'),
(2093,1,1,NULL,'edit','2026-03-02 22:42:56'),
(2162,1,1,NULL,'edit','2026-03-02 22:44:06'),
(2162,1,1,NULL,'save','2026-03-02 22:44:08'),
(2163,1,1,NULL,'edit','2026-03-02 22:31:23'),
(2164,1,1,NULL,'edit','2026-03-02 22:32:00'),
(2165,1,1,NULL,'edit','2026-03-02 22:31:33'),
(2166,1,1,NULL,'edit','2026-03-02 22:31:41'),
(2167,1,1,NULL,'edit','2026-03-02 22:31:49'),
(2168,1,1,NULL,'edit','2026-03-02 22:31:57'),
(2169,1,1,NULL,'edit','2026-03-02 22:35:09'),
(2170,1,1,NULL,'edit','2026-03-02 22:32:53'),
(2171,1,1,NULL,'edit','2026-03-02 22:33:08'),
(2172,1,1,NULL,'edit','2026-03-02 22:33:24'),
(2173,1,1,NULL,'edit','2026-03-02 22:33:49'),
(2174,1,1,NULL,'edit','2026-03-02 22:44:06'),
(2175,1,1,NULL,'edit','2026-03-02 22:39:05'),
(2177,1,1,NULL,'edit','2026-03-02 22:42:35'),
(2286,1,1,NULL,'edit','2026-03-02 23:15:23'),
(2286,1,1,NULL,'save','2026-03-02 23:15:24'),
(2287,1,1,NULL,'edit','2026-03-02 22:54:10'),
(2288,1,1,NULL,'edit','2026-03-02 22:54:59'),
(2289,1,1,NULL,'edit','2026-03-02 22:54:23'),
(2290,1,1,NULL,'edit','2026-03-02 22:54:31'),
(2291,1,1,NULL,'edit','2026-03-02 22:54:38'),
(2292,1,1,NULL,'edit','2026-03-02 22:54:54'),
(2293,1,1,NULL,'edit','2026-03-02 23:03:08'),
(2294,1,1,NULL,'edit','2026-03-02 22:59:08'),
(2295,1,1,NULL,'edit','2026-03-02 23:00:23'),
(2296,1,1,NULL,'edit','2026-03-02 23:01:29'),
(2297,1,1,NULL,'edit','2026-03-02 23:01:47'),
(2298,1,1,NULL,'edit','2026-03-02 23:15:23'),
(2299,1,1,NULL,'edit','2026-03-02 23:09:31'),
(2301,1,1,NULL,'edit','2026-03-02 23:14:34'),
(2409,1,1,NULL,'edit','2026-03-02 23:19:34'),
(2409,1,1,NULL,'save','2026-03-02 23:27:03'),
(2410,1,1,NULL,'edit','2026-03-02 23:19:34'),
(2411,1,1,NULL,'edit','2026-03-02 23:20:15'),
(2412,1,1,NULL,'edit','2026-03-02 23:19:47'),
(2413,1,1,NULL,'edit','2026-03-02 23:19:57'),
(2414,1,1,NULL,'edit','2026-03-02 23:20:04'),
(2415,1,1,NULL,'edit','2026-03-02 23:20:12'),
(2416,1,1,NULL,'edit','2026-03-02 23:21:48'),
(2417,1,1,NULL,'edit','2026-03-02 23:21:06'),
(2418,1,1,NULL,'edit','2026-03-02 23:21:20'),
(2419,1,1,NULL,'edit','2026-03-02 23:21:32'),
(2420,1,1,NULL,'edit','2026-03-02 23:21:45'),
(2421,1,1,NULL,'edit','2026-03-02 23:23:55'),
(2422,1,1,NULL,'edit','2026-03-02 23:24:22'),
(2424,1,1,NULL,'edit','2026-03-02 23:27:01'),
(2523,1,1,NULL,'edit','2026-03-02 23:49:16'),
(2523,1,1,NULL,'save','2026-03-02 23:57:48'),
(2524,1,1,NULL,'edit','2026-03-02 23:49:15'),
(2525,1,1,NULL,'edit','2026-03-02 23:49:47'),
(2526,1,1,NULL,'edit','2026-03-02 23:49:25'),
(2527,1,1,NULL,'edit','2026-03-02 23:49:32'),
(2528,1,1,NULL,'edit','2026-03-02 23:49:41'),
(2529,1,1,NULL,'edit','2026-03-02 23:49:45'),
(2530,1,1,NULL,'edit','2026-03-02 23:51:13'),
(2531,1,1,NULL,'edit','2026-03-02 23:50:24'),
(2532,1,1,NULL,'edit','2026-03-02 23:50:37'),
(2533,1,1,NULL,'edit','2026-03-02 23:50:55'),
(2534,1,1,NULL,'edit','2026-03-02 23:51:09'),
(2535,1,1,NULL,'edit','2026-03-02 23:54:14'),
(2536,1,1,NULL,'edit','2026-03-02 23:55:10'),
(2538,1,1,NULL,'edit','2026-03-02 23:57:46'),
(2643,1,1,NULL,'edit','2026-03-03 00:25:47'),
(2643,1,1,NULL,'save','2026-03-03 00:25:48'),
(2644,1,1,NULL,'edit','2026-03-03 00:08:39'),
(2645,1,1,NULL,'edit','2026-03-03 00:09:17'),
(2646,1,1,NULL,'edit','2026-03-03 00:08:55'),
(2647,1,1,NULL,'edit','2026-03-03 00:09:02'),
(2648,1,1,NULL,'edit','2026-03-03 00:09:11'),
(2649,1,1,NULL,'edit','2026-03-03 00:09:15'),
(2650,1,1,NULL,'edit','2026-03-03 00:15:46'),
(2651,1,1,NULL,'edit','2026-03-03 00:10:11'),
(2652,1,1,NULL,'edit','2026-03-03 00:10:29'),
(2653,1,1,NULL,'edit','2026-03-03 00:10:45'),
(2654,1,1,NULL,'edit','2026-03-03 00:11:00'),
(2655,1,1,NULL,'edit','2026-03-03 00:13:39'),
(2656,1,1,NULL,'edit','2026-03-03 00:21:03'),
(2658,1,1,NULL,'edit','2026-03-03 00:25:47'),
(2659,1,1,NULL,'edit','2026-03-03 00:22:00'),
(2660,1,1,NULL,'edit','2026-03-03 00:22:27'),
(2661,1,1,NULL,'edit','2026-03-03 00:22:44'),
(2662,1,1,NULL,'edit','2026-03-03 00:23:00'),
(2663,1,1,NULL,'edit','2026-03-03 00:23:16'),
(2664,1,1,NULL,'edit','2026-03-03 00:23:35'),
(2665,1,1,NULL,'edit','2026-03-03 00:24:27'),
(2666,1,1,NULL,'edit','2026-03-03 00:24:43'),
(2667,1,1,NULL,'edit','2026-03-03 00:24:55'),
(2668,1,1,NULL,'edit','2026-03-03 00:25:07'),
(2778,1,1,NULL,'edit','2026-03-03 07:44:21'),
(2778,1,1,NULL,'save','2026-03-03 07:55:10'),
(2779,1,1,NULL,'edit','2026-03-03 07:44:20'),
(2780,1,1,NULL,'edit','2026-03-03 07:45:04'),
(2781,1,1,NULL,'edit','2026-03-03 07:44:33'),
(2782,1,1,NULL,'edit','2026-03-03 07:44:43'),
(2783,1,1,NULL,'edit','2026-03-03 07:44:51'),
(2784,1,1,NULL,'edit','2026-03-03 07:45:00'),
(2785,1,1,NULL,'edit','2026-03-03 07:47:06'),
(2786,1,1,NULL,'edit','2026-03-03 07:45:52'),
(2787,1,1,NULL,'edit','2026-03-03 07:46:11'),
(2788,1,1,NULL,'edit','2026-03-03 07:46:32'),
(2789,1,1,NULL,'edit','2026-03-03 07:46:53'),
(2790,1,1,NULL,'edit','2026-03-03 07:49:57'),
(2791,1,1,NULL,'edit','2026-03-03 07:50:38'),
(2793,1,1,NULL,'edit','2026-03-03 07:55:07'),
(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-03 07:58:33'),
(2909,1,1,NULL,'save','2026-03-03 07:58:37'),
(2918,1,1,NULL,'edit','2026-03-03 08:13:11'),
(2918,1,1,NULL,'save','2026-03-03 08:13:29');
/*!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,NULL,'craft\\elements\\User',1,0,'2025-11-29 11:54:53','2025-11-29 11:54:53',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','2025-11-30 12:26:41',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-02-08 10:05:52',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-02-08 09:06:41',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-02-21 23:03:38',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-02-24 14:13:17',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','2025-11-30 12:08:14',NULL,NULL,NULL,'7b574f76-8627-4cff-9e26-d5dfe1365028'),
(13,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:18','2025-11-30 12:08:18',NULL,NULL,NULL,'12003217-d58e-493f-b241-f23d7832c952'),
(14,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:27','2025-11-30 12:08:27',NULL,NULL,NULL,'2ce13992-653b-4f49-827e-e642c4048f29'),
(15,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:33','2025-11-30 12:08:33',NULL,NULL,NULL,'f35ff650-1e13-45f2-9748-0dd7cee042db'),
(16,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:41','2025-11-30 12:08:41',NULL,NULL,NULL,'3559be70-ce1f-4d0d-901a-28b6efa3f99f'),
(17,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:51','2025-11-30 12:08:51',NULL,NULL,NULL,'9905e963-8992-45bd-859c-c37a77ee9670'),
(18,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:54','2025-11-30 12:08:54',NULL,NULL,NULL,'c2ec9cc4-0844-469f-a491-11066cc312b8'),
(19,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:08:58','2025-11-30 12:08:58',NULL,NULL,NULL,'d06f3452-290b-46ac-b1f3-a1bc52ce854b'),
(20,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2025-11-30 12:09:04','2025-11-30 12:09:04',NULL,NULL,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-02-21 23:06:22',NULL,NULL,NULL,'3942fab8-e081-4c61-8701-51f973c328f9'),
(36,NULL,NULL,NULL,2,'craft\\elements\\Asset',1,0,'2025-11-30 14:11:48','2025-11-30 14:11:48',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-02-21 23:28:35',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','2025-12-02 17:03:57',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'),
(93,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 15:40:51','2025-12-02 16:26:01',NULL,'2025-12-02 16:26:01',NULL,'74b55e94-8fda-4b55-a597-223c606459ac'),
(94,93,NULL,22,3,'craft\\elements\\Entry',1,0,'2025-12-02 15:41:06','2025-12-02 15:41:06',NULL,'2025-12-02 16:26:01',NULL,'de28b103-07c2-4572-aa55-9bae96e5bab1'),
(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'),
(97,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 15:42:01','2025-12-02 16:26:02',NULL,'2025-12-02 16:26:02',NULL,'6ac2780b-5d86-448f-8548-4f69fc30bdbd'),
(98,97,NULL,24,3,'craft\\elements\\Entry',1,0,'2025-12-02 15:42:14','2025-12-02 15:42:14',NULL,'2025-12-02 16:26:02',NULL,'7ecaef63-18c6-4489-af74-2dbdf8dfb1c6'),
(99,NULL,NULL,NULL,5,'craft\\elements\\Entry',1,0,'2025-12-02 15:42:19','2025-12-02 17:46:07',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'),
(105,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2025-12-02 16:15:38','2026-03-02 17:13:44',NULL,'2026-03-02 17:13:44',NULL,'8d66fe25-6f47-499b-9cd1-599f5ceca145'),
(106,105,NULL,27,6,'craft\\elements\\Entry',1,0,'2025-12-02 16:15:48','2025-12-02 16:15:48',NULL,'2026-03-02 17:13:44',NULL,'ead8eb3d-a3d6-45ca-985b-3843b6d6a15e'),
(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','2025-12-15 09:01:44',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'),
(117,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2025-12-02 16:47:00','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',NULL,'703bfe67-05ad-42b1-af0f-fb0e1a3eff97'),
(118,117,NULL,33,6,'craft\\elements\\Entry',1,0,'2025-12-02 16:47:05','2025-12-02 16:47:05',NULL,'2026-03-02 22:06:21',NULL,'b73bcdce-4515-46d0-9d96-4a144b4c2182'),
(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'),
(122,105,NULL,35,6,'craft\\elements\\Entry',1,0,'2025-12-02 16:48:06','2025-12-02 16:48:06',NULL,'2026-03-02 17:13:44',NULL,'61b1600c-4edd-4513-8995-a7eadef48e98'),
(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'),
(132,117,NULL,41,6,'craft\\elements\\Entry',1,0,'2025-12-02 17:18:14','2025-12-02 17:18:14',NULL,'2026-03-02 22:06:21',NULL,'eafa8bea-291f-4777-8644-fbfdcc3395eb'),
(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','2025-12-08 10:15:37',NULL,NULL,NULL,'4986cb4d-06cd-4710-acfd-74ca6cb40604'),
(144,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:51','2025-12-02 21:31:23',NULL,NULL,NULL,'abafe54a-d865-4ace-a0ef-e4994a7beca7'),
(145,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:51','2025-12-02 17:25:51',NULL,NULL,NULL,'4bac21f9-6d9e-4c78-b07b-318ad9534d97'),
(149,145,NULL,48,3,'craft\\elements\\Entry',1,0,'2025-12-02 17:25:51','2025-12-07 09:16:48',NULL,NULL,NULL,'0bb946be-5976-4c02-82f3-a25e0cd20eb6'),
(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'),
(181,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2026-03-02 17:13:44',NULL,'2026-03-02 17:13:44',1,'cb1b35c0-aedd-4478-ba8e-69c4094fc208'),
(182,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2026-03-02 17:13:44',NULL,'2026-03-02 17:13:44',1,'aa273cd8-b25e-4fda-9ad1-913931c9e741'),
(183,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2026-03-02 17:13:44',NULL,'2026-03-02 17:13:44',1,'24d5d4fd-4635-4395-9178-256ac64d4770'),
(184,105,NULL,61,6,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2025-12-02 19:06:16',NULL,'2026-03-02 17:13:44',NULL,'b7eea6a1-b112-431d-89cd-6f6112c69b9f'),
(185,181,NULL,62,4,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2025-12-02 19:06:16',NULL,'2026-03-02 17:13:44',NULL,'5bf8b761-8d69-4a84-b6ec-a926ad708562'),
(186,182,NULL,63,3,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2025-12-02 19:06:16',NULL,'2026-03-02 17:13:44',NULL,'d02e2460-c18a-425e-ab12-85946fcaff0e'),
(187,183,NULL,64,3,'craft\\elements\\Entry',1,0,'2025-12-02 19:06:16','2025-12-02 19:06:16',NULL,'2026-03-02 17:13:44',NULL,'2d40b30e-193a-45c1-a0fd-16033365eef6'),
(190,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2025-12-02 19:32:49','2026-03-02 17:13:44',NULL,'2026-03-02 17:13:44',1,'e540a835-e0dc-47b8-96ea-23b0cca969b8'),
(191,105,NULL,65,6,'craft\\elements\\Entry',1,0,'2025-12-02 19:32:49','2025-12-02 19:32:49',NULL,'2026-03-02 17:13:44',NULL,'23597cf8-3c6a-4454-9fe5-9343742e7ecd'),
(192,190,NULL,66,8,'craft\\elements\\Entry',1,0,'2025-12-02 19:32:49','2025-12-02 19:32:49',NULL,'2026-03-02 17:13:44',NULL,'2531e121-4ba6-4059-8aed-fa84c7c5b3fa'),
(193,105,NULL,67,6,'craft\\elements\\Entry',1,0,'2025-12-02 19:34:09','2025-12-02 19:34:09',NULL,'2026-03-02 17:13:44',NULL,'ca84456b-37d2-4a27-a808-2b453b740bf5'),
(195,105,NULL,68,6,'craft\\elements\\Entry',1,0,'2025-12-02 19:52:54','2025-12-02 19:52:54',NULL,'2026-03-02 17:13:44',NULL,'c09ae84c-3601-4bb7-aa12-b2f1e3fb175e'),
(196,190,NULL,69,8,'craft\\elements\\Entry',1,0,'2025-12-02 19:52:52','2025-12-02 19:52:54',NULL,'2026-03-02 17:13:44',NULL,'d60edef1-32ea-4ed3-b0df-649185ca66ee'),
(198,105,NULL,70,6,'craft\\elements\\Entry',1,0,'2025-12-02 20:01:58','2025-12-02 20:01:58',NULL,'2026-03-02 17:13:44',NULL,'baa98f01-f7cc-4701-b07f-6f51164a0c46'),
(199,190,NULL,71,8,'craft\\elements\\Entry',1,0,'2025-12-02 20:01:57','2025-12-02 20:01:58',NULL,'2026-03-02 17:13:44',NULL,'eb10e623-5c6c-4e3f-8a08-586707bbf8e4'),
(204,NULL,NULL,NULL,9,'craft\\elements\\Entry',1,0,'2025-12-02 20:31:56','2026-03-02 17:13:44',NULL,'2026-03-02 17:13:44',1,'3f70fb83-b001-485f-9824-5d9059bb22f7'),
(205,105,NULL,72,6,'craft\\elements\\Entry',1,0,'2025-12-02 20:31:56','2025-12-02 20:31:56',NULL,'2026-03-02 17:13:44',NULL,'d2aae38d-a12f-4805-96d0-dc2654df7526'),
(206,204,NULL,73,9,'craft\\elements\\Entry',1,0,'2025-12-02 20:31:56','2025-12-02 20:31:56',NULL,'2026-03-02 17:13:44',NULL,'a1c14749-e67c-4823-ae2e-206c3080f86a'),
(208,105,NULL,74,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:01:57','2025-12-02 21:01:57',NULL,'2026-03-02 17:13:44',NULL,'77a3c4a2-d9d8-4812-8cdf-d1c3b8d24070'),
(210,117,NULL,75,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:02:05','2025-12-02 21:02:05',NULL,'2026-03-02 22:06:21',NULL,'f42af788-c3e5-4ef8-9d00-0ae537cb3820'),
(212,105,NULL,76,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:05:04','2025-12-02 21:05:04',NULL,'2026-03-02 17:13:44',NULL,'fc2e5218-0925-4f3d-83cc-60cc3188c529'),
(213,204,NULL,77,9,'craft\\elements\\Entry',1,0,'2025-12-02 21:05:03','2025-12-02 21:05:04',NULL,'2026-03-02 17:13:44',NULL,'08ee255b-e876-4ec3-8804-c6782a4f6925'),
(215,105,NULL,78,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:05:38','2025-12-02 21:05:38',NULL,'2026-03-02 17:13:44',NULL,'00dcf422-a8f6-48e2-9fcf-097d335808c8'),
(216,204,NULL,79,9,'craft\\elements\\Entry',1,0,'2025-12-02 21:05:36','2025-12-02 21:05:38',NULL,'2026-03-02 17:13:44',NULL,'af3c97ee-2081-4653-89cb-e8f07daf5dca'),
(218,105,NULL,80,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:06:16','2025-12-02 21:06:16',NULL,'2026-03-02 17:13:44',NULL,'e567b038-540f-4475-80f4-8c20383d9dff'),
(219,204,NULL,81,9,'craft\\elements\\Entry',1,0,'2025-12-02 21:06:14','2025-12-02 21:06:16',NULL,'2026-03-02 17:13:44',NULL,'5c4ac255-41ed-4469-9188-a755c88def9a'),
(221,105,NULL,82,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:08:02','2025-12-02 21:08:02',NULL,'2026-03-02 17:13:44',NULL,'5226122e-7f85-4b91-90cd-4317f8fdf345'),
(222,204,NULL,83,9,'craft\\elements\\Entry',1,0,'2025-12-02 21:08:01','2025-12-02 21:08:02',NULL,'2026-03-02 17:13:44',NULL,'1d2393a4-105c-4829-a4cd-09ccb8c1a471'),
(224,105,NULL,84,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:08:18','2025-12-02 21:08:18',NULL,'2026-03-02 17:13:44',NULL,'592bef89-eed3-4bb1-a4c5-e629e2fa1181'),
(225,204,NULL,85,9,'craft\\elements\\Entry',1,0,'2025-12-02 21:08:16','2025-12-02 21:08:18',NULL,'2026-03-02 17:13:44',NULL,'2209fead-8905-4a15-958f-b7deee3bbc12'),
(227,105,NULL,86,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:08:37','2025-12-02 21:08:37',NULL,'2026-03-02 17:13:44',NULL,'bbd7e06d-02a1-4d4c-99d8-405ca25f6429'),
(228,204,NULL,87,9,'craft\\elements\\Entry',1,0,'2025-12-02 21:08:36','2025-12-02 21:08:37',NULL,'2026-03-02 17:13:44',NULL,'2406811e-7c7a-4a8d-a27d-ff5ab7a0c4b9'),
(230,105,NULL,88,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:09:02','2025-12-02 21:09:02',NULL,'2026-03-02 17:13:44',NULL,'455e6903-fefc-4c09-ab03-0185eb1b62ce'),
(232,105,NULL,89,6,'craft\\elements\\Entry',1,0,'2025-12-02 21:09:19','2025-12-02 21:09:19',NULL,'2026-03-02 17:13:44',NULL,'160675c1-4839-43ba-9d14-33e96b21c77c'),
(235,NULL,NULL,NULL,10,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:42:11','2025-12-02 22:25:41',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','2025-12-02 22:25:52',NULL,NULL,NULL,'ed41f808-4018-4acd-8b98-0515594899d2'),
(240,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:44:07','2025-12-02 21:44:07',NULL,NULL,NULL,'09995a25-81ae-4834-86d4-2afe66b2abfa'),
(241,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:44:15','2025-12-02 21:44:15',NULL,NULL,NULL,'c61adfcf-3a0b-4ab0-aa7e-e0ff4825eef0'),
(242,NULL,NULL,NULL,11,'verbb\\navigation\\elements\\Node',1,0,'2025-12-02 21:44:23','2025-12-02 21:44:23',NULL,NULL,NULL,'584f12e3-d20a-4a86-b5b0-5e5df74c5f2b'),
(243,NULL,NULL,NULL,13,'craft\\elements\\GlobalSet',1,0,'2025-12-02 22:04:25','2025-12-02 22:27:30',NULL,NULL,NULL,'dabc2ee6-7b53-4c21-8253-0c9718bdd331'),
(244,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 22:09:04','2025-12-02 22:26:26',NULL,NULL,NULL,'55c3c84b-e02e-4c98-a3a7-ce9b9d99bdd9'),
(245,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-02 22:09:19','2025-12-02 22:26:30',NULL,NULL,NULL,'7ae3029f-a609-4759-804b-15e6003d36c2'),
(246,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2025-12-02 22:10:27','2025-12-02 22:10:43',NULL,NULL,NULL,'c1256246-9031-4685-9166-4f55d0b0da37'),
(247,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2025-12-02 22:10:44','2025-12-02 22:11:01',NULL,NULL,NULL,'c42f8910-36ff-43ca-81f6-9ed6c0db1668'),
(250,NULL,NULL,NULL,14,'craft\\elements\\Entry',1,0,'2025-12-03 07:52:32','2025-12-03 07:52:56',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','2025-12-03 07:54:20',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','2025-12-03 08:56:07',NULL,NULL,NULL,'b0b3d7c1-8ca7-4a0e-aed9-cec21c413d85'),
(258,144,NULL,94,3,'craft\\elements\\Entry',1,0,'2025-12-02 21:31:23','2025-12-07 09:16:48',NULL,NULL,NULL,'50c667bd-1eb4-4645-9efa-8ef2a1fb670c'),
(259,255,NULL,95,15,'craft\\elements\\Entry',1,0,'2025-12-03 08:56:07','2026-02-21 23:28:36',NULL,NULL,NULL,'735ecc29-ff75-44bb-8c90-00757bd5285c'),
(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-02-05 08:00: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'),
(276,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2025-12-03 17:13:37','2026-02-05 08:00:00',NULL,NULL,NULL,'dd6d6fc4-36a9-4ac6-99c0-c4f56a57446e'),
(277,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2025-12-03 17:13:37','2025-12-03 17:13:37',NULL,NULL,NULL,'3255c5b9-b4fc-414f-9fbc-052a41b310ba'),
(281,276,NULL,100,17,'craft\\elements\\Entry',1,0,'2025-12-03 17:13:37','2025-12-07 09:14:31',NULL,NULL,NULL,'c44dfaa5-2dd9-413c-8a2f-c26de4452dd8'),
(282,277,NULL,101,17,'craft\\elements\\Entry',1,0,'2025-12-03 17:13:37','2025-12-07 09:14:31',NULL,NULL,NULL,'f8dbfac6-45e8-4b3c-8bd8-99e284aaaf64'),
(287,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2025-12-03 18:18:09','2025-12-03 18:27:27',NULL,NULL,NULL,'02bee2e3-176f-4121-8312-a1e74c01b3fc'),
(298,275,NULL,108,17,'craft\\elements\\Entry',1,0,'2025-12-03 19:05:19','2025-12-07 09:14:31',NULL,'2026-02-05 07:59:45',NULL,'5b3f089b-3ed9-428e-b7e9-58437a8f2c28'),
(299,287,NULL,109,17,'craft\\elements\\Entry',1,0,'2025-12-03 18:27:27','2025-12-07 09:14:31',NULL,NULL,NULL,'18f8c041-cd46-4155-8684-04f59b73066d'),
(302,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-03 19:14:29','2025-12-03 19:14:29',NULL,NULL,NULL,'8d849b1c-075f-47e1-b128-b6f66c82e7ea'),
(305,302,NULL,112,3,'craft\\elements\\Entry',1,0,'2025-12-03 19:14:29','2025-12-07 09:14:31',NULL,NULL,NULL,'bfdf7b94-826b-401a-b4cd-9039cbbd5416'),
(308,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2025-12-03 19:16:27','2025-12-03 19:16:27',NULL,NULL,NULL,'6eebda5a-6739-474a-ba6d-4102d40288c5'),
(310,274,NULL,114,16,'craft\\elements\\Entry',1,0,'2025-12-03 19:16:27','2026-02-21 23:28:36',NULL,NULL,NULL,'900758f0-f6c8-4156-9bb7-fc0bf0f949a8'),
(311,308,NULL,115,17,'craft\\elements\\Entry',1,0,'2025-12-03 19:16:27','2025-12-03 19:16:28',NULL,NULL,NULL,'52bae6fe-1e0e-401a-a12e-5dc3cccedaae'),
(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'),
(318,143,NULL,119,4,'craft\\elements\\Entry',1,0,'2025-12-04 08:58:20','2026-02-21 23:28:36',NULL,NULL,NULL,'843aa538-5318-4396-bedf-3835689f2231'),
(319,NULL,NULL,NULL,18,'craft\\elements\\Entry',1,0,'2025-12-04 17:55:44','2025-12-04 17:56:51',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','2025-12-04 18:18:56',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','2025-12-04 17:57:55',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','2025-12-04 18:18:04',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','2025-12-04 18:16:24',NULL,NULL,NULL,'b3b190fe-2c60-4260-940b-36dc10d78f58'),
(335,330,NULL,127,19,'craft\\elements\\Entry',1,0,'2025-12-04 18:16:24','2026-02-21 23:28:36',NULL,NULL,NULL,'222fdb34-1a29-41da-ab61-45b8804d56cf'),
(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'),
(481,38,NULL,196,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:23:09','2025-12-06 20:23:09',NULL,NULL,NULL,'bf3e20e5-1871-4f1e-bf44-c2fc71532c28'),
(482,358,NULL,197,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:23:07','2025-12-06 20:23:09',NULL,'2025-12-07 08:45:19',NULL,'b5825bee-b612-42df-9bd6-135261526c27'),
(483,411,NULL,198,30,'craft\\elements\\Entry',1,0,'2025-12-06 20:23:07','2025-12-06 20:23:09',NULL,'2025-12-06 20:26:26',NULL,'8d237f97-8581-4b56-85a0-a8a2a8da3463'),
(484,412,NULL,199,23,'craft\\elements\\Entry',1,0,'2025-12-06 20:23:07','2025-12-06 20:23:09',NULL,'2025-12-06 20:26:26',NULL,'f1c0598e-c63b-4b05-84ad-cb0666824f05'),
(486,38,NULL,200,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:24:18','2025-12-06 20:24:18',NULL,NULL,NULL,'abeb7c8c-ab1f-4f3a-8e1d-1054fac39120'),
(487,358,NULL,201,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:24:16','2025-12-06 20:24:18',NULL,'2025-12-07 08:45:19',NULL,'4c1836dd-0247-4ad9-89ed-74fb647b08f5'),
(489,38,NULL,202,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:24:44','2025-12-06 20:24:44',NULL,NULL,NULL,'27d2c3f2-805c-42e1-8149-494b4d00feac'),
(490,358,NULL,203,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:24:43','2025-12-06 20:24:44',NULL,'2025-12-07 08:45:19',NULL,'bbe7e0cf-e17c-4897-a158-f46f38e79557'),
(492,38,NULL,204,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:24:58','2025-12-06 20:24:58',NULL,NULL,NULL,'00b8285c-8f10-4e63-8992-49873158866c'),
(493,358,NULL,205,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:24:57','2025-12-06 20:24:58',NULL,'2025-12-07 08:45:19',NULL,'5ccf0095-5aed-4ec2-bbab-b1ade93604d2'),
(495,38,NULL,206,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:25:12','2025-12-06 20:25:12',NULL,NULL,NULL,'c06b47a3-7ef8-4680-a594-59f80429b6db'),
(496,358,NULL,207,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:25:10','2025-12-06 20:25:12',NULL,'2025-12-07 08:45:19',NULL,'802748b1-c3cb-4712-a135-d7733c8c2473'),
(498,38,NULL,208,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:25:32','2025-12-06 20:25:32',NULL,NULL,NULL,'7e1767a7-57f7-4b26-ab04-43cbf818772d'),
(499,358,NULL,209,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:25:31','2025-12-06 20:25:32',NULL,'2025-12-07 08:45:19',NULL,'8836a0d8-ff71-4abd-b421-bc135ba33407'),
(501,38,NULL,210,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:25:58','2025-12-06 20:25:58',NULL,NULL,NULL,'4c7d01da-467f-4fd6-8366-ded2795179dc'),
(502,358,NULL,211,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:25:57','2025-12-06 20:25:58',NULL,'2025-12-07 08:45:19',NULL,'001cd33b-7c0e-4720-b9a0-9c03bfb5397a'),
(504,38,NULL,212,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:26:27','2025-12-06 20:26:27',NULL,NULL,NULL,'994202d0-00af-410f-830d-68e4f049a53b'),
(505,358,NULL,213,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:26:26','2025-12-06 20:26:27',NULL,'2025-12-07 08:45:19',NULL,'4f3808d5-9c46-4928-85aa-5ce2ce085dea'),
(507,38,NULL,214,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:27:37','2025-12-06 20:27:37',NULL,NULL,NULL,'bb02b5dd-65aa-496a-a998-59798f984c73'),
(508,358,NULL,215,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:27:35','2025-12-06 20:27:37',NULL,'2025-12-07 08:45:19',NULL,'37165706-5efa-4f13-89c1-fb26b667b78e'),
(510,38,NULL,216,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:27:47','2025-12-06 20:27:47',NULL,NULL,NULL,'5595f23d-5cf6-4d69-8d52-578c1caa9227'),
(511,358,NULL,217,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:27:46','2025-12-06 20:27:47',NULL,'2025-12-07 08:45:19',NULL,'be937c09-5cd9-41fa-871b-20486dee14a8'),
(513,38,NULL,218,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:28:39','2025-12-06 20:28:39',NULL,NULL,NULL,'46f86446-3b55-4fa6-bc48-2e6cd4ad64d1'),
(514,358,NULL,219,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:28:37','2025-12-06 20:28:39',NULL,'2025-12-07 08:45:19',NULL,'a814c303-1382-4279-b5e6-3d8db7626a3a'),
(516,38,NULL,220,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:28:57','2025-12-06 20:28:57',NULL,NULL,NULL,'0c7ff6fe-6e67-4b5f-b0b8-970d4220db2d'),
(517,358,NULL,221,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:28:56','2025-12-06 20:28:57',NULL,'2025-12-07 08:45:19',NULL,'2b2aeab9-040d-42c6-8504-6b6b2b72af77'),
(519,38,NULL,222,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:29:08','2025-12-06 20:29:08',NULL,NULL,NULL,'47d0d7dc-a1a1-4110-8275-8b8b6a137dfe'),
(520,358,NULL,223,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:29:07','2025-12-06 20:29:08',NULL,'2025-12-07 08:45:19',NULL,'85aec3d3-a591-46cf-aeb3-ce2e56049a31'),
(522,38,NULL,224,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:29:35','2025-12-06 20:29:36',NULL,NULL,NULL,'ca35e7f4-cf24-4eb0-8d57-33cf96bad3d7'),
(523,358,NULL,225,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:29:34','2025-12-06 20:29:36',NULL,'2025-12-07 08:45:19',NULL,'33de49d0-a121-4a21-af26-cd4ffd75393e'),
(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'),
(531,38,NULL,226,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:22','2025-12-06 20:31:22',NULL,NULL,NULL,'c5fd7b27-6fd1-4fbf-a777-1acfc0834bfb'),
(532,358,NULL,227,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-06 20:31:22',NULL,'2025-12-07 08:45:19',NULL,'374144f4-8019-4df4-9381-a9abf5e3b911'),
(533,359,NULL,228,30,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-06 20:31:22',NULL,'2025-12-07 08:38:43',NULL,'d1700144-2e1b-4acd-a097-ad53f818e28a'),
(534,529,NULL,229,25,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-06 20:31:22',NULL,'2025-12-07 08:32:56',NULL,'9a1014df-81c9-488a-9fd5-ca81c2b52edb'),
(535,395,NULL,230,21,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-06 20:31:22',NULL,'2025-12-07 08:32:56',NULL,'b9557493-a249-4614-a84c-3020b5a95970'),
(536,530,NULL,231,25,'craft\\elements\\Entry',1,0,'2025-12-06 20:31:20','2025-12-06 20:31:22',NULL,'2025-12-07 08:32:56',NULL,'4ed3f602-ab05-4c0e-a9a4-38de8e0a07e0'),
(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'),
(543,38,NULL,232,7,'craft\\elements\\Entry',1,0,'2025-12-06 20:33:05','2025-12-06 20:33:05',NULL,NULL,NULL,'84f39f4f-7f98-4cd6-aadb-c6f7c5744bbb'),
(544,358,NULL,233,20,'craft\\elements\\Entry',1,0,'2025-12-06 20:33:04','2025-12-06 20:33:05',NULL,'2025-12-07 08:45:19',NULL,'fc1bfc5e-0483-49b3-9e59-b08f1989d837'),
(545,359,NULL,234,30,'craft\\elements\\Entry',1,0,'2025-12-06 20:33:04','2025-12-06 20:33:05',NULL,'2025-12-07 08:38:43',NULL,'93d2f803-1799-4368-a0ce-cbd0cd610332'),
(546,542,NULL,235,21,'craft\\elements\\Entry',1,0,'2025-12-06 20:33:04','2025-12-06 20:33:05',NULL,'2025-12-07 08:32:56',NULL,'4a21a871-3a4f-478e-b2e9-d539615a8ad2'),
(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'),
(583,38,NULL,236,7,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,NULL,NULL,'3cb033ce-e264-4111-b677-37da0fb49a4f'),
(584,358,NULL,237,20,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,'2025-12-07 08:45:19',NULL,'2366710c-6cdd-4c92-b734-6304c0e67352'),
(585,578,NULL,238,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,'2025-12-07 08:45:19',NULL,'7aacdfc8-8828-4974-91b5-a82ad2951aa0'),
(586,579,NULL,239,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,'2025-12-07 08:45:19',NULL,'b9d27f91-227f-4001-ab64-1476d5cd9701'),
(587,580,NULL,240,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,'2025-12-07 08:45:19',NULL,'cfe309d0-b832-4378-96e7-feb36c6c804f'),
(588,581,NULL,241,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,'2025-12-07 08:45:19',NULL,'8a677b20-890c-40c3-b588-1ca2d4e08a1d'),
(589,582,NULL,242,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:38:43','2025-12-07 08:38:43',NULL,'2025-12-07 08:45:19',NULL,'4d504ffe-f3b3-45a2-ae00-18180908252d'),
(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','2025-12-07 14:46:22',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'),
(610,38,NULL,243,7,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:18','2025-12-07 08:45:19',NULL,NULL,NULL,'31eb6734-55ab-4fc8-8994-3e17a26a850e'),
(611,604,NULL,244,20,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:18','2025-12-07 08:45:19',NULL,NULL,NULL,'78428940-068f-406f-b519-577a0283f50f'),
(612,605,NULL,245,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:45:19',NULL,'2025-12-07 08:49:11',NULL,'13616d28-28f5-4f40-93b0-382f32b42feb'),
(613,606,NULL,246,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:45:19',NULL,'2025-12-07 08:49:11',NULL,'74f2d0d0-379f-41c4-a93d-224598546772'),
(614,607,NULL,247,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:45:19',NULL,'2025-12-07 08:49:11',NULL,'c872f0ab-29b6-492a-9d5f-1aaafd4917ba'),
(615,608,NULL,248,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:45:19',NULL,'2025-12-07 08:49:11',NULL,'f05d701f-40c9-4212-9987-85c59ba63e86'),
(616,609,NULL,249,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:45:19','2025-12-07 08:45:19',NULL,'2025-12-07 08:49:11',NULL,'2a9faec5-6eb8-4347-9d93-e01cbf3dfa39'),
(619,38,NULL,250,7,'craft\\elements\\Entry',1,0,'2025-12-07 08:46:56','2025-12-07 08:46:56',NULL,NULL,NULL,'cf178c09-64db-4fec-a6f2-df95f2b36574'),
(620,604,NULL,251,20,'craft\\elements\\Entry',1,0,'2025-12-07 08:46:56','2025-12-07 08:46:56',NULL,NULL,NULL,'771b3fff-0b4b-42f0-bf6d-0993c7e3e84c'),
(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'),
(637,38,NULL,252,7,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:49:11',NULL,NULL,NULL,'0cc4d4cb-3b6c-423c-adde-0342c3ff01e5'),
(638,604,NULL,253,20,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:49:11',NULL,NULL,NULL,'aaf57db3-a0fc-42d4-bfc3-54456a9a76ac'),
(639,632,NULL,254,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:49:11',NULL,'2025-12-07 08:52:28',NULL,'98d48526-af56-4646-8fa7-844a5377a384'),
(641,634,NULL,256,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:49:11',NULL,'2025-12-07 08:52:28',NULL,'f3f6eff6-91de-420b-a839-aa2d7e81527e'),
(642,635,NULL,257,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:49:11',NULL,'2025-12-07 08:52:28',NULL,'74c6652d-a511-4e64-94ca-c43ec6c8f0fe'),
(643,636,NULL,258,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:49:11','2025-12-07 08:49:11',NULL,'2025-12-07 08:52:28',NULL,'57e3d258-8199-4d5a-ab5a-ca787312198b'),
(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','2025-12-07 14:46:22',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','2025-12-07 09:17:46',NULL,NULL,NULL,'d5185f23-2984-4ff4-a056-82f3afc1f860'),
(657,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 14:46:22',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'),
(659,38,NULL,259,7,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'93fb665f-1542-4191-810e-3b609d339c9e'),
(660,604,NULL,260,20,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'3ca420c6-d0c5-4c28-8759-21020d7eab19'),
(661,654,NULL,261,30,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'a87231b0-6e0a-433a-a181-6dd66588f658'),
(662,655,NULL,262,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'4f5c5f8b-8f23-4214-b429-843ccfe0380a'),
(663,656,NULL,263,22,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'c905a7b8-77ed-4116-8c62-98b863e65b3c'),
(664,657,NULL,264,21,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'dee7620f-6570-4d3f-9123-1c56bc46a9e7'),
(665,658,NULL,265,31,'craft\\elements\\Entry',1,0,'2025-12-07 08:52:28','2025-12-07 08:52:28',NULL,NULL,NULL,'3cd00b6d-2723-4fe7-a3c3-36a24502e2eb'),
(670,38,NULL,266,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:14:30','2025-12-07 09:14:30',NULL,NULL,NULL,'abea6aec-f28a-4879-9a12-01a9868b5c37'),
(671,604,NULL,267,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:14:30','2025-12-07 09:14:30',NULL,NULL,NULL,'618b59dc-a14b-4390-afc9-2de7ea1e6577'),
(672,654,NULL,268,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:14:30','2025-12-07 09:14:30',NULL,NULL,NULL,'f7bac8c5-45ed-49f0-b8f3-b8601cbd7b4b'),
(673,657,NULL,269,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:14:30','2025-12-07 09:14:30',NULL,NULL,NULL,'78230a3a-69f2-4a2a-8bd3-71ef245f2806'),
(678,38,NULL,270,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:15:44','2025-12-07 09:15:44',NULL,NULL,NULL,'857071c4-2e45-4889-8710-c049b5b54d32'),
(679,604,NULL,271,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:15:44','2025-12-07 09:15:44',NULL,NULL,NULL,'69ac15f9-2844-4499-9eb5-9f00d644a01f'),
(680,654,NULL,272,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:15:44','2025-12-07 09:15:44',NULL,NULL,NULL,'5bc09c38-1188-4db8-ac41-c7d092d1f28a'),
(681,657,NULL,273,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:15:44','2025-12-07 09:15:44',NULL,NULL,NULL,'cca156f7-702f-4d7b-aaaf-dfe92a3d2a7b'),
(686,38,NULL,274,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:16:47','2025-12-07 09:16:47',NULL,NULL,NULL,'f6f90308-8cad-45fc-a067-9323f1bdeb4c'),
(687,604,NULL,275,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:16:47','2025-12-07 09:16:47',NULL,NULL,NULL,'16702222-e860-4249-972c-ba93fa3bb51e'),
(688,654,NULL,276,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:16:47','2025-12-07 09:16:47',NULL,NULL,NULL,'d49a45de-def2-4b57-8c58-995bf13492a0'),
(689,656,NULL,277,22,'craft\\elements\\Entry',1,0,'2025-12-07 09:16:47','2025-12-07 09:16:47',NULL,NULL,NULL,'d1c30824-0f13-4d44-9e74-2db73ccbfb64'),
(695,38,NULL,278,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2025-12-07 09:17:46',NULL,NULL,NULL,'c08c6f28-c5c7-4b62-a2f9-08fb103d8900'),
(696,604,NULL,279,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2025-12-07 09:17:46',NULL,NULL,NULL,'6905c126-31aa-4315-a0ab-05b323c65f54'),
(697,654,NULL,280,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2025-12-07 09:17:46',NULL,NULL,NULL,'ef9ff21b-6293-477d-80d5-1d5f024091d3'),
(698,655,NULL,281,31,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2025-12-07 09:17:46',NULL,NULL,NULL,'b7b78920-ea0f-4a7b-a589-63a2bf39faa9'),
(699,656,NULL,282,22,'craft\\elements\\Entry',1,0,'2025-12-07 09:17:46','2025-12-07 09:17:46',NULL,NULL,NULL,'9367df27-8f1b-49f1-a596-97f1c7c1b9d2'),
(704,38,NULL,283,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:04','2025-12-07 09:19:05',NULL,NULL,NULL,'9d9e123a-3d80-4c7f-8bed-d660d2eaf0e6'),
(705,604,NULL,284,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:04','2025-12-07 09:19:05',NULL,NULL,NULL,'427e0707-5dac-437c-a936-9f3a3d5999b6'),
(706,654,NULL,285,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:04','2025-12-07 09:19:05',NULL,NULL,NULL,'1f669431-a795-4d10-8daa-0a6db42a891f'),
(707,657,NULL,286,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:04','2025-12-07 09:19:05',NULL,NULL,NULL,'08642046-8d8b-459c-a483-d399e524a586'),
(712,38,NULL,287,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:34','2025-12-07 09:19:34',NULL,NULL,NULL,'8e61722f-e1d6-4ff7-a4b5-d490e5af6c0b'),
(713,604,NULL,288,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:34','2025-12-07 09:19:34',NULL,NULL,NULL,'1029cc07-a91b-4392-bed0-7c076fadf7fc'),
(714,654,NULL,289,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:34','2025-12-07 09:19:34',NULL,NULL,NULL,'a8f373dc-2f87-4084-bb52-a0867400f5ba'),
(715,657,NULL,290,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:19:34','2025-12-07 09:19:34',NULL,NULL,NULL,'34df1129-73e4-4787-b172-44e4b7b3f1a1'),
(720,38,NULL,291,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:21:46','2025-12-07 09:21:46',NULL,NULL,NULL,'fbe07cd5-745b-4909-a893-75bcc0b4b879'),
(721,604,NULL,292,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:21:46','2025-12-07 09:21:46',NULL,NULL,NULL,'dacfbd5f-8a3e-4590-988b-65ad67fd8ec8'),
(722,654,NULL,293,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:21:46','2025-12-07 09:21:46',NULL,NULL,NULL,'8315b321-42ee-429e-94df-446555557bef'),
(723,657,NULL,294,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:21:46','2025-12-07 09:21:46',NULL,NULL,NULL,'60dff6c3-35ab-4021-9d1e-4dc4a2bf07f4'),
(728,38,NULL,295,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:08','2025-12-07 09:22:08',NULL,NULL,NULL,'bc2ce62a-f831-4789-bc54-af0c1b947589'),
(729,604,NULL,296,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:08','2025-12-07 09:22:08',NULL,NULL,NULL,'2698586b-1935-4758-a956-6656f46fec98'),
(730,654,NULL,297,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:08','2025-12-07 09:22:08',NULL,NULL,NULL,'d349bdcd-472f-44b8-9365-952204615f9c'),
(731,657,NULL,298,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:08','2025-12-07 09:22:08',NULL,NULL,NULL,'97f78751-88a0-4788-bc23-e940c70a1227'),
(736,38,NULL,299,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:31','2025-12-07 09:22:31',NULL,NULL,NULL,'7512bc3b-9320-4d54-9ae6-b9daa61d227f'),
(737,604,NULL,300,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:31','2025-12-07 09:22:31',NULL,NULL,NULL,'be05296e-ac7c-4147-a694-a602c98752fb'),
(738,654,NULL,301,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:31','2025-12-07 09:22:31',NULL,NULL,NULL,'956862bc-5a54-4416-a09c-4b233845144b'),
(739,657,NULL,302,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:22:31','2025-12-07 09:22:31',NULL,NULL,NULL,'9b126bc4-e548-47de-b76c-97936067190e'),
(744,38,NULL,303,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:23:03','2025-12-07 09:23:03',NULL,NULL,NULL,'0135b559-d3b6-43d4-8f70-df51057a6733'),
(745,604,NULL,304,20,'craft\\elements\\Entry',1,0,'2025-12-07 09:23:03','2025-12-07 09:23:03',NULL,NULL,NULL,'6d3e6c91-ad0c-4581-a62a-f092c87304f5'),
(746,654,NULL,305,30,'craft\\elements\\Entry',1,0,'2025-12-07 09:23:03','2025-12-07 09:23:03',NULL,NULL,NULL,'cb8e52a2-50cd-448e-9344-80e15c2e2fd3'),
(747,657,NULL,306,21,'craft\\elements\\Entry',1,0,'2025-12-07 09:23:03','2025-12-07 09:23:03',NULL,NULL,NULL,'e0e55603-f236-464f-b7e0-48666885e1cb'),
(750,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2025-12-07 09:27:22','2025-12-07 09:27:22',NULL,NULL,NULL,'10b4054d-e517-4460-8755-d0790c0d2cb7'),
(751,38,NULL,307,7,'craft\\elements\\Entry',1,0,'2025-12-07 09:27:22','2025-12-07 09:27:22',NULL,NULL,NULL,'dcaa125d-d2dd-44ae-8194-88f536f4a689'),
(752,750,NULL,308,8,'craft\\elements\\Entry',1,0,'2025-12-07 09:27:22','2025-12-07 09:27:22',NULL,NULL,NULL,'9d289000-2f6d-4563-9abd-cfdccf0b807c'),
(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-02-21 23:28:35',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','2025-12-07 14:22:11',NULL,NULL,NULL,'55d4dfd8-3fab-4580-abc3-ee3ac784c90c'),
(764,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:22:11',NULL,NULL,NULL,'8a6b5c32-7f75-4729-a143-a9fa699322eb'),
(765,38,NULL,309,7,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:22:11',NULL,NULL,NULL,'6626f892-112e-4630-bf5b-b78bf1e1f7cd'),
(766,761,NULL,310,32,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:22:11',NULL,NULL,NULL,'e231487e-6fb2-4f9e-a3a6-47d39df74096'),
(767,762,NULL,311,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:22:11',NULL,'2025-12-07 14:46:22',NULL,'e3232118-0bd9-49ab-97c7-6a74ee30bd01'),
(768,763,NULL,312,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:22:11',NULL,NULL,NULL,'9b0b9b95-4ee6-495f-b039-0e8923a78ebc'),
(769,764,NULL,313,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:22:11','2025-12-07 14:22:11',NULL,NULL,NULL,'5c6cfb23-b623-4e5f-b27d-269815b3005f'),
(771,38,NULL,314,7,'craft\\elements\\Entry',1,0,'2025-12-07 14:26:23','2025-12-07 14:26:23',NULL,NULL,NULL,'0b46cab2-ea10-4ad7-8581-3bce7646454b'),
(774,NULL,NULL,NULL,9,'craft\\elements\\Entry',1,0,'2025-12-07 14:35:29','2025-12-07 14:35:29',NULL,NULL,NULL,'5216b412-e1b4-4bd5-b5fe-e967cfa67ee4'),
(775,38,NULL,315,7,'craft\\elements\\Entry',1,0,'2025-12-07 14:35:29','2025-12-07 14:35:29',NULL,NULL,NULL,'f2748ebd-2cb2-4e04-ba38-d3fd61e607fd'),
(776,774,NULL,316,9,'craft\\elements\\Entry',1,0,'2025-12-07 14:35:29','2025-12-07 14:35:29',NULL,NULL,NULL,'2a81e4e2-380d-4449-b40e-721848108580'),
(785,NULL,NULL,NULL,20,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',NULL,NULL,NULL,'ffc02c5c-177c-477d-8fa1-fe5a3f11c060'),
(786,NULL,NULL,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',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','2025-12-07 14:39:53',NULL,NULL,NULL,'d563b0fc-e414-4b2a-acc4-2536cf9d2534'),
(789,NULL,NULL,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',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'),
(791,38,NULL,317,7,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',NULL,NULL,NULL,'1858685b-ca0e-483f-b09a-90c428f3b6f0'),
(792,143,NULL,318,4,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',NULL,NULL,NULL,'afdb4ce7-9f28-4c4b-9b1d-ebdfb2f47f80'),
(793,785,NULL,319,20,'craft\\elements\\Entry',1,0,'2025-12-07 14:39:53','2025-12-07 14:39:53',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','2025-12-07 14:46:22',NULL,NULL,NULL,'e96b7872-8546-40e7-9455-b4f50cfd2266'),
(807,38,NULL,325,7,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2025-12-07 14:46:22',NULL,NULL,NULL,'1fe27584-0536-4388-a614-c57ed9217b2a'),
(808,604,NULL,326,20,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2025-12-07 14:46:22',NULL,NULL,NULL,'9c753569-f638-4926-a929-e923f56a8538'),
(809,654,NULL,327,30,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2025-12-07 14:46:22',NULL,NULL,NULL,'690db84e-3dba-4380-9c82-cd9b3ad30c81'),
(810,657,NULL,328,21,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2025-12-07 14:46:22',NULL,NULL,NULL,'7f1a25d1-c845-4b05-bb8f-113c1530138e'),
(811,761,NULL,329,32,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2025-12-07 14:46:22',NULL,NULL,NULL,'f44e99b7-1b67-4927-b7e7-e5f5c1dd957e'),
(812,806,NULL,330,3,'craft\\elements\\Entry',1,0,'2025-12-07 14:46:22','2025-12-07 14:46:22',NULL,NULL,NULL,'ce07abff-082f-419d-a158-4db6b5910dc7'),
(815,38,NULL,331,7,'craft\\elements\\Entry',1,0,'2025-12-08 10:02:18','2025-12-08 10:02:18',NULL,NULL,NULL,'d65827cf-0b65-4697-a940-55b946da5883'),
(816,143,NULL,332,4,'craft\\elements\\Entry',1,0,'2025-12-08 10:02:18','2025-12-08 10:02:18',NULL,NULL,NULL,'21686c55-5b92-432c-a078-0db1dc9425b5'),
(819,38,NULL,333,7,'craft\\elements\\Entry',1,0,'2025-12-08 10:03:28','2025-12-08 10:03:28',NULL,NULL,NULL,'cc241c0b-6528-411b-a9be-390d83ed87fc'),
(820,143,NULL,334,4,'craft\\elements\\Entry',1,0,'2025-12-08 10:03:28','2025-12-08 10:03:28',NULL,NULL,NULL,'b110d454-1d35-4ec8-96a6-5af089fea5e7'),
(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'),
(824,38,NULL,335,7,'craft\\elements\\Entry',1,0,'2025-12-08 10:05:39','2025-12-08 10:05:39',NULL,NULL,NULL,'eb51fc99-4700-4760-b916-ee1da603ba31'),
(825,143,NULL,336,4,'craft\\elements\\Entry',1,0,'2025-12-08 10:05:39','2025-12-08 10:05:39',NULL,NULL,NULL,'c05c4c42-10da-4035-a23a-6212010e85f7'),
(828,38,NULL,337,7,'craft\\elements\\Entry',1,0,'2025-12-08 10:15:20','2025-12-08 10:15:20',NULL,NULL,NULL,'f6be606b-40a3-4152-8695-740a347b2b58'),
(829,143,NULL,338,4,'craft\\elements\\Entry',1,0,'2025-12-08 10:15:20','2025-12-08 10:15:20',NULL,NULL,NULL,'d33f4b75-02c6-48f2-949a-a6f85b597bdb'),
(832,38,NULL,339,7,'craft\\elements\\Entry',1,0,'2025-12-08 10:15:37','2025-12-08 10:15:37',NULL,NULL,NULL,'854f4f6d-3a3e-4d47-ba3b-f9b320ba8dde'),
(833,143,NULL,340,4,'craft\\elements\\Entry',1,0,'2025-12-08 10:15:37','2025-12-08 10:15:37',NULL,NULL,NULL,'af9adad6-b603-4262-a9ef-2beb39579587'),
(834,604,348,NULL,20,'craft\\elements\\Entry',1,0,'2025-12-08 10:17:13','2025-12-08 10:20:02',NULL,NULL,NULL,'8a3415c0-576d-4234-9462-603e0de7a3e4'),
(835,654,349,NULL,30,'craft\\elements\\Entry',1,0,'2025-12-08 10:20:59','2025-12-08 10:21:06',NULL,NULL,NULL,'f4f46d50-ad48-4e63-ba22-bd58cd441f54'),
(836,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-08 10:21:00','2025-12-08 10:21:06',NULL,NULL,NULL,'98ee03a4-f661-4069-98ca-c5d4e2fba848'),
(837,657,351,NULL,21,'craft\\elements\\Entry',1,0,'2025-12-08 10:22:58','2025-12-08 10:23:38',NULL,NULL,NULL,'ce9b1bab-ec40-49ce-bc21-eee9ce187ce4'),
(838,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2025-12-08 10:23:22','2025-12-08 10:23:38',NULL,NULL,NULL,'66e223df-26c3-4918-bb77-5eac8b9b724b'),
(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-02-02 19:00:14',NULL,NULL,NULL,'1fc1dfff-ad1f-4ae0-8da6-33366f3e6736'),
(844,38,NULL,342,7,'craft\\elements\\Entry',1,0,'2026-02-02 19:00:14','2026-02-02 19:00:14',NULL,NULL,NULL,'8fcc0947-8274-4138-a062-fe15fca7f74d'),
(845,843,NULL,343,33,'craft\\elements\\Entry',1,0,'2026-02-02 19:00:14','2026-02-02 19:00:14',NULL,NULL,NULL,'f90ce46f-bbe3-4eb2-a819-5d4cda5fb7d2'),
(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'),
(851,38,NULL,344,7,'craft\\elements\\Entry',1,0,'2026-02-03 08:44:56','2026-02-03 08:44:56',NULL,NULL,NULL,'a96170e5-7ea9-4c05-8d9c-2c594bb714b8'),
(852,849,NULL,345,34,'craft\\elements\\Entry',1,0,'2026-02-03 08:44:56','2026-02-03 08:44:56',NULL,'2026-02-03 08:58:31',NULL,'4806fc2f-f09a-4d22-a2a6-557a00d56308'),
(853,850,NULL,346,3,'craft\\elements\\Entry',1,0,'2026-02-03 08:44:56','2026-02-03 08:44:56',NULL,'2026-02-03 08:58:31',NULL,'b206b266-100f-446b-96ea-3902e605f9d4'),
(857,38,NULL,347,7,'craft\\elements\\Entry',1,0,'2026-02-03 08:48:06','2026-02-03 08:48:06',NULL,NULL,NULL,'68ea98dd-cf88-4390-8a79-ecd20e00b437'),
(858,849,NULL,348,34,'craft\\elements\\Entry',1,0,'2026-02-03 08:48:06','2026-02-03 08:48:06',NULL,'2026-02-03 08:58:31',NULL,'ca2085e8-0743-49cf-a5c5-3bd15161cc7c'),
(859,850,NULL,349,3,'craft\\elements\\Entry',1,0,'2026-02-03 08:48:06','2026-02-03 08:48:06',NULL,'2026-02-03 08:58:31',NULL,'91be99cd-e058-4f37-88fe-f16f3b27aee1'),
(867,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2026-02-03 08:58:31','2026-02-03 08:58:31',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-02-03 08:58:31',NULL,NULL,NULL,'a61548d2-f020-4b83-aab1-4b1c85d8b382'),
(869,38,NULL,350,7,'craft\\elements\\Entry',1,0,'2026-02-03 08:58:31','2026-02-03 08:58:31',NULL,NULL,NULL,'aec5362b-6a5c-4c27-bbae-43511c1fc825'),
(870,867,NULL,351,34,'craft\\elements\\Entry',1,0,'2026-02-03 08:58:31','2026-02-03 08:58:31',NULL,NULL,NULL,'869da9a4-d74b-411b-bab0-3581de090b59'),
(871,868,NULL,352,3,'craft\\elements\\Entry',1,0,'2026-02-03 08:58:31','2026-02-03 08:58:31',NULL,NULL,NULL,'7ceaefc5-e54e-46f4-8208-84bb21fb28f4'),
(878,NULL,NULL,NULL,17,'craft\\elements\\Entry',1,0,'2026-02-05 07:59:45','2026-02-05 07:59:45',NULL,NULL,NULL,'83fa21a6-1064-40e2-8653-b9974255171b'),
(879,38,NULL,353,7,'craft\\elements\\Entry',1,0,'2026-02-05 07:59:45','2026-02-05 07:59:45',NULL,NULL,NULL,'0783e4e6-793f-4fd5-803b-5a42f0922b6c'),
(880,274,NULL,354,16,'craft\\elements\\Entry',1,0,'2026-02-05 07:59:45','2026-02-05 07:59:45',NULL,NULL,NULL,'1974910d-c23e-4fc3-8010-9741eed8eab9'),
(881,878,NULL,355,17,'craft\\elements\\Entry',1,0,'2026-02-05 07:59:45','2026-02-05 07:59:45',NULL,NULL,NULL,'7d55fadb-71c6-4cd2-b48c-b8345c4d7d35'),
(884,38,NULL,356,7,'craft\\elements\\Entry',1,0,'2026-02-05 08:00:00','2026-02-05 08:00:00',NULL,NULL,NULL,'c0c12778-30ff-4fba-9d05-5f229572c48e'),
(885,274,NULL,357,16,'craft\\elements\\Entry',1,0,'2026-02-05 08:00:00','2026-02-05 08:00:00',NULL,NULL,NULL,'de8bfbcf-83db-4b65-985c-6429d79225fb'),
(886,276,NULL,358,17,'craft\\elements\\Entry',1,0,'2026-02-05 08:00:00','2026-02-05 08:00:00',NULL,NULL,NULL,'89ef3bfe-f36f-4c36-97a7-4b832659dfaa'),
(887,NULL,NULL,NULL,7,'craft\\elements\\Entry',1,0,'2026-02-08 09:03:29','2026-02-08 09:29:50',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-02-08 09:21:58',NULL,NULL,NULL,'4662ca92-26a8-45c4-a16b-4a7e9ab15767'),
(902,NULL,NULL,NULL,33,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,NULL,NULL,'f27a52fc-20aa-4141-bad0-d2e83e324f5b'),
(903,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,NULL,NULL,'d1a06cad-d68b-420f-947a-0ce11d77d94d'),
(904,NULL,NULL,NULL,3,'craft\\elements\\Entry',1,0,'2026-02-08 09:21:58','2026-02-08 09:21:58',NULL,NULL,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,NULL,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,NULL,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,NULL,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,NULL,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-02-24 14:00:57',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'),
(915,117,NULL,371,6,'craft\\elements\\Entry',1,0,'2026-02-08 10:19:31','2026-02-08 10:19:31',NULL,'2026-03-02 22:06:21',NULL,'955b24db-ffbc-43d2-b860-5f20ba6936b1'),
(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'),
(920,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:07:05','2026-02-21 15:13:00',NULL,'2026-02-21 15:13:00',NULL,'b0ad1266-894c-40c4-9d29-3c032b1ac5c2'),
(921,117,NULL,372,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:07:05','2026-02-21 15:07:05',NULL,'2026-03-02 22:06:21',NULL,'5f401ba9-2240-4b0b-8aa9-f82aa545e0f0'),
(922,920,NULL,373,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:07:05','2026-02-21 15:07:05',NULL,'2026-02-21 15:13:00',NULL,'924f26b2-d167-445a-93c8-e12a6de8208d'),
(926,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:13:00','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'33000599-1fbb-48e1-a2d3-a84fc118e563'),
(927,117,NULL,374,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:13:00','2026-02-21 15:13:00',NULL,'2026-03-02 22:06:21',NULL,'4778e375-c7cd-485a-9e92-a0873f4ba120'),
(928,926,NULL,375,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:13:00','2026-02-21 15:13:00',NULL,'2026-03-02 22:06:21',NULL,'c148f346-532e-4ef8-8aca-f49bc6648441'),
(931,117,NULL,376,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:15:35','2026-02-21 15:15:35',NULL,'2026-03-02 22:06:21',NULL,'2b09ccaf-11e9-400d-b83d-1413aa0c8cb4'),
(932,926,NULL,377,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:15:35','2026-02-21 15:15:35',NULL,'2026-03-02 22:06:21',NULL,'61c4c717-c668-4471-bd58-ccbabdebb641'),
(935,117,NULL,378,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:17:06','2026-02-21 15:17:06',NULL,'2026-03-02 22:06:21',NULL,'283624b8-407a-43fc-90cf-459ccce261e5'),
(936,926,NULL,379,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:17:06','2026-02-21 15:17:06',NULL,'2026-03-02 22:06:21',NULL,'6911f1c6-3074-4b87-96a0-43594b09f056'),
(939,117,NULL,380,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:18:34','2026-02-21 15:18:34',NULL,'2026-03-02 22:06:21',NULL,'aefb18a9-3888-4fe3-8cdf-cff56eb0c31a'),
(940,926,NULL,381,39,'craft\\elements\\Entry',1,0,'2026-02-21 15:18:34','2026-02-21 15:18:34',NULL,'2026-03-02 22:06:21',NULL,'46200f3e-8acd-4a85-a4e9-7409416d870a'),
(945,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'bb38e627-f15c-488f-bf72-bc1aca69b37c'),
(946,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'547fd377-0ffd-4f67-8a9a-381a8b5bc48b'),
(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'),
(948,117,NULL,382,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-02-21 15:32:54',NULL,'2026-03-02 22:06:21',NULL,'7b904003-c2b6-49be-958a-f564a9f2a098'),
(949,945,NULL,383,36,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-02-21 15:32:54',NULL,'2026-03-02 22:06:21',NULL,'fa32d1c5-3a7c-40c2-bfbd-b20426aa1112'),
(950,946,NULL,384,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:32:54','2026-02-21 15:32:54',NULL,'2026-03-02 22:06:21',NULL,'aeeff2f6-d203-413a-b487-48f33ec4031f'),
(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'),
(960,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'795ce5ff-3cee-4efd-b57a-6de6e8f2ca2d'),
(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'),
(962,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'78df3b94-9f4f-4662-a941-ce118354d25c'),
(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'),
(964,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'7e6159b1-17cc-4c2c-8ec0-fe2be361510d'),
(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'),
(966,117,NULL,386,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,'2026-03-02 22:06:21',NULL,'481dce37-41b1-4de2-b68a-16f1e23e6f93'),
(967,945,NULL,387,36,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,'2026-03-02 22:06:21',NULL,'e0204a6b-1d24-4922-a15b-4faf7dcf38cb'),
(968,960,NULL,388,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,'2026-03-02 22:06:21',NULL,'68929bd3-be05-4c4b-a363-91e5d0fb5634'),
(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'),
(970,962,NULL,390,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,'2026-03-02 22:06:21',NULL,'9a2415fc-bdd0-4619-a3f6-1efdf7aaa5ac'),
(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'),
(972,964,NULL,392,37,'craft\\elements\\Entry',1,0,'2026-02-21 15:33:15','2026-02-21 15:33:15',NULL,'2026-03-02 22:06:21',NULL,'75bd9441-960a-490d-a98a-f4356bfcd863'),
(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'),
(976,117,NULL,394,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:39:55','2026-02-21 15:39:55',NULL,'2026-03-02 22:06:21',NULL,'76b12246-be8b-4b4f-a169-e04de3981136'),
(977,945,NULL,395,36,'craft\\elements\\Entry',1,0,'2026-02-21 15:39:55','2026-02-21 15:39:55',NULL,'2026-03-02 22:06:21',NULL,'853f9477-405e-40f9-bd9a-d8613713a12c'),
(984,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'00bb9160-30c1-4729-9883-c9f35102b61c'),
(985,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'2db83b86-d846-4fd5-84db-60a20b5e2051'),
(986,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'70cc4f84-1bd8-49ea-a42f-a238cc33c121'),
(987,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'7c3dc6aa-e65d-408e-b131-88c341cd897b'),
(988,117,NULL,396,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-02-21 15:44:00',NULL,'2026-03-02 22:06:21',NULL,'e3ee2841-65a2-406e-892e-6bcf9a8d8f0a'),
(989,945,NULL,397,36,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-02-21 15:44:00',NULL,'2026-03-02 22:06:21',NULL,'1254d349-613c-450f-a986-e6a03ed9aed1'),
(990,984,NULL,398,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-02-21 15:44:00',NULL,'2026-03-02 22:06:21',NULL,'f0390ae1-48a8-4719-b5b9-ea0e7bf35358'),
(991,985,NULL,399,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-02-21 15:44:00',NULL,'2026-03-02 22:06:21',NULL,'4c0f913c-f711-404d-b87c-d328d51be555'),
(992,986,NULL,400,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-02-21 15:44:00',NULL,'2026-03-02 22:06:21',NULL,'fdb6ae7b-3c37-4d37-a266-050b4b1e20be'),
(993,987,NULL,401,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:44:00','2026-02-21 15:44:00',NULL,'2026-03-02 22:06:21',NULL,'b97f2947-c0ea-4a40-848a-857f7e2d8342'),
(997,117,NULL,402,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:46:44','2026-02-21 15:46:44',NULL,'2026-03-02 22:06:21',NULL,'0ef7ec66-f9b1-4500-8f34-59cc428c5507'),
(998,945,NULL,403,36,'craft\\elements\\Entry',1,0,'2026-02-21 15:46:44','2026-02-21 15:46:44',NULL,'2026-03-02 22:06:21',NULL,'978829c7-1cf0-4c08-a559-22cb35ccb473'),
(999,984,NULL,404,38,'craft\\elements\\Entry',1,0,'2026-02-21 15:46:44','2026-02-21 15:46:44',NULL,'2026-03-02 22:06:21',NULL,'dd4ece0a-45d5-41e4-9679-ebe67274b43e'),
(1002,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-02-21 15:48:30','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'b7f02106-fca2-47c3-9a25-c93378a6f7af'),
(1003,117,NULL,405,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:48:30','2026-02-21 15:48:30',NULL,'2026-03-02 22:06:21',NULL,'e46370f8-bb7e-4eb6-a3e5-e73661049a0a'),
(1004,1002,NULL,406,41,'craft\\elements\\Entry',1,0,'2026-02-21 15:48:30','2026-02-21 15:48:30',NULL,'2026-03-02 22:06:21',NULL,'1a90ac5c-8609-41d7-b477-488224874d47'),
(1011,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'9c9af2eb-0896-4831-813a-112d1f7e01ab'),
(1012,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'b989d688-3c51-4e2b-949b-798d75065a56'),
(1013,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'8246cd1d-8afd-455c-b62e-7a45eadff159'),
(1014,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'9491874a-83a4-4716-9ba1-230e47453598'),
(1015,117,NULL,407,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-02-21 15:50:56',NULL,'2026-03-02 22:06:21',NULL,'613dd55a-4df6-4812-afad-ee608ef85713'),
(1016,1002,NULL,408,41,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-02-21 15:50:57',NULL,'2026-03-02 22:06:21',NULL,'3b27c2c8-3cbc-4bc7-b60e-8f6b251d49ee'),
(1017,1011,NULL,409,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-02-21 15:50:57',NULL,'2026-03-02 22:06:21',NULL,'1ba397b1-7a05-4b04-a942-4332c477c6d0'),
(1018,1012,NULL,410,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-02-21 15:50:57',NULL,'2026-03-02 22:06:21',NULL,'71a65579-3861-4ce1-943f-2602e3fccdbe'),
(1019,1013,NULL,411,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-02-21 15:50:57',NULL,'2026-03-02 22:06:21',NULL,'3a7a33a3-0179-4409-8254-8914792d73eb'),
(1020,1014,NULL,412,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:50:56','2026-02-21 15:50:57',NULL,'2026-03-02 22:06:21',NULL,'8c542169-bddc-43a5-806c-422cc9ba6974'),
(1024,117,NULL,413,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:51:33','2026-02-21 15:51:33',NULL,'2026-03-02 22:06:21',NULL,'4c985f51-a185-4d73-8f17-d770c1b1002e'),
(1025,1002,NULL,414,41,'craft\\elements\\Entry',1,0,'2026-02-21 15:51:33','2026-02-21 15:51:33',NULL,'2026-03-02 22:06:21',NULL,'3e2bb4fe-41a1-46b3-b0cb-e41667df5945'),
(1026,1011,NULL,415,40,'craft\\elements\\Entry',1,0,'2026-02-21 15:51:33','2026-02-21 15:51:33',NULL,'2026-03-02 22:06:21',NULL,'814c9ccd-3f6d-4d58-9c64-05906108fc36'),
(1029,117,NULL,416,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:52:04','2026-02-21 15:52:04',NULL,'2026-03-02 22:06:21',NULL,'9f7d92bf-98f0-4647-91a9-8c91e02e9f56'),
(1030,1002,NULL,417,41,'craft\\elements\\Entry',1,0,'2026-02-21 15:52:04','2026-02-21 15:52:04',NULL,'2026-03-02 22:06:21',NULL,'a9c40851-921c-410a-b7c9-d5a89c714cd0'),
(1033,117,NULL,418,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:52:58','2026-02-21 15:52:58',NULL,'2026-03-02 22:06:21',NULL,'29052e68-02f7-441d-b9b9-50fe9b050d3f'),
(1034,1002,NULL,419,41,'craft\\elements\\Entry',1,0,'2026-02-21 15:52:58','2026-02-21 15:52:58',NULL,'2026-03-02 22:06:21',NULL,'4378e505-3e33-4c6c-8456-cc4fc7d61656'),
(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'),
(1038,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-21 15:57:52','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'7e5fcf48-005e-483c-b799-b7f5f97e85f9'),
(1039,117,NULL,420,6,'craft\\elements\\Entry',1,0,'2026-02-21 15:57:52','2026-02-21 15:57:52',NULL,'2026-03-02 22:06:21',NULL,'e6d390f0-4ac7-4bae-9186-bbb638caba55'),
(1040,1038,NULL,421,42,'craft\\elements\\Entry',1,0,'2026-02-21 15:57:52','2026-02-21 15:57:52',NULL,'2026-03-02 22:06:21',NULL,'a7e730b2-30ad-4951-be18-4e4390bf78de'),
(1043,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-02-21 16:00:47','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'8253874b-f481-43b7-a9c3-bab1be51b7bb'),
(1044,117,NULL,422,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:00:47','2026-02-21 16:00:47',NULL,'2026-03-02 22:06:21',NULL,'fff0442b-45a7-4069-9fd7-28b3df617079'),
(1045,1043,NULL,423,43,'craft\\elements\\Entry',1,0,'2026-02-21 16:00:47','2026-02-21 16:00:47',NULL,'2026-03-02 22:06:21',NULL,'bb07bdfe-12f0-469c-b20d-5926e72d0637'),
(1048,117,NULL,424,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:01:12','2026-02-21 16:01:13',NULL,'2026-03-02 22:06:21',NULL,'cb4d4578-b323-4e64-92ed-fef3a7502290'),
(1049,1043,NULL,425,43,'craft\\elements\\Entry',1,0,'2026-02-21 16:01:12','2026-02-21 16:01:13',NULL,'2026-03-02 22:06:21',NULL,'16095d70-157e-480a-925b-b06556358e53'),
(1052,117,NULL,426,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:07:21','2026-02-21 16:07:21',NULL,'2026-03-02 22:06:21',NULL,'fa975ad1-7145-4266-acc0-dee34e892c1c'),
(1053,1043,NULL,427,43,'craft\\elements\\Entry',1,0,'2026-02-21 16:07:21','2026-02-21 16:07:21',NULL,'2026-03-02 22:06:21',NULL,'b637c210-8faf-44ab-a361-ed5df6b19394'),
(1057,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-02-21 16:08:29','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'0bcfd83f-925c-401e-b5a8-b532dbf42457'),
(1058,117,NULL,428,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:08:29','2026-02-21 16:08:29',NULL,'2026-03-02 22:06:21',NULL,'872aea89-f3d5-4f83-9ebb-bf9786b693eb'),
(1059,1057,NULL,429,8,'craft\\elements\\Entry',1,0,'2026-02-21 16:08:29','2026-02-21 16:08:29',NULL,'2026-03-02 22:06:21',NULL,'ac6dbc65-d6a2-49e0-b591-de6397a8e6a5'),
(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'),
(1062,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:12:14','2026-02-21 16:18:04',NULL,'2026-02-21 16:18:04',NULL,'e7acde2d-5fad-4495-9e94-3b60043b608c'),
(1063,117,NULL,430,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:12:13','2026-02-21 16:12:14',NULL,'2026-03-02 22:06:21',NULL,'a20a769e-cf93-403b-9f0a-3daba613b4dc'),
(1064,1062,NULL,431,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:12:14','2026-02-21 16:12:14',NULL,'2026-02-21 16:18:04',NULL,'66d37338-1337-4a12-af08-9a36f502eeca'),
(1075,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'5a05180b-ec6c-4e94-984c-9cd764fad259'),
(1076,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'d12e5a84-8f30-4510-beab-9d8980063c52'),
(1077,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'c29664b3-27a5-4fd1-91dc-190e49398d41'),
(1078,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'b089ff7b-5ca8-4a35-8c15-a3ed59f8aca9'),
(1079,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'df4466e3-a160-440a-90ad-ee1446dcfde3'),
(1080,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'538b4cdc-cf5f-4afc-b205-359cb7a359a7'),
(1081,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'b43066a1-5148-4789-942e-4e4ac900ad2a'),
(1082,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'e1a2d9c5-e462-4ccd-aa4f-e9bd7d71d770'),
(1083,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'3d0e8370-32d6-4d3a-87fc-874a697b6640'),
(1084,117,NULL,432,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'2a891483-7dc3-4122-9750-0a435e923b57'),
(1085,1075,NULL,433,44,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'f77d375d-074c-4f47-b18d-f6d15ad18652'),
(1086,1076,NULL,434,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'6f8fa4f3-6112-4279-abb0-20d6622674f7'),
(1087,1077,NULL,435,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'b9bd5ab5-61ab-4a34-b11f-61f477113520'),
(1088,1078,NULL,436,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'36ced2c4-9e87-4e52-a0f6-85e947d52a03'),
(1089,1079,NULL,437,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'5416925b-61dc-48aa-b11f-d25d68d83615'),
(1090,1080,NULL,438,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'8be47877-a1c2-4e94-9177-76d40bf295d8'),
(1091,1081,NULL,439,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'d5f09008-7140-4ba2-ba24-bdb68b6fd190'),
(1092,1082,NULL,440,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'78b68e90-e649-485a-b3a2-9caaead3f953'),
(1093,1083,NULL,441,35,'craft\\elements\\Entry',1,0,'2026-02-21 16:18:04','2026-02-21 16:18:04',NULL,'2026-03-02 22:06:21',NULL,'a216528e-0ed7-4f11-aa22-a205f36836b2'),
(1096,117,NULL,442,6,'craft\\elements\\Entry',1,0,'2026-02-21 16:21:12','2026-02-21 16:21:12',NULL,'2026-03-02 22:06:21',NULL,'f2af3bc6-bc36-4dd0-877c-7413797c4bf9'),
(1097,1075,NULL,443,44,'craft\\elements\\Entry',1,0,'2026-02-21 16:21:12','2026-02-21 16:21:12',NULL,'2026-03-02 22:06:21',NULL,'5d5a5ce6-ffd4-40f8-b1ca-e7015ceed150'),
(1098,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:42:22','2026-02-21 22:49:52',NULL,NULL,NULL,'643c6733-af82-4c37-94d8-7d26475b77fe'),
(1099,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:48:17','2026-02-21 22:48:41',NULL,NULL,NULL,'594efb5a-3a6f-437e-93ab-a0c069c58e3f'),
(1100,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:48:48','2026-02-21 22:49:25',NULL,NULL,NULL,'2621ba18-db9a-4c1e-be34-d8b5d4c0e8e7'),
(1101,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:27','2026-02-21 22:49:36',NULL,NULL,NULL,'50f8f45a-c252-4c30-ac00-f71b46501d82'),
(1102,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:38','2026-02-21 22:49:48',NULL,NULL,NULL,'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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,NULL,'daf0bcb4-330f-4087-92cb-fd1ce3c3f19a'),
(1108,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:49:56','2026-02-21 22:56:39',NULL,NULL,NULL,'37cdbf13-e127-403b-b224-d27c3c0d4324'),
(1109,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:50:56','2026-02-21 22:53:21',NULL,NULL,NULL,'bda033dc-4010-422b-8d99-2a9944a7b77e'),
(1110,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:51:18','2026-02-21 22:53:25',NULL,NULL,NULL,'d7ad30e6-9dac-4c88-979f-c1e1c0106a90'),
(1111,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:51:28','2026-02-21 22:53:28',NULL,NULL,NULL,'52f97001-e257-41f0-958d-1aa68633c722'),
(1112,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:51:49','2026-02-21 22:53:31',NULL,NULL,NULL,'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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,NULL,'88d5e94b-1ba9-4111-8cf5-e63b92853040'),
(1118,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:56:49','2026-02-21 22:58:49',NULL,NULL,NULL,'f007e783-d607-4ca0-aa08-d7c9c98c8056'),
(1119,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:57:36','2026-02-21 22:58:21',NULL,NULL,NULL,'581d658b-e303-47f0-96ad-3a4992be1821'),
(1120,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:23','2026-02-21 22:58:30',NULL,NULL,NULL,'e4dd7f91-8ece-4d61-8cd7-64ad8c122d12'),
(1121,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:33','2026-02-21 22:58:41',NULL,NULL,NULL,'e9ee5378-cd47-4217-9710-fc101e8bc534'),
(1122,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:43','2026-02-21 22:58:48',NULL,NULL,NULL,'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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,NULL,'19fc2d05-429c-437d-a315-fbdaccfcd3c7'),
(1128,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:58:58','2026-02-21 22:59:24',NULL,NULL,NULL,'d43c478d-7992-449d-bdb8-95617494c99f'),
(1129,NULL,NULL,NULL,46,'craft\\elements\\Entry',1,0,'2026-02-21 22:59:17','2026-02-21 22:59:22',NULL,NULL,NULL,'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,NULL,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,NULL,NULL,'4b8fd220-7933-4e0a-9e87-18d8cb830ec6'),
(1132,NULL,NULL,NULL,45,'craft\\elements\\Entry',1,0,'2026-02-21 22:59:46','2026-02-21 23:00:22',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-02-21 23:00:21',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'),
(1143,38,NULL,463,7,'craft\\elements\\Entry',1,0,'2026-02-21 23:28:16','2026-02-21 23:28:16',NULL,NULL,NULL,'93a9e03a-20d7-4df3-806a-90eeda89b214'),
(1144,761,NULL,464,32,'craft\\elements\\Entry',1,0,'2026-02-21 23:28:16','2026-02-21 23:28:16',NULL,NULL,NULL,'8f596f60-a394-4b0a-8d08-c8f0c6598eed'),
(1147,38,NULL,465,7,'craft\\elements\\Entry',1,0,'2026-02-21 23:28:35','2026-02-21 23:28:36',NULL,NULL,NULL,'600e4986-d058-4582-bb4d-d8486150b193'),
(1148,761,NULL,466,32,'craft\\elements\\Entry',1,0,'2026-02-21 23:28:35','2026-02-21 23:28:36',NULL,NULL,NULL,'aa1397b3-f093-46a4-8fe2-51ec997345d2'),
(1151,117,NULL,467,6,'craft\\elements\\Entry',1,0,'2026-02-21 23:31:43','2026-02-21 23:31:43',NULL,'2026-03-02 22:06:21',NULL,'8c33a56b-bb26-4273-80a1-00a919a32fab'),
(1152,926,NULL,468,39,'craft\\elements\\Entry',1,0,'2026-02-21 23:31:43','2026-02-21 23:31:43',NULL,'2026-03-02 22:06:21',NULL,'dca8ef91-0ad6-4611-80b4-190eeccf6956'),
(1155,117,NULL,469,6,'craft\\elements\\Entry',1,0,'2026-02-21 23:32:10','2026-02-21 23:32:10',NULL,'2026-03-02 22:06:21',NULL,'7d4836de-e4d5-49ce-a8e6-402e9aaed559'),
(1156,926,NULL,470,39,'craft\\elements\\Entry',1,0,'2026-02-21 23:32:10','2026-02-21 23:32:10',NULL,'2026-03-02 22:06:21',NULL,'36ba7cc9-f4e9-4e39-8622-e2e320836d35'),
(1157,NULL,NULL,NULL,7,'craft\\elements\\Entry',1,0,'2026-02-21 23:50:58','2026-02-22 00:09:05',NULL,'2026-02-22 00:09:05',NULL,'6cbff46b-7a82-4778-8185-92653e4b59f0'),
(1158,1157,NULL,471,7,'craft\\elements\\Entry',1,0,'2026-02-21 23:51:06','2026-02-21 23:51:06',NULL,'2026-02-22 00:09:05',NULL,'fbb3f4e1-6ceb-40b5-9952-ba674590d164'),
(1161,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:05:57','2026-02-22 22:28:10',NULL,NULL,NULL,'4366297c-9871-4eb5-a829-ae608d91c1a8'),
(1162,1161,NULL,472,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:00','2026-02-22 00:07:00',NULL,NULL,NULL,'16110fcf-51d7-40d0-8e9a-fd18a8302782'),
(1165,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:17','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',NULL,'9aaf0365-e89f-4163-a774-6e7cd5140ede'),
(1166,1161,NULL,473,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:17','2026-02-22 00:07:17',NULL,NULL,NULL,'16fbbd61-3eca-409c-962b-b4c4932658eb'),
(1167,1165,NULL,474,39,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:17','2026-02-22 00:07:17',NULL,'2026-02-22 21:18:20',NULL,'120a04ee-4ec5-4ccb-b108-deca1b3cf723'),
(1178,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',NULL,'9640bf8e-71c7-4239-8171-97c2320dec16'),
(1179,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'05b086e2-f54e-4154-9b0d-dc5a91811a6a'),
(1180,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'41984ed3-216a-47b4-9f0d-4cbe16be6f6d'),
(1181,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'d09eae87-296e-4773-a28c-d7a312f18e31'),
(1182,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'26b040c6-387d-457f-964d-1dd984dfe2d5'),
(1183,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'ddef9382-c8ff-41e8-a9c7-c34a9345fed7'),
(1184,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'a1d30ce8-59a1-4e51-8d42-a8f62656def8'),
(1185,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'1841ed73-2ad8-4d40-8b12-d3cbc069a34b'),
(1186,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'ec99134b-1ae4-4c3e-8dd6-edd539312438'),
(1187,1161,NULL,475,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,NULL,NULL,'185b842e-5c18-40e9-be62-562ada62a777'),
(1188,1178,NULL,476,36,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'474b0568-f6e8-4692-9d10-8abd96ce614c'),
(1189,1179,NULL,477,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'8c2e7910-260f-46a7-bb2a-895343a87e59'),
(1190,1180,NULL,478,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'e96bca6c-48be-48d5-9be9-7bf9aad06471'),
(1191,1181,NULL,479,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'6dd188be-bc98-465b-9858-ab0e3a1a6a79'),
(1192,1182,NULL,480,37,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'bc0721c0-94f2-416c-9e02-44a6adea5d45'),
(1193,1183,NULL,481,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'a54cd83d-ebb2-41f0-9d61-c2037f8e54c6'),
(1194,1184,NULL,482,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'483fc1a0-63bc-4192-ac20-a415530e6878'),
(1195,1185,NULL,483,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'dca204b6-078b-4288-954c-263c0ff78f78'),
(1196,1186,NULL,484,38,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:23','2026-02-22 00:07:23',NULL,'2026-02-22 21:18:20',NULL,'694bf30a-5e70-4999-b972-a0b8d090d541'),
(1203,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',NULL,'7548e0cb-a1a8-404c-8831-48e27eb53211'),
(1204,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'566048b4-e9a9-4a41-b973-d96b3ddf484f'),
(1205,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'7a1570b5-6f22-4e5c-b652-97eb8bfae2ac'),
(1206,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'295d5ba3-a0ee-4bea-acc9-613c9f784deb'),
(1207,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',1,'c3ded4b5-91dc-4048-a9e8-94ab69a4802a'),
(1208,1161,NULL,485,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 00:07:37',NULL,NULL,NULL,'4cc768bc-b8c5-46a3-9f15-3668935a69f0'),
(1209,1203,NULL,486,41,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 00:07:37',NULL,'2026-02-22 21:18:20',NULL,'690d1946-3178-49a6-a497-ea5950502ed1'),
(1210,1204,NULL,487,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 00:07:37',NULL,'2026-02-22 21:18:20',NULL,'ef0d2c74-978f-4622-b3b8-3cb0b29c6c63'),
(1211,1205,NULL,488,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 00:07:37',NULL,'2026-02-22 21:18:20',NULL,'74aab79d-955f-4cce-8eaa-2698b7c2f29c'),
(1212,1206,NULL,489,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 00:07:37',NULL,'2026-02-22 21:18:20',NULL,'60f95c08-2aa4-42ec-b3db-dac9a6708f35'),
(1213,1207,NULL,490,40,'craft\\elements\\Entry',1,0,'2026-02-22 00:07:37','2026-02-22 00:07:37',NULL,'2026-02-22 21:18:20',NULL,'4b7dbf45-831b-495e-adf8-ac1a0d1c405a'),
(1216,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:02','2026-02-22 22:28:10',NULL,NULL,NULL,'999cf826-6194-4d8c-a4d4-848553784a37'),
(1217,1161,NULL,491,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:02','2026-02-22 00:08:02',NULL,NULL,NULL,'2dc79874-89f1-484c-94db-cad467fa4e99'),
(1218,1216,NULL,492,42,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:02','2026-02-22 00:08:02',NULL,NULL,NULL,'c532a446-dd4b-4c26-b929-df3eaae7eee6'),
(1221,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:09','2026-02-22 21:18:20',NULL,'2026-02-22 21:18:20',NULL,'e889d647-64ec-445e-b832-26662dde3e76'),
(1222,1161,NULL,493,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:09','2026-02-22 00:08:09',NULL,NULL,NULL,'bf81a1fb-8dc5-4a92-8934-ffaee9f5557d'),
(1223,1221,NULL,494,43,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:09','2026-02-22 00:08:09',NULL,'2026-02-22 21:18:20',NULL,'ccf7d8f3-8891-4dde-9cb9-eaf70d9d3713'),
(1226,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:22','2026-02-22 21:20:06',NULL,'2026-02-22 21:20:06',NULL,'8d1b31a6-3929-4ca7-afd7-81b93c8ceb13'),
(1227,1161,NULL,495,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:22','2026-02-22 00:08:22',NULL,NULL,NULL,'08fe1614-91cb-4dad-9e6b-73a2d1b7f6ab'),
(1228,1226,NULL,496,8,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:22','2026-02-22 00:08:22',NULL,'2026-02-22 21:20:06',NULL,'e068a479-ffad-4b8a-a3a7-b31d5689dc58'),
(1239,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 21:21:52',NULL,NULL,NULL,'3b963849-12ed-47ce-91f4-dca29ba60dc2'),
(1240,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'7b9e0b45-7665-41a8-895d-74947e44d845'),
(1241,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'1d132513-dd47-41c0-a2b2-28e1c88e2b8b'),
(1242,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'9351e087-e821-435c-a0cc-e381338fceaa'),
(1243,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'fa923030-dbd7-469c-9940-efb519fda519'),
(1244,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'b3397eaa-e79c-496b-86d1-1cd9ef890d29'),
(1245,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'65b89d1a-a058-46dc-8dfc-8c19960b6f51'),
(1246,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'0cd9b723-4578-4479-af2d-24e3b147c12a'),
(1247,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'3609930a-d01c-4d83-8414-3d6aa4758735'),
(1248,1161,NULL,497,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'ad55e364-eca7-4d45-a36c-c09fb8944d25'),
(1249,1239,NULL,498,44,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'c0555e72-e1a3-4d51-8d44-d08b89704149'),
(1250,1240,NULL,499,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'2831c458-00d7-4afa-88dd-1e4d87017666'),
(1251,1241,NULL,500,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'33eb1505-d109-4f80-adfe-9407c7f7ec94'),
(1252,1242,NULL,501,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'a3bc1b2a-4154-44fb-86f0-a62fa91045a7'),
(1253,1243,NULL,502,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'126db7d7-b26f-4d0d-a386-5286c06065a4'),
(1254,1244,NULL,503,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'3169e3d1-b189-4c2f-a8a6-62cd2d2ebe0d'),
(1255,1245,NULL,504,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'bad91792-4452-4a65-ae84-68f631203005'),
(1256,1246,NULL,505,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'bb9e1eb2-6168-424f-b9d1-11633eb8e721'),
(1257,1247,NULL,506,35,'craft\\elements\\Entry',1,0,'2026-02-22 00:08:32','2026-02-22 00:08:32',NULL,NULL,NULL,'7287f160-5a85-4825-8068-78e21e70b228'),
(1259,1161,NULL,507,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:10:17','2026-02-22 00:10:17',NULL,NULL,NULL,'389b6793-5c53-4d55-9d69-da2817771da6'),
(1261,1161,NULL,508,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:10:31','2026-02-22 00:10:31',NULL,NULL,NULL,'0958ab39-b1c4-430c-990b-255c28ce47c0'),
(1264,1161,NULL,509,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:18:14','2026-02-22 00:18:14',NULL,NULL,NULL,'891354f4-7881-43da-865b-4377c942f856'),
(1265,1216,NULL,510,42,'craft\\elements\\Entry',1,0,'2026-02-22 00:18:14','2026-02-22 00:18:14',NULL,NULL,NULL,'a89b4515-fd36-4710-92ca-646a2597a079'),
(1268,1161,NULL,511,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:22:36','2026-02-22 00:22:36',NULL,NULL,NULL,'0ea1aeb2-db3b-4926-b308-141fdfac2858'),
(1269,1216,NULL,512,42,'craft\\elements\\Entry',1,0,'2026-02-22 00:22:36','2026-02-22 00:22:36',NULL,NULL,NULL,'28c20c2e-b689-4c0b-b885-b8583e631c47'),
(1272,1161,NULL,513,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:28:19','2026-02-22 00:28:19',NULL,NULL,NULL,'16079fb8-14b6-4a0c-968c-6228ed1ae711'),
(1273,1216,NULL,514,42,'craft\\elements\\Entry',1,0,'2026-02-22 00:28:19','2026-02-22 00:28:19',NULL,NULL,NULL,'e5cbedf2-2d74-4f20-96ac-f32a1f7e179a'),
(1276,1161,NULL,515,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:29:01','2026-02-22 00:29:01',NULL,NULL,NULL,'62cf52a0-7c30-47bf-b9ab-9002b46d9523'),
(1277,1216,NULL,516,42,'craft\\elements\\Entry',1,0,'2026-02-22 00:29:01','2026-02-22 00:29:01',NULL,NULL,NULL,'501d8e81-3633-44de-a91c-4605b9166927'),
(1279,1161,NULL,517,47,'craft\\elements\\Entry',1,0,'2026-02-22 00:33:44','2026-02-22 00:33:44',NULL,NULL,NULL,'6b0bea82-2e63-4176-afb7-3d4c3a807a78'),
(1282,117,NULL,518,6,'craft\\elements\\Entry',1,0,'2026-02-22 00:34:17','2026-02-22 00:34:17',NULL,'2026-03-02 22:06:21',NULL,'136dc01d-74f5-4bbf-a35f-77b4ede4369d'),
(1283,926,NULL,519,39,'craft\\elements\\Entry',1,0,'2026-02-22 00:34:17','2026-02-22 00:34:17',NULL,'2026-03-02 22:06:21',NULL,'978eae42-230a-4d1c-8725-fff015301edb'),
(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-02-22 00:42:18',NULL,NULL,NULL,'fabc92b8-85ca-4d8c-925d-e84e2119fb9c'),
(1287,NULL,508,NULL,4,'craft\\elements\\Entry',1,0,'2026-02-22 00:42:12','2026-02-22 00:42:12',NULL,NULL,NULL,'8fbb677d-e398-4a90-82fc-b660f326228f'),
(1288,1286,NULL,520,6,'craft\\elements\\Entry',1,0,'2026-02-22 00:42:18','2026-02-22 00:42:18',NULL,NULL,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'),
(1292,1161,NULL,521,47,'craft\\elements\\Entry',1,0,'2026-02-22 18:53:48','2026-02-22 18:53:48',NULL,NULL,NULL,'af449684-77bd-4a28-b543-63c5208087da'),
(1293,1216,NULL,522,42,'craft\\elements\\Entry',1,0,'2026-02-22 18:53:48','2026-02-22 18:53:48',NULL,NULL,NULL,'46ddd9e7-c154-4b4c-944e-7896bfb04e6d'),
(1296,1161,NULL,523,47,'craft\\elements\\Entry',1,0,'2026-02-22 20:58:05','2026-02-22 20:58:05',NULL,NULL,NULL,'0488542f-2bbd-4f50-bcdb-72c7cc23a364'),
(1297,1216,NULL,524,42,'craft\\elements\\Entry',1,0,'2026-02-22 20:58:05','2026-02-22 20:58:05',NULL,NULL,NULL,'0fead92a-2495-4975-b971-5768f61ab427'),
(1300,1161,NULL,525,47,'craft\\elements\\Entry',1,0,'2026-02-22 20:59:10','2026-02-22 20:59:10',NULL,NULL,NULL,'caf3ca19-5db1-4688-baf9-3b6f5a326f93'),
(1301,1216,NULL,526,42,'craft\\elements\\Entry',1,0,'2026-02-22 20:59:10','2026-02-22 20:59:10',NULL,NULL,NULL,'5cbdfacf-5225-4590-b679-929a9e32ff5d'),
(1304,1161,NULL,527,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:13:23','2026-02-22 21:13:23',NULL,NULL,NULL,'79828c96-193d-4950-b5a6-353e800baaad'),
(1305,1216,NULL,528,42,'craft\\elements\\Entry',1,0,'2026-02-22 21:13:23','2026-02-22 21:13:23',NULL,NULL,NULL,'173e8121-7d74-4079-9a0d-0d3d900a0cbe'),
(1308,1161,NULL,529,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:15:15','2026-02-22 21:15:15',NULL,NULL,NULL,'7267517b-fe7d-4a07-9601-f9d7f3be140b'),
(1309,1216,NULL,530,42,'craft\\elements\\Entry',1,0,'2026-02-22 21:15:15','2026-02-22 21:15:15',NULL,NULL,NULL,'912b3e09-19c3-4527-82ec-2fb1edf76a5a'),
(1312,1161,NULL,531,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:15:32','2026-02-22 21:15:32',NULL,NULL,NULL,'1ab4e649-1a41-47ab-93f1-2ebdfd87b9a8'),
(1313,1216,NULL,532,42,'craft\\elements\\Entry',1,0,'2026-02-22 21:15:32','2026-02-22 21:15:32',NULL,NULL,NULL,'e0dafac4-ddad-4a7e-bb9a-229a31fe76f2'),
(1316,1161,NULL,533,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:16:12','2026-02-22 21:16:12',NULL,NULL,NULL,'f516f0b4-0932-41c0-92ea-a7077c955bf2'),
(1317,1216,NULL,534,42,'craft\\elements\\Entry',1,0,'2026-02-22 21:16:12','2026-02-22 21:16:12',NULL,NULL,NULL,'05f3686e-918e-483f-b0b0-0838b0fbaa8a'),
(1319,1161,NULL,535,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:18:20','2026-02-22 21:18:20',NULL,NULL,NULL,'2d5949f1-2806-4356-8cca-7b8b56667327'),
(1322,1161,NULL,536,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:20:06','2026-02-22 21:20:06',NULL,NULL,NULL,'4bd1d782-0dd7-491a-b3a4-88d12b5e0f47'),
(1325,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-02-22 21:21:00','2026-02-22 21:21:00',NULL,NULL,NULL,'ecf3b239-fea4-4e02-b196-17b70a7e4be6'),
(1326,1161,NULL,537,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:21:00','2026-02-22 21:21:00',NULL,NULL,NULL,'d394a3e1-de2e-4d06-9e0f-984a47250a5c'),
(1327,1325,NULL,538,8,'craft\\elements\\Entry',1,0,'2026-02-22 21:21:00','2026-02-22 21:21:00',NULL,NULL,NULL,'fce3f5a0-cab3-4fea-aa75-77555028116c'),
(1330,1161,NULL,539,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:21:52','2026-02-22 21:21:52',NULL,NULL,NULL,'d02de22e-593b-4cfe-a455-e5e40e633b16'),
(1331,1239,NULL,540,44,'craft\\elements\\Entry',1,0,'2026-02-22 21:21:52','2026-02-22 21:21:52',NULL,NULL,NULL,'a5a4d1fd-c083-4a49-aae2-a39e13f236cc'),
(1334,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-22 21:22:41','2026-02-22 22:00:26',NULL,NULL,NULL,'12c17684-fa20-48e6-9c8a-598243a8b131'),
(1335,1161,NULL,541,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:22:41','2026-02-22 21:22:41',NULL,NULL,NULL,'51d8d221-d8fe-44fd-8634-2f69eac5d15c'),
(1336,1334,NULL,542,42,'craft\\elements\\Entry',1,0,'2026-02-22 21:22:41','2026-02-22 21:22:41',NULL,NULL,NULL,'47bc6c09-f8e5-41b0-a829-c642c35d5d24'),
(1338,1161,NULL,543,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:23:02','2026-02-22 21:23:02',NULL,NULL,NULL,'0a2c1bae-f891-4479-a6c8-3a886803f864'),
(1340,1161,NULL,544,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:23:15','2026-02-22 21:23:16',NULL,NULL,NULL,'59c45d20-2ada-431b-8d54-63d83e9daea6'),
(1344,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-02-22 21:27:46','2026-02-22 21:43:39',NULL,'2026-02-22 21:43:39',NULL,'36cc472e-961f-481b-85cd-8eb4d6ad73fa'),
(1345,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 21:27:46','2026-02-22 21:43:39',NULL,'2026-02-22 21:43:39',1,'10fbf464-3672-4dad-9237-a82b5766ec70'),
(1346,1161,NULL,545,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:27:46','2026-02-22 21:27:46',NULL,NULL,NULL,'80dd3ba2-9b2e-4858-898d-a7936ccbf2bb'),
(1347,1344,NULL,546,44,'craft\\elements\\Entry',1,0,'2026-02-22 21:27:46','2026-02-22 21:27:46',NULL,'2026-02-22 21:43:39',NULL,'576dd5ab-8eeb-4cd1-aff0-643a5fa7a2f4'),
(1348,1345,NULL,547,35,'craft\\elements\\Entry',1,0,'2026-02-22 21:27:46','2026-02-22 21:27:46',NULL,'2026-02-22 21:43:39',NULL,'7e6a2e7b-d2b7-494b-a6e4-ae2b954ccb09'),
(1349,1161,NULL,548,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:35:40','2026-02-22 21:35:40',NULL,NULL,NULL,'b1a6bfac-600f-4ab9-9c32-4a420f13725b'),
(1351,1161,NULL,549,47,'craft\\elements\\Entry',1,0,'2026-02-22 21:43:39','2026-02-22 21:43:39',NULL,NULL,NULL,'5231eb76-8c35-4dc9-a315-b02e8036f1b3'),
(1354,1161,NULL,550,47,'craft\\elements\\Entry',1,0,'2026-02-22 22:00:26','2026-02-22 22:00:26',NULL,NULL,NULL,'adaf3cdd-3ee8-440b-8b02-733a104f5be2'),
(1355,1334,NULL,551,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:00:26','2026-02-22 22:00:26',NULL,NULL,NULL,'1bfcf630-6525-4c0d-877d-4212a85b4ab7'),
(1358,1161,NULL,552,47,'craft\\elements\\Entry',1,0,'2026-02-22 22:08:59','2026-02-22 22:08:59',NULL,NULL,NULL,'3dc24ed0-ebc1-445a-be65-c671239b40d6'),
(1362,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:10:10','2026-02-22 22:10:10',NULL,NULL,NULL,'cc934202-a82e-4a74-a0be-07b407e82746'),
(1363,1161,NULL,553,47,'craft\\elements\\Entry',1,0,'2026-02-22 22:10:10','2026-02-22 22:10:10',NULL,NULL,NULL,'af119e43-bdc9-4ee2-9cbd-19ca1b438d81'),
(1364,1362,NULL,554,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:10:10','2026-02-22 22:10:10',NULL,NULL,NULL,'10931a01-50a1-4df9-8ad3-1e6e48c3af7d'),
(1367,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:16:09','2026-02-22 22:19:04',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-02-22 22:17:14',NULL,NULL,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,NULL,NULL,'41e37db2-6c84-4401-ad13-3f44f4f91b1e'),
(1385,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'0f147e8a-0501-458d-9fd1-7cbac5374271'),
(1386,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'d71d459c-6e66-4075-9d16-1bef2d1a5114'),
(1387,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'af2147a3-762e-4ef5-ae56-4ac55709010d'),
(1388,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'e7f347c4-3e73-4626-abc6-77906d99ae63'),
(1389,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'ef737805-c04c-453a-a492-b04d19e82753'),
(1390,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'1f2e1f53-6bf3-44fe-9596-7d5fd62ca59e'),
(1391,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'39ba092a-6ec9-45f3-93bf-98113fb51e1c'),
(1392,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'2e40a6b4-e69c-479e-b2e4-e549f9448f73'),
(1393,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-02-22 22:17:43','2026-02-22 22:17:43',NULL,NULL,NULL,'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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,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,NULL,NULL,'d86b782d-e634-494d-8096-6b00f1c33238'),
(1407,NULL,NULL,NULL,33,'craft\\elements\\Entry',1,0,'2026-02-22 22:19:04','2026-02-22 22:19:04',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'),
(1413,1161,NULL,572,47,'craft\\elements\\Entry',1,0,'2026-02-22 22:28:10','2026-02-22 22:28:10',NULL,NULL,NULL,'eb467f3b-b508-4413-92ba-2aeaebdc9705'),
(1414,1216,NULL,573,42,'craft\\elements\\Entry',1,0,'2026-02-22 22:28:10','2026-02-22 22:28:10',NULL,NULL,NULL,'6b6c1ffd-2afd-499e-a2c7-a38804a37f46'),
(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'),
(1422,761,554,NULL,32,'craft\\elements\\Entry',1,0,'2026-02-24 14:17:13','2026-02-24 14:17:15',NULL,NULL,NULL,'5e41d0e5-9176-4411-acca-dee8ce7387ec'),
(1423,774,555,NULL,9,'craft\\elements\\Entry',1,0,'2026-02-24 14:31:44','2026-02-24 14:31:45',NULL,NULL,NULL,'3c8c2084-26bc-4ee5-a224-94d8ca43769d'),
(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'),
(1428,143,560,NULL,4,'craft\\elements\\Entry',1,0,'2026-02-24 14:43:36','2026-02-24 14:43:40',NULL,NULL,NULL,'95f417f6-2637-4167-bb59-905d37121e2a'),
(1429,NULL,561,NULL,3,'craft\\elements\\Entry',1,0,'2026-02-24 14:43:36','2026-02-24 14:43:36',NULL,NULL,NULL,'e974f1ca-8097-43b6-ad3a-e55a9d8fc7a8'),
(1432,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-02-24 14:47:57','2026-03-02 22:06:21',NULL,'2026-03-02 22:06:21',1,'98eece86-d59b-4de8-9af6-c292e9a3ee46'),
(1433,117,NULL,576,6,'craft\\elements\\Entry',1,0,'2026-02-24 14:47:57','2026-02-24 14:47:57',NULL,'2026-03-02 22:06:21',NULL,'59ee4360-b6c7-4a11-b337-a6f8ff00f557'),
(1434,926,NULL,577,39,'craft\\elements\\Entry',1,0,'2026-02-24 14:47:57','2026-02-24 14:47:57',NULL,'2026-03-02 22:06:21',NULL,'3dbdc60d-ee3b-4514-b5d5-15d37d6c5eee'),
(1435,1432,NULL,578,42,'craft\\elements\\Entry',1,0,'2026-02-24 14:47:57','2026-02-24 14:47:57',NULL,'2026-03-02 22:06:21',NULL,'0efd0db5-3f63-4b17-ae11-dab427cc0c27'),
(1438,117,NULL,579,6,'craft\\elements\\Entry',1,0,'2026-02-24 14:48:15','2026-02-24 14:48:15',NULL,'2026-03-02 22:06:21',NULL,'9f6c255f-a7ea-422e-9a59-eeb60c2152be'),
(1439,926,NULL,580,39,'craft\\elements\\Entry',1,0,'2026-02-24 14:48:15','2026-02-24 14:48:15',NULL,'2026-03-02 22:06:21',NULL,'6a5a5913-e258-4611-bc61-4406fd5bab05'),
(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'),
(1441,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 20:06:40',NULL,NULL,NULL,'d9226acd-f330-47c7-a7a8-f15e6de6b714'),
(1442,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:13:22',NULL,NULL,NULL,'b85e76a6-3a84-4701-92a7-3a30c4e034ac'),
(1443,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:36:24',NULL,NULL,NULL,'e796fb84-eda6-4985-aa11-8a97b79683f0'),
(1444,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:21:22',NULL,NULL,NULL,'9595656e-dee1-4b8c-9909-b89c1ee707af'),
(1445,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:34:03',NULL,NULL,NULL,'3b9a58bc-44d1-4a20-abe6-b9a7379f53c7'),
(1446,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:35:59',NULL,NULL,NULL,'eb97d0a0-932d-4ce4-8069-2eb9328a54f5'),
(1447,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:36:24',NULL,NULL,NULL,'a0fe78d1-6661-4ca1-a3ec-bb682b30d756'),
(1448,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:21:22',NULL,'2026-03-02 17:21:22',NULL,'28ed9c51-8734-4f84-b9cc-5f57106ecadf'),
(1449,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:21:22',NULL,'2026-03-02 17:21:22',NULL,'b47b32ab-7df5-40c8-bfa3-25342ae6e475'),
(1450,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:21:22',NULL,'2026-03-02 17:21:22',NULL,'41bc2a75-177a-4193-99ca-56fba3c1ae1c'),
(1451,NULL,NULL,NULL,38,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:21:22',NULL,'2026-03-02 17:21:22',NULL,'c5edf978-87e1-4d33-a4b7-dd0b3a9fc66a'),
(1452,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:40:04',NULL,'2026-03-02 17:40:04',NULL,'989ace17-e492-4bac-b51e-1fdaf3a38ae5'),
(1453,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:40:04',NULL,'2026-03-02 17:40:04',1,'41d5d375-fb58-40e7-8ca0-5823bed892b2'),
(1454,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:40:04',NULL,'2026-03-02 17:40:04',1,'8821c570-35a6-41eb-92d0-43cf5d92cffa'),
(1455,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:40:04',NULL,'2026-03-02 17:40:04',1,'adbadfd6-bb0c-45cb-8af5-1f066bb70fe2'),
(1456,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:40:04',NULL,'2026-03-02 17:40:04',1,'c621aaf2-f170-4857-be9e-45632b1b91ec'),
(1457,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:47:34',NULL,NULL,NULL,'0496485a-12c0-4d28-9bc5-df9c545f104e'),
(1458,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:48:05',NULL,'2026-03-02 19:48:05',NULL,'3609e818-502a-4132-aceb-2b92fb59c225'),
(1459,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:49:43',NULL,NULL,NULL,'1b627dc8-4491-4050-b718-4e9baea2955e'),
(1460,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:50:16',NULL,NULL,NULL,'beebb36d-0bc2-4541-92cb-e2315a85ddf0'),
(1461,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'fd976168-6b88-40bf-ba85-40ec29f2951a'),
(1462,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:21:42',NULL,NULL,NULL,'e091893f-2255-42d5-a47a-20a02dd0483b'),
(1463,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'8e64f333-59ce-42ea-9e76-4a2b1e001c45'),
(1464,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'6dc1230e-9429-445c-b4a6-dffc730400cd'),
(1465,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'6c4444e2-ffd4-44a7-9c00-b3ec902d0f0d'),
(1466,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'90a504a6-1300-4fee-ab4f-67ea320e4bb5'),
(1467,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'d4b219ac-ae60-460e-9757-52ac0e7a59a7'),
(1468,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'6e9b62ef-208f-43ea-998a-ac6b9fd9fec3'),
(1469,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 19:26:19',NULL,NULL,NULL,'095eba43-1d4c-4c9d-8c06-06a49041e481'),
(1486,1457,NULL,597,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 20:06:41',NULL,NULL,NULL,'09803f76-970c-47a4-9c1f-7ff1f17b79de'),
(1488,1459,NULL,599,43,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 20:06:41',NULL,NULL,NULL,'84f3f8b1-b570-41a0-86cd-464ca6149c0b'),
(1489,1460,NULL,600,8,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 20:06:41',NULL,NULL,NULL,'199fe092-ead2-43d6-b8c3-7e1e76f60e5e'),
(1490,1461,NULL,601,44,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 20:06:41',NULL,NULL,NULL,'e2b65572-6794-4b3c-b4fa-27a781456f50'),
(1491,1462,NULL,602,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'4c9be5a4-b16e-4a1b-a1d1-d8c06317a71d'),
(1492,1463,NULL,603,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'86f2221b-56d3-4cff-9679-665b8f2bceba'),
(1493,1464,NULL,604,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'19771655-775e-4152-8cb9-fa1997a24187'),
(1494,1465,NULL,605,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'322437b9-3132-4f69-8126-64c3d738d673'),
(1495,1466,NULL,606,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'2f6d03c9-a03c-4c75-855a-56c7c91efeb2'),
(1496,1467,NULL,607,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'dc062e30-0a1a-4131-9c4d-0265e1feb02c'),
(1497,1468,NULL,608,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'45230c12-84fb-41cb-b531-f3f8a2e3872f'),
(1498,1469,NULL,609,35,'craft\\elements\\Entry',1,0,'2026-03-02 17:03:26','2026-03-02 17:03:26',NULL,NULL,NULL,'4d09c117-9e63-45b3-ba78-6378b39b9e01'),
(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'),
(1509,1442,NULL,614,39,'craft\\elements\\Entry',1,0,'2026-03-02 17:13:22','2026-03-02 20:06:41',NULL,NULL,NULL,'6feafc6b-bb31-44fe-b8e3-a23a311ecf36'),
(1519,1444,NULL,617,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:21:22','2026-03-02 20:06:25',NULL,NULL,NULL,'6e4e9e27-fcac-4f1f-99e7-ece19d9f306d'),
(1534,1445,NULL,626,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:34:03','2026-03-02 20:06:25',NULL,NULL,NULL,'9beb5387-2afe-4039-a0da-ee3329a16fe6'),
(1549,1446,NULL,634,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:35:59','2026-03-02 20:06:25',NULL,NULL,NULL,'43d45ab6-0a1a-4bf0-a334-c32776adfba5'),
(1554,1443,NULL,636,36,'craft\\elements\\Entry',1,0,'2026-03-02 17:36:24','2026-03-02 20:06:41',NULL,NULL,NULL,'ce7e6d3d-2f1b-4a0b-a3ed-7da3c6fdf566'),
(1555,1447,NULL,637,37,'craft\\elements\\Entry',1,0,'2026-03-02 17:36:24','2026-03-02 17:36:24',NULL,NULL,NULL,'95536de7-de59-4b43-bdc9-d15e873b0822'),
(1558,1441,NULL,638,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:38:23','2026-03-02 17:38:23',NULL,NULL,NULL,'60868838-5e17-412d-b095-df9562dc4d2f'),
(1559,1452,NULL,639,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:38:23','2026-03-02 17:38:23',NULL,'2026-03-02 17:40:04',NULL,'85aec991-d3e4-4244-b93e-86d3fd480546'),
(1562,1441,NULL,640,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:38:50','2026-03-02 17:38:50',NULL,NULL,NULL,'6adf2604-31f8-4d0a-8e71-cec61c0c3d75'),
(1563,1452,NULL,641,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:38:50','2026-03-02 17:38:50',NULL,'2026-03-02 17:40:04',NULL,'d6e88f75-2182-4765-83eb-f5117edab481'),
(1571,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:47:21',NULL,NULL,NULL,'f59c42f8-c181-4ff2-960f-84f65c9eaa1f'),
(1572,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:47:21',NULL,NULL,NULL,'50a46fd8-855a-4e15-978b-a306d22e4e0f'),
(1573,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:42:37',NULL,NULL,NULL,'53e107e7-9497-4b3f-a65c-d288b502f80e'),
(1574,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:42:37',NULL,NULL,NULL,'ba15a980-8a9b-40e3-a150-e2cabdb51b00'),
(1575,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:42:37',NULL,NULL,NULL,'56728c6d-c8f0-4189-8943-4fc5cf3d8a73'),
(1576,1441,NULL,642,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:40:04',NULL,NULL,NULL,'df1a5719-613c-4dec-b3f6-f0650065aac4'),
(1577,1571,NULL,643,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:40:04',NULL,NULL,NULL,'bc545cd3-e33c-4969-80a8-56fa88bf94fd'),
(1578,1572,NULL,644,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:40:04',NULL,NULL,NULL,'ce4a8e5f-57b5-4174-8aa7-0e5a9ee1838c'),
(1579,1573,NULL,645,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:40:04',NULL,NULL,NULL,'7ebb8f95-8757-44de-87ab-8a12e3d02366'),
(1580,1574,NULL,646,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:40:04',NULL,NULL,NULL,'dcc413de-d900-4481-849e-728edffdef46'),
(1581,1575,NULL,647,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:04','2026-03-02 17:40:04',NULL,NULL,NULL,'29ad5f03-0df2-4374-b458-f9089bd50410'),
(1584,1441,NULL,648,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:46','2026-03-02 17:40:46',NULL,NULL,NULL,'a0798318-64ce-43dd-a530-76389501b85e'),
(1585,1571,NULL,649,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:40:46','2026-03-02 17:40:46',NULL,NULL,NULL,'4a8aae44-85e7-4a51-971b-b3af927d6957'),
(1592,1441,NULL,650,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:42:37','2026-03-02 17:42:37',NULL,NULL,NULL,'d80c38d5-f3cc-4fcb-b6c1-256b6d806392'),
(1593,1571,NULL,651,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:42:37','2026-03-02 17:42:37',NULL,NULL,NULL,'4111a2f8-24c3-421f-9886-f9df420f7d71'),
(1594,1572,NULL,652,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:42:37','2026-03-02 17:42:37',NULL,NULL,NULL,'9f7bde42-c796-492b-9b70-d35c19884ef8'),
(1595,1573,NULL,653,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:42:37','2026-03-02 17:42:37',NULL,NULL,NULL,'9e44504a-3d00-42f9-b305-7f9e04e0271e'),
(1596,1574,NULL,654,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:42:37','2026-03-02 17:42:37',NULL,NULL,NULL,'300be761-d709-4313-8c26-8675391ae1dc'),
(1597,1575,NULL,655,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:42:37','2026-03-02 17:42:38',NULL,NULL,NULL,'a6d2a808-2965-4c58-a904-e815775c9a6c'),
(1601,1441,NULL,656,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:44:37','2026-03-02 17:44:37',NULL,NULL,NULL,'24d7d675-3074-487f-b013-ee5c550128c0'),
(1602,1571,NULL,657,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:44:37','2026-03-02 17:44:37',NULL,NULL,NULL,'54078afa-e9a3-4cd1-8fc7-812a72e226d9'),
(1603,1572,NULL,658,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:44:37','2026-03-02 17:44:37',NULL,NULL,NULL,'715e41e2-4acb-476b-b969-d7630d33fb72'),
(1607,1441,NULL,659,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:47:21','2026-03-02 17:47:21',NULL,NULL,NULL,'f3997fb3-56c5-42f9-8c7b-6faa0ce90821'),
(1608,1571,NULL,660,41,'craft\\elements\\Entry',1,0,'2026-03-02 17:47:21','2026-03-02 17:47:21',NULL,NULL,NULL,'88f7fd2b-2644-41da-ad44-8e0b1efe2376'),
(1609,1572,NULL,661,40,'craft\\elements\\Entry',1,0,'2026-03-02 17:47:21','2026-03-02 17:47:21',NULL,NULL,NULL,'8658d819-f1e1-44cb-b9fe-9dab51bf0500'),
(1612,1441,NULL,662,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:48:48','2026-03-02 17:48:48',NULL,NULL,NULL,'9c69d733-c91e-415c-bb81-7451ba73addc'),
(1613,1457,NULL,663,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:48:48','2026-03-02 17:48:48',NULL,NULL,NULL,'2b44d9e1-ea34-47ac-b03b-cbdb369a6a97'),
(1616,1441,NULL,664,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:51:31','2026-03-02 17:51:31',NULL,NULL,NULL,'f006b178-83d1-445e-a9bf-14643334d321'),
(1617,1457,NULL,665,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:51:31','2026-03-02 17:51:31',NULL,NULL,NULL,'889f58bb-e536-4da8-91aa-447c0f75e1cb'),
(1620,1441,NULL,666,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:56:03','2026-03-02 17:56:03',NULL,NULL,NULL,'a65e6db7-73f1-493c-92a5-bcd9c095fcb0'),
(1621,1457,NULL,667,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:56:03','2026-03-02 17:56:03',NULL,NULL,NULL,'0ed4d7fc-4dd6-45d0-999e-234c954732cd'),
(1624,1441,NULL,668,6,'craft\\elements\\Entry',1,0,'2026-03-02 17:56:13','2026-03-02 17:56:13',NULL,NULL,NULL,'827feb20-7924-4f45-b52a-5cd8b5e105b8'),
(1625,1457,NULL,669,42,'craft\\elements\\Entry',1,0,'2026-03-02 17:56:13','2026-03-02 17:56:13',NULL,NULL,NULL,'6547eee6-5c4a-4d52-a1e9-92ebf64e6291'),
(1628,1441,NULL,670,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:15:17','2026-03-02 18:15:17',NULL,NULL,NULL,'7e41c0c2-4c7c-49c6-a7fc-4a52bd7ec65e'),
(1629,1457,NULL,671,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:15:17','2026-03-02 18:15:17',NULL,NULL,NULL,'a7321ca1-34f9-4163-aaf6-2d5ab63fbe2a'),
(1632,1441,NULL,672,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:15:51','2026-03-02 18:15:51',NULL,NULL,NULL,'d3645f33-d6d5-401e-ae3a-614bbf1dd1d0'),
(1633,1457,NULL,673,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:15:51','2026-03-02 18:15:51',NULL,NULL,NULL,'7ad43a30-c730-4d7d-808f-5af9ec009a4c'),
(1636,1441,NULL,674,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:16:18','2026-03-02 18:16:18',NULL,NULL,NULL,'98f0dbfa-cef8-48cb-9f14-21370b74155b'),
(1637,1457,NULL,675,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:16:18','2026-03-02 18:16:18',NULL,NULL,NULL,'02bf3303-3183-4e25-bd9b-ae8136afd17c'),
(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'),
(1643,1441,NULL,676,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:22:44','2026-03-02 18:22:44',NULL,NULL,NULL,'7a786570-94b3-484a-a2af-5c06e0d37a0c'),
(1644,1457,NULL,677,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:22:44','2026-03-02 18:22:44',NULL,NULL,NULL,'129ef2bb-17a1-4562-878a-998bdfee94b4'),
(1645,1458,NULL,678,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:22:44','2026-03-02 18:22:44',NULL,'2026-03-02 19:48:05',NULL,'f9d0b8e0-ad9a-4f21-84d2-523030c3e642'),
(1648,1441,NULL,679,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:25:32','2026-03-02 18:25:32',NULL,NULL,NULL,'2305b2ef-3dd3-4925-bb13-5e6284267079'),
(1649,1457,NULL,680,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:25:32','2026-03-02 18:25:32',NULL,NULL,NULL,'0baa5d26-df6c-4f8f-a3e6-67702dc9f522'),
(1652,1441,NULL,681,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:27:42','2026-03-02 18:27:42',NULL,NULL,NULL,'750c5f51-1f5d-4165-abf1-ebc10ef8399e'),
(1653,1457,NULL,682,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:27:42','2026-03-02 18:27:42',NULL,NULL,NULL,'dfdf9f0d-7d0d-4afb-863e-24bb205c1748'),
(1656,1441,NULL,683,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:28:41','2026-03-02 18:28:41',NULL,NULL,NULL,'98bb71ae-fff0-4be4-b08a-2425872011a3'),
(1657,1457,NULL,684,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:28:41','2026-03-02 18:28:41',NULL,NULL,NULL,'4f5fd53e-7e6b-4f75-a378-1c93fbe6a347'),
(1660,1441,NULL,685,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:29:27','2026-03-02 18:29:27',NULL,NULL,NULL,'336709fe-d4a2-4bcc-a7f7-484a1e773d77'),
(1661,1457,NULL,686,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:29:27','2026-03-02 18:29:27',NULL,NULL,NULL,'4e06ebf8-fdbe-47ac-aef3-eb1107acc55d'),
(1664,1441,NULL,687,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:29:57','2026-03-02 18:29:57',NULL,NULL,NULL,'28fdbb79-4f84-4748-ac6b-d2faa5c35107'),
(1665,1457,NULL,688,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:29:57','2026-03-02 18:29:57',NULL,NULL,NULL,'6c8cb968-35f4-4b0c-8c92-286064fd6b89'),
(1668,1441,NULL,689,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:31:09','2026-03-02 18:31:09',NULL,NULL,NULL,'6c445e4c-e9d6-42e5-9d93-0b1232304058'),
(1669,1457,NULL,690,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:31:09','2026-03-02 18:31:09',NULL,NULL,NULL,'e4078949-5763-462b-b4ff-16143fa15272'),
(1672,1441,NULL,691,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:36:15','2026-03-02 18:36:15',NULL,NULL,NULL,'9b29b02a-9f25-4d3e-979f-b1d49c8aee52'),
(1673,1457,NULL,692,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:36:15','2026-03-02 18:36:15',NULL,NULL,NULL,'71e90030-da82-4092-824d-4ef1737cb752'),
(1676,1441,NULL,693,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:37:35','2026-03-02 18:37:35',NULL,NULL,NULL,'aef904ce-9ef9-41b7-bc8a-891423bf5017'),
(1677,1457,NULL,694,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:37:35','2026-03-02 18:37:35',NULL,NULL,NULL,'cba27ca9-cd37-48e4-9794-09ddf989ee66'),
(1680,1441,NULL,695,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:39:40','2026-03-02 18:39:40',NULL,NULL,NULL,'c867e614-ba44-4e00-a1d1-7e957415a84d'),
(1681,1458,NULL,696,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:39:40','2026-03-02 18:39:40',NULL,'2026-03-02 19:48:05',NULL,'83dfaa01-372b-4bac-9a9f-15a7d0814e1a'),
(1684,1441,NULL,697,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:40:58','2026-03-02 18:40:58',NULL,NULL,NULL,'f042296e-c111-4078-88e4-a3911fea382f'),
(1685,1458,NULL,698,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:40:58','2026-03-02 18:40:58',NULL,'2026-03-02 19:48:05',NULL,'6a5e7081-5ad2-4016-a3fd-4b871ec966da'),
(1688,1441,NULL,699,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:41:15','2026-03-02 18:41:15',NULL,NULL,NULL,'ad6a4d75-7073-4a49-ba67-dedf06217792'),
(1689,1458,NULL,700,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:41:15','2026-03-02 18:41:15',NULL,'2026-03-02 19:48:05',NULL,'a3f17ecc-695b-48ca-8452-ee4f8331ad09'),
(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'),
(1693,1441,NULL,701,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:43:10','2026-03-02 18:43:10',NULL,NULL,NULL,'96b7df4e-0be9-4eab-a32b-fb2007a54401'),
(1694,1458,NULL,702,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:43:10','2026-03-02 18:43:10',NULL,'2026-03-02 19:48:05',NULL,'de4c551f-ddeb-4cef-b17f-abb7d60ddeea'),
(1697,1441,NULL,703,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:43:45','2026-03-02 18:43:45',NULL,NULL,NULL,'3ad3ad55-6223-4807-ba8f-f870d501afe7'),
(1698,1458,NULL,704,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:43:45','2026-03-02 18:43:45',NULL,'2026-03-02 19:48:05',NULL,'390776c3-5d65-42fb-ba63-f6166c3a2cb8'),
(1702,1441,NULL,705,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:44:26','2026-03-02 18:44:26',NULL,NULL,NULL,'214909ac-f7f6-41a7-975d-fdd222a021ba'),
(1703,1457,NULL,706,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:44:26','2026-03-02 18:44:26',NULL,NULL,NULL,'e5a01440-e61b-4fa8-8305-71fc503a4c96'),
(1704,1458,NULL,707,42,'craft\\elements\\Entry',1,0,'2026-03-02 18:44:26','2026-03-02 18:44:26',NULL,'2026-03-02 19:48:05',NULL,'4c3ac6f7-c3e1-4bf3-82e8-e893ac6bb6e0'),
(1705,1441,NULL,708,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:47:24','2026-03-02 18:47:24',NULL,NULL,NULL,'5d00dc20-bc5e-4637-82f6-54b0fbd06761'),
(1707,1441,NULL,709,6,'craft\\elements\\Entry',1,0,'2026-03-02 18:48:46','2026-03-02 18:48:46',NULL,NULL,NULL,'6c67e843-32f2-474c-aede-95ccbb256db8'),
(1710,1441,NULL,710,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:04:25','2026-03-02 19:04:26',NULL,NULL,NULL,'c4348872-0f99-46e2-a028-30f997e6df7c'),
(1711,1459,NULL,711,43,'craft\\elements\\Entry',1,0,'2026-03-02 19:04:26','2026-03-02 19:04:26',NULL,NULL,NULL,'32590959-4ea6-449f-8d41-24afbb9a88e0'),
(1715,1441,NULL,712,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:07:29','2026-03-02 19:07:29',NULL,NULL,NULL,'4776070a-272c-463b-831d-cf491f68e570'),
(1716,1461,NULL,713,44,'craft\\elements\\Entry',1,0,'2026-03-02 19:07:29','2026-03-02 19:07:29',NULL,NULL,NULL,'ef086f2f-54e5-47dd-8e52-c7e511bf8c81'),
(1717,1462,NULL,714,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:07:29','2026-03-02 19:07:29',NULL,NULL,NULL,'83e6a7be-0102-44bf-b977-9c29211bdeab'),
(1721,1441,NULL,715,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:21:42','2026-03-02 19:21:42',NULL,NULL,NULL,'1c8bdb03-d43e-4eb1-8041-467cda31c4b0'),
(1722,1461,NULL,716,44,'craft\\elements\\Entry',1,0,'2026-03-02 19:21:42','2026-03-02 19:21:42',NULL,NULL,NULL,'e985ddc1-d000-4ea7-b03a-b5c562158fe6'),
(1723,1462,NULL,717,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:21:42','2026-03-02 19:21:42',NULL,NULL,NULL,'1b2fc77b-89e5-478d-b5de-5adaf18084af'),
(1734,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'7e3f85d0-8fba-4833-8ca3-54bc23802abb'),
(1735,1441,NULL,718,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'c3414f97-7b60-41ac-addc-e1fa38b690c2'),
(1736,1461,NULL,719,44,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'09375052-ec79-462e-a90f-1ac5bce4ee12'),
(1737,1463,NULL,720,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'03bd03fe-8d42-4791-a4fe-78aa38fd38b3'),
(1738,1464,NULL,721,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'89fd87a0-3eca-44f1-952f-c639c99a5fce'),
(1739,1465,NULL,722,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'1debc708-8895-4247-93b8-1fcfd852cfef'),
(1740,1466,NULL,723,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'8247f085-2564-403b-9c1d-84f569e24a80'),
(1741,1467,NULL,724,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'7d26f8c3-7d68-4d53-8eaf-c26df0848b82'),
(1742,1468,NULL,725,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'eb217329-adb4-4911-8f6d-2ba2706c5c55'),
(1743,1469,NULL,726,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'dfbd434f-0026-465c-87ee-09ee5a737a5c'),
(1744,1734,NULL,727,35,'craft\\elements\\Entry',1,0,'2026-03-02 19:26:19','2026-03-02 19:26:19',NULL,NULL,NULL,'1b5ae608-9f88-4a9f-b2c1-2d341eca8329'),
(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'),
(1747,1441,NULL,728,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:34:56','2026-03-02 19:34:56',NULL,NULL,NULL,'c33fc80a-48dc-4216-ad81-a62c4761d16a'),
(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'),
(1751,1441,NULL,729,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:44:37','2026-03-02 19:44:37',NULL,NULL,NULL,'2e4238e8-bb16-4c1a-9d14-a5edb1892018'),
(1752,1459,NULL,730,43,'craft\\elements\\Entry',1,0,'2026-03-02 19:44:37','2026-03-02 19:44:37',NULL,NULL,NULL,'f3905d2f-68e1-4188-9b85-4e39fd5d3e19'),
(1755,1441,NULL,731,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:47:09','2026-03-02 19:47:09',NULL,NULL,NULL,'a3a85327-e181-406b-9a3d-f2544fccb05e'),
(1756,1457,NULL,732,42,'craft\\elements\\Entry',1,0,'2026-03-02 19:47:09','2026-03-02 19:47:09',NULL,NULL,NULL,'363e96a6-ee0f-44c7-ae6e-9b0b2cc07ae5'),
(1759,1441,NULL,733,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:47:34','2026-03-02 19:47:34',NULL,NULL,NULL,'42d48d9b-35ec-469f-b9a6-0fd17a0e5a97'),
(1760,1457,NULL,734,42,'craft\\elements\\Entry',1,0,'2026-03-02 19:47:34','2026-03-02 19:47:34',NULL,NULL,NULL,'b0429a2c-307a-4af2-b3e3-716afd036201'),
(1762,1441,NULL,735,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:48:05','2026-03-02 19:48:05',NULL,NULL,NULL,'d12bde58-206e-4b47-8b94-d5d450fa2d40'),
(1764,1441,NULL,736,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:48:24','2026-03-02 19:48:24',NULL,NULL,NULL,'3f76ceac-99ef-4f65-96a5-c9e8780fdf96'),
(1767,1441,NULL,737,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:48:38','2026-03-02 19:48:38',NULL,NULL,NULL,'134f32e2-5bc8-49d0-a368-f9a932e640f0'),
(1768,1459,NULL,738,43,'craft\\elements\\Entry',1,0,'2026-03-02 19:48:38','2026-03-02 19:48:38',NULL,NULL,NULL,'1264e67f-2f92-4d0e-84cd-449a245221fb'),
(1771,1441,NULL,739,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:49:05','2026-03-02 19:49:05',NULL,NULL,NULL,'0ed99096-8e4a-4dce-bf7f-33fd84caa561'),
(1772,1459,NULL,740,43,'craft\\elements\\Entry',1,0,'2026-03-02 19:49:05','2026-03-02 19:49:05',NULL,NULL,NULL,'3b5620f3-24ec-44b0-aaa0-34785e9eea09'),
(1775,1441,NULL,741,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:49:25','2026-03-02 19:49:25',NULL,NULL,NULL,'561a15ae-c5fa-4a1b-840d-a49b18242c86'),
(1776,1459,NULL,742,43,'craft\\elements\\Entry',1,0,'2026-03-02 19:49:25','2026-03-02 19:49:25',NULL,NULL,NULL,'186e38af-ec7b-4d0d-84fa-be584329e91e'),
(1779,1441,NULL,743,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:49:43','2026-03-02 19:49:43',NULL,NULL,NULL,'3e123284-3992-4b9b-a118-7be968c7067b'),
(1780,1459,NULL,744,43,'craft\\elements\\Entry',1,0,'2026-03-02 19:49:43','2026-03-02 19:49:43',NULL,NULL,NULL,'827a496a-d9f0-47ab-803d-22d028887467'),
(1783,1441,NULL,745,6,'craft\\elements\\Entry',1,0,'2026-03-02 19:50:16','2026-03-02 19:50:16',NULL,NULL,NULL,'0cf92725-9b4d-49e3-8133-0894180d6509'),
(1784,1460,NULL,746,8,'craft\\elements\\Entry',1,0,'2026-03-02 19:50:16','2026-03-02 19:50:16',NULL,NULL,NULL,'b4bf4c27-e890-42e6-ad55-6fa3df029a95'),
(1787,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 20:03:22','2026-03-02 20:06:40',NULL,NULL,NULL,'f04c89af-047f-4ff8-9270-418c80eb5819'),
(1788,1441,NULL,747,6,'craft\\elements\\Entry',1,0,'2026-03-02 20:03:22','2026-03-02 20:03:22',NULL,NULL,NULL,'f0f7b6b5-d2ae-4110-9231-47ed79f58352'),
(1789,1787,NULL,748,49,'craft\\elements\\Entry',1,0,'2026-03-02 20:03:22','2026-03-02 20:03:22',NULL,NULL,NULL,'cbde9154-1382-483b-8ec1-ad6f84824a15'),
(1792,1441,NULL,749,6,'craft\\elements\\Entry',1,0,'2026-03-02 20:04:28','2026-03-02 20:04:28',NULL,NULL,NULL,'bd183ffd-f9a7-4756-bbea-a8ace3ef1eab'),
(1793,1787,NULL,750,49,'craft\\elements\\Entry',1,0,'2026-03-02 20:04:28','2026-03-02 20:04:28',NULL,NULL,NULL,'f0e6694d-4d0d-47c5-8027-2ac56abd5ad0'),
(1796,1441,NULL,751,6,'craft\\elements\\Entry',1,0,'2026-03-02 20:06:24','2026-03-02 20:06:25',NULL,NULL,NULL,'e13d8489-61c9-46a2-adb4-eb80bc96bfcf'),
(1797,1787,NULL,752,49,'craft\\elements\\Entry',1,0,'2026-03-02 20:06:24','2026-03-02 20:06:25',NULL,NULL,NULL,'6f056827-705f-4f88-8795-5c2daf0a6ce0'),
(1800,1441,NULL,753,6,'craft\\elements\\Entry',1,0,'2026-03-02 20:06:40','2026-03-02 20:06:40',NULL,NULL,NULL,'7e8cb7f2-b1be-47b2-bf2e-a0890a49c14e'),
(1801,1787,NULL,754,49,'craft\\elements\\Entry',1,0,'2026-03-02 20:06:40','2026-03-02 20:06:40',NULL,NULL,NULL,'27bd1b4d-2546-42f5-821c-baf126d6deb7'),
(1802,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:44:06',NULL,NULL,NULL,'c9abe101-b746-4c61-8561-8d6b8953734c'),
(1803,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:12:52',NULL,NULL,NULL,'23750793-ea08-4d6f-9da7-ac525c21584f'),
(1804,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:11:55',NULL,NULL,NULL,'d7059a09-f980-477a-b849-5a0424d699be'),
(1805,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:11:55',NULL,NULL,NULL,'170fee81-5622-4a79-bf48-c2f2a406c668'),
(1806,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:11:55',NULL,NULL,NULL,'8c3f1c8d-30c8-42ca-bd88-e1eda4885832'),
(1807,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:11:55',NULL,NULL,NULL,'0b5ef84d-67b5-4bb9-bf5d-75ce2147ce29'),
(1808,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:11:55',NULL,NULL,NULL,'850c16cd-2e2e-4268-92dd-803f0600ff1c'),
(1809,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:16:57',NULL,NULL,NULL,'36a3ee08-408f-4200-b70b-003cc7b1b235'),
(1810,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:16:57',NULL,NULL,NULL,'b0652a7d-323b-4e5e-a9f9-6b295f7a8325'),
(1811,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:16:57',NULL,NULL,NULL,'d012c8be-2359-4d1c-a94b-4732a335ab70'),
(1812,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:16:57',NULL,NULL,NULL,'6141d98c-cef8-431f-ab76-ac511687c4bb'),
(1813,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:16:57',NULL,NULL,NULL,'4c78658c-f9d8-4323-b11a-a29fa46fccdd'),
(1814,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:42:37',NULL,'2026-03-02 21:42:37',NULL,'12ac27a4-1518-498c-8656-9a8b42d52970'),
(1815,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:44:06',NULL,NULL,NULL,'9ebb4de4-79e4-4283-b19d-0c344d71f8d7'),
(1816,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'2e92cd57-f3e4-4657-b854-ce7efd309826'),
(1817,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:26',NULL,NULL,NULL,'a54176ae-c8b6-4598-8b40-29c4cff35fbb'),
(1818,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'64e3d229-1a19-4d5c-b1a0-6d6b42412fa1'),
(1819,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'d4fd5b97-ebf4-4802-afa4-facce94c2018'),
(1820,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'3077ddbc-f656-4f05-ae48-7c379d4fe70d'),
(1821,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'65376335-4cc4-43c3-986e-9bff7c616673'),
(1822,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'10249370-bf84-4081-a1e0-27a0016f65c1'),
(1823,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'295c210e-7e7e-41b7-a801-50456f01f860'),
(1824,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'b10f48b1-26d8-4313-897c-e994d22376bb'),
(1825,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'d3f40efb-1884-48f3-b8af-c958f86c722e'),
(1826,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:29:27',NULL,'2026-03-02 21:29:27',NULL,'ee1529ba-83b0-4b51-a0d2-758251df7319'),
(1827,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:11:55',NULL,NULL,NULL,'490347a4-6117-4cc6-ac8a-0a5b51860177'),
(1828,1802,NULL,755,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'a6221430-5005-434e-9c5d-365eb0fbc7c5'),
(1829,1803,NULL,756,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'44e2dde5-e027-4ff9-94c5-29600643af4f'),
(1830,1804,NULL,757,36,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'1dc6dea7-990a-46e3-ba67-d899fdd08997'),
(1831,1805,NULL,758,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'22c69448-e64c-4d12-8053-d2806627843f'),
(1832,1806,NULL,759,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'ff610b39-b5e6-440e-b93d-83a2f8c0b7cd'),
(1833,1807,NULL,760,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'4ac18ff8-9b3a-4ac6-9492-e66c8ad4edb5'),
(1834,1808,NULL,761,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'da2f8a41-4d84-40a7-98fd-b2b14806b9a8'),
(1835,1809,NULL,762,41,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'d64ea460-1b5f-4e20-bdf9-c9adeb784389'),
(1836,1810,NULL,763,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'8a711689-782c-4cba-bffd-281ec70e764d'),
(1837,1811,NULL,764,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'55ed1220-d9ad-441d-a729-63814aad72c6'),
(1838,1812,NULL,765,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'6a069d7a-0f21-4081-ad1c-c4ad4a2aac51'),
(1839,1813,NULL,766,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'c0109311-7f8a-462b-837c-45409c1aa085'),
(1840,1814,NULL,767,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:42:37',NULL,'d9270494-3871-4f3d-816a-fad61f34664c'),
(1841,1815,NULL,768,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'56a4db50-bf0c-4d5f-a742-7310fbdcd160'),
(1842,1816,NULL,769,8,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'bae9038e-dc5d-4e3b-92f2-3a7c4c1a7091'),
(1843,1817,NULL,770,44,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'2b6faa23-54ba-4d44-8f2e-76c4acc54d40'),
(1844,1818,NULL,771,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'aac7da1f-d074-4e72-963c-28356ae7c5d8'),
(1845,1819,NULL,772,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'f7b4ff78-f4f2-4d2a-bb1e-58cc611321fd'),
(1846,1820,NULL,773,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'1b235562-950e-4f9e-868d-5b2579e4fbff'),
(1847,1821,NULL,774,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'ef585cfb-110b-4e76-8ad8-9485b5cd5ad6'),
(1848,1822,NULL,775,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'d0db5cb7-56c2-4d8e-adca-55a05e0a9b4d'),
(1849,1823,NULL,776,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'8a461c87-d77d-4407-a0a4-4e30ff1e1d2d'),
(1850,1824,NULL,777,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'befca372-25b0-4170-89a6-3c31f03eadb6'),
(1851,1825,NULL,778,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'38d4dce8-d220-4e28-98e9-161721b326a7'),
(1852,1826,NULL,779,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,'2026-03-02 21:29:27',NULL,'f11a3686-369f-468b-914f-4dd615f44c0f'),
(1853,1827,NULL,780,49,'craft\\elements\\Entry',1,0,'2026-03-02 21:08:38','2026-03-02 21:08:38',NULL,NULL,NULL,'423b9eba-05d1-4792-9d1a-921b29b3b62c'),
(1862,1802,NULL,781,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'7869b746-50e0-483f-8c1d-693065e5ac2d'),
(1863,1803,NULL,782,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'f7006424-54c4-4f0d-a633-7a6a23e1922e'),
(1864,1804,NULL,783,36,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'14c907e3-ff17-40b8-8b7d-8029cb447b77'),
(1865,1805,NULL,784,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'9b2d4006-0125-4fc2-906c-a15b19afb095'),
(1866,1806,NULL,785,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'d3bcf6b3-7e87-443e-9cb1-b58ed23fd230'),
(1867,1807,NULL,786,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'5a56de5f-8972-40cd-9123-9f3f54d6c792'),
(1868,1808,NULL,787,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'a796aed8-2cdf-4d8a-938f-e909a5270816'),
(1869,1827,NULL,788,49,'craft\\elements\\Entry',1,0,'2026-03-02 21:11:55','2026-03-02 21:11:55',NULL,NULL,NULL,'d7e34eb1-db50-47e4-9139-e7aa5787949a'),
(1872,1802,NULL,789,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:12:20','2026-03-02 21:12:20',NULL,NULL,NULL,'181a6f36-0c20-42fa-ac7b-20df08e5accb'),
(1873,1803,NULL,790,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:12:20','2026-03-02 21:12:20',NULL,NULL,NULL,'2eff2bdc-b55b-498b-b4bd-ca9c9ac35478'),
(1874,1802,NULL,791,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:12:34','2026-03-02 21:12:34',NULL,NULL,NULL,'12650b92-8504-4eb0-90e5-79473bc9d33e'),
(1877,1802,NULL,792,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:12:52','2026-03-02 21:12:52',NULL,NULL,NULL,'e937046d-9a8e-4f90-aca6-bbb3d3cc6280'),
(1878,1803,NULL,793,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:12:52','2026-03-02 21:12:52',NULL,NULL,NULL,'12e1f609-03ce-4be5-9920-ddf224ff9420'),
(1885,1802,NULL,794,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:16:57','2026-03-02 21:16:57',NULL,NULL,NULL,'d8997fa5-355f-4bf4-a328-a01ca040143c'),
(1886,1809,NULL,795,41,'craft\\elements\\Entry',1,0,'2026-03-02 21:16:57','2026-03-02 21:16:58',NULL,NULL,NULL,'411c0cad-7750-447c-a4ef-440bf087909c'),
(1887,1810,NULL,796,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:16:57','2026-03-02 21:16:58',NULL,NULL,NULL,'268b9972-11b5-4d6c-ba53-78f6f9b02bb0'),
(1888,1811,NULL,797,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:16:57','2026-03-02 21:16:58',NULL,NULL,NULL,'483d4f31-b98c-405a-97a5-9aaf03a06b96'),
(1889,1812,NULL,798,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:16:57','2026-03-02 21:16:58',NULL,NULL,NULL,'aa958cc6-c236-45a3-884e-0d4f9d6d02ec'),
(1890,1813,NULL,799,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:16:57','2026-03-02 21:16:58',NULL,NULL,NULL,'ed5d93ad-a9f3-4b72-81ea-9ce0a840bbe2'),
(1905,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:26',NULL,NULL,NULL,'82761650-50e4-4d8d-a3b6-be706cbb56a8'),
(1906,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:26',NULL,NULL,NULL,'3f92a303-b4da-43e2-90b0-443c373d9413'),
(1907,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:26',NULL,NULL,NULL,'82ba946c-c307-4175-bd2e-cf5bdfb5bfba'),
(1908,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'8f69465a-a0e7-4e19-9389-3fd6c25696c6'),
(1909,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'21cdeca8-b951-47b6-8d26-35498585bb47'),
(1910,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'82cfa0a7-3821-4dc8-b39f-2088c6034d46'),
(1911,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'0fb2e971-0146-42ad-b27d-4dc79fa76c1b'),
(1912,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'9a38fba4-f27d-4952-b537-5b7030e57cfc'),
(1913,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'6d93eba0-2b69-4ae3-a0d0-e6b125d92771'),
(1914,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'2dd48d3d-dbca-470c-a3d9-4c5ecf9a1dec'),
(1915,1802,NULL,800,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,NULL,NULL,'a63520b8-b347-447f-b473-328019bbb5d4'),
(1916,1814,NULL,801,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,'2026-03-02 21:42:37',NULL,'85861507-4437-455a-a31f-4511d812f4bb'),
(1917,1815,NULL,802,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,NULL,NULL,'c614f4b0-e97f-40f7-a830-d6759dda526a'),
(1918,1817,NULL,803,44,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,NULL,NULL,'0dd2c44a-97ca-4d4b-942f-a00173f1cf41'),
(1919,1905,NULL,804,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,NULL,NULL,'b2804273-34a3-4b8d-8b20-72313ee9e2b9'),
(1920,1906,NULL,805,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,NULL,NULL,'9ed0113c-7b57-42ec-8018-2daf641a7135'),
(1921,1907,NULL,806,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:26','2026-03-02 21:29:27',NULL,NULL,NULL,'c23f5bc6-eb56-4718-a57b-e7a93bef8e2f'),
(1922,1908,NULL,807,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'0f71644c-f5ba-4163-9a6a-2d1b33053247'),
(1923,1909,NULL,808,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'f1709434-e458-4f01-bec6-516d8f0e7892'),
(1924,1910,NULL,809,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'f45a7992-bcc5-455d-9f02-7cfb483dcec1'),
(1925,1911,NULL,810,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'49e8b9fb-1ea5-4507-960f-2f69db1216d7'),
(1926,1912,NULL,811,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'e7b6a66b-02cf-4237-b1ac-26ccbaf5041c'),
(1927,1913,NULL,812,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'33f4c232-1d45-4040-b6f9-e2260b387fbd'),
(1928,1914,NULL,813,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:29:27','2026-03-02 21:29:27',NULL,NULL,NULL,'ce68434d-62e2-4485-8bf4-71af763a3889'),
(1931,1802,NULL,814,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:30:03','2026-03-02 21:30:03',NULL,NULL,NULL,'18a104bd-981b-478f-ac03-8166dcce5c32'),
(1932,1814,NULL,815,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:30:03','2026-03-02 21:30:03',NULL,'2026-03-02 21:42:37',NULL,'59524e39-578a-436c-b715-0c337b5d52ed'),
(1935,1802,NULL,816,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:31:38','2026-03-02 21:31:38',NULL,NULL,NULL,'4ea8ed68-4d91-400f-b139-bf70ad89dee5'),
(1936,1815,NULL,817,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:31:38','2026-03-02 21:31:38',NULL,NULL,NULL,'9e12ccb5-90ec-4007-a772-220b2f23ffbc'),
(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'),
(1943,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:42:37','2026-03-02 21:42:37',NULL,NULL,NULL,'a9113b39-220b-4acf-a43b-d6934f38c21d'),
(1944,1802,NULL,818,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:42:37','2026-03-02 21:42:37',NULL,NULL,NULL,'0903ced2-e12e-409f-ad0b-9de1a08a58ee'),
(1945,1943,NULL,819,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:42:37','2026-03-02 21:42:37',NULL,NULL,NULL,'a705bb55-c404-4bff-bb35-1ce1a4607786'),
(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'),
(1949,1802,NULL,820,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:44:06','2026-03-02 21:44:06',NULL,NULL,NULL,'f0291f86-fd60-4ab1-b886-05ceea981607'),
(1950,1815,NULL,821,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:44:06','2026-03-02 21:44:06',NULL,NULL,NULL,'ca9299c3-7be8-48a4-b407-a4cf3c83c79d'),
(1951,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 22:05:29',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-03-02 21:54:33',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-02 21:54:33',NULL,NULL,NULL,'10e2b067-0c70-45d1-895e-e0292bba742e'),
(1954,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'3e81a864-7c03-4eee-804c-8a4e1d93f926'),
(1955,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'4bcd7fcf-f5ec-4fe2-99d9-2f2943a12155'),
(1956,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'fb2002a9-d7c4-420b-ac99-d6e99d23fd62'),
(1957,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',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-03-02 21:54:33',NULL,NULL,NULL,'3fdaba0b-ea69-460f-bb75-894f226b94e2'),
(1959,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'bd7e9ae8-c702-49f1-a72b-57b769043592'),
(1960,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'7a64c21f-4273-4910-bec3-6dd464afd9c5'),
(1961,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'8f06dd9f-45bb-444f-9be8-6cc9b8762a97'),
(1962,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:54:33',NULL,NULL,NULL,'e064c8df-0e8b-42fb-a1a5-72d897cf868e'),
(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-03-02 22:03:47',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-02 21:45:13',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-03-02 22:03:47',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-03-02 21:45:13',NULL,NULL,NULL,'3e9da1e3-7f06-4f8d-9fb4-597e6fa1da22'),
(1978,1951,NULL,822,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'04d9651b-60cd-4ed0-b219-f998125b41ba'),
(1979,1952,NULL,823,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'619bf394-b547-4a4b-9b55-0228674e58d7'),
(1980,1953,NULL,824,36,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'2f5a441e-8cca-4531-ada8-58bbf265b899'),
(1981,1954,NULL,825,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'5fe7a2ab-f0a4-48c8-b3d8-38d7d50893ea'),
(1982,1955,NULL,826,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'d2443097-e081-4859-ab83-46f03696868a'),
(1983,1956,NULL,827,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'f3ab7f90-cc29-42d4-b9e6-7fdd6d054765'),
(1984,1957,NULL,828,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'fcdb14d9-e17a-4e90-a94e-54d7d24e5102'),
(1985,1958,NULL,829,41,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'8c9384fa-0d87-4538-ae59-f11a83df1823'),
(1986,1959,NULL,830,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'65ed4804-70a8-4a31-9d0b-0a0eda8e08f3'),
(1987,1960,NULL,831,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'990e3406-e173-499e-96f0-f71747a48448'),
(1988,1961,NULL,832,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'52d02b71-d0dc-44d5-ab23-a0408106eaca'),
(1989,1962,NULL,833,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'9c4b5327-0c49-4c09-a2ae-47e48791a909'),
(1990,1963,NULL,834,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 21:54:33',NULL,'751384f7-3768-4a70-a278-68673e8d2589'),
(1991,1964,NULL,835,43,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'b6b68707-02a0-431f-8eeb-61979aa42337'),
(1992,1965,NULL,836,8,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'c8cfbfdc-cfb3-4bfe-b100-12dd1bbeea06'),
(1993,1966,NULL,837,44,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,NULL,NULL,'2b1fdcf1-ef3d-422d-af35-492d1bcbd371'),
(1994,1967,NULL,838,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'6a0a8f47-eca1-4845-a9f4-414560965e99'),
(1995,1968,NULL,839,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'23ff907c-94ba-4d5a-9e12-bfb15d1a99a0'),
(1996,1969,NULL,840,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'a2d9b6e7-9ccc-4e1e-93e3-5e22bf8f7b17'),
(1997,1970,NULL,841,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'223fa243-00cf-42ed-85a2-d8da69786fc0'),
(1998,1971,NULL,842,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'90212093-a905-4079-9a83-2d4991ae87b8'),
(1999,1972,NULL,843,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'48b5941a-483a-4dbc-baab-4b7069eadacd'),
(2000,1973,NULL,844,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'f196f006-ee44-4ff5-85f2-bf6f1aee1617'),
(2001,1974,NULL,845,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'77d9916f-76ec-4ac1-9596-4b769503a9cf'),
(2002,1975,NULL,846,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'3283853e-ea2d-4dad-9ce5-2242c7ccab13'),
(2003,1976,NULL,847,35,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',NULL,'2026-03-02 22:03:47',NULL,'ff7d41aa-1f7e-4e05-aec6-9a217457f581'),
(2004,1977,NULL,848,49,'craft\\elements\\Entry',1,0,'2026-03-02 21:45:13','2026-03-02 21:45:13',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-03-02 22:05:29',NULL,NULL,NULL,'332f3188-6111-4c26-8b62-e0b38066623b'),
(2021,1951,NULL,849,6,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'a0057deb-972a-429d-a696-a2ac6776d820'),
(2022,1952,NULL,850,39,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'35a774b0-7824-4bd4-adf5-cabd4b1d517b'),
(2023,1953,NULL,851,36,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'2410186a-275b-4295-952d-1ac858c62388'),
(2024,1954,NULL,852,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'ad74f33b-71cd-43f2-99f8-80d6a49c296a'),
(2025,1955,NULL,853,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'e1a43425-1ef7-436c-ada5-84ce7b8d95b0'),
(2026,1956,NULL,854,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'dda2c77c-e831-4aaa-804a-38e2e551afc2'),
(2027,1957,NULL,855,37,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'cc8bb739-9297-4514-9005-da6ed99dd472'),
(2028,1958,NULL,856,41,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:33',NULL,NULL,NULL,'a25a872d-ac12-4927-a4d9-fddf5ab80d96'),
(2029,1959,NULL,857,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:34',NULL,NULL,NULL,'ce393ad2-53d8-49d1-a948-7a6da497b6cb'),
(2030,1960,NULL,858,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:34',NULL,NULL,NULL,'c90d37bf-e3f1-43df-bb7d-7f1d7717bcf2'),
(2031,1961,NULL,859,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:34',NULL,NULL,NULL,'5bc58b3e-f0f0-4bbe-a6e7-af8a51ebd9e9'),
(2032,1962,NULL,860,40,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:34',NULL,NULL,NULL,'d9501c62-ad74-4660-a355-9f8616bcb0e8'),
(2033,2020,NULL,861,42,'craft\\elements\\Entry',1,0,'2026-03-02 21:54:33','2026-03-02 21:54:34',NULL,NULL,NULL,'fe26f012-4343-4b38-a7f8-2010dba66fce'),
(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'),
(2051,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'b515fc0f-98c2-46e9-8805-519ee6fcf9b8'),
(2052,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'3130424e-447d-4d05-b298-3e583f60b99f'),
(2053,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'45578fc5-d245-45b5-83b5-db5d71a7a47f'),
(2054,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'174fc8a8-c9ea-43e7-9cb4-197f3f1975ae'),
(2055,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'551de131-32cd-4562-a6e1-bebd8bd56227'),
(2056,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'9a6be9d0-e0f9-4434-bb94-e41700bf4162'),
(2057,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'eb9a1f39-ef1e-4a72-8c7e-88cabc9cd6ea'),
(2058,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'f5675ef1-7d0e-43fc-913c-9e4729a856bb'),
(2059,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'4d4cbe08-ab94-4fe0-8170-f38b04b7e5fa'),
(2060,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'6428ef51-bfca-4660-a190-71e9ecd4a782'),
(2061,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'0cfb3a38-3c68-497c-b97d-b0e3b0304740'),
(2062,1951,NULL,862,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'e4b680ce-08ef-4ae4-b282-b90d24b18592'),
(2063,2020,NULL,863,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',NULL,NULL,NULL,'5f22afc5-f6be-4912-9769-1f87c585c089'),
(2064,1964,NULL,864,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:47',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-03-02 22:03:47',NULL,NULL,NULL,'18171e9c-409e-4f64-bf16-0a24dfd5f8a1'),
(2066,2051,NULL,866,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'90beece5-0523-4868-b2ef-4232604e6ed4'),
(2067,2052,NULL,867,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'93f6c9f9-23bd-4fea-b7f2-1b2a2a267f6c'),
(2068,2053,NULL,868,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'973e68c7-ea6f-428a-86d9-54bb711725cb'),
(2069,2054,NULL,869,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'1eb820c1-2c53-4ed7-9c12-58445661db22'),
(2070,2055,NULL,870,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'e526d03e-5c24-4808-a0c0-e19b14e6bf23'),
(2071,2056,NULL,871,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'15b21334-f048-4307-8859-906a42afea0f'),
(2072,2057,NULL,872,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'86e50f03-2f6d-408b-aa03-9347edd6392c'),
(2073,2058,NULL,873,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'d3549d07-69ed-4d58-82e4-7e6b278011ba'),
(2074,2059,NULL,874,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'d0694dc4-7d1b-4e5d-94d4-ddb4580a6982'),
(2075,2060,NULL,875,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'d5bebab4-1da6-4990-8bd3-79f67efe2f74'),
(2076,2061,NULL,876,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:03:47','2026-03-02 22:03:48',NULL,NULL,NULL,'1e697d7d-b970-4db5-a2e2-e6facc144e09'),
(2079,1951,NULL,877,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:05:29','2026-03-02 22:05:29',NULL,NULL,NULL,'86250721-7430-415e-9dbc-fa9295dbd055'),
(2080,2020,NULL,878,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:05:29','2026-03-02 22:05:29',NULL,NULL,NULL,'4a0f195e-e7bc-4376-8da7-537a041b0cc8'),
(2081,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:42:57',NULL,NULL,NULL,'8852229f-ff03-46fc-9e6c-b4051fa363dd'),
(2082,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'e03164aa-8e43-41c9-8716-cd866d17112d'),
(2083,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'c349ac41-2984-4f2d-843b-fd8e7af8b870'),
(2084,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'133a8580-5402-4ffa-a3bb-c50342edb27b'),
(2085,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'71128027-2b03-45d9-aab3-2633834d0d6e'),
(2086,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'caa9a64d-02ed-40dc-84f4-0d2e83b5ee69'),
(2087,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'258de5be-2097-4627-9caf-07ab9f19a5ec'),
(2088,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'d7ef6b9e-87d5-41bd-8c21-c4662444d1e9'),
(2089,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'d68d08d6-c7de-4a2f-af66-c3b0816b57be'),
(2090,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'c49ed1d9-9c8d-4349-8540-0487a72f0965'),
(2091,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'5d2d175a-5643-489d-80a3-79f1c0e3c5b6'),
(2092,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:25:33',NULL,NULL,NULL,'ee7ccfa6-b301-4f60-a896-2df0fb155ffd'),
(2093,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:42:57',NULL,NULL,NULL,'912e9b31-aa32-4bd4-93b7-b40ffedd6352'),
(2094,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'620de3a3-9082-41d9-b39e-f495ec6d89e2'),
(2095,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'6c119e2e-138e-4317-8569-1cb379ff94b4'),
(2096,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'34aa0981-2254-4e5f-a28a-ed35d3304483'),
(2097,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'5b6aa2f2-6d24-429c-88d7-dcea7f190b2d'),
(2098,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'4bd54d4b-149d-4adc-9be0-5baad5f154b4'),
(2099,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'bd62a598-82f3-4461-bd42-cd66b07eb2dc'),
(2100,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'e172ffd7-b792-4b3e-9d63-c9769d6a581c'),
(2101,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'e76b62c9-1425-4b25-815b-1c6727b9c019'),
(2102,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'6fbc1742-4aaa-44e4-b545-802cbeb433d6'),
(2103,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'5b370439-51c1-4990-85a7-014870238b41'),
(2104,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'d3301e93-0603-4081-b6f3-8ea9bb98b89b'),
(2105,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'4b06b555-4576-4c83-a8df-95842b5b113b'),
(2106,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'c032f385-6482-430d-9b57-c8d542b18ce5'),
(2107,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'52630296-b1bc-4e4f-aaa8-11c4dd7eada6'),
(2108,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'9906e46c-16e6-4ddc-a157-1302d138ccfa'),
(2109,2081,NULL,879,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'386fe492-aa9c-427f-80cc-47b9eaf5730d'),
(2110,2082,NULL,880,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'6a0532f8-c739-4424-aadb-d620e92eb171'),
(2111,2083,NULL,881,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'667a94f8-ea8e-40e3-b5e2-388e9ff744a8'),
(2112,2084,NULL,882,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'21388b25-3ddf-47dc-ac59-472e8372974d'),
(2113,2085,NULL,883,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'8600fc4c-c0ab-4617-9ed5-d5c2f4555d17'),
(2114,2086,NULL,884,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'a3ec35b5-dbd2-40b5-b5ac-2638571e64e0'),
(2115,2087,NULL,885,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'4d2e7524-7c04-44ec-9599-58c7a8345e51'),
(2116,2088,NULL,886,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'0450492a-91cd-4698-9d7c-72967d112a5b'),
(2117,2089,NULL,887,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'dfe0fd44-69da-495d-b0fb-6e14d4e8cf23'),
(2118,2090,NULL,888,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'b9cd88e4-c2af-4928-9b48-bb77361b1705'),
(2119,2091,NULL,889,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'1760f00f-25ac-4f4d-a562-ae790d5e15a3'),
(2120,2092,NULL,890,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'35cfb91d-ca04-4c07-9f9d-aa08d8750e38'),
(2121,2093,NULL,891,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'99bf16ac-5fa0-492e-ac9e-8f00a5a0d459'),
(2122,2094,NULL,892,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'5f79733e-2b80-4123-b33e-653768624044'),
(2123,2095,NULL,893,8,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'8bdb4c09-a4e1-4a29-b2c3-67e0b12fcfc4'),
(2124,2096,NULL,894,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'5ac877ef-be8a-46d6-8420-ceb31146dbf1'),
(2125,2097,NULL,895,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'3607039a-60c6-46cc-a044-29afb52793e4'),
(2126,2098,NULL,896,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'07a7b6bc-51ac-445f-bf79-98a9f743c7bb'),
(2127,2099,NULL,897,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'2da83d50-73d9-4045-bb55-3278ee94e397'),
(2128,2100,NULL,898,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'82c2fac6-12a9-4ca6-918d-7734be3ba5f1'),
(2129,2101,NULL,899,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'87df2924-7e1a-45a1-af1a-c26665e4c0a6'),
(2130,2102,NULL,900,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'0bc34e83-f2aa-4e27-b9df-930ee5d4dd6a'),
(2131,2103,NULL,901,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'877f5bf6-6a27-4682-bfca-17eba406e87e'),
(2132,2104,NULL,902,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'b70a5643-b317-408f-8a2f-f246bc5369df'),
(2133,2105,NULL,903,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'e3b369c6-44f7-453f-893b-735588853daf'),
(2134,2106,NULL,904,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'655cb780-0886-4a73-8e12-aa29fe776f4b'),
(2135,2107,NULL,905,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'f5cf54cb-61f3-4900-941b-f7688a43eaf3'),
(2136,2108,NULL,906,49,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:18','2026-03-02 22:08:18',NULL,NULL,NULL,'e2cd1910-0c1a-4524-a812-5a7e7e016e2f'),
(2137,2081,NULL,907,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:08:29','2026-03-02 22:08:30',NULL,NULL,NULL,'a0841abd-5e26-4948-bb70-012b574729fb'),
(2150,2081,NULL,908,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'d10f34f3-cfbe-4d92-a930-5dbdfa76f5dc'),
(2151,2082,NULL,909,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'7b0aef5e-f6b4-4317-bf9a-aa4a4ebbb44c'),
(2152,2083,NULL,910,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'08032e17-0185-4df4-973a-cab42e23bb87'),
(2153,2084,NULL,911,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'5ae521bd-8e44-442c-bfbc-6007673afc03'),
(2154,2085,NULL,912,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'564e2991-013d-4725-a114-cd50ab5b84bf'),
(2155,2086,NULL,913,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'d8fdd314-ace7-4805-a305-0f7d30ef085f'),
(2156,2087,NULL,914,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'1d83fca3-99df-4f21-a89f-fdf21b7765de'),
(2157,2088,NULL,915,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'f357083c-fcc5-4884-ae7c-ece6152f19c6'),
(2158,2089,NULL,916,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'35af72fe-3a1e-4747-af7f-49c94b0c260a'),
(2159,2090,NULL,917,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'e7a5d342-7dc0-4184-82d6-3098460646f0'),
(2160,2091,NULL,918,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'c68c95b7-058f-49a6-b0d4-bb36d3ac978c'),
(2161,2092,NULL,919,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:25:33','2026-03-02 22:25:33',NULL,NULL,NULL,'c08df85f-6f42-49af-8c67-8a089ece088f'),
(2162,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:44:08',NULL,NULL,NULL,'e2b25cde-8470-4ff0-a965-7f12c03ab9af'),
(2163,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'6d50e28b-7b4e-4c53-8bb8-695efe3a0f2f'),
(2164,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'044c0e93-071a-4e9f-aea6-e72dcb609fd2'),
(2165,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'cad0834d-092a-490c-b2c5-a598c963dfba'),
(2166,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'41d99cd8-3651-485b-9880-853864add5d5'),
(2167,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'6e25e801-6335-4542-b57a-970d1a562463'),
(2168,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'e04165c8-c704-48b0-82a8-7cc756748931'),
(2169,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'74b61902-826e-4c3e-a9e3-8fb3d75c622f'),
(2170,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'731782de-faaa-4330-8252-0e9f2b1be232'),
(2171,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'c378d61a-dac4-4b6a-8ebe-6192e2a2ec82'),
(2172,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'efd05cac-4983-4cb5-ab53-136d24de54c7'),
(2173,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'c47f1adf-45a9-47d6-bae5-45f5ac5f0594'),
(2174,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:44:08',NULL,NULL,NULL,'32c74e07-5f57-4a5b-8508-10c98c66272e'),
(2175,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'ffd3dbca-cd3e-4ba0-bfa2-333571a783c2'),
(2176,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'86914e84-2e58-4129-a37e-642ea4ee3943'),
(2177,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,NULL,NULL,'19478ed1-64f9-4e6b-b548-f4c42a19cb2f'),
(2178,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,'2026-03-02 22:42:38',NULL,'c99e071c-10bb-438e-b54f-7d104dc7de84'),
(2179,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:38',NULL,'2026-03-02 22:42:38',NULL,'e4e4af59-25a9-4468-804f-a0cf1c404ca5'),
(2180,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'fcaf547e-9861-4eef-bab1-aaa5ed206fc8'),
(2181,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'e6113598-3501-4417-9bf1-85aaf9a711d8'),
(2182,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'e867c354-6e77-4405-9fe8-fa53cfe5fba0'),
(2183,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'5d77025f-c1e9-4957-89cd-74950ead4568'),
(2184,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'df6c8553-a707-4e46-aa69-f8d5b874f67c'),
(2185,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'a8e8fb9a-f124-4cb5-99e4-895adc774751'),
(2186,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'6b59d427-99eb-435f-b0d0-cd4c94298cec'),
(2187,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'2f8bdf12-cb5a-4892-8fc1-efb46a6d534d'),
(2188,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:42:39',NULL,'2026-03-02 22:42:39',NULL,'f0b9d273-3847-4e31-88f3-7c60206abca4'),
(2189,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'4a6b2335-ed14-4d25-b732-5377b2f0882a'),
(2190,2162,NULL,920,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'2844e15c-9b81-4387-a8cb-fccd11d05fa8'),
(2191,2163,NULL,921,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'c82b9848-2bc4-4477-8c30-3f3575f2f385'),
(2192,2164,NULL,922,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'27be0ef2-597d-4868-b0b6-e532482b1cd8'),
(2193,2165,NULL,923,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'491303e3-c232-40aa-beb7-b7c5926a34bc'),
(2194,2166,NULL,924,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'655768ba-b306-46c3-a0a4-75dd1eb37afb'),
(2195,2167,NULL,925,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'4cafd74f-178b-4140-a62f-29b3e6d0ee49'),
(2196,2168,NULL,926,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'a136648d-de78-4380-aa2a-036fab262646'),
(2197,2169,NULL,927,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'0d61b568-3abe-4b6b-9552-59618f0a6124'),
(2198,2170,NULL,928,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'278c2590-67be-4f5e-889f-7e52fffd354b'),
(2199,2171,NULL,929,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'7385ea4e-3bc5-4608-a895-b78397ece88a'),
(2200,2172,NULL,930,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'e228ff93-e416-4885-834c-0058ac839f3b'),
(2201,2173,NULL,931,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'6bb18964-498c-48ab-a4a9-d69436d266ee'),
(2202,2174,NULL,932,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'be22ab12-344b-4601-9635-4ed1ecc1b39b'),
(2203,2175,NULL,933,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'f059f3c4-0023-4830-a1bf-117f68a69a63'),
(2204,2176,NULL,934,8,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'1524a76c-01e5-4773-aefa-9747eb3c53c4'),
(2205,2177,NULL,935,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'09aa21b8-5214-467d-a1d3-d130ebd0f55c'),
(2206,2178,NULL,936,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:38',NULL,'536f8922-7a19-46f9-9c08-9e5a7ec3adfd'),
(2207,2179,NULL,937,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:38',NULL,'1bc8c9de-11b7-401e-9bcc-10a450657b5d'),
(2208,2180,NULL,938,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'8058d25b-1523-4a07-bd55-358f06234e61'),
(2209,2181,NULL,939,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'f54169ba-1d62-4160-9e7d-87eb22afc876'),
(2210,2182,NULL,940,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'db68531e-23c7-4a1d-b0f8-33b9afa8a362'),
(2211,2183,NULL,941,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'11a2d32c-c550-4d94-8920-321b767ba1ec'),
(2212,2184,NULL,942,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'72e7e049-b282-4bd6-8690-8f430673ae63'),
(2213,2185,NULL,943,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'23f7b8a8-7048-4688-b98b-cc690e1b9233'),
(2214,2186,NULL,944,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'63b70107-c34f-4ac5-a08e-18982af35005'),
(2215,2187,NULL,945,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'45c623c3-d503-4bd3-808d-156750239b9e'),
(2216,2188,NULL,946,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,'2026-03-02 22:42:39',NULL,'7bf88ab3-0706-42f2-aed2-79f990a7e2f0'),
(2217,2189,NULL,947,49,'craft\\elements\\Entry',1,0,'2026-03-02 22:26:42','2026-03-02 22:26:42',NULL,NULL,NULL,'bf2ef47e-db2f-49f9-a52d-fb669c96fa52'),
(2243,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'7848456c-34db-4e46-88d7-112b82d485e0'),
(2244,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'f879abeb-27a3-4edf-a016-8f9c20851ff5'),
(2245,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'ea0311ee-87ed-4e21-86f5-0fe15788485a'),
(2246,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'99bc3c3f-7912-4c21-b524-09b08345a732'),
(2247,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'a46af555-dbbb-4dd0-b59c-89bd538c0948'),
(2248,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'71ee6a6d-6e99-4ab2-b935-41d39ca0b53e'),
(2249,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'765ae8d9-16ab-4e1f-b2c3-9b222b1ddd7f'),
(2250,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'f191a573-a9cc-4600-a37b-8017f1803d6e'),
(2251,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'6b5257a6-d4c0-413c-aee7-8bf1b1e6a739'),
(2252,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:38',NULL,NULL,NULL,'37cde82a-2c3b-4983-a71c-119ab418eed3'),
(2253,2162,NULL,948,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'c6c440d6-72db-46e1-aa1a-41e6d2708718'),
(2254,2163,NULL,949,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'87c6acf2-a843-4b67-b166-909495ce5dc5'),
(2255,2164,NULL,950,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'f2eab465-0d22-469b-bafa-5ef893c8a803'),
(2256,2165,NULL,951,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'940a58c8-3440-484b-b8a0-6993e321f16c'),
(2257,2166,NULL,952,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'b30f4bd8-34f8-41ae-b91e-218f60acd4f1'),
(2258,2167,NULL,953,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'2075850e-b055-4cd0-9c9e-24a8e697693c'),
(2259,2168,NULL,954,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'9a55c2c8-1f8c-49cb-af7f-fb706d70aa1a'),
(2260,2169,NULL,955,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'68662812-9eb5-4003-a094-45c68707861d'),
(2261,2170,NULL,956,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'d1d8aead-7601-4753-9401-884237fb517d'),
(2262,2171,NULL,957,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'2780c748-910d-496f-868c-be7db0374d41'),
(2263,2172,NULL,958,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'603e5d98-57a2-4834-876e-07cf4d962092'),
(2264,2173,NULL,959,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'76681806-2192-4334-bce0-dbe12a1bb76c'),
(2265,2174,NULL,960,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'a55d768b-60a7-4a5c-86ff-f616b219d5df'),
(2266,2175,NULL,961,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'c950d39a-7b13-413c-b31d-4397e87e6746'),
(2267,2177,NULL,962,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'0b981cda-d34f-4773-a2e6-e964b7ab3d2b'),
(2268,2243,NULL,963,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'eea6dba8-8cab-4c47-9351-4c89020ad8f9'),
(2269,2244,NULL,964,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'3b2094f2-5868-4e47-ab8a-6a6fcf152cc1'),
(2270,2245,NULL,965,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'fa60b13b-b85d-4305-845f-56363d1adad2'),
(2271,2246,NULL,966,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'2fa664d0-5612-4396-b17c-ea3ee257102e'),
(2272,2247,NULL,967,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'3e00a7e6-5de0-43f5-b3a8-23026b471352'),
(2273,2248,NULL,968,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'cd9853b2-7c24-42ca-85d0-84be07dfc3b7'),
(2274,2249,NULL,969,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'5ef384f6-d0dc-427b-98e1-bc4534aa1d09'),
(2275,2250,NULL,970,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'2046ae19-64bf-4477-9dae-131c4c83bc67'),
(2276,2251,NULL,971,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'f62c43fd-82a1-48da-884c-c880c9551482'),
(2277,2252,NULL,972,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:38','2026-03-02 22:42:39',NULL,NULL,NULL,'a45b0f01-6b08-4720-8c2c-114b315a03ad'),
(2280,2081,NULL,973,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:57','2026-03-02 22:42:57',NULL,NULL,NULL,'57514cab-c1aa-4bed-8c8e-c2b02a76a32e'),
(2281,2093,NULL,974,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:42:57','2026-03-02 22:42:57',NULL,NULL,NULL,'d48622a0-0bef-49a2-86b9-0257dfa407ca'),
(2284,2162,NULL,975,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:44:08','2026-03-02 22:44:08',NULL,NULL,NULL,'dd3e4c1b-6bba-4be9-9994-50f0de5f1354'),
(2285,2174,NULL,976,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:44:08','2026-03-02 22:44:08',NULL,NULL,NULL,'d9425be5-b78d-475a-a5b4-a302d81ffef8'),
(2286,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:15:24',NULL,NULL,NULL,'97cf3028-bdc2-47ba-8c40-ee4fb0fd89ae'),
(2287,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'cf7c6b55-4b48-41a8-be84-35a27f2a7010'),
(2288,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'a2db1dda-c488-49c4-bbbc-738cb3777a62'),
(2289,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'258adc1b-5f84-4c70-8a3d-177d7c4e26e8'),
(2290,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'64ad89fc-0967-4c31-ab03-d5be46b9fe0d'),
(2291,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'d1df3757-8331-43f0-bc65-e6ea49901ef2'),
(2292,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'820c3255-9e82-4887-94d3-b0fb0df91d9c'),
(2293,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'990b2742-e2be-4af4-9c17-3f1a3713a28d'),
(2294,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'845dcb12-f746-4ddb-af29-cbf6e3ae30d2'),
(2295,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'cbd40362-ab40-4fb2-9aca-34f515cc693c'),
(2296,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'22dec041-0b9f-4861-b8b0-87a1a946364b'),
(2297,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'9f443ee3-5dd4-4d36-967a-67f08774d58d'),
(2298,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:15:24',NULL,NULL,NULL,'1402bb42-bed9-406a-b473-81555db678bd'),
(2299,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'33e740bc-13cf-4e5a-9531-edea641a8be2'),
(2300,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'5b56cf13-69c0-4325-b6fc-0064eb796b5b'),
(2301,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,NULL,NULL,'3da2635d-06cb-48fa-9d81-55bfd98521c1'),
(2302,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'b877a5b8-af34-4038-bd08-9bd53fd0a3da'),
(2303,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'b08d4f72-fae1-46d2-ad02-96607b7715a3'),
(2304,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'d8de30a9-090c-433f-9a41-8044271fd46e'),
(2305,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'4ee9e429-55aa-4cc6-af01-ba8c9eb2e9e1'),
(2306,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'cfd3a380-69cf-4c90-b9d9-ff8589f2caea'),
(2307,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'aa3cbed6-1dba-4917-bfe6-406b56fbfa0a'),
(2308,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'b89adee7-c023-490c-a8dd-a39278e41cb8'),
(2309,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'dc6bce54-5aaf-407d-b410-dddb602c3058'),
(2310,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'961f230e-c487-4cb5-82a4-ad0c3b44c4fd'),
(2311,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 23:14:36',NULL,'2026-03-02 23:14:36',NULL,'7a89c32b-80a8-4bf4-9030-e9456a9be104'),
(2312,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'eaf196c0-1cf5-470b-bba6-cb93b4f6c4ae'),
(2313,2286,NULL,977,6,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'e8f60710-c0f1-49ba-9ce1-02f51c6ea721'),
(2314,2287,NULL,978,39,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'14477540-951a-4013-adbd-71099cac4d5c'),
(2315,2288,NULL,979,36,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'474bb7e9-3e44-4277-a4c7-616077041c29'),
(2316,2289,NULL,980,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'d1781311-0eec-4435-ae34-fc0978b73ec9'),
(2317,2290,NULL,981,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'7d8a2229-aa6f-4638-b04e-f1e3281695cd'),
(2318,2291,NULL,982,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'7390d6fc-8dcd-42c9-bd8f-6c79aeddef76'),
(2319,2292,NULL,983,37,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'0db95435-ad2b-4391-87d5-8fa1764e97c5'),
(2320,2293,NULL,984,41,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'9249d8a5-67c8-43f7-809a-43e7c4ed4b21'),
(2321,2294,NULL,985,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'d31546f5-43ee-4304-9241-1371d43a38c4'),
(2322,2295,NULL,986,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'35825466-f34c-4615-82f1-6035b07470af'),
(2323,2296,NULL,987,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'65e6b493-83fa-4684-b083-e1b998caf05d'),
(2324,2297,NULL,988,40,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'4a449bf8-bfd8-4e4a-bd30-d8367f10fa78'),
(2325,2298,NULL,989,42,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'3e751b48-754c-4788-808b-32c46af42eb5'),
(2326,2299,NULL,990,43,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'8ba6bb0a-6f8d-45da-858e-8e429a299aba'),
(2327,2300,NULL,991,8,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'2c10c762-2851-4b82-b618-e683149f7af7'),
(2328,2301,NULL,992,44,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'492170da-f71c-43e0-b87d-da51994d0ff2'),
(2329,2302,NULL,993,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'2c6b2930-db16-4e97-b722-047d832bb9a3'),
(2330,2303,NULL,994,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'b5b0ba1f-ca5a-4635-8c95-f2bcfb0b21c9'),
(2331,2304,NULL,995,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'7ee9fabe-cf11-4a13-b7da-9e81009f1286'),
(2332,2305,NULL,996,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'d206d18b-3e81-4c91-9008-68e9a4538c03'),
(2333,2306,NULL,997,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'f9dad4cc-41e7-4211-b696-75c1776a0bcf'),
(2334,2307,NULL,998,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'634088c2-e687-4545-babc-de2f9f8745e7'),
(2335,2308,NULL,999,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'1b71176d-54bc-4711-b19d-0f4521bebd88'),
(2336,2309,NULL,1000,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'7148ba49-ce62-4a49-a012-036efd886958'),
(2337,2310,NULL,1001,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'c491ff54-6386-4cf0-bc2b-e3c488e78c4b'),
(2338,2311,NULL,1002,35,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,'2026-03-02 23:14:36',NULL,'40d01dbc-8809-4d7f-b985-1f8ca5ec672d'),
(2339,2312,NULL,1003,49,'craft\\elements\\Entry',1,0,'2026-03-02 22:50:42','2026-03-02 22:50:42',NULL,NULL,NULL,'2b89dcec-df16-4a23-b593-16520ea41ff1'),
(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'),
(2368,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'058c059a-0adb-4c8f-bcee-6be1a763a6c4'),
(2369,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'ecda1b4a-69e5-42f0-948d-6c8d686ba4ef'),
(2370,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'2e90a304-28d2-4b2c-be0a-a279a679da4e'),
(2371,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'e75bbce1-3910-4c6e-b29a-892e04463b77'),
(2372,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'a4338417-eeb3-4bbb-a911-d3214f27c3d3'),
(2373,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'3a14b2f1-c47d-4c5d-b96f-dfd60b5e3b8c'),
(2374,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'32691e23-d5ae-4653-9f18-f29454b0b050'),
(2375,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'f354228b-cb7f-468a-8e1f-333319d1b378'),
(2376,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'8edb1484-4f1d-4067-83fd-6f0e0ae4cda3'),
(2377,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'24037366-d859-43b3-b9bd-79b8b3c24ab2'),
(2378,2286,NULL,1004,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'46e4cd15-6916-411f-a045-b5ffcc46ecef'),
(2379,2287,NULL,1005,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'c73f0673-d2f8-4fc0-9786-e9baebc681dc'),
(2380,2288,NULL,1006,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'4e438aa7-504d-4d98-a44e-cbe4e9500a1e'),
(2381,2289,NULL,1007,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'c0795988-bc86-4e49-91e7-24f9abf39634'),
(2382,2290,NULL,1008,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'09a8e69c-8209-4df5-a7fe-49b1382f4747'),
(2383,2291,NULL,1009,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'116983ec-8a46-494e-8e4c-a4b1d5ea4803'),
(2384,2292,NULL,1010,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'1036c436-cf52-4d44-8752-6db53f36bec4'),
(2385,2293,NULL,1011,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'4bc54dd4-9a7e-4b2b-972b-71a6b1159852'),
(2386,2294,NULL,1012,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'a428a795-2035-43fe-88ea-003576240a38'),
(2387,2295,NULL,1013,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'c0340e47-e8ba-4346-9aaf-bc2b51dc062b'),
(2388,2296,NULL,1014,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'a725c032-dc92-4a49-af08-f9254f856c9f'),
(2389,2297,NULL,1015,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'d5afe732-8f2b-4b49-bf59-6db9118ed31b'),
(2390,2298,NULL,1016,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'d6d56f9b-835a-444e-9f47-28a3d2e04ab5'),
(2391,2299,NULL,1017,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'7fd1f0f7-6b99-4ab7-9867-bd6535f7a612'),
(2392,2301,NULL,1018,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'44933007-fba7-486a-b024-2ef60d5efa2c'),
(2393,2368,NULL,1019,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'99940fd0-fa5e-468d-b685-002529a035d1'),
(2394,2369,NULL,1020,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'049d737a-7f1c-4b7c-bbf2-04fe17f7f009'),
(2395,2370,NULL,1021,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'aabde74e-262b-483e-bfff-695e22196309'),
(2396,2371,NULL,1022,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'9e261710-5dd4-4a7d-a77d-75cc0ca70bf3'),
(2397,2372,NULL,1023,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'afda5918-6e5e-4a2c-b3ef-dabd9c1f0129'),
(2398,2373,NULL,1024,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'ac67b5a0-be3a-42f6-afa7-eeac3cd13206'),
(2399,2374,NULL,1025,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'1ce7b573-0afc-4fab-b8f2-6c712be19346'),
(2400,2375,NULL,1026,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'87aca4c7-f216-4c50-b2b2-db7c87ec7021'),
(2401,2376,NULL,1027,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'001d72a7-5c0f-4814-a478-fad66192ed7d'),
(2402,2377,NULL,1028,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:36','2026-03-02 23:14:36',NULL,NULL,NULL,'07cd2bb5-44e4-47da-820e-9d60c8e880f2'),
(2404,2286,NULL,1029,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:14:59','2026-03-02 23:14:59',NULL,NULL,NULL,'62e0745d-566b-496c-a2b9-f9f6d9cb7a11'),
(2407,2286,NULL,1030,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:15:24','2026-03-02 23:15:24',NULL,NULL,NULL,'cb2c8f7a-4b4a-44fa-bb00-f5c0729145d8'),
(2408,2298,NULL,1031,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:15:24','2026-03-02 23:15:24',NULL,NULL,NULL,'961436d4-c7f3-44f0-94a9-10f0071c1a84'),
(2409,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'0c7bde0e-fc56-4db4-9c1b-234fc8c78440'),
(2410,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'1bdca181-a4dc-41a6-b82d-df90974c6f05'),
(2411,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'5f220d93-27e9-4b64-8e2e-a48d7b65635e'),
(2412,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'775c1ece-8a94-4aeb-96f2-3fd37383fda0'),
(2413,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'d5081b36-cde6-4054-951d-0dfb39f5c063'),
(2414,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'52d14fac-b11c-4d82-b433-0cae2ae0c50a'),
(2415,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'f2960c19-8440-4d47-8a04-62d238b9f2fa'),
(2416,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:02',NULL,NULL,NULL,'557f9d01-dbdd-4843-a2c5-8060ef6a8314'),
(2417,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'a83afc83-0682-443c-bf0a-6985cb3ffbc6'),
(2418,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'edbdd921-8fbb-437c-ae64-ec654ddd733c'),
(2419,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'a7155fe7-bdaf-4acf-b26b-4b383ca2fd8e'),
(2420,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'b358eed8-f564-4ace-8cb5-3b169214cf6d'),
(2421,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'4215c203-1b56-4110-b48d-9ca070331d7f'),
(2422,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'39d4dfac-9c5e-4ed8-9926-d47859f79574'),
(2423,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'c3e8e051-ad4a-4e24-9680-e19359d246b2'),
(2424,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,NULL,NULL,'9dfc9374-ca5e-4e25-af20-780cee63c924'),
(2425,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'9b282ad3-e8cb-4f00-beb2-0443adc0d13c'),
(2426,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'19d4c0d0-920c-491b-85df-51e6bdd2b1a0'),
(2427,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'d1e43e79-db13-4927-9dfe-a1e01e32f0f1'),
(2428,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'2610dbf9-1101-4a55-9ca2-73b928f36367'),
(2429,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'0e415092-bea7-4fd8-8b58-234901db0748'),
(2430,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'ae14b9e1-909e-4d59-b847-d6614e7a2249'),
(2431,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'d22019c4-7490-49b7-bffb-ffc75f0fbf68'),
(2432,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'799816e1-63ed-4d1e-aef8-7f101d43926a'),
(2433,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'16097527-2a67-4533-82d4-7dd68dbd4180'),
(2434,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:27:03',NULL,'2026-03-02 23:27:03',NULL,'4d4fe140-d1db-4678-9f7e-196eeeab8b49'),
(2435,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'00fc1144-1ac2-4929-8d8d-ba00e8ac464f'),
(2436,2409,NULL,1032,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'4b224a56-217a-4522-b042-1baac5bb9261'),
(2437,2410,NULL,1033,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'196d9521-48af-48ba-993e-1f8df3327123'),
(2438,2411,NULL,1034,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'5d123b0a-2915-405f-9c60-30c95199264c'),
(2439,2412,NULL,1035,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'9389d819-eb0b-4a52-ac72-fc2f5840699d'),
(2440,2413,NULL,1036,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'81267457-73e0-4c2e-827b-561acafa273d'),
(2441,2414,NULL,1037,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'4a4926fa-dad5-4b15-b6e8-310d8613f527'),
(2442,2415,NULL,1038,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'19f8b4c6-f273-422c-b0ef-9c7f6ff32d8f'),
(2443,2416,NULL,1039,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'354e135a-2437-470e-91ec-bf7be4175187'),
(2444,2417,NULL,1040,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'e6e3cfe4-e249-41d5-a982-98195b8befa4'),
(2445,2418,NULL,1041,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'a70ae585-59a4-4ed7-985f-a0d4debace41'),
(2446,2419,NULL,1042,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'c707ee8e-fad5-4ea0-965c-4e809a195cdb'),
(2447,2420,NULL,1043,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'eb0374e0-343a-4d1c-9e60-93b34df2c4c8'),
(2448,2421,NULL,1044,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'d0743b59-1f45-4616-96d0-b5e639feae20'),
(2449,2422,NULL,1045,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'f922d3eb-0702-41e1-821a-2a26bb7b25c6'),
(2450,2423,NULL,1046,8,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'016ca273-56cd-4867-9182-bc01c012bc0d'),
(2451,2424,NULL,1047,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,NULL,NULL,'c10b582f-457a-451d-a713-30451cfe3b33'),
(2452,2425,NULL,1048,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'223cd28d-a727-443e-b7f8-deb105d91e50'),
(2453,2426,NULL,1049,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'54aa1517-154f-468b-951d-a50baa273022'),
(2454,2427,NULL,1050,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'34ed56e5-d21e-4d56-8027-6c4c6823bf7e'),
(2455,2428,NULL,1051,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'14605b27-6092-4aad-8414-f0a6b3f54b6f'),
(2456,2429,NULL,1052,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'c0f2e387-d58a-4a47-b937-2d7b377f0493'),
(2457,2430,NULL,1053,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'7ccd76a3-d1a8-45e4-8809-d3c082cf5315'),
(2458,2431,NULL,1054,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:00',NULL,'2026-03-02 23:27:03',NULL,'f1c5afc9-3346-40bf-88c8-906bebe8cc85'),
(2459,2432,NULL,1055,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:01',NULL,'2026-03-02 23:27:03',NULL,'51f1fe9d-6e8e-4c1a-b403-3563a562787a'),
(2460,2433,NULL,1056,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:01',NULL,'2026-03-02 23:27:03',NULL,'86a7c178-bef4-422e-b6c6-4f47b8e00b56'),
(2461,2434,NULL,1057,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:01',NULL,'2026-03-02 23:27:03',NULL,'f045b878-5fda-4502-85e2-3b8f15746416'),
(2462,2435,NULL,1058,49,'craft\\elements\\Entry',1,0,'2026-03-02 23:19:00','2026-03-02 23:19:01',NULL,NULL,NULL,'6c2255dc-f38b-49c3-bc65-81973a52bec5'),
(2488,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'dc8c6ee5-2927-4ed8-b566-0be53e087cb1'),
(2489,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'0ffe2723-d44d-4789-bbe9-c6dd2c885904'),
(2490,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'02a4a889-da37-42b0-b22b-00d10552e7e5'),
(2491,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'953812f0-4cb5-4180-8504-eb80713413c6'),
(2492,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'bf259daf-d9d5-47fa-aa7a-2a7195596f83'),
(2493,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'368bf429-8f64-4a13-962b-edca67156a67'),
(2494,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'9d29edd9-13ad-46f2-b527-17a33ce8d12d'),
(2495,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'a204bbe0-5b3e-4ac3-bc87-7cdf180c63e9'),
(2496,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'ed4b01c1-e6d6-4585-9b8c-90073796b957'),
(2497,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'faca1318-cd87-4505-8510-9df7f918b7b1'),
(2498,2409,NULL,1059,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'60d8f8d8-3667-4fca-863f-bf0c9a5257f7'),
(2499,2410,NULL,1060,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'5dddc5f6-fe32-4ec6-b100-29a729bcae7b'),
(2500,2411,NULL,1061,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'41bc6397-f6e0-4d37-8b98-bfee7be059b8'),
(2501,2412,NULL,1062,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'130869ab-3d06-4535-af90-6ad0bb19dd7d'),
(2502,2413,NULL,1063,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'e7d49a33-39b0-4e99-b9cb-dd4c05648ab2'),
(2503,2414,NULL,1064,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'14a4796e-9f69-4e53-8f7e-1dac237f6dc0'),
(2504,2415,NULL,1065,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'62cc970e-bb7b-4faa-a7bd-c1fbc99461e7'),
(2505,2416,NULL,1066,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:02','2026-03-02 23:27:03',NULL,NULL,NULL,'079c7f04-bd8d-41ca-90be-60d3f61551ee'),
(2506,2417,NULL,1067,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'5b1413f6-bda9-43c6-a397-1d277421a06a'),
(2507,2418,NULL,1068,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'c171d623-b466-43ab-89d6-5b6db09109c3'),
(2508,2419,NULL,1069,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'5ad4e691-48e7-4543-a297-43e1b7d41642'),
(2509,2420,NULL,1070,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'4ffd20d2-5477-46ae-a20e-7053bb35fe7b'),
(2510,2421,NULL,1071,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'84e5196c-7d26-4119-bb7b-c6414e2e5372'),
(2511,2422,NULL,1072,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'30b520bd-1035-4e2b-a70b-0e513dc252c2'),
(2512,2424,NULL,1073,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'b393773a-a574-46ce-beb1-132898a1def7'),
(2513,2488,NULL,1074,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'7a86cc2d-fe55-4a81-92a0-a0918da9a54c'),
(2514,2489,NULL,1075,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'950f87bf-8f8d-45df-b4a0-b7905f062473'),
(2515,2490,NULL,1076,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'fa5da913-4f78-4f69-bbec-96c3db581c32'),
(2516,2491,NULL,1077,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'a987401e-89be-48fa-99b9-5b3c198b5496'),
(2517,2492,NULL,1078,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'cade3203-dcfa-476c-aefa-41657ad1f343'),
(2518,2493,NULL,1079,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'94586d2c-b8b2-4de1-8609-cc8f35bc7655'),
(2519,2494,NULL,1080,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'e8ff27da-47fe-4d31-8920-4bf5037d8475'),
(2520,2495,NULL,1081,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'322e9921-2fa9-46fe-bcde-b0f376dbe3cd'),
(2521,2496,NULL,1082,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'38d54d13-638c-494f-a216-90cadbb43012'),
(2522,2497,NULL,1083,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:27:03','2026-03-02 23:27:03',NULL,NULL,NULL,'b397dfb1-ea18-4335-ae9b-7864cfe436d2'),
(2523,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'09354f76-ba39-4a42-be39-31b079ffd4b9'),
(2524,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'ee91a293-985f-4f4d-8790-6519f88c4434'),
(2525,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'b72d2f7d-81cd-4dbc-b42d-191913e9b893'),
(2526,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'477956f9-ebc3-47fb-b3bd-b9cf6c37c48b'),
(2527,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'ceed3efb-43f6-4acd-aa52-17b74bf1a901'),
(2528,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'05e4153f-bd7a-4959-bc3f-88e10443e8af'),
(2529,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'49c8a610-6d33-4b8a-b287-07dde0a9af49'),
(2530,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'5e74c709-f410-46fb-bfdb-8463899192ed'),
(2531,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'10ae191a-db46-43ef-92e3-6c4ca0203097'),
(2532,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'3c513263-ff95-4647-b53c-a7f59e7d0968'),
(2533,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'c3ec9651-547c-4409-a2be-46ef406e1f71'),
(2534,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'bdca90d3-2044-45bc-b12f-e9600ef50268'),
(2535,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'775f9488-e1f1-4f10-9e17-949bc0b12732'),
(2536,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'d061a230-8278-43a2-b186-50db85c9d0b3'),
(2537,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'61927497-4a8d-40d0-8714-7e5ea3d71a5e'),
(2538,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,NULL,NULL,'3b806617-59d8-42b9-839e-4e7075dfba3f'),
(2539,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'e2d35d80-68e6-4a79-9b7d-0eed3b5b8aa1'),
(2540,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'78554689-619b-44f0-8669-559e3d6b9721'),
(2541,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'0ddbb7cf-fe12-4df9-90cc-50c6af005849'),
(2542,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'ae5ca7dc-701e-4efc-8918-614c50cd0b90'),
(2543,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'c71ce8af-64f5-4b9a-b4eb-4583e6d2191f'),
(2544,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'658328da-1f6d-44f1-bcc4-d0b8ac2d65af'),
(2545,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'f9020858-d918-425d-99d6-7218367f138a'),
(2546,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'c762abff-455b-4ac6-bad1-456a7320307a'),
(2547,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'651ac636-aff6-4486-a7bc-75bb4a819a12'),
(2548,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:57:48',NULL,'2026-03-02 23:57:48',NULL,'6ee227c3-1e64-4067-b4dd-ea7cec50481f'),
(2549,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'2936452c-4960-4ff4-8bcb-0015a6cf5017'),
(2550,2523,NULL,1084,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'bf1f73e4-292f-43f1-bd8e-30a91c35dce0'),
(2551,2524,NULL,1085,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'dffc0879-d3d3-4b94-b13c-419b4a03e7d3'),
(2552,2525,NULL,1086,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'70ed2c70-7b21-4b8c-8027-a69eb923a024'),
(2553,2526,NULL,1087,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'4db9826f-75b6-4380-a666-80c9370f69f5'),
(2554,2527,NULL,1088,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'b393d7a0-4209-4fc0-8aa3-9c4a09f31a5e'),
(2555,2528,NULL,1089,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'f32ad0d3-bd34-4abf-a342-f13d1127f349'),
(2556,2529,NULL,1090,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'afb3e958-674a-4340-a5bf-6b7a75a77082'),
(2557,2530,NULL,1091,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'ebb07edd-25af-464e-8d7b-4804e2c5b4d7'),
(2558,2531,NULL,1092,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'865030fb-36d0-482e-bfcb-893bdf817bee'),
(2559,2532,NULL,1093,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'a97ec412-228e-4e24-891c-b7601a4fd228'),
(2560,2533,NULL,1094,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'16d15f8b-50ae-4a19-b19e-88877a66fbbe'),
(2561,2534,NULL,1095,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'b88335d3-19ed-4065-9183-f80c94eee324'),
(2562,2535,NULL,1096,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'61374bed-6c15-48cd-88fb-92020c627cae'),
(2563,2536,NULL,1097,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'8105d8f7-6371-4433-8ae6-a8e8916ab351'),
(2564,2537,NULL,1098,8,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'73c92abf-beaf-4ff7-92df-432a31fc0ba8'),
(2565,2538,NULL,1099,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:31',NULL,NULL,NULL,'c241cbb9-34e3-4f0a-9036-fbb86651fd6e'),
(2566,2539,NULL,1100,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'92fcf6b3-9dcc-47cc-81b7-273718f64b3c'),
(2567,2540,NULL,1101,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'0713d6d6-f8ac-47ee-9544-c558cee43fab'),
(2568,2541,NULL,1102,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'9b61ee36-3346-40bb-945d-b2506e46cd3d'),
(2569,2542,NULL,1103,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'c90cb89b-7f0a-4d6f-8e9d-2312f2f18443'),
(2570,2543,NULL,1104,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'28f6f295-2330-472c-8f9f-d2a7c49f0159'),
(2571,2544,NULL,1105,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'29a97c2b-507c-4240-ad3b-ec7ad3654f24'),
(2572,2545,NULL,1106,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'2b0cb8ae-d4cc-4ef8-9492-f9828569e8f4'),
(2573,2546,NULL,1107,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'9618ad84-959b-490d-b5e9-5870c970916b'),
(2574,2547,NULL,1108,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'83448984-35d5-4e34-a0cc-50112fb6db53'),
(2575,2548,NULL,1109,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,'2026-03-02 23:57:48',NULL,'30160674-a542-47c5-a8fa-bf766480890f'),
(2576,2549,NULL,1110,49,'craft\\elements\\Entry',1,0,'2026-03-02 23:42:31','2026-03-02 23:42:32',NULL,NULL,NULL,'18b7657e-7544-4201-8f27-e49803570580'),
(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'),
(2608,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'6f992de8-e252-4e47-9242-f121ae494274'),
(2609,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'a0d9be42-b06c-4c4e-9ec1-5a116a5e765e'),
(2610,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'cdf575a6-ecd5-492d-92b9-bb66d52822da'),
(2611,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'bf8580ac-b37c-4ae7-8c4d-75552b9c4462'),
(2612,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'cf737f41-fc85-48f1-93fc-a990e04b9f22'),
(2613,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'9fe3a52b-be66-4bd1-87c7-d69071999aac'),
(2614,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'da09fa15-e3b2-4ed2-aff4-1e8f4bce4c3b'),
(2615,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'0dee51e6-15c1-4749-8b66-7eb899bdff9a'),
(2616,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'0c477e80-92a3-4d6e-8a8b-75df089672a4'),
(2617,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'50dd0c09-52f4-447b-a4a7-fc8b383bb559'),
(2618,2523,NULL,1111,6,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'cb5e71a9-6c20-49c8-bac0-e7ae4a66c9d6'),
(2619,2524,NULL,1112,39,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'f6d0c197-dd3f-438d-ace7-445beb47a943'),
(2620,2525,NULL,1113,36,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'d174571d-8e9b-4dd9-ac95-3f55983f4822'),
(2621,2526,NULL,1114,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'52258d14-9a87-4186-9e33-af5c6506fd45'),
(2622,2527,NULL,1115,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'631484c0-7d63-419a-b2c0-f477eface732'),
(2623,2528,NULL,1116,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'1dea37aa-b12c-4876-bb07-0978dfb91714'),
(2624,2529,NULL,1117,37,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'c7e37b3f-4fac-4631-acee-e285dccb8ecc'),
(2625,2530,NULL,1118,41,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'1790d2e8-7776-43a9-940e-395e6576c891'),
(2626,2531,NULL,1119,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'153d9a4f-6f13-4fca-b781-fd845183e7c7'),
(2627,2532,NULL,1120,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'857f5c20-88a4-469e-a3a6-e8f06bd367e6'),
(2628,2533,NULL,1121,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'036dfa20-5f14-4e70-ad30-a59615af34ae'),
(2629,2534,NULL,1122,40,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'b8c3b1da-2470-48fc-8878-47c5a3c10383'),
(2630,2535,NULL,1123,42,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'87e56c43-5ffe-4c05-a3d7-fd28b3a46eb4'),
(2631,2536,NULL,1124,43,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'78a61d9d-84b8-4c21-aa9f-77e19fe5fa49'),
(2632,2538,NULL,1125,44,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'ae8e2d8f-0bff-4bee-8543-0805381f2b96'),
(2633,2608,NULL,1126,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'ec2bf1dd-fc54-4222-8e47-b4fc1f6e1193'),
(2634,2609,NULL,1127,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'cde2a8ea-fa28-4d96-87a3-0eb2dd49b1b8'),
(2635,2610,NULL,1128,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'a15e1a22-b6a0-43f2-869f-598073745748'),
(2636,2611,NULL,1129,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'bfc7558f-4a4c-4c2a-8130-0bd29027dd7b'),
(2637,2612,NULL,1130,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'24cf4cf2-012f-402b-be72-a6c8970f88b2'),
(2638,2613,NULL,1131,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'8d9e3384-c868-4499-927f-f92bb99fa273'),
(2639,2614,NULL,1132,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'39ff6e4b-e6fe-4f04-a9f7-e524ab792d93'),
(2640,2615,NULL,1133,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'d9f436e0-7a39-4696-9b2f-1802986ed414'),
(2641,2616,NULL,1134,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'86fe056c-28f3-4a2d-b2c2-3ae84aa2614d'),
(2642,2617,NULL,1135,35,'craft\\elements\\Entry',1,0,'2026-03-02 23:57:48','2026-03-02 23:57:48',NULL,NULL,NULL,'a4a38f57-392b-40a2-a623-43edff5f5d73'),
(2643,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'c888a497-d2d6-42c9-89e6-003460583294'),
(2644,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'56706583-00d2-48b0-98a6-af5cb327c4e9'),
(2645,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'361e7ccc-1c83-4523-9912-8d05e2d6a6c6'),
(2646,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'669521d5-37de-4908-9211-4516a749c9ec'),
(2647,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'be205643-ba46-44f5-98e8-073305cedcc7'),
(2648,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'db8fc9d5-2766-472f-863c-98df325f038a'),
(2649,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'8af1848f-ff0d-482e-8493-56e89a878e67'),
(2650,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:15:48',NULL,NULL,NULL,'562327bd-1ab7-4d30-9261-c252a6efb7ca'),
(2651,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'b4e69c73-0bb0-4909-b758-02662cd0063c'),
(2652,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'863395a3-ee53-4278-845c-eef44a5025ec'),
(2653,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'0865a5c5-1aec-479a-87c3-0ee177091249'),
(2654,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'b9d57680-16bc-46f8-8860-1bbf6e626f62'),
(2655,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:14:33',NULL,NULL,NULL,'833aa6a4-568e-4d1a-9624-89ad9261bd17'),
(2656,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:21:05',NULL,NULL,NULL,'bd456c22-5b26-4728-9b4f-12c2e41a6ccc'),
(2657,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'ad89eb98-8f6b-4da3-a2cf-e70f4b522e48'),
(2658,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'14425dd4-a887-44aa-af6a-23d9352a3455'),
(2659,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'1a772e38-4222-4f3b-a64d-f4536edd45be'),
(2660,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'ff962e22-2a8d-48dd-8461-e382c2a8c7d7'),
(2661,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'c1be0abc-24c5-4c0d-a1b0-ca87778b8d61'),
(2662,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'a15534d9-c61e-432f-becd-38d2b234dcd8'),
(2663,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'0878db8c-2b09-4489-9983-18fae540371f'),
(2664,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,'2026-03-03 00:25:48',NULL,'02b9fd0c-e86e-49da-aeaf-29d6deb5a2f1'),
(2665,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'193e73ca-11ed-445d-9ad7-48aad8115b4f'),
(2666,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'17c23a6c-5581-4e5d-b878-cd53ed4a9da5'),
(2667,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'b9adb826-ccd7-4cc6-9c39-be8505f1fecc'),
(2668,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:25:48',NULL,NULL,NULL,'f6603186-6bb4-4d91-a3ee-53196f68a299'),
(2669,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'ae99b098-6e9e-4b10-a28a-f54397364531'),
(2670,2643,NULL,1136,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'52e26ffa-ac95-43d3-8b5d-08a363d09e35'),
(2671,2644,NULL,1137,39,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'aecb8e54-5d2a-40cc-a528-1f870a422ed5'),
(2672,2645,NULL,1138,36,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'7b575888-58e0-4f96-b0c8-903053a1761e'),
(2673,2646,NULL,1139,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'078cb582-6a70-4d5c-b3cf-f88e67adb262'),
(2674,2647,NULL,1140,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'da250946-2470-4657-9bea-6ab5b5c5ff0e'),
(2675,2648,NULL,1141,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'3b4e3cc7-0269-462d-bfac-0fecb2e3c8cc'),
(2676,2649,NULL,1142,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'e9d06397-8721-4977-a553-2911c7d25035'),
(2677,2650,NULL,1143,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'5ac9f4e7-753c-4fbc-b7c1-5dca6a3ae2f6'),
(2678,2651,NULL,1144,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'6e3e1b9c-14b1-4f11-ba16-1424cae73fdb'),
(2679,2652,NULL,1145,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'6ccb748b-1849-48d2-a1aa-6d7d793f51dc'),
(2680,2653,NULL,1146,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'78df80ca-20a5-4c3f-b244-80178f56bc6a'),
(2681,2654,NULL,1147,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'a0d3b2f5-b70e-44d6-bd13-18ff696f81fe'),
(2682,2655,NULL,1148,42,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'ecd8edab-071c-4dda-8ab4-3c0307a7f909'),
(2683,2656,NULL,1149,43,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'20de14c8-73d4-4dd8-a54d-7dcefb74b9a9'),
(2684,2657,NULL,1150,8,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'0498d1e4-e22c-47df-947d-a4bf82d8f63e'),
(2685,2658,NULL,1151,44,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'52c95f40-608a-4597-9fd1-54adfe641a8f'),
(2686,2659,NULL,1152,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'88030186-092e-4834-8955-e6ca5ba72f93'),
(2687,2660,NULL,1153,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'f39d452c-02b9-41fd-9853-d5d29713c5b6'),
(2688,2661,NULL,1154,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'9742e349-f0e6-494b-b27f-54f0f40dad3e'),
(2689,2662,NULL,1155,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'26d80f9d-2629-4c80-9d5f-0e9aed222fee'),
(2690,2663,NULL,1156,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'11a355e3-8d01-49a7-b554-77394755d671'),
(2691,2664,NULL,1157,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,'2026-03-03 00:25:48',NULL,'300156a3-baa6-4c50-bdcd-f8b62b656774'),
(2692,2665,NULL,1158,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'e4b7daa6-1510-45a4-a59c-8f9b26fe613c'),
(2693,2666,NULL,1159,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'4375b6f2-57f9-4193-8cbf-3b201612b10d'),
(2694,2667,NULL,1160,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'0c5c5acc-0bac-4136-b078-3aa665a7ca0d'),
(2695,2668,NULL,1161,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'ec9fa992-ec82-4e35-ae4b-9def3b20e80d'),
(2696,2669,NULL,1162,49,'craft\\elements\\Entry',1,0,'2026-03-03 00:06:26','2026-03-03 00:06:26',NULL,NULL,NULL,'be60f0bb-b1f3-46aa-a2e2-a74c11748298'),
(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'),
(2714,2643,NULL,1163,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'194fade8-a093-4cbe-ad66-15f59210f974'),
(2715,2644,NULL,1164,39,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'4be76df8-9820-420d-b3db-18231473ca39'),
(2716,2645,NULL,1165,36,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'b7aecdf5-96e4-4864-9b61-984b769be9bd'),
(2717,2646,NULL,1166,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'4f9d3065-23c9-4763-a8dc-e85eeda94ce4'),
(2718,2647,NULL,1167,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'fe56f567-3462-40c3-b4a2-fd1c0c10b269'),
(2719,2648,NULL,1168,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'7d85cb9c-a4c1-4be4-9536-759a571f9211'),
(2720,2649,NULL,1169,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'22728a55-3d1a-4917-ab20-31279406cf98'),
(2721,2650,NULL,1170,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'44fbef34-6b92-46a5-8737-3df3767a7b6a'),
(2722,2651,NULL,1171,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'0a86cddc-055a-4685-abf2-40790fc42558'),
(2723,2652,NULL,1172,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'420be87e-cf2f-463c-a871-64c824bf0d2a'),
(2724,2653,NULL,1173,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'1313aecf-4bd2-44a1-9cda-1087f98629a0'),
(2725,2654,NULL,1174,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'67d85833-4ce9-4568-b424-d5601a8092e1'),
(2726,2655,NULL,1175,42,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'41975af8-8c9d-4fc6-a17a-4fe65539b499'),
(2727,2658,NULL,1176,44,'craft\\elements\\Entry',1,0,'2026-03-03 00:14:33','2026-03-03 00:14:33',NULL,NULL,NULL,'70df22f8-5c6a-443b-951d-d6c3925734a0'),
(2730,2643,NULL,1177,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:15:16','2026-03-03 00:15:16',NULL,NULL,NULL,'95917256-91fd-44c1-85a6-1bb536e34fe4'),
(2731,2650,NULL,1178,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:15:16','2026-03-03 00:15:16',NULL,NULL,NULL,'f12673b1-5281-401b-a556-9bb0351c5daa'),
(2734,2643,NULL,1179,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:15:48','2026-03-03 00:15:48',NULL,NULL,NULL,'6954c4b5-43f8-43c6-a9ac-82f3a0da90ef'),
(2735,2650,NULL,1180,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:15:48','2026-03-03 00:15:48',NULL,NULL,NULL,'8e24ad5e-421a-45f9-9c48-1bce98c8ba85'),
(2740,2643,NULL,1181,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:20:07','2026-03-03 00:20:08',NULL,NULL,NULL,'ac3fdbea-72d1-4e47-8d0f-dc0d79cf0b8c'),
(2741,2656,NULL,1182,43,'craft\\elements\\Entry',1,0,'2026-03-03 00:20:07','2026-03-03 00:20:08',NULL,NULL,NULL,'c9c8d364-2070-46ca-a99b-70f0122a31de'),
(2744,2643,NULL,1183,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:21:05','2026-03-03 00:21:05',NULL,NULL,NULL,'c2ce283e-cf5b-4176-b13c-660e7cdd0d41'),
(2745,2656,NULL,1184,43,'craft\\elements\\Entry',1,0,'2026-03-03 00:21:05','2026-03-03 00:21:05',NULL,NULL,NULL,'7da40a2b-099b-415e-b536-c422d92b255a'),
(2761,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'04499a25-660e-4a04-8857-ac3132230e92'),
(2762,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'30e3f844-dd2c-4d41-9dfc-1dc3778d956d'),
(2763,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'7a54bb17-a218-4fc0-8f7c-bd99d3cbb69a'),
(2764,2643,NULL,1185,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'fb25fc30-4f07-4c1b-ae1b-b49f5e8bda8f'),
(2765,2658,NULL,1186,44,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'4d91047f-9af9-41e2-bfda-4cedb752dd63'),
(2766,2659,NULL,1187,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'cce976ab-5fb3-44db-9d9c-07e1b95ec79b'),
(2767,2660,NULL,1188,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'9095a7a7-e225-410c-84c2-8232821d6183'),
(2768,2661,NULL,1189,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'b2a56f57-c19c-4374-9796-672977b61046'),
(2769,2662,NULL,1190,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'9b4d5808-c883-43ef-8e96-00b3ec615344'),
(2770,2663,NULL,1191,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'f00c6e75-75f1-471c-b923-5f0fda8c86d3'),
(2771,2761,NULL,1192,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'91fd147c-e4c9-4ab4-98a6-580442941148'),
(2772,2665,NULL,1193,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'6d0542d7-6290-479c-9842-b6de52211916'),
(2773,2666,NULL,1194,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'5cf63772-2aa5-42f1-9fda-e92a1d299908'),
(2774,2667,NULL,1195,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'a1b2e859-ec1d-419b-856d-585eef624ad7'),
(2775,2668,NULL,1196,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'68fa40e6-5eb1-4933-9e3d-977b6625fc4d'),
(2776,2762,NULL,1197,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'95dd9be3-2f29-45b0-852c-58b3523fb5a6'),
(2777,2763,NULL,1198,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:25:48','2026-03-03 00:25:48',NULL,NULL,NULL,'8d1c5dc9-35de-4a6a-b4d5-f15ca1a21882'),
(2778,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'84051377-ee04-47b7-b841-17e41e9333f6'),
(2779,NULL,NULL,NULL,39,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'dc54adec-6fd2-4276-8195-0d75663858e5'),
(2780,NULL,NULL,NULL,36,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'7bad985a-8928-4c7c-ba7a-b84495c20ea4'),
(2781,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'179f56ea-26ad-40d8-a0cd-c0bb90208995'),
(2782,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'c60295bb-56b3-43bf-9ff1-78ac68ed8c98'),
(2783,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'5d96cf04-03d5-4645-b63e-548b9504d0c2'),
(2784,NULL,NULL,NULL,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'9abd9f04-bf9d-48c9-a41a-7d282d2eb4e9'),
(2785,NULL,NULL,NULL,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'456b8446-9241-4627-a56b-e364e8c7b84a'),
(2786,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'08539326-ca7d-4f78-9b9e-b03bf7ed1cf2'),
(2787,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'49c1a343-0a30-4b5a-a7f6-26e404ae2b55'),
(2788,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'1cf99da2-8615-4519-9c14-f030e1231ca1'),
(2789,NULL,NULL,NULL,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'fd786f5d-ab13-40a5-8e08-399f4e0bcad0'),
(2790,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'30394924-6bd0-4076-8fe6-fe29e54d624c'),
(2791,NULL,NULL,NULL,43,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'40a2fe36-8736-4e6d-8594-0420f2ff4e79'),
(2792,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'c5b6f17a-24de-407c-9eab-fab145509647'),
(2793,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,NULL,NULL,'2a97a61c-188c-4c1a-8639-b89acac1ca8d'),
(2794,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'04b6a9d6-d1a3-43c3-bf00-478593835588'),
(2795,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'934fffe3-d0d8-4ed7-83a1-bf5dbe134129'),
(2796,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'e98f9b49-408d-4a10-a2a9-b3a38a397ae5'),
(2797,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'a41969cf-0acb-4204-8737-ac661c14a5b6'),
(2798,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'f114df14-5f87-4d71-941a-96dfa542c15f'),
(2799,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'11a25bb5-1a2e-4ce7-9181-5f7e9dfb634e'),
(2800,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'b7be04d9-2c8a-4792-8cde-4cf0ea1cda04'),
(2801,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'d04aeba2-82eb-464a-a567-38d2b1b3e601'),
(2802,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'981368e3-cc60-4cf7-bf9b-c16c2e633003'),
(2803,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 07:55:09',NULL,'2026-03-03 07:55:09',NULL,'f4e5fab3-5c4f-409e-b0bb-161d74640573'),
(2804,NULL,NULL,NULL,49,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'496188fa-d853-40cf-8769-e4513d25c6b6'),
(2805,2778,NULL,1199,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'21367592-95c3-4fd7-a464-b891a82c805f'),
(2806,2779,NULL,1200,39,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'c2ff654c-0add-4349-9da7-52ef1f4c8617'),
(2807,2780,NULL,1201,36,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'930c79bd-542d-49e2-ab92-fa8b9af52232'),
(2808,2781,NULL,1202,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'d6a8ca6f-f245-4a4b-8c47-358cd3c0ebc0'),
(2809,2782,NULL,1203,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'ef28370d-ba40-4cf6-ae95-daa777a32abd'),
(2810,2783,NULL,1204,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'001bbe46-f608-49bc-b984-12fb55ee2d8c'),
(2811,2784,NULL,1205,37,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'082b585c-c43b-43ea-8d91-c3f800b417f6'),
(2812,2785,NULL,1206,41,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'664dc1e9-6ede-4893-8ad7-750c7ac33fcb'),
(2813,2786,NULL,1207,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'7f7af99f-2f58-418a-918e-ce283e94ac0a'),
(2814,2787,NULL,1208,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'9bb92117-ab81-4d60-ac2e-381cb55c08e3'),
(2815,2788,NULL,1209,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'ccbff808-dc49-4a09-9c1a-177201251a5c'),
(2816,2789,NULL,1210,40,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'bf782834-cce3-4853-ae5c-8129c14f1bf5'),
(2817,2790,NULL,1211,42,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'89c98154-603e-42ac-a5ee-a2b99b99bf98'),
(2818,2791,NULL,1212,43,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'9a66db95-4198-4629-83f7-bbc751720514'),
(2819,2792,NULL,1213,8,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'e0da030a-9188-49b7-a9e1-36c452e85384'),
(2820,2793,NULL,1214,44,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,NULL,NULL,'602c391f-5b2e-446d-ae42-8d09e1223b44'),
(2821,2794,NULL,1215,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:21',NULL,'2026-03-03 07:55:09',NULL,'e5a2ccf9-140e-4c72-937c-e6359f52a5f0'),
(2822,2795,NULL,1216,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'fb581348-5d29-4474-a134-80d95d3cd601'),
(2823,2796,NULL,1217,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'02d96c4c-6cdb-486f-89aa-e35e355d626a'),
(2824,2797,NULL,1218,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'0b366a35-f4ec-438d-a91b-da6e681363a5'),
(2825,2798,NULL,1219,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'f30cf2e3-8c6c-4a78-8888-0df03ebb803d'),
(2826,2799,NULL,1220,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'13ca6036-61fd-4fad-810a-f2ace3c95a71'),
(2827,2800,NULL,1221,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'9c034708-c951-4d9d-b5d2-6f1fa7df7270'),
(2828,2801,NULL,1222,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'95aba61f-340c-4478-8d3f-77543705b38f'),
(2829,2802,NULL,1223,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'3b5e478e-6445-4a6b-9fcf-89976a29a297'),
(2830,2803,NULL,1224,35,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,'2026-03-03 07:55:09',NULL,'06fce5ea-b596-4202-9730-253e65d2e7e1'),
(2831,2804,NULL,1225,49,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:21','2026-03-03 00:28:22',NULL,NULL,NULL,'63859a96-7950-450e-9062-aff4c134635e'),
(2832,2778,NULL,1226,6,'craft\\elements\\Entry',1,0,'2026-03-03 00:28:32','2026-03-03 00:28:32',NULL,NULL,NULL,'428087c7-36c1-4434-880e-f7a3bd7c25fc'),
(2862,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'464e499b-8d2d-45f7-8fe7-32472bc07383'),
(2863,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'dd742e72-0a55-4395-8eec-96260a67d9df'),
(2864,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'a2c006d1-69a4-414c-ab9c-36430ec4be75'),
(2865,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'cecb2ca0-9ed0-44e8-ac2d-3c720dbcc7ba'),
(2866,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'adfa4cf3-f910-4b02-a092-5870fa7ee5a5'),
(2867,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'bc0e8e6c-a54e-48f4-bb95-9623e6133ab6'),
(2868,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'229e4541-1379-4094-b2e3-6d10b5d6887c'),
(2869,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'23ee0808-add0-463f-96c6-54a12fec392a'),
(2870,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'0d91e47f-8712-4dcc-a49e-f2066ec6ab62'),
(2871,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'6d164b5f-aaf0-4d25-abdd-a6181346467b'),
(2872,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'0a42e26f-db62-422b-b563-7580eac60f0a'),
(2873,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'91ce5d1a-2e91-45e1-8d86-b1ca11e20f53'),
(2874,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'0f26707b-644e-48d6-b9de-7e340b8ff073'),
(2875,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'927bc326-a598-4165-a1b0-f7334d8fd0f2'),
(2876,2778,NULL,1227,6,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'1f862df8-bbf4-40f8-8d5e-28743b3efd87'),
(2877,2779,NULL,1228,39,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'1af623d7-73cf-4fcd-94b9-beacadb427dc'),
(2878,2780,NULL,1229,36,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'9b62d9b4-fd3c-4309-a51f-4a17c2770770'),
(2879,2781,NULL,1230,37,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'cdafaa65-9ddb-4013-97ea-816307d3334f'),
(2880,2782,NULL,1231,37,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'6e69b555-8d61-4324-9222-f6f54ec05682'),
(2881,2783,NULL,1232,37,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'715ca1ca-79cd-4982-b5f9-d6bccac9d310'),
(2882,2784,NULL,1233,37,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'0069b163-d8d3-45bd-a9c2-505218b32358'),
(2883,2785,NULL,1234,41,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'b3c968f0-14a4-4b13-a586-d0de8a4d0efc'),
(2884,2786,NULL,1235,40,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'f4b6bdf8-0b5c-4d7d-af92-f7c34f196236'),
(2885,2787,NULL,1236,40,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'886192ab-c9d6-4b24-aa63-4b849983326e'),
(2886,2788,NULL,1237,40,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'b1182d59-863e-4c4e-ae73-bf18b29c2d38'),
(2887,2789,NULL,1238,40,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'8bbfcbe1-4e03-423d-b479-fc2cd7ffae74'),
(2888,2790,NULL,1239,42,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'0e4a7769-bb1b-4f28-8175-250665b6f9a7'),
(2889,2791,NULL,1240,43,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'53e80a97-25f0-4dde-aecd-28ef968f4fb6'),
(2890,2793,NULL,1241,44,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'1ced69ea-ac4b-4c6d-8d03-f36b4f5a36d0'),
(2891,2862,NULL,1242,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'c67769c8-4963-4204-8eea-87adf99f3004'),
(2892,2863,NULL,1243,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'8b74075e-f2f6-4c00-93aa-60c73ebbb5db'),
(2893,2864,NULL,1244,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'d946589e-688c-4436-9c68-098620078367'),
(2894,2865,NULL,1245,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'7d37366c-525e-4d85-ba29-c99631810bb7'),
(2895,2866,NULL,1246,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'cd302edf-79c4-4608-96b5-a5cbdaa7b9c0'),
(2896,2867,NULL,1247,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'7b280ff6-0552-48fc-bb81-2a17a17b7b69'),
(2897,2868,NULL,1248,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'b58079ce-6851-480b-88bf-3b993430ab1d'),
(2898,2869,NULL,1249,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'9e4ac647-c734-4969-90ac-892d2f09fc21'),
(2899,2870,NULL,1250,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'383b987f-6e61-4e3c-84e9-4ebb90348cc5'),
(2900,2871,NULL,1251,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'215fffc2-c2f9-49ae-902c-005cddf52d4f'),
(2901,2872,NULL,1252,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'8c952d8c-8627-4ffb-aca1-da40acedd14e'),
(2902,2873,NULL,1253,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'437c088c-04a0-4922-8c98-ad08771a0746'),
(2903,2874,NULL,1254,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'0ea4b02a-be75-4ca4-b8d9-65b40f88b244'),
(2904,2875,NULL,1255,35,'craft\\elements\\Entry',1,0,'2026-03-03 07:55:09','2026-03-03 07:55:09',NULL,NULL,NULL,'934f7803-74a5-410b-9c57-f8a865a0e831'),
(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-03 07:58:02',NULL,NULL,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-03 07:58:02',NULL,NULL,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-03 07:58:48',NULL,NULL,NULL,'8d3c9f20-4222-4a9f-acba-e9308a340252'),
(2909,NULL,NULL,NULL,1,'verbb\\navigation\\elements\\Node',1,0,'2026-03-03 07:58:02','2026-03-03 07:58:37',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-03 07:58:02',NULL,NULL,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-03 07:58:02',NULL,NULL,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-03 07:58:02',NULL,NULL,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-03 07:58:02',NULL,NULL,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-03 07:58:02',NULL,NULL,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-03 07:58:02',NULL,NULL,NULL,'8434c5db-f828-462d-9232-e86740585616'),
(2918,NULL,NULL,NULL,47,'craft\\elements\\Entry',1,0,'2026-03-03 08:12:59','2026-03-03 08:13:29',NULL,NULL,NULL,'a6e629e5-42cc-49b1-995d-80922d4cf2eb'),
(2919,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:12:59','2026-03-03 08:12:59',NULL,NULL,NULL,'85353554-46f1-463e-8f61-be55a9608540'),
(2920,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'af0dd4b9-58b6-42c6-b420-8067e0cc599f'),
(2921,NULL,NULL,NULL,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'7f28bc77-7dd2-4328-9e02-e8058a1751f9'),
(2922,NULL,NULL,NULL,8,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'f927c88f-e552-4c5a-a310-d318dad2def0'),
(2923,NULL,NULL,NULL,44,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'1a5d82e8-4c7f-4e4a-94bf-96aabab4e297'),
(2924,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'0748725a-cc19-4ab7-b5aa-55a1fb59a59d'),
(2925,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'2e1be48b-97c1-4e5b-a325-4b6579456c1f'),
(2926,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'06b75314-f7a9-4a0a-a82b-105e6ffdb5a8'),
(2927,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'aef09e45-4e5c-4b8d-b1c5-98e6d0afdd75'),
(2928,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'a8fdc436-f4ad-439b-aa4f-b89260af7159'),
(2929,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'f1fd1256-b746-4fb2-8556-07144d2e400d'),
(2930,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'8020d6a7-316d-4ee5-984a-4a9a011dca6c'),
(2931,NULL,NULL,NULL,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'7abc939c-a1c4-48bc-9e39-5f4726d72d03'),
(2932,2918,NULL,1256,47,'craft\\elements\\Entry',1,0,'2026-03-03 08:12:59','2026-03-03 08:13:00',NULL,NULL,NULL,'4f53ca3f-0c80-4b60-ba43-e6da88c4f286'),
(2933,2919,NULL,1257,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:12:59','2026-03-03 08:13:00',NULL,NULL,NULL,'cca9cffd-fa53-4826-8aa2-e79b7ba8ed9f'),
(2934,2920,NULL,1258,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'5a73ffce-174f-49af-a2e6-99dde5218348'),
(2935,2921,NULL,1259,42,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'d80b45c5-0c5b-428f-839b-9579cfcbfc91'),
(2936,2922,NULL,1260,8,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'dbacf7fb-e377-4855-a4f7-8f94d592cbad'),
(2937,2923,NULL,1261,44,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'18c6a6fb-c9ee-4e4e-871d-bc2f18bb67ca'),
(2938,2924,NULL,1262,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'369b7efb-ba00-478e-a0fc-b2d40f7f4751'),
(2939,2925,NULL,1263,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'6b8296c3-dd08-4154-af2a-fe1291ed33a3'),
(2940,2926,NULL,1264,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'03bf6817-5a91-424c-972a-5b8a32195837'),
(2941,2927,NULL,1265,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'04b71e22-b660-48ae-8b7f-5eff92c2c86c'),
(2942,2928,NULL,1266,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'21415cd8-6e76-45f1-ba57-cc95bbf1573e'),
(2943,2929,NULL,1267,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'d36897de-8096-4101-bae4-a21a91596d6a'),
(2944,2930,NULL,1268,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'35e04b15-457a-4140-84f0-6aad1971586d'),
(2945,2931,NULL,1269,35,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:00','2026-03-03 08:13:00',NULL,NULL,NULL,'30576f85-896d-495b-9868-de2ca61e6050'),
(2947,2918,NULL,1270,47,'craft\\elements\\Entry',1,0,'2026-03-03 08:13:29','2026-03-03 08:13:29',NULL,NULL,NULL,'eee9a12f-eae6-4a02-9bc2-724bc6d63a5e');
/*!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),
(44,38,2),
(61,38,2),
(62,38,3),
(143,38,1),
(144,143,1),
(144,1428,1),
(145,143,2),
(145,1428,2),
(149,318,2),
(149,792,2),
(149,816,2),
(149,820,2),
(149,825,2),
(149,829,2),
(149,833,2),
(181,105,1),
(182,181,1),
(183,181,2),
(185,184,2),
(185,191,1),
(185,193,1),
(185,195,1),
(185,198,1),
(185,205,1),
(185,208,1),
(185,212,1),
(185,215,1),
(185,218,1),
(185,221,1),
(185,224,1),
(185,227,1),
(185,230,1),
(185,232,1),
(186,185,1),
(187,185,2),
(190,105,2),
(192,191,2),
(192,193,2),
(196,195,2),
(199,198,2),
(199,205,2),
(199,208,2),
(199,212,2),
(199,215,2),
(199,218,2),
(199,221,2),
(199,224,2),
(199,227,2),
(199,230,3),
(199,232,2),
(204,105,3),
(206,205,3),
(206,208,3),
(213,212,3),
(216,215,3),
(219,218,3),
(222,221,3),
(225,224,3),
(228,227,3),
(228,230,2),
(228,232,3),
(244,243,1),
(245,243,2),
(246,243,1),
(247,243,2),
(255,38,7),
(258,318,1),
(258,792,1),
(258,816,1),
(258,820,1),
(258,825,1),
(258,829,1),
(258,833,1),
(259,481,2),
(259,486,3),
(259,489,3),
(259,492,3),
(259,495,3),
(259,498,3),
(259,501,3),
(259,504,3),
(259,507,3),
(259,510,3),
(259,513,3),
(259,516,3),
(259,519,3),
(259,522,3),
(259,531,3),
(259,543,3),
(259,583,3),
(259,610,3),
(259,619,3),
(259,637,3),
(259,659,3),
(259,670,3),
(259,678,3),
(259,686,3),
(259,695,3),
(259,704,3),
(259,712,3),
(259,720,3),
(259,728,3),
(259,736,3),
(259,744,3),
(259,751,2),
(259,765,2),
(259,771,3),
(259,775,3),
(259,791,7),
(259,807,7),
(259,815,7),
(259,819,7),
(259,824,7),
(259,828,7),
(259,832,7),
(259,844,7),
(259,851,7),
(259,857,7),
(259,869,7),
(259,879,7),
(259,884,7),
(259,1143,7),
(259,1147,7),
(262,261,1),
(263,261,2),
(267,266,1),
(268,267,1),
(269,268,1),
(274,38,6),
(275,274,1),
(276,274,2),
(277,274,3),
(281,310,2),
(281,880,2),
(282,310,3),
(282,880,3),
(282,885,3),
(287,274,4),
(298,310,1),
(299,310,4),
(299,880,4),
(299,885,4),
(302,274,1),
(305,310,1),
(305,880,1),
(305,885,1),
(308,274,5),
(310,481,4),
(310,486,4),
(310,489,4),
(310,492,4),
(310,495,4),
(310,498,4),
(310,501,4),
(310,504,4),
(310,507,4),
(310,510,4),
(310,513,4),
(310,516,4),
(310,519,4),
(310,522,4),
(310,531,4),
(310,543,4),
(310,583,4),
(310,610,4),
(310,619,4),
(310,637,4),
(310,659,4),
(310,670,4),
(310,678,4),
(310,686,4),
(310,695,4),
(310,704,4),
(310,712,4),
(310,720,4),
(310,728,4),
(310,736,4),
(310,744,4),
(310,751,4),
(310,765,4),
(310,771,5),
(310,775,5),
(310,791,6),
(310,807,6),
(310,815,6),
(310,819,6),
(310,824,6),
(310,828,6),
(310,832,6),
(310,844,6),
(310,851,6),
(310,857,6),
(310,869,6),
(311,310,5),
(311,880,5),
(311,885,5),
(318,481,1),
(318,486,2),
(318,489,2),
(318,492,2),
(318,495,2),
(318,498,2),
(318,501,2),
(318,504,2),
(318,507,2),
(318,510,2),
(318,513,2),
(318,516,2),
(318,519,2),
(318,522,2),
(318,531,2),
(318,543,2),
(318,583,2),
(318,610,2),
(318,619,2),
(318,637,2),
(318,659,2),
(318,670,2),
(318,678,2),
(318,686,2),
(318,695,2),
(318,704,2),
(318,712,2),
(318,720,2),
(318,728,2),
(318,736,2),
(318,744,2),
(318,751,1),
(318,765,1),
(318,771,2),
(318,775,2),
(330,38,9),
(335,481,4),
(335,486,5),
(335,489,5),
(335,492,5),
(335,495,5),
(335,498,5),
(335,501,5),
(335,504,5),
(335,507,5),
(335,510,5),
(335,513,5),
(335,516,5),
(335,519,5),
(335,522,5),
(335,531,5),
(335,543,5),
(335,583,5),
(335,610,5),
(335,619,5),
(335,637,5),
(335,659,5),
(335,670,5),
(335,678,5),
(335,686,5),
(335,695,5),
(335,704,5),
(335,712,5),
(335,720,5),
(335,728,5),
(335,736,5),
(335,744,5),
(335,751,5),
(335,765,5),
(335,771,6),
(335,775,6),
(335,791,9),
(335,807,9),
(335,815,9),
(335,819,9),
(335,824,9),
(335,828,9),
(335,832,9),
(335,844,9),
(335,851,9),
(335,857,9),
(335,869,9),
(335,879,9),
(335,884,9),
(335,1143,9),
(335,1147,9),
(358,38,1),
(359,358,1),
(360,359,1),
(377,358,2),
(378,377,1),
(379,377,2),
(395,359,2),
(408,359,2),
(409,359,4),
(410,359,4),
(411,358,2),
(412,411,1),
(482,481,1),
(483,482,2),
(483,487,2),
(483,490,2),
(483,493,2),
(483,496,2),
(483,499,2),
(483,502,2),
(484,483,1),
(487,486,1),
(490,489,1),
(493,492,1),
(496,495,1),
(499,498,1),
(502,501,1),
(505,504,1),
(508,507,1),
(511,510,1),
(514,513,1),
(517,516,1),
(520,519,1),
(523,522,1),
(529,359,1),
(530,359,4),
(532,531,1),
(533,532,1),
(534,533,1),
(534,545,1),
(535,533,2),
(535,545,2),
(536,533,3),
(536,545,4),
(542,359,3),
(544,543,1),
(545,544,1),
(546,545,3),
(556,555,1),
(567,359,1),
(568,359,2),
(569,359,3),
(570,359,5),
(578,358,1),
(579,578,1),
(580,578,2),
(580,593,2),
(581,578,3),
(581,593,3),
(582,578,4),
(584,583,1),
(585,584,1),
(586,585,1),
(587,585,2),
(588,585,3),
(589,585,4),
(592,593,1),
(593,358,1),
(594,593,4),
(604,38,2),
(605,604,1),
(605,834,1),
(606,605,1),
(607,605,2),
(608,605,3),
(609,605,4),
(611,610,1),
(612,611,1),
(612,620,1),
(613,612,1),
(614,612,2),
(615,612,3),
(616,612,4),
(620,619,1),
(626,605,2),
(632,604,1),
(632,834,1),
(634,632,2),
(635,632,3),
(636,632,4),
(638,637,1),
(639,638,1),
(641,639,2),
(642,639,3),
(643,639,4),
(648,632,2),
(654,604,1),
(654,834,1),
(655,654,1),
(655,835,1),
(656,654,2),
(656,835,2),
(657,654,3),
(657,835,3),
(658,654,4),
(658,835,4),
(660,659,1),
(661,660,1),
(662,661,1),
(662,672,1),
(662,680,1),
(662,688,1),
(663,661,2),
(663,672,2),
(663,680,2),
(664,661,3),
(665,661,4),
(665,672,4),
(665,680,4),
(665,688,4),
(665,697,4),
(665,706,4),
(665,714,4),
(665,722,4),
(665,730,4),
(665,738,4),
(665,746,4),
(665,809,4),
(671,670,1),
(672,671,1),
(673,672,3),
(679,678,1),
(680,679,1),
(681,680,3),
(681,688,3),
(681,697,3),
(687,686,1),
(688,687,1),
(689,688,2),
(696,695,1),
(697,696,1),
(698,697,1),
(698,706,1),
(698,714,1),
(698,722,1),
(698,730,1),
(698,738,1),
(698,746,1),
(698,809,1),
(699,697,2),
(699,706,2),
(699,714,2),
(699,722,2),
(699,730,2),
(699,738,2),
(699,746,2),
(699,809,2),
(705,704,1),
(706,705,1),
(707,706,3),
(713,712,1),
(714,713,1),
(715,714,3),
(721,720,1),
(722,721,1),
(723,722,3),
(729,728,1),
(730,729,1),
(731,730,3),
(737,736,1),
(738,737,1),
(739,738,3),
(745,744,1),
(745,751,3),
(745,765,3),
(745,771,4),
(745,775,4),
(745,791,2),
(746,745,1),
(747,746,3),
(750,38,5),
(752,751,6),
(752,765,6),
(752,771,7),
(752,775,7),
(752,791,5),
(752,807,5),
(752,815,5),
(752,819,5),
(752,824,5),
(752,828,5),
(752,832,5),
(752,844,5),
(752,851,5),
(752,857,5),
(752,869,5),
(752,879,5),
(752,884,5),
(752,1143,5),
(752,1147,5),
(756,755,1),
(761,38,3),
(762,761,1),
(762,1422,1),
(763,761,2),
(763,1422,2),
(764,761,3),
(764,1422,3),
(766,765,7),
(766,771,1),
(766,775,1),
(766,791,3),
(767,766,1),
(768,766,2),
(768,811,2),
(768,1144,2),
(768,1148,2),
(769,766,3),
(769,811,3),
(769,1144,3),
(769,1148,3),
(774,38,4),
(776,775,8),
(776,791,4),
(776,807,4),
(776,815,4),
(776,819,4),
(776,824,4),
(776,828,4),
(776,832,4),
(776,844,4),
(776,851,4),
(776,857,4),
(776,869,4),
(776,879,4),
(776,884,4),
(776,1143,4),
(776,1147,4),
(785,38,8),
(786,785,1),
(787,786,1),
(788,786,2),
(789,786,3),
(790,786,4),
(792,791,1),
(792,807,1),
(793,791,8),
(793,807,8),
(793,815,8),
(793,819,8),
(793,824,8),
(793,828,8),
(793,832,8),
(793,844,8),
(793,851,8),
(793,857,8),
(793,869,8),
(793,879,8),
(793,884,8),
(793,1143,8),
(793,1147,8),
(794,793,1),
(795,794,1),
(796,794,2),
(797,794,3),
(798,794,4),
(806,761,1),
(806,1422,1),
(808,807,2),
(808,815,2),
(808,819,2),
(808,824,2),
(808,828,2),
(808,832,2),
(808,844,2),
(808,851,2),
(808,857,2),
(808,869,2),
(808,879,2),
(808,884,2),
(808,1143,2),
(808,1147,2),
(809,808,1),
(810,809,3),
(811,807,3),
(811,815,3),
(811,819,3),
(811,824,3),
(811,828,3),
(811,832,3),
(811,844,3),
(811,851,3),
(811,857,3),
(811,869,3),
(811,879,3),
(811,884,3),
(812,811,1),
(812,1144,1),
(812,1148,1),
(816,815,1),
(820,819,1),
(825,824,1),
(829,828,1),
(833,832,1),
(833,844,1),
(833,851,1),
(833,857,1),
(833,869,1),
(833,879,1),
(833,884,1),
(833,1143,1),
(833,1147,1),
(834,38,2),
(835,604,1),
(835,834,1),
(836,835,5),
(837,654,3),
(838,837,1),
(843,38,10),
(845,844,10),
(845,851,10),
(845,857,10),
(845,869,10),
(845,879,10),
(845,884,10),
(845,1143,10),
(845,1147,10),
(849,38,11),
(850,849,1),
(852,851,11),
(853,852,1),
(858,857,11),
(859,858,1),
(867,38,11),
(868,867,2),
(870,869,11),
(870,879,11),
(870,884,11),
(870,1143,11),
(870,1147,11),
(871,870,2),
(878,274,1),
(880,879,6),
(881,880,1),
(881,885,1),
(885,884,6),
(885,1143,6),
(885,1147,6),
(886,885,2),
(901,887,1),
(902,887,3),
(903,887,2),
(904,903,1),
(906,905,1),
(906,911,1),
(907,905,2),
(907,911,3),
(908,905,3),
(908,911,2),
(909,908,1),
(920,117,3),
(922,921,3),
(926,117,1),
(928,927,3),
(932,931,3),
(936,935,3),
(940,939,3),
(940,948,1),
(940,966,1),
(940,976,1),
(940,988,1),
(940,997,1),
(940,1003,1),
(940,1015,1),
(940,1024,1),
(940,1029,1),
(940,1033,1),
(940,1039,1),
(940,1044,1),
(940,1048,1),
(940,1052,1),
(940,1058,1),
(940,1063,1),
(940,1084,1),
(940,1096,1),
(945,117,2),
(946,945,1),
(947,946,1),
(949,948,4),
(950,949,1),
(950,967,1),
(950,977,1),
(950,989,1),
(950,998,1),
(951,950,1),
(960,945,2),
(961,960,1),
(962,945,3),
(963,962,1),
(964,945,4),
(965,964,1),
(967,966,4),
(968,967,2),
(968,977,2),
(968,989,2),
(968,998,2),
(969,968,1),
(970,967,3),
(970,977,3),
(970,989,3),
(970,998,3),
(971,970,1),
(972,967,4),
(972,977,4),
(972,989,4),
(972,998,4),
(973,972,1),
(977,976,4),
(984,945,1),
(985,945,2),
(986,945,3),
(987,945,4),
(989,988,4),
(990,989,1),
(991,989,2),
(991,998,2),
(992,989,3),
(992,998,3),
(993,989,4),
(993,998,4),
(998,997,4),
(998,1003,2),
(998,1015,2),
(998,1024,2),
(998,1029,2),
(998,1033,2),
(998,1039,2),
(998,1044,2),
(998,1048,2),
(998,1052,2),
(998,1058,2),
(998,1063,2),
(998,1084,2),
(998,1096,2),
(998,1151,2),
(998,1155,2),
(998,1282,2),
(998,1433,2),
(998,1438,2),
(999,998,1),
(1002,117,3),
(1004,1003,4),
(1011,1002,1),
(1012,1002,2),
(1013,1002,3),
(1014,1002,4),
(1016,1015,4),
(1017,1016,1),
(1018,1016,2),
(1018,1025,2),
(1018,1030,2),
(1018,1034,2),
(1019,1016,3),
(1019,1025,3),
(1019,1030,3),
(1019,1034,3),
(1020,1016,4),
(1020,1025,4),
(1020,1030,4),
(1020,1034,4),
(1025,1024,4),
(1026,1025,1),
(1026,1030,1),
(1026,1034,1),
(1030,1029,4),
(1034,1033,4),
(1034,1039,3),
(1034,1044,3),
(1034,1048,3),
(1034,1052,3),
(1034,1058,3),
(1034,1063,3),
(1034,1084,3),
(1034,1096,3),
(1034,1151,3),
(1034,1155,3),
(1034,1282,3),
(1034,1433,3),
(1034,1438,3),
(1038,117,4),
(1040,1039,4),
(1040,1044,4),
(1040,1048,4),
(1040,1052,4),
(1040,1058,4),
(1040,1063,4),
(1040,1084,4),
(1040,1096,4),
(1040,1151,4),
(1040,1155,4),
(1040,1282,4),
(1040,1433,4),
(1040,1438,4),
(1043,117,6),
(1045,1044,5),
(1049,1048,5),
(1053,1052,5),
(1053,1058,5),
(1053,1063,5),
(1053,1084,5),
(1053,1096,5),
(1053,1151,5),
(1053,1155,5),
(1053,1282,5),
(1053,1433,6),
(1053,1438,6),
(1057,117,7),
(1059,1058,6),
(1059,1063,6),
(1059,1084,6),
(1059,1096,6),
(1059,1151,6),
(1059,1155,6),
(1059,1282,6),
(1059,1433,7),
(1059,1438,7),
(1062,117,7),
(1064,1063,7),
(1075,117,8),
(1076,1075,1),
(1077,1075,2),
(1078,1075,3),
(1079,1075,4),
(1080,1075,5),
(1081,1075,6),
(1082,1075,7),
(1083,1075,8),
(1085,1084,7),
(1086,1085,1),
(1086,1097,1),
(1087,1085,2),
(1087,1097,2),
(1088,1085,3),
(1088,1097,3),
(1089,1085,4),
(1089,1097,4),
(1090,1085,5),
(1090,1097,5),
(1091,1085,6),
(1091,1097,6),
(1092,1085,7),
(1092,1097,7),
(1093,1085,8),
(1093,1097,8),
(1097,1096,7),
(1097,1151,7),
(1097,1155,7),
(1097,1282,7),
(1097,1433,8),
(1097,1438,8),
(1099,1098,1),
(1100,1098,2),
(1101,1098,3),
(1102,1098,4),
(1104,1103,1),
(1105,1103,2),
(1106,1103,3),
(1107,1103,4),
(1109,1108,1),
(1110,1108,2),
(1111,1108,3),
(1112,1108,4),
(1114,1113,1),
(1115,1113,2),
(1116,1113,3),
(1117,1113,4),
(1119,1118,1),
(1120,1118,2),
(1121,1118,3),
(1122,1118,4),
(1124,1123,1),
(1125,1123,2),
(1126,1123,3),
(1127,1123,4),
(1129,1128,1),
(1131,1130,1),
(1133,1132,1),
(1135,1134,1),
(1144,1143,3),
(1148,1147,3),
(1152,1151,1),
(1156,1155,1),
(1165,1161,3),
(1167,1166,1),
(1167,1187,1),
(1167,1208,1),
(1167,1217,1),
(1167,1222,1),
(1167,1227,1),
(1167,1248,1),
(1167,1259,2),
(1167,1261,3),
(1167,1264,3),
(1167,1268,3),
(1167,1272,3),
(1167,1276,3),
(1167,1279,3),
(1167,1292,3),
(1167,1296,3),
(1167,1300,3),
(1167,1304,3),
(1167,1308,3),
(1167,1312,3),
(1167,1316,3),
(1178,1161,2),
(1179,1178,1),
(1180,1178,2),
(1181,1178,3),
(1182,1178,4),
(1183,1178,1),
(1184,1178,2),
(1185,1178,3),
(1186,1178,4),
(1188,1187,2),
(1188,1208,2),
(1188,1217,2),
(1188,1222,2),
(1188,1227,2),
(1188,1248,2),
(1188,1259,3),
(1188,1261,2),
(1188,1264,2),
(1188,1268,2),
(1188,1272,2),
(1188,1276,2),
(1188,1279,2),
(1188,1292,2),
(1188,1296,2),
(1188,1300,2),
(1188,1304,2),
(1188,1308,2),
(1188,1312,2),
(1188,1316,2),
(1189,1188,1),
(1190,1188,2),
(1191,1188,3),
(1192,1188,4),
(1193,1188,1),
(1194,1188,2),
(1195,1188,3),
(1196,1188,4),
(1203,1161,4),
(1204,1203,1),
(1205,1203,2),
(1206,1203,3),
(1207,1203,4),
(1209,1208,3),
(1209,1217,3),
(1209,1222,3),
(1209,1227,3),
(1209,1248,3),
(1209,1259,4),
(1209,1261,4),
(1209,1264,4),
(1209,1268,4),
(1209,1272,4),
(1209,1276,4),
(1209,1279,4),
(1209,1292,4),
(1209,1296,4),
(1209,1300,4),
(1209,1304,4),
(1209,1308,4),
(1209,1312,4),
(1209,1316,4),
(1210,1209,1),
(1211,1209,2),
(1212,1209,3),
(1213,1209,4),
(1216,1161,1),
(1218,1217,4),
(1218,1222,4),
(1218,1227,4),
(1218,1248,4),
(1218,1259,1),
(1218,1261,1),
(1221,1161,5),
(1223,1222,5),
(1223,1227,5),
(1223,1248,5),
(1223,1259,5),
(1223,1261,5),
(1223,1264,5),
(1223,1268,5),
(1223,1272,5),
(1223,1276,5),
(1223,1279,5),
(1223,1292,5),
(1223,1296,5),
(1223,1300,5),
(1223,1304,5),
(1223,1308,5),
(1223,1312,5),
(1223,1316,5),
(1226,1161,6),
(1228,1227,6),
(1228,1248,6),
(1228,1259,6),
(1228,1261,6),
(1228,1264,6),
(1228,1268,6),
(1228,1272,6),
(1228,1276,6),
(1228,1279,6),
(1228,1292,6),
(1228,1296,6),
(1228,1300,6),
(1228,1304,6),
(1228,1308,6),
(1228,1312,6),
(1228,1316,6),
(1228,1319,6),
(1239,1161,5),
(1240,1239,1),
(1241,1239,2),
(1242,1239,3),
(1243,1239,4),
(1244,1239,5),
(1245,1239,6),
(1246,1239,7),
(1247,1239,8),
(1249,1248,7),
(1249,1259,7),
(1249,1261,7),
(1249,1264,7),
(1249,1268,7),
(1249,1272,7),
(1249,1276,7),
(1249,1279,7),
(1249,1292,7),
(1249,1296,7),
(1249,1300,7),
(1249,1304,7),
(1249,1308,7),
(1249,1312,7),
(1249,1316,7),
(1249,1319,7),
(1249,1322,3),
(1249,1326,2),
(1250,1249,1),
(1250,1331,1),
(1251,1249,2),
(1251,1331,2),
(1252,1249,3),
(1252,1331,3),
(1253,1249,4),
(1253,1331,4),
(1254,1249,5),
(1254,1331,5),
(1255,1249,6),
(1255,1331,6),
(1256,1249,7),
(1256,1331,7),
(1257,1249,8),
(1257,1331,8),
(1265,1264,1),
(1269,1268,1),
(1273,1272,1),
(1277,1276,1),
(1277,1279,1),
(1283,1282,1),
(1287,1286,1),
(1293,1292,1),
(1297,1296,1),
(1301,1300,1),
(1305,1304,1),
(1309,1308,1),
(1313,1312,1),
(1317,1316,1),
(1317,1319,1),
(1317,1322,1),
(1317,1326,1),
(1317,1330,1),
(1317,1335,3),
(1317,1338,3),
(1317,1340,1),
(1317,1346,1),
(1317,1349,1),
(1317,1351,1),
(1317,1354,1),
(1317,1358,1),
(1317,1363,1),
(1325,1161,4),
(1327,1326,7),
(1327,1330,2),
(1327,1335,1),
(1327,1338,2),
(1327,1340,3),
(1327,1346,3),
(1327,1349,3),
(1327,1351,3),
(1327,1354,3),
(1327,1358,3),
(1327,1363,4),
(1327,1413,4),
(1331,1330,3),
(1331,1335,4),
(1331,1338,4),
(1331,1340,4),
(1331,1346,4),
(1331,1349,4),
(1331,1351,4),
(1331,1354,4),
(1331,1358,4),
(1331,1363,5),
(1331,1413,5),
(1334,1161,2),
(1336,1335,2),
(1336,1338,1),
(1336,1340,2),
(1336,1346,2),
(1336,1349,2),
(1336,1351,2),
(1344,1161,7),
(1345,1344,1),
(1347,1346,7),
(1347,1349,7),
(1348,1347,1),
(1355,1354,2),
(1355,1358,2),
(1355,1363,2),
(1355,1413,2),
(1362,1161,3),
(1364,1363,3),
(1364,1413,3),
(1367,912,1),
(1369,1368,1),
(1369,1373,1),
(1369,1394,1),
(1372,912,2),
(1374,1373,2),
(1374,1394,2),
(1374,1408,2),
(1374,1416,2),
(1385,912,3),
(1386,1385,1),
(1387,1385,2),
(1388,1385,3),
(1389,1385,4),
(1390,1385,5),
(1391,1385,6),
(1392,1385,7),
(1393,1385,8),
(1395,1394,3),
(1395,1408,3),
(1395,1416,3),
(1396,1395,1),
(1397,1395,2),
(1398,1395,3),
(1399,1395,4),
(1400,1395,5),
(1401,1395,6),
(1402,1395,7),
(1403,1395,8),
(1407,912,4),
(1409,1408,1),
(1409,1416,1),
(1410,1408,4),
(1410,1416,4),
(1414,1413,1),
(1422,38,3),
(1423,38,4),
(1425,1424,1),
(1428,38,1),
(1429,1428,3),
(1432,117,5),
(1434,1433,1),
(1435,1433,5),
(1435,1438,5),
(1439,1438,1),
(1442,1441,1),
(1443,1441,2),
(1444,1443,1),
(1445,1443,2),
(1446,1443,3),
(1447,1443,4),
(1448,1443,1),
(1449,1443,2),
(1450,1443,3),
(1451,1443,4),
(1452,1441,3),
(1453,1452,1),
(1454,1452,2),
(1455,1452,3),
(1456,1452,4),
(1457,1441,4),
(1458,1441,5),
(1459,1441,5),
(1460,1441,6),
(1461,1441,7),
(1462,1461,1),
(1463,1461,2),
(1464,1461,3),
(1465,1461,4),
(1466,1461,5),
(1467,1461,6),
(1468,1461,7),
(1469,1461,8),
(1486,1558,4),
(1486,1562,4),
(1486,1576,4),
(1486,1584,4),
(1486,1592,4),
(1486,1601,4),
(1486,1607,4),
(1488,1558,6),
(1488,1562,6),
(1488,1576,6),
(1488,1584,6),
(1488,1592,6),
(1488,1601,6),
(1488,1607,6),
(1488,1612,6),
(1488,1616,6),
(1488,1620,6),
(1488,1624,6),
(1488,1628,6),
(1488,1632,6),
(1488,1636,6),
(1488,1643,6),
(1488,1648,6),
(1488,1652,6),
(1488,1656,6),
(1488,1660,6),
(1488,1664,6),
(1488,1668,6),
(1488,1672,6),
(1488,1676,6),
(1488,1680,6),
(1488,1684,6),
(1488,1688,6),
(1488,1693,6),
(1488,1697,6),
(1488,1702,6),
(1488,1705,6),
(1488,1707,7),
(1489,1558,7),
(1489,1562,7),
(1489,1576,7),
(1489,1584,7),
(1489,1592,7),
(1489,1601,7),
(1489,1607,7),
(1489,1612,7),
(1489,1616,7),
(1489,1620,7),
(1489,1624,7),
(1489,1628,7),
(1489,1632,7),
(1489,1636,7),
(1489,1643,7),
(1489,1648,7),
(1489,1652,7),
(1489,1656,7),
(1489,1660,7),
(1489,1664,7),
(1489,1668,7),
(1489,1672,7),
(1489,1676,7),
(1489,1680,7),
(1489,1684,7),
(1489,1688,7),
(1489,1693,7),
(1489,1697,7),
(1489,1702,7),
(1489,1705,7),
(1489,1707,6),
(1489,1710,6),
(1489,1715,6),
(1489,1721,6),
(1489,1735,6),
(1489,1747,6),
(1489,1751,6),
(1489,1755,6),
(1489,1759,6),
(1489,1762,6),
(1489,1764,6),
(1489,1767,6),
(1489,1771,6),
(1489,1775,6),
(1489,1779,6),
(1490,1558,8),
(1490,1562,8),
(1490,1576,8),
(1490,1584,8),
(1490,1592,8),
(1490,1601,8),
(1490,1607,8),
(1490,1612,8),
(1490,1616,8),
(1490,1620,8),
(1490,1624,8),
(1490,1628,8),
(1490,1632,8),
(1490,1636,8),
(1490,1643,8),
(1490,1648,8),
(1490,1652,8),
(1490,1656,8),
(1490,1660,8),
(1490,1664,8),
(1490,1668,8),
(1490,1672,8),
(1490,1676,8),
(1490,1680,8),
(1490,1684,8),
(1490,1688,8),
(1490,1693,8),
(1490,1697,8),
(1490,1702,8),
(1490,1705,8),
(1490,1707,8),
(1490,1710,8),
(1491,1490,1),
(1492,1490,2),
(1492,1716,2),
(1492,1722,2),
(1493,1490,3),
(1493,1716,3),
(1493,1722,3),
(1494,1490,4),
(1494,1716,4),
(1494,1722,4),
(1495,1490,5),
(1495,1716,5),
(1495,1722,5),
(1496,1490,6),
(1496,1716,6),
(1496,1722,6),
(1497,1490,7),
(1497,1716,7),
(1497,1722,7),
(1498,1490,8),
(1498,1716,8),
(1498,1722,8),
(1509,1558,1),
(1509,1562,1),
(1509,1576,1),
(1509,1584,1),
(1509,1592,1),
(1509,1601,1),
(1509,1607,1),
(1509,1612,1),
(1509,1616,1),
(1509,1620,1),
(1509,1624,1),
(1509,1628,1),
(1509,1632,1),
(1509,1636,1),
(1509,1643,1),
(1509,1648,1),
(1509,1652,1),
(1509,1656,1),
(1509,1660,1),
(1509,1664,1),
(1509,1668,1),
(1509,1672,1),
(1509,1676,1),
(1509,1680,1),
(1509,1684,1),
(1509,1688,1),
(1509,1693,1),
(1509,1697,1),
(1509,1702,1),
(1509,1705,1),
(1509,1707,1),
(1509,1710,1),
(1509,1715,1),
(1509,1721,1),
(1509,1735,1),
(1509,1747,1),
(1509,1751,1),
(1509,1755,1),
(1509,1759,1),
(1509,1762,1),
(1509,1764,1),
(1509,1767,1),
(1509,1771,1),
(1509,1775,1),
(1509,1779,1),
(1509,1783,1),
(1509,1788,1),
(1509,1792,1),
(1509,1796,1),
(1509,1800,1),
(1519,1554,1),
(1534,1554,2),
(1549,1554,3),
(1554,1558,2),
(1554,1562,2),
(1554,1576,2),
(1554,1584,2),
(1554,1592,2),
(1554,1601,2),
(1554,1607,2),
(1554,1612,2),
(1554,1616,2),
(1554,1620,2),
(1554,1624,2),
(1554,1628,2),
(1554,1632,2),
(1554,1636,2),
(1554,1643,2),
(1554,1648,2),
(1554,1652,2),
(1554,1656,2),
(1554,1660,2),
(1554,1664,2),
(1554,1668,2),
(1554,1672,2),
(1554,1676,2),
(1554,1680,2),
(1554,1684,2),
(1554,1688,2),
(1554,1693,2),
(1554,1697,2),
(1554,1702,2),
(1554,1705,2),
(1554,1707,2),
(1554,1710,2),
(1554,1715,2),
(1554,1721,2),
(1554,1735,2),
(1554,1747,2),
(1554,1751,2),
(1554,1755,2),
(1554,1759,2),
(1554,1762,2),
(1554,1764,2),
(1554,1767,2),
(1554,1771,2),
(1554,1775,2),
(1554,1779,2),
(1554,1783,2),
(1554,1788,2),
(1554,1792,2),
(1554,1796,2),
(1554,1800,2),
(1555,1554,4),
(1559,1558,3),
(1563,1562,3),
(1571,1441,3),
(1572,1571,1),
(1573,1571,2),
(1574,1571,3),
(1575,1571,4),
(1577,1576,3),
(1578,1577,1),
(1578,1585,1),
(1579,1577,2),
(1579,1585,2),
(1580,1577,3),
(1580,1585,3),
(1581,1577,4),
(1581,1585,4),
(1585,1584,3),
(1593,1592,3),
(1594,1593,1),
(1595,1593,2),
(1595,1602,2),
(1595,1608,2),
(1596,1593,3),
(1596,1602,3),
(1596,1608,3),
(1597,1593,4),
(1597,1602,4),
(1597,1608,4),
(1602,1601,3),
(1603,1602,1),
(1608,1607,3),
(1608,1612,3),
(1608,1616,3),
(1608,1620,3),
(1608,1624,3),
(1608,1628,3),
(1608,1632,3),
(1608,1636,3),
(1608,1643,3),
(1608,1648,3),
(1608,1652,3),
(1608,1656,3),
(1608,1660,3),
(1608,1664,3),
(1608,1668,3),
(1608,1672,3),
(1608,1676,3),
(1608,1680,3),
(1608,1684,3),
(1608,1688,3),
(1608,1693,3),
(1608,1697,3),
(1608,1702,3),
(1608,1705,3),
(1608,1707,3),
(1608,1710,3),
(1608,1715,3),
(1608,1721,3),
(1608,1735,3),
(1608,1747,3),
(1608,1751,3),
(1608,1755,3),
(1608,1759,3),
(1608,1762,3),
(1608,1764,3),
(1608,1767,3),
(1608,1771,3),
(1608,1775,3),
(1608,1779,3),
(1608,1783,3),
(1608,1788,3),
(1608,1792,3),
(1608,1796,3),
(1608,1800,3),
(1609,1608,1),
(1613,1612,4),
(1617,1616,4),
(1621,1620,4),
(1625,1624,4),
(1629,1628,4),
(1633,1632,4),
(1637,1636,4),
(1644,1643,4),
(1645,1643,5),
(1645,1648,5),
(1645,1652,5),
(1645,1656,5),
(1645,1660,5),
(1645,1664,5),
(1645,1668,5),
(1645,1672,5),
(1645,1676,5),
(1649,1648,4),
(1653,1652,4),
(1657,1656,4),
(1661,1660,4),
(1665,1664,4),
(1669,1668,4),
(1673,1672,4),
(1677,1676,4),
(1677,1680,4),
(1677,1684,4),
(1677,1688,4),
(1677,1693,4),
(1677,1697,4),
(1681,1680,5),
(1685,1684,5),
(1689,1688,5),
(1694,1693,5),
(1698,1697,5),
(1703,1702,4),
(1703,1705,4),
(1703,1707,4),
(1703,1710,4),
(1703,1715,4),
(1703,1721,4),
(1703,1735,4),
(1703,1747,4),
(1703,1751,4),
(1704,1702,5),
(1704,1705,5),
(1704,1707,5),
(1704,1710,5),
(1704,1715,5),
(1704,1721,5),
(1704,1735,5),
(1704,1747,5),
(1704,1751,5),
(1704,1755,5),
(1704,1759,5),
(1711,1710,7),
(1711,1715,7),
(1711,1721,7),
(1711,1735,7),
(1711,1747,7),
(1716,1715,8),
(1717,1716,1),
(1722,1721,8),
(1723,1722,1),
(1723,1736,1),
(1734,1461,9),
(1736,1735,8),
(1736,1747,8),
(1736,1751,8),
(1736,1755,8),
(1736,1759,8),
(1736,1762,8),
(1736,1764,7),
(1736,1767,7),
(1736,1771,7),
(1736,1775,7),
(1736,1779,7),
(1736,1783,7),
(1736,1788,7),
(1736,1792,7),
(1736,1796,7),
(1736,1800,7),
(1737,1736,2),
(1738,1736,3),
(1739,1736,4),
(1740,1736,5),
(1741,1736,6),
(1742,1736,7),
(1743,1736,8),
(1744,1736,9),
(1752,1751,7),
(1752,1755,7),
(1752,1759,7),
(1752,1762,7),
(1752,1764,5),
(1756,1755,4),
(1760,1759,4),
(1760,1762,4),
(1760,1764,4),
(1760,1767,4),
(1760,1771,4),
(1760,1775,4),
(1760,1779,4),
(1760,1783,4),
(1760,1788,4),
(1760,1792,4),
(1760,1796,4),
(1760,1800,4),
(1768,1767,5),
(1772,1771,5),
(1776,1775,5),
(1780,1779,5),
(1780,1783,5),
(1780,1788,5),
(1780,1792,5),
(1780,1796,5),
(1780,1800,5),
(1784,1783,6),
(1784,1788,6),
(1784,1792,6),
(1784,1796,6),
(1784,1800,6),
(1787,1441,8),
(1789,1788,8),
(1793,1792,8),
(1797,1796,8),
(1801,1800,8),
(1803,1802,1),
(1804,1802,2),
(1805,1804,1),
(1806,1804,2),
(1807,1804,3),
(1808,1804,4),
(1809,1802,3),
(1810,1809,1),
(1811,1809,2),
(1812,1809,3),
(1813,1809,4),
(1814,1802,4),
(1815,1802,5),
(1816,1802,6),
(1817,1802,7),
(1818,1817,1),
(1819,1817,2),
(1820,1817,3),
(1821,1817,4),
(1822,1817,5),
(1823,1817,6),
(1824,1817,7),
(1825,1817,8),
(1826,1817,9),
(1827,1802,8),
(1829,1828,1),
(1830,1828,2),
(1831,1830,1),
(1832,1830,2),
(1833,1830,3),
(1834,1830,4),
(1835,1828,3),
(1835,1862,3),
(1835,1872,3),
(1835,1874,3),
(1835,1877,3),
(1836,1835,1),
(1837,1835,2),
(1838,1835,3),
(1839,1835,4),
(1840,1828,4),
(1840,1862,4),
(1840,1872,4),
(1840,1874,4),
(1840,1877,4),
(1840,1885,4),
(1841,1828,5),
(1841,1862,5),
(1841,1872,5),
(1841,1874,5),
(1841,1877,5),
(1841,1885,5),
(1842,1828,6),
(1842,1862,6),
(1842,1872,6),
(1842,1874,6),
(1842,1877,6),
(1842,1885,6),
(1842,1915,6),
(1842,1931,6),
(1842,1935,6),
(1842,1944,6),
(1842,1949,6),
(1843,1828,7),
(1843,1862,7),
(1843,1872,7),
(1843,1874,7),
(1843,1877,7),
(1843,1885,7),
(1844,1843,1),
(1845,1843,2),
(1846,1843,3),
(1847,1843,4),
(1848,1843,5),
(1849,1843,6),
(1850,1843,7),
(1851,1843,8),
(1852,1843,9),
(1853,1828,8),
(1863,1862,1),
(1864,1862,2),
(1864,1872,2),
(1864,1874,2),
(1864,1877,2),
(1864,1885,2),
(1864,1915,2),
(1864,1931,2),
(1864,1935,2),
(1864,1944,2),
(1864,1949,2),
(1865,1864,1),
(1866,1864,2),
(1867,1864,3),
(1868,1864,4),
(1869,1862,8),
(1869,1872,8),
(1869,1874,8),
(1869,1877,8),
(1869,1885,8),
(1869,1915,8),
(1869,1931,8),
(1869,1935,8),
(1869,1944,8),
(1869,1949,8),
(1873,1872,1),
(1873,1874,1),
(1878,1877,1),
(1878,1885,1),
(1878,1915,1),
(1878,1931,1),
(1878,1935,1),
(1878,1944,1),
(1878,1949,1),
(1886,1885,3),
(1886,1915,3),
(1886,1931,3),
(1886,1935,3),
(1886,1944,3),
(1886,1949,3),
(1887,1886,1),
(1888,1886,2),
(1889,1886,3),
(1890,1886,4),
(1905,1817,1),
(1906,1817,2),
(1907,1817,3),
(1908,1817,4),
(1909,1817,5),
(1910,1817,6),
(1911,1817,7),
(1912,1817,8),
(1913,1817,9),
(1914,1817,10),
(1916,1915,4),
(1917,1915,5),
(1917,1931,5),
(1918,1915,7),
(1918,1931,7),
(1918,1935,7),
(1918,1944,7),
(1918,1949,7),
(1919,1918,1),
(1920,1918,2),
(1921,1918,3),
(1922,1918,4),
(1923,1918,5),
(1924,1918,6),
(1925,1918,7),
(1926,1918,8),
(1927,1918,9),
(1928,1918,10),
(1932,1931,4),
(1932,1935,4),
(1936,1935,5),
(1936,1944,5),
(1943,1802,4),
(1945,1944,4),
(1945,1949,4),
(1950,1949,5),
(1952,1951,1),
(1953,1951,2),
(1954,1953,1),
(1955,1953,2),
(1956,1953,3),
(1957,1953,4),
(1958,1951,3),
(1959,1958,1),
(1960,1958,2),
(1961,1958,3),
(1962,1958,4),
(1963,1951,4),
(1964,1951,5),
(1965,1951,6),
(1966,1951,7),
(1967,1966,1),
(1968,1966,2),
(1969,1966,3),
(1970,1966,4),
(1971,1966,5),
(1972,1966,6),
(1973,1966,7),
(1974,1966,8),
(1975,1966,9),
(1976,1966,10),
(1977,1951,8),
(1979,1978,1),
(1980,1978,2),
(1981,1980,1),
(1982,1980,2),
(1983,1980,3),
(1984,1980,4),
(1985,1978,3),
(1986,1985,1),
(1987,1985,2),
(1988,1985,3),
(1989,1985,4),
(1990,1978,4),
(1991,1978,5),
(1991,2021,5),
(1992,1978,6),
(1992,2021,6),
(1992,2062,6),
(1992,2079,6),
(1993,1978,7),
(1993,2021,7),
(1994,1993,1),
(1995,1993,2),
(1996,1993,3),
(1997,1993,4),
(1998,1993,5),
(1999,1993,6),
(2000,1993,7),
(2001,1993,8),
(2002,1993,9),
(2003,1993,10),
(2004,1978,8),
(2004,2021,8),
(2004,2062,8),
(2004,2079,8),
(2020,1951,4),
(2022,2021,1),
(2022,2062,1),
(2022,2079,1),
(2023,2021,2),
(2023,2062,2),
(2023,2079,2),
(2024,2023,1),
(2025,2023,2),
(2026,2023,3),
(2027,2023,4),
(2028,2021,3),
(2028,2062,3),
(2028,2079,3),
(2029,2028,1),
(2030,2028,2),
(2031,2028,3),
(2032,2028,4),
(2033,2021,4),
(2051,1966,1),
(2052,1966,2),
(2053,1966,3),
(2054,1966,4),
(2055,1966,5),
(2056,1966,6),
(2057,1966,7),
(2058,1966,8),
(2059,1966,9),
(2060,1966,10),
(2061,1966,11),
(2063,2062,4),
(2064,2062,5),
(2064,2079,5),
(2065,2062,7),
(2065,2079,7),
(2066,2065,1),
(2067,2065,2),
(2068,2065,3),
(2069,2065,4),
(2070,2065,5),
(2071,2065,6),
(2072,2065,7),
(2073,2065,8),
(2074,2065,9),
(2075,2065,10),
(2076,2065,11),
(2080,2079,4),
(2082,2081,1),
(2083,2081,2),
(2084,2083,1),
(2085,2083,2),
(2086,2083,3),
(2087,2083,4),
(2088,2081,3),
(2089,2088,1),
(2090,2088,2),
(2091,2088,3),
(2092,2088,4),
(2093,2081,4),
(2094,2081,5),
(2095,2081,6),
(2096,2081,7),
(2097,2096,1),
(2098,2096,2),
(2099,2096,3),
(2100,2096,4),
(2101,2096,5),
(2102,2096,6),
(2103,2096,7),
(2104,2096,8),
(2105,2096,9),
(2106,2096,10),
(2107,2096,11),
(2108,2081,8),
(2110,2109,1),
(2110,2137,1),
(2111,2109,2),
(2111,2137,2),
(2112,2111,1),
(2113,2111,2),
(2114,2111,3),
(2115,2111,4),
(2116,2109,3),
(2116,2137,3),
(2117,2116,1),
(2118,2116,2),
(2119,2116,3),
(2120,2116,4),
(2121,2109,4),
(2121,2137,4),
(2121,2150,4),
(2122,2109,5),
(2122,2137,5),
(2122,2150,5),
(2122,2280,5),
(2123,2109,6),
(2123,2137,6),
(2123,2150,6),
(2123,2280,6),
(2124,2109,7),
(2124,2137,7),
(2124,2150,7),
(2124,2280,7),
(2125,2124,1),
(2126,2124,2),
(2127,2124,3),
(2128,2124,4),
(2129,2124,5),
(2130,2124,6),
(2131,2124,7),
(2132,2124,8),
(2133,2124,9),
(2134,2124,10),
(2135,2124,11),
(2136,2109,8),
(2136,2137,8),
(2136,2150,8),
(2136,2280,8),
(2151,2150,1),
(2151,2280,1),
(2152,2150,2),
(2152,2280,2),
(2153,2152,1),
(2154,2152,2),
(2155,2152,3),
(2156,2152,4),
(2157,2150,3),
(2157,2280,3),
(2158,2157,1),
(2159,2157,2),
(2160,2157,3),
(2161,2157,4),
(2163,2162,1),
(2164,2162,2),
(2165,2164,1),
(2166,2164,2),
(2167,2164,3),
(2168,2164,4),
(2169,2162,3),
(2170,2169,1),
(2171,2169,2),
(2172,2169,3),
(2173,2169,4),
(2174,2162,4),
(2175,2162,5),
(2176,2162,6),
(2177,2162,7),
(2178,2177,1),
(2179,2177,2),
(2180,2177,3),
(2181,2177,4),
(2182,2177,5),
(2183,2177,6),
(2184,2177,7),
(2185,2177,8),
(2186,2177,9),
(2187,2177,10),
(2188,2177,11),
(2189,2162,8),
(2191,2190,1),
(2192,2190,2),
(2193,2192,1),
(2194,2192,2),
(2195,2192,3),
(2196,2192,4),
(2197,2190,3),
(2198,2197,1),
(2199,2197,2),
(2200,2197,3),
(2201,2197,4),
(2202,2190,4),
(2203,2190,5),
(2204,2190,6),
(2204,2253,6),
(2204,2284,6),
(2205,2190,7),
(2206,2205,1),
(2207,2205,2),
(2208,2205,3),
(2209,2205,4),
(2210,2205,5),
(2211,2205,6),
(2212,2205,7),
(2213,2205,8),
(2214,2205,9),
(2215,2205,10),
(2216,2205,11),
(2217,2190,8),
(2217,2253,8),
(2217,2284,8),
(2243,2177,1),
(2244,2177,2),
(2245,2177,3),
(2246,2177,4),
(2247,2177,5),
(2248,2177,6),
(2249,2177,7),
(2250,2177,8),
(2251,2177,9),
(2252,2177,10),
(2254,2253,1),
(2254,2284,1),
(2255,2253,2),
(2255,2284,2),
(2256,2255,1),
(2257,2255,2),
(2258,2255,3),
(2259,2255,4),
(2260,2253,3),
(2260,2284,3),
(2261,2260,1),
(2262,2260,2),
(2263,2260,3),
(2264,2260,4),
(2265,2253,4),
(2266,2253,5),
(2266,2284,5),
(2267,2253,7),
(2267,2284,7),
(2268,2267,1),
(2269,2267,2),
(2270,2267,3),
(2271,2267,4),
(2272,2267,5),
(2273,2267,6),
(2274,2267,7),
(2275,2267,8),
(2276,2267,9),
(2277,2267,10),
(2281,2280,4),
(2285,2284,4),
(2287,2286,1),
(2288,2286,2),
(2289,2288,1),
(2290,2288,2),
(2291,2288,3),
(2292,2288,4),
(2293,2286,3),
(2294,2293,1),
(2295,2293,2),
(2296,2293,3),
(2297,2293,4),
(2298,2286,4),
(2299,2286,5),
(2300,2286,6),
(2301,2286,7),
(2302,2301,1),
(2303,2301,2),
(2304,2301,3),
(2305,2301,4),
(2306,2301,5),
(2307,2301,6),
(2308,2301,7),
(2309,2301,8),
(2310,2301,9),
(2311,2301,10),
(2312,2286,8),
(2314,2313,1),
(2315,2313,2),
(2316,2315,1),
(2317,2315,2),
(2318,2315,3),
(2319,2315,4),
(2320,2313,3),
(2321,2320,1),
(2322,2320,2),
(2323,2320,3),
(2324,2320,4),
(2325,2313,4),
(2326,2313,5),
(2327,2313,6),
(2327,2378,6),
(2327,2404,6),
(2327,2407,6),
(2328,2313,7),
(2329,2328,1),
(2330,2328,2),
(2331,2328,3),
(2332,2328,4),
(2333,2328,5),
(2334,2328,6),
(2335,2328,7),
(2336,2328,8),
(2337,2328,9),
(2338,2328,10),
(2339,2313,8),
(2339,2378,8),
(2339,2404,8),
(2339,2407,8),
(2368,2301,1),
(2369,2301,2),
(2370,2301,3),
(2371,2301,4),
(2372,2301,5),
(2373,2301,6),
(2374,2301,7),
(2375,2301,8),
(2376,2301,9),
(2377,2301,10),
(2379,2378,1),
(2379,2404,1),
(2379,2407,1),
(2380,2378,2),
(2380,2404,2),
(2380,2407,2),
(2381,2380,1),
(2382,2380,2),
(2383,2380,3),
(2384,2380,4),
(2385,2378,3),
(2385,2404,3),
(2385,2407,3),
(2386,2385,1),
(2387,2385,2),
(2388,2385,3),
(2389,2385,4),
(2390,2378,4),
(2390,2404,4),
(2391,2378,5),
(2391,2404,5),
(2391,2407,5),
(2392,2378,7),
(2392,2404,7),
(2392,2407,7),
(2393,2392,1),
(2394,2392,2),
(2395,2392,3),
(2396,2392,4),
(2397,2392,5),
(2398,2392,6),
(2399,2392,7),
(2400,2392,8),
(2401,2392,9),
(2402,2392,10),
(2408,2407,4),
(2410,2409,1),
(2411,2409,2),
(2412,2411,1),
(2413,2411,2),
(2414,2411,3),
(2415,2411,4),
(2416,2409,3),
(2417,2416,1),
(2418,2416,2),
(2419,2416,3),
(2420,2416,4),
(2421,2409,4),
(2422,2409,5),
(2423,2409,6),
(2424,2409,7),
(2425,2424,1),
(2426,2424,2),
(2427,2424,3),
(2428,2424,4),
(2429,2424,5),
(2430,2424,6),
(2431,2424,7),
(2432,2424,8),
(2433,2424,9),
(2434,2424,10),
(2435,2409,8),
(2437,2436,1),
(2438,2436,2),
(2439,2438,1),
(2440,2438,2),
(2441,2438,3),
(2442,2438,4),
(2443,2436,3),
(2444,2443,1),
(2445,2443,2),
(2446,2443,3),
(2447,2443,4),
(2448,2436,4),
(2449,2436,5),
(2450,2436,6),
(2450,2498,6),
(2451,2436,7),
(2452,2451,1),
(2453,2451,2),
(2454,2451,3),
(2455,2451,4),
(2456,2451,5),
(2457,2451,6),
(2458,2451,7),
(2459,2451,8),
(2460,2451,9),
(2461,2451,10),
(2462,2436,8),
(2462,2498,8),
(2488,2424,1),
(2489,2424,2),
(2490,2424,3),
(2491,2424,4),
(2492,2424,5),
(2493,2424,6),
(2494,2424,7),
(2495,2424,8),
(2496,2424,9),
(2497,2424,10),
(2499,2498,1),
(2500,2498,2),
(2501,2500,1),
(2502,2500,2),
(2503,2500,3),
(2504,2500,4),
(2505,2498,3),
(2506,2505,1),
(2507,2505,2),
(2508,2505,3),
(2509,2505,4),
(2510,2498,4),
(2511,2498,5),
(2512,2498,7),
(2513,2512,1),
(2514,2512,2),
(2515,2512,3),
(2516,2512,4),
(2517,2512,5),
(2518,2512,6),
(2519,2512,7),
(2520,2512,8),
(2521,2512,9),
(2522,2512,10),
(2524,2523,1),
(2525,2523,2),
(2526,2525,1),
(2527,2525,2),
(2528,2525,3),
(2529,2525,4),
(2530,2523,3),
(2531,2530,1),
(2532,2530,2),
(2533,2530,3),
(2534,2530,4),
(2535,2523,4),
(2536,2523,5),
(2537,2523,6),
(2538,2523,7),
(2539,2538,1),
(2540,2538,2),
(2541,2538,3),
(2542,2538,4),
(2543,2538,5),
(2544,2538,6),
(2545,2538,7),
(2546,2538,8),
(2547,2538,9),
(2548,2538,10),
(2549,2523,8),
(2551,2550,1),
(2552,2550,2),
(2553,2552,1),
(2554,2552,2),
(2555,2552,3),
(2556,2552,4),
(2557,2550,3),
(2558,2557,1),
(2559,2557,2),
(2560,2557,3),
(2561,2557,4),
(2562,2550,4),
(2563,2550,5),
(2564,2550,6),
(2564,2618,6),
(2565,2550,7),
(2566,2565,1),
(2567,2565,2),
(2568,2565,3),
(2569,2565,4),
(2570,2565,5),
(2571,2565,6),
(2572,2565,7),
(2573,2565,8),
(2574,2565,9),
(2575,2565,10),
(2576,2550,8),
(2576,2618,8),
(2608,2538,1),
(2609,2538,2),
(2610,2538,3),
(2611,2538,4),
(2612,2538,5),
(2613,2538,6),
(2614,2538,7),
(2615,2538,8),
(2616,2538,9),
(2617,2538,10),
(2619,2618,1),
(2620,2618,2),
(2621,2620,1),
(2622,2620,2),
(2623,2620,3),
(2624,2620,4),
(2625,2618,3),
(2626,2625,1),
(2627,2625,2),
(2628,2625,3),
(2629,2625,4),
(2630,2618,4),
(2631,2618,5),
(2632,2618,7),
(2633,2632,1),
(2634,2632,2),
(2635,2632,3),
(2636,2632,4),
(2637,2632,5),
(2638,2632,6),
(2639,2632,7),
(2640,2632,8),
(2641,2632,9),
(2642,2632,10),
(2644,2643,1),
(2645,2643,2),
(2646,2645,1),
(2647,2645,2),
(2648,2645,3),
(2649,2645,4),
(2650,2643,3),
(2651,2650,1),
(2652,2650,2),
(2653,2650,3),
(2654,2650,4),
(2655,2643,4),
(2656,2643,5),
(2657,2643,6),
(2658,2643,7),
(2659,2658,1),
(2660,2658,2),
(2661,2658,3),
(2662,2658,4),
(2663,2658,5),
(2664,2658,6),
(2665,2658,7),
(2666,2658,8),
(2667,2658,9),
(2668,2658,10),
(2669,2643,8),
(2671,2670,1),
(2672,2670,2),
(2673,2672,1),
(2674,2672,2),
(2675,2672,3),
(2676,2672,4),
(2677,2670,3),
(2678,2677,1),
(2679,2677,2),
(2680,2677,3),
(2681,2677,4),
(2682,2670,4),
(2683,2670,5),
(2683,2714,5),
(2683,2730,5),
(2683,2734,5),
(2684,2670,6),
(2684,2714,6),
(2684,2730,6),
(2684,2734,6),
(2684,2740,6),
(2684,2744,6),
(2684,2764,6),
(2685,2670,7),
(2686,2685,1),
(2686,2727,1),
(2687,2685,2),
(2687,2727,2),
(2688,2685,3),
(2688,2727,3),
(2689,2685,4),
(2689,2727,4),
(2690,2685,5),
(2690,2727,5),
(2691,2685,6),
(2691,2727,6),
(2692,2685,7),
(2692,2727,7),
(2693,2685,8),
(2693,2727,8),
(2694,2685,9),
(2694,2727,9),
(2695,2685,10),
(2695,2727,10),
(2696,2670,8),
(2696,2714,8),
(2696,2730,8),
(2696,2734,8),
(2696,2740,9),
(2696,2744,8),
(2696,2764,8),
(2715,2714,1),
(2715,2730,1),
(2715,2734,1),
(2715,2740,1),
(2715,2744,1),
(2715,2764,1),
(2716,2714,2),
(2716,2730,2),
(2716,2734,2),
(2716,2740,2),
(2716,2744,2),
(2716,2764,2),
(2717,2716,1),
(2718,2716,2),
(2719,2716,3),
(2720,2716,4),
(2721,2714,3),
(2722,2721,1),
(2722,2731,1),
(2722,2735,1),
(2723,2721,2),
(2723,2731,2),
(2723,2735,2),
(2724,2721,3),
(2724,2731,3),
(2724,2735,3),
(2725,2721,4),
(2725,2731,4),
(2725,2735,4),
(2726,2714,4),
(2726,2730,4),
(2726,2734,4),
(2726,2740,4),
(2726,2744,4),
(2726,2764,4),
(2727,2714,7),
(2727,2730,7),
(2727,2734,7),
(2727,2740,8),
(2727,2744,7),
(2731,2730,3),
(2735,2734,3),
(2735,2740,3),
(2735,2744,3),
(2735,2764,3),
(2741,2740,5),
(2745,2744,5),
(2745,2764,5),
(2761,2658,6),
(2762,2658,11),
(2763,2658,12),
(2765,2764,7),
(2766,2765,1),
(2767,2765,2),
(2768,2765,3),
(2769,2765,4),
(2770,2765,5),
(2771,2765,6),
(2772,2765,7),
(2773,2765,8),
(2774,2765,9),
(2775,2765,10),
(2776,2765,11),
(2777,2765,12),
(2779,2778,1),
(2780,2778,2),
(2781,2780,1),
(2782,2780,2),
(2783,2780,3),
(2784,2780,4),
(2785,2778,3),
(2786,2785,1),
(2787,2785,2),
(2788,2785,3),
(2789,2785,4),
(2790,2778,4),
(2791,2778,5),
(2792,2778,6),
(2793,2778,7),
(2794,2793,1),
(2795,2793,2),
(2796,2793,3),
(2797,2793,4),
(2798,2793,5),
(2799,2793,6),
(2800,2793,7),
(2801,2793,8),
(2802,2793,9),
(2803,2793,10),
(2804,2778,8),
(2806,2805,1),
(2806,2832,1),
(2807,2805,2),
(2807,2832,2),
(2808,2807,1),
(2809,2807,2),
(2810,2807,3),
(2811,2807,4),
(2812,2805,3),
(2812,2832,3),
(2813,2812,1),
(2814,2812,2),
(2815,2812,3),
(2816,2812,4),
(2817,2805,4),
(2817,2832,4),
(2818,2805,5),
(2818,2832,5),
(2819,2805,6),
(2819,2832,6),
(2819,2876,6),
(2820,2805,7),
(2820,2832,7),
(2821,2820,1),
(2822,2820,2),
(2823,2820,3),
(2824,2820,4),
(2825,2820,5),
(2826,2820,6),
(2827,2820,7),
(2828,2820,8),
(2829,2820,9),
(2830,2820,10),
(2831,2805,8),
(2831,2832,8),
(2831,2876,8),
(2862,2793,1),
(2863,2793,2),
(2864,2793,3),
(2865,2793,4),
(2866,2793,5),
(2867,2793,6),
(2868,2793,7),
(2869,2793,8),
(2870,2793,9),
(2871,2793,10),
(2872,2793,11),
(2873,2793,12),
(2874,2793,13),
(2875,2793,14),
(2877,2876,1),
(2878,2876,2),
(2879,2878,1),
(2880,2878,2),
(2881,2878,3),
(2882,2878,4),
(2883,2876,3),
(2884,2883,1),
(2885,2883,2),
(2886,2883,3),
(2887,2883,4),
(2888,2876,4),
(2889,2876,5),
(2890,2876,7),
(2891,2890,1),
(2892,2890,2),
(2893,2890,3),
(2894,2890,4),
(2895,2890,5),
(2896,2890,6),
(2897,2890,7),
(2898,2890,8),
(2899,2890,9),
(2900,2890,10),
(2901,2890,11),
(2902,2890,12),
(2903,2890,13),
(2904,2890,14),
(2919,2918,1),
(2920,2918,2),
(2921,2918,3),
(2922,2918,4),
(2923,2918,5),
(2924,2923,1),
(2925,2923,2),
(2926,2923,3),
(2927,2923,4),
(2928,2923,5),
(2929,2923,6),
(2930,2923,7),
(2931,2923,8),
(2933,2932,1),
(2933,2947,1),
(2934,2932,2),
(2934,2947,2),
(2935,2932,3),
(2935,2947,3),
(2936,2932,4),
(2936,2947,4),
(2937,2932,5),
(2937,2947,5),
(2938,2937,1),
(2939,2937,2),
(2940,2937,3),
(2941,2937,4),
(2942,2937,5),
(2943,2937,6),
(2944,2937,7),
(2945,2937,8);
/*!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-02-08 10:05:52','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','2025-11-30 12:11:53','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,'Logob',NULL,NULL,NULL,1,'2025-11-30 14:11:48','2025-11-30 14:11:48','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,'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 15:34:26','2025-12-02 17:03:57','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'),
(93,93,1,'Prophilo','prophilo','treatments/prophilo','{\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Prophilo\",\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 15:40:51','2025-12-02 15:41:06','ab3a1a3b-1dcf-420a-b5a2-8ae063a7810a'),
(94,94,1,'Prophilo','prophilo','treatments/prophilo','{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Prophilo\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 15:41:06','2025-12-02 15:41:06','78b62710-e7d8-4aff-b2ce-60bab7f2b6a7'),
(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'),
(97,97,1,'Micro needling','micro-needling','treatments/micro-needling','{\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"microneedling\",\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 15:42:01','2025-12-02 15:42:14','3ae599ad-64f0-46a5-8578-c5b08234205d'),
(98,98,1,'Micro needling','micro-needling','treatments/micro-needling','{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"microneedling\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 15:42:14','2025-12-02 15:42:14','db9b2aab-741e-49b0-a9ce-7bee308002a7'),
(99,99,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 15:42:19','2025-12-02 17:46:07','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'),
(105,105,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 16:15:38','2025-12-02 21:01:57','1d3b9edb-4cd3-44f2-a94e-c77b8b30f0f5'),
(106,106,1,'Test treatment','test-treatment','treatments/test-treatment',NULL,1,'2025-12-02 16:15:48','2025-12-02 16:15:48','b65635e7-4e5b-4459-b33f-e247b5bee579'),
(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,'test1','test1',NULL,'{\"26a77c9c-ce78-46e2-acb7-8fd1af9ba2eb\":[757],\"d5803862-14af-411a-83a8-0734f3d68687\":[91],\"bcabfcb9-19e8-44e6-8f09-e37ebd2791d1\":true}',1,'2025-12-02 16:26:08','2025-12-15 09:01:44','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'),
(117,117,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2025-12-02 16:47:00','2026-02-08 10:19:31','e4358cb3-8282-4177-9dac-46b6cf757fd1'),
(118,118,1,'treatment 2','treatment-2','treatments/treatment-2',NULL,1,'2025-12-02 16:47:05','2025-12-02 16:47:05','b5a3856c-804b-406c-9217-c05dda16ee7a'),
(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'),
(122,122,1,'Test treatment','test-treatment','treatments/test-treatment','{\"e29b7cc1-1c1e-414d-93ca-11ce7716b219\":[112,99]}',1,'2025-12-02 16:48:06','2025-12-02 16:48:06','b22798e9-7c41-4bfd-9952-c253b69fe765'),
(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'),
(132,132,1,'treatment 2','treatment-2','treatments/treatment-2','{\"e29b7cc1-1c1e-414d-93ca-11ce7716b219\":[89]}',1,'2025-12-02 17:18:14','2025-12-02 17:18:14','388c40d0-b0a9-455b-a3ad-4f5a0958a903'),
(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\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[312,821],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-02 17:25:51','2025-12-08 10:15:37','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\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-02 17:25:51','2025-12-02 21:31:23','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\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2025-12-02 17:25:51','2025-12-02 17:25:51','8e717004-9e65-4753-b671-a58f03df515d'),
(149,149,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-12-02 17:25:51','2025-12-02 17:25:51','e084403a-099e-4904-9e08-d7f3829cc0cc'),
(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'),
(181,181,1,'test','test',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"test1\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"test2\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"test 3\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"test 4\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[48],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','f9ad0c52-bea9-4595-b43f-7945ffa367fb'),
(182,182,1,'testtt1','testtt1',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"asasdas\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','0d7bc712-a2c4-4adc-860b-32cbef7a7a37'),
(183,183,1,'test123123','test123123',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"test123123\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://11233312\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','62fc7594-4558-4eae-86cb-7139d400460c'),
(184,184,1,'Test treatment','test-treatment','treatments/test-treatment','{\"e29b7cc1-1c1e-414d-93ca-11ce7716b219\":[112,99]}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','b2bc0a49-936f-4336-a58a-947125ccd032'),
(185,185,1,'test','test',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"test1\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"test2\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"test 3\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"test 4\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[48],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','b6034eb7-c859-430f-9bbe-a1164054cf3a'),
(186,186,1,'testtt1','testtt1',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"asasdas\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','bc403c81-63f0-4e95-a958-53b2877f9569'),
(187,187,1,'test123123','test123123',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"test123123\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://11233312\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"ctaAlt\"}',1,'2025-12-02 19:06:16','2025-12-02 19:06:16','e32c665e-90b1-488a-9b20-d3d7c670031d'),
(190,190,1,'Featured transformation','featured-transformation',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.  2\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[89,112,99]}',1,'2025-12-02 19:32:49','2025-12-02 20:01:57','6b5dafc0-4174-4b88-af81-53cc67112e98'),
(191,191,1,'Test treatment','test-treatment','treatments/test-treatment','{\"e29b7cc1-1c1e-414d-93ca-11ce7716b219\":[112,99]}',1,'2025-12-02 19:32:49','2025-12-02 19:32:49','dec01666-2908-4a2d-8bdd-c3da4b7a58c1'),
(192,192,1,'Featured transformation','featured-transformation',NULL,'{\"49644737-b16a-4ec0-9507-72c7d47013c5\":[112,99,89]}',1,'2025-12-02 19:32:49','2025-12-02 19:32:49','353820ee-878d-4974-a872-27c5fd2fca80'),
(193,193,1,'Test treatment','test-treatment','treatments/test-treatment',NULL,1,'2025-12-02 19:34:09','2025-12-02 19:34:09','b01ef016-2554-49db-80b1-d695555e4a89'),
(195,195,1,'Test treatment','test-treatment','treatments/test-treatment',NULL,1,'2025-12-02 19:52:54','2025-12-02 19:52:54','454cb995-e6d7-4dcc-b898-65ca4aa0ea73'),
(196,196,1,'Featured transformation','featured-transformation',NULL,'{\"49644737-b16a-4ec0-9507-72c7d47013c5\":[89,112,99]}',1,'2025-12-02 19:52:54','2025-12-02 19:52:54','d78dae6f-de7a-4c70-a328-cac71177e2b6'),
(198,198,1,'Test treatment','test-treatment','treatments/test-treatment',NULL,1,'2025-12-02 20:01:58','2025-12-02 20:01:58','a7ad2c54-eb44-4d29-a874-6f37f72dd825'),
(199,199,1,'Featured transformation','featured-transformation',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"d5be8f8e-04d2-4f39-bd44-54d27923b9d5\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.  2\",\"49644737-b16a-4ec0-9507-72c7d47013c5\":[89,112,99]}',1,'2025-12-02 20:01:58','2025-12-02 20:01:58','c0c83a86-3b64-445f-8b55-5d7dc0b7e913'),
(204,204,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":2,\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"limited\",\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\":[117]}',1,'2025-12-02 20:31:56','2025-12-02 21:08:36','40c52552-5979-4452-86d0-81596a080dcc'),
(205,205,1,'Test treatment','test-treatment','treatments/test-treatment',NULL,1,'2025-12-02 20:31:56','2025-12-02 20:31:56','323eb0f9-3898-4c78-9035-31646a0ea82c'),
(206,206,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\"}',1,'2025-12-02 20:31:56','2025-12-02 20:31:56','536a13c0-0426-4f7d-86b5-fbc4053fe31a'),
(208,208,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:01:57','2025-12-02 21:01:57','988ab2b1-0685-488c-9bd7-5283d3bb7919'),
(210,210,1,'treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2025-12-02 21:02:05','2025-12-02 21:02:05','efc5115d-6bed-4a4f-8d13-e7279f6ac99a'),
(212,212,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:05:04','2025-12-02 21:05:04','f001eb49-985d-4502-8b52-96749463435c'),
(213,213,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":1}',1,'2025-12-02 21:05:04','2025-12-02 21:05:04','8aa92da5-0cd5-4ee2-a690-c4a6ae2395e7'),
(215,215,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:05:38','2025-12-02 21:05:38','494e3c52-e0c2-48dd-bf23-ee273c575e13'),
(216,216,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"limited\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":1}',1,'2025-12-02 21:05:38','2025-12-02 21:05:38','ab3e421d-5aed-437b-816b-c9a4df0ce567'),
(218,218,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:06:16','2025-12-02 21:06:16','37912eec-6de1-4ead-91b8-fb81a8ed7c84'),
(219,219,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"selected\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":1}',1,'2025-12-02 21:06:16','2025-12-02 21:06:16','a52a2811-2ca4-4ed8-827d-a17599e1e0b6'),
(221,221,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:08:02','2025-12-02 21:08:02','9936b19b-9797-4759-884f-010a45cb10bb'),
(222,222,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"limited\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":1}',1,'2025-12-02 21:08:02','2025-12-02 21:08:02','2b8ff343-f095-428c-86fe-36a688859cce'),
(224,224,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:08:18','2025-12-02 21:08:18','39f154f4-a65e-4fd1-93a3-fdb829c05090'),
(225,225,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"limited\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":1,\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\":[117]}',1,'2025-12-02 21:08:18','2025-12-02 21:08:18','ea60a971-cdca-4790-a652-96c20aad2489'),
(227,227,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:08:37','2025-12-02 21:08:37','283968bb-2c9c-491b-8ef1-896842569147'),
(228,228,1,'What can a treatment do today?','what-can-a-treatment-do-today',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"de66f1b4-ca80-4ff2-a88f-8249af4521c1\":\"test1\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"limited\",\"e2ce4804-fbe9-43d5-8161-304ca9bcd25d\":2,\"d401ee3a-400c-47c1-b52e-7ca24db6b7f3\":[117]}',1,'2025-12-02 21:08:37','2025-12-02 21:08:37','754e93ae-1197-4f28-b4da-f5e0fa15d123'),
(230,230,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:09:02','2025-12-02 21:09:02','659ba08b-0758-412b-845c-1b36fd6ccfdd'),
(232,232,1,'Test treatment','test-treatment','treatments/test-treatment','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[48]}',1,'2025-12-02 21:09:19','2025-12-02 21:09:19','6e03bb29-7b5c-441e-866c-e3d7e25c22ab'),
(235,235,1,'About Us 2',NULL,NULL,NULL,1,'2025-12-02 21:42:11','2025-12-02 22:25:41','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],\"44163978-09b5-41d9-aeca-b7f4d159c399\":\"Enhancing natural beauty through expert medical aesthetics and personalized care. 2\",\"ad69a4ab-be0f-40af-9893-7061bb208954\":\"07834 258 596 2\",\"2ee1436c-9bfd-4b8b-85d5-08ac782d324c\":\"Email Us 2\",\"15ee367f-1e67-4016-853e-efc16011c1ec\":\"224 Town Lane, Bebington,\\nWirral, CH63 8LG 2\",\"12fa2947-f2ff-44bd-b309-abed952bde15\":{\"value\":\"#googlelink\",\"type\":\"url\"},\"c49634d8-fde6-459c-bd26-9cb8d58aad59\":\"© 2025 Dr Rachel. All rights reserved. 2\"}',1,'2025-12-02 22:04:25','2025-12-02 22:27:30','9de4ed3a-2d75-4453-9ea0-4250a74f481f'),
(244,244,1,'Privacy Policy 2','privacy-policy',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Privacy Policy 2\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 22:09:04','2025-12-02 22:26:26','e20abc50-ee17-4fae-8405-545df3a57b9b'),
(245,245,1,'Terms of Service 2','terms-of-service',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Terms of Service 2\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2025-12-02 22:09:19','2025-12-02 22:26:30','749e2299-d120-4b02-8b03-517587b138d1'),
(246,246,1,'Facebook','facebook',NULL,'{\"4c5c639e-d111-4970-819b-5bcf7873db6f\":{\"value\":\"#\",\"type\":\"url\"},\"2c8d3384-fdaf-45a9-8e0e-73f881e9509a\":\"facebook\"}',1,'2025-12-02 22:10:27','2025-12-02 22:10:43','1d04a19d-0f90-4bc6-9932-9c96d66aa827'),
(247,247,1,'Instagram','instagram',NULL,'{\"4c5c639e-d111-4970-819b-5bcf7873db6f\":{\"value\":\"#\",\"type\":\"url\"},\"2c8d3384-fdaf-45a9-8e0e-73f881e9509a\":\"instagram\"}',1,'2025-12-02 22:10:44','2025-12-02 22:11:01','431fdf61-377f-4463-a5e6-1f1f9b90cbbd'),
(250,250,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:32','2025-12-03 07:52:56','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,'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:02','2025-12-03 07:54:17','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 our blog\",\"6fcbabcf-457e-47c2-873c-dc1bab02fd18\":\"Blog Posts\",\"7a8d453a-db94-47f8-8c2b-ebf52865b100\":\"Sample description (optional)\",\"01b1237d-1cd3-4827-875c-d66daeca276e\":\"all\"}',1,'2025-12-03 08:56:07','2025-12-03 08:56:07','8390d3fc-2b2c-484e-a6d0-ddbb6a6ae6c2'),
(258,258,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-12-03 08:56:07','2025-12-03 08:56:07','e2102b00-77be-412f-8318-fd8a9f516bc2'),
(259,259,1,'Blog Posts','blog-posts',NULL,'{\"33ee3a3d-d49b-4235-989e-7b6f0c31f998\":\"Latest from our blog\",\"6fcbabcf-457e-47c2-873c-dc1bab02fd18\":\"Blog Posts\",\"7a8d453a-db94-47f8-8c2b-ebf52865b100\":\"Sample description (optional)\",\"01b1237d-1cd3-4827-875c-d66daeca276e\":\"all\"}',1,'2025-12-03 08:56:07','2025-12-03 08:56:07','f2167c6f-0715-4c67-ac0b-a9f6d6595611'),
(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,'How It Works','how-it-works',NULL,'{\"4911f493-aeb6-4573-a3c1-3dc0b0940146\":\"How It Works\",\"6868dccf-8cf0-4c95-83cf-43d34443cdbc\":\"From consultation to results, we make every step seamless and stress-free\"}',1,'2025-12-03 17:13:37','2025-12-03 17:13:37','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'),
(276,276,1,'Personalised Treatment Plan 2','personalised-treatment-plan',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Personalised Treatment Plan 2\",\"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. 2\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2025-12-03 17:13:37','2026-02-05 08:00:00','3ced76dc-7c24-4d51-a917-8c9d4c250bdc'),
(277,277,1,'Treatment & Aftercare','treatment-aftercare',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Treatment & Aftercare\",\"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\":false}',1,'2025-12-03 17:13:37','2025-12-03 17:13:37','4d7a2561-9dc5-4dd0-8fb1-7ac391c12a39'),
(281,281,1,'Personalised Treatment Plan','personalised-treatment-plan',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Personalised Treatment Plan\",\"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\":false}',1,'2025-12-03 17:13:37','2025-12-03 17:13:37','7005044f-8d64-42f0-af95-491af20786b5'),
(282,282,1,'Treatment & Aftercare','treatment-aftercare',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Treatment & Aftercare\",\"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\":false}',1,'2025-12-03 17:13:37','2025-12-03 17:13:37','b474ccdb-3582-40e2-bdab-8f1846685974'),
(287,287,1,'Section Four','section-four',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Section Four\",\"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\":\"Book Consultation\",\"209bfbdc-be9c-4933-96f5-5c10d80de891\":{\"value\":\"#\",\"type\":\"url\"}}',1,'2025-12-03 18:18:09','2025-12-03 18:27:27','c93472a3-eb01-426b-82df-685aecbc8747'),
(298,298,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 19:05:20','2025-12-03 19:05:20','382782bb-9340-43ef-af06-67a5d76e9c34'),
(299,299,1,'Section Four','section-four',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Section Four\",\"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\":\"Book Consultation\",\"209bfbdc-be9c-4933-96f5-5c10d80de891\":{\"value\":\"#\",\"type\":\"url\"}}',1,'2025-12-03 19:05:20','2025-12-03 19:05:20','7650b94e-a04d-48d9-a121-a59c4a6a1f02'),
(302,302,1,'Book Consultation Works','book-consultation-works',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation Works\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-03 19:14:29','2025-12-03 19:14:29','c1f95ce0-235f-4b76-b46b-96025e1010ee'),
(305,305,1,'Book Consultation Works','book-consultation-works',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"Book Consultation Works\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"#\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-03 19:14:30','2025-12-03 19:14:30','758233a6-2126-44ea-9f7b-f6cec450336e'),
(308,308,1,'Section five','section-five',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Section five\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2025-12-03 19:16:27','2025-12-03 19:16:27','eb8f6e76-fbbe-4dca-9aa1-84dfda8580c0'),
(310,310,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, we make every step seamless and stress-free\"}',1,'2025-12-03 19:16:28','2025-12-03 19:16:28','42dce1b5-e64b-4036-94a2-e65f8aadeb8e'),
(311,311,1,'Section five','section-five',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Section five\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2025-12-03 19:16:28','2025-12-03 19:16:28','aa22af80-9dc0-4cea-8687-606d97416229'),
(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'),
(318,318,1,'Hero Section','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[48],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-04 08:58:21','2025-12-04 08:58:21','b9ede1bd-e6cf-48f5-a9d2-676a45e7a3a7'),
(319,319,1,'Emily Johnson','emily-johnson',NULL,'{\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320],\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"Professional, caring, and incredibly skilled. My lips look amazing - exactly what I hoped for.\\\"\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Lip Enhancement\",\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Emily Johnson\"}',1,'2025-12-04 17:55:44','2025-12-04 17:56:51','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,'Jessica Williams','jessica-williams',NULL,'{\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320],\"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.\\\"\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Facial Rejuvenation\",\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Jessica Williams\"}',1,'2025-12-04 17:56:55','2025-12-04 17:57:32','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,'Amanda Brown','amanda-brown',NULL,'{\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320],\"67df7d0c-ae22-4046-8a69-b0f66abff507\":\"\\\"Five years younger without looking \'done\' - exactly what I wanted. The personalized approach makes all the difference.\\\"\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Anti-Aging Package\",\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Amanda Brown\"}',1,'2025-12-04 17:57:32','2025-12-04 17:57:55','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,'Sarah Mitchell','sarah-mitchell',NULL,'{\"90b06f70-ec9f-49d9-b838-cef50698ec38\":[320],\"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.\\\"\",\"fc67ba9e-5144-49e5-9c18-5fea452bce42\":\"Botox & Dermal Fillers\",\"16de76fd-a825-41df-9b9d-8fe41ce48ada\":\"Sarah Mitchell\"}',1,'2025-12-04 17:58:07','2025-12-04 17:58:29','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 Our Patients Say','what-our-patients-say',NULL,'{\"28fc0304-69b6-43ac-8c99-e2c875a4a532\":\"Patient Stories\",\"06865648-84b5-46f3-8fd0-48993e09ff0b\":\"What Our 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\":\"#\",\"type\":\"url\"},\"4977ef85-8f70-4b78-8499-ac4fe3031f69\":27}',1,'2025-12-04 17:59:30','2025-12-04 18:16:24','ba595eff-9888-4d4c-910f-d8d2a61aba28'),
(335,335,1,'What Our Patients Say','what-our-patients-say',NULL,'{\"28fc0304-69b6-43ac-8c99-e2c875a4a532\":\"Patient Stories\",\"06865648-84b5-46f3-8fd0-48993e09ff0b\":\"What Our 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\":\"#\",\"type\":\"url\"},\"4977ef85-8f70-4b78-8499-ac4fe3031f69\":27}',1,'2025-12-04 18:16:25','2025-12-04 18:16:25','83be33b7-3b76-4a5e-85f6-4016af3c2ab3'),
(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'),
(481,481,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:23:09','2025-12-06 20:23:09','bf9df8c2-1c14-4837-bf73-792083509e25'),
(482,482,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"white\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:23:09','2025-12-06 20:23:09','f74f7314-cdb4-45ee-aa77-019b83f7307c'),
(483,483,1,'sadadsasdasdads','sadadsasdasdads',NULL,NULL,1,'2025-12-06 20:23:09','2025-12-06 20:23:09','64048f45-0681-48c0-b05e-239834cceecd'),
(484,484,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 20:23:09','2025-12-06 20:23:09','32c25fdd-bb2f-48d6-80ff-0b01049d6f6f'),
(486,486,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:24:18','2025-12-06 20:24:18','063cb1cb-d0e6-4229-a652-4fdf2f2efeab'),
(487,487,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"white\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:24:18','2025-12-06 20:24:18','9de55304-8620-43ce-bab7-ccec75cc976c'),
(489,489,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:24:44','2025-12-06 20:24:44','3187d9ec-0a6a-4147-b360-0e2f59265803'),
(490,490,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientNavy\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:24:44','2025-12-06 20:24:44','83197b66-49e1-4889-ae1f-775a5eb3780b'),
(492,492,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:24:58','2025-12-06 20:24:58','2b4d2d7f-f734-41ac-8105-b531f5f6af48'),
(493,493,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"creamLight\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:24:58','2025-12-06 20:24:58','ea92f0ca-3849-45ed-948b-eefe70ccde11'),
(495,495,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:25:12','2025-12-06 20:25:12','ca308b6a-f9c4-4bf2-952c-5e7481e88040'),
(496,496,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"beigeWarm\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:25:12','2025-12-06 20:25:12','2dc2f32d-7d4f-4845-8eb4-46c9fa05be50'),
(498,498,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:25:32','2025-12-06 20:25:32','b01d81bf-bfc8-4f44-aafe-6cad13566501'),
(499,499,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"gradientGold\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:25:32','2025-12-06 20:25:32','e483c9b9-6dee-44db-bcd8-424e670b7c76'),
(501,501,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:25:58','2025-12-06 20:25:58','7f3dfc34-e710-46dc-a33b-f50dde775fec'),
(502,502,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"twoColumns5050\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:25:58','2025-12-06 20:25:58','e8f1ad5a-9ade-4d35-b1ce-8df829fd9473'),
(504,504,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:26:27','2025-12-06 20:26:27','268335bd-a584-494a-91a2-6995ec8cc67d'),
(505,505,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"bottom\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:26:27','2025-12-06 20:26:27','3fec04b4-a587-4889-b3e1-ff684651de4c'),
(507,507,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:27:37','2025-12-06 20:27:37','7a66f1bb-f96b-4906-b5d6-422ee88c6467'),
(508,508,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"bottom\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":false,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:27:37','2025-12-06 20:27:37','f8ec7de8-fdc3-4fe2-82a6-c86481b24bd3'),
(510,510,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:27:47','2025-12-06 20:27:47','46cecb97-bade-469e-9afd-3cf5a5463fa4'),
(511,511,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"bottom\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:27:47','2025-12-06 20:27:47','93643703-b49c-4be1-a287-ceca17ee312e'),
(513,513,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:28:39','2025-12-06 20:28:39','345db795-2627-42af-b4a5-2a8a39788e42'),
(514,514,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"stretch\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"30\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:28:39','2025-12-06 20:28:39','d458b6a6-5da0-42d9-8ab2-91d6c416ccee'),
(516,516,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:28:57','2025-12-06 20:28:57','2ae192c5-178c-413f-9c14-16e2292f8832'),
(517,517,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"charcoalLight\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:28:57','2025-12-06 20:28:57','8d95c745-52c3-4538-841c-da13698f1fc2'),
(519,519,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:29:08','2025-12-06 20:29:08','eb9be2e4-d6bd-47ff-9c5f-48a4a24ee804'),
(520,520,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"white\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgFull\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:29:08','2025-12-06 20:29:08','e7dbfd44-f21d-4129-9a68-ca8caa28d90d'),
(522,522,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:29:36','2025-12-06 20:29:36','ad880608-85ec-405f-a9a8-4b2989ea98a0'),
(523,523,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"white\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"narrowContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:29:36','2025-12-06 20:29:36','287f6bea-163d-469d-a1d6-d98d56c06986'),
(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'),
(531,531,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:31:22','2025-12-06 20:31:22','89dc1552-9e78-487f-a089-eae960121ace'),
(532,532,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"white\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"narrowContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:31:22','2025-12-06 20:31:22','e9214bd7-fb6c-4100-a150-36d00740bc14'),
(533,533,1,'Testing flexibl editor','testtt',NULL,NULL,1,'2025-12-06 20:31:22','2025-12-06 20:31:22','7425480d-9b11-4bcd-9384-5b0c8a2279b2'),
(534,534,1,'Top Spacer','top-spacer',NULL,'{\"65cd5ed5-c924-4fa9-aea7-ca7349a71e47\":\"medium\"}',1,'2025-12-06 20:31:22','2025-12-06 20:31:22','c06875aa-51e3-463e-bfc3-21206463dbe2'),
(535,535,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 20:31:22','2025-12-06 20:31:22','f1f4b7fb-9798-40ef-aee7-c38274751f5c'),
(536,536,1,'Bottom Spacer','top-spacer',NULL,'{\"65cd5ed5-c924-4fa9-aea7-ca7349a71e47\":\"medium\"}',1,'2025-12-06 20:31:22','2025-12-06 20:31:22','61a27ba8-f512-4063-91eb-e7403bc6d358'),
(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'),
(543,543,1,'Homepage','homepage','__home__',NULL,1,'2025-12-06 20:33:05','2025-12-06 20:33:05','7c719b0b-f995-4461-a51f-12e6bb1e09ea'),
(544,544,1,'One COlumn test 2','one-column-test',NULL,'{\"c6ba37df-5856-4b99-abff-ee5ac2023dee\":\"singleColumn\",\"463779f3-52da-4f3f-8f35-b0263c8d8c3b\":\"stack\",\"48f56917-e399-43c9-91af-7d3ddaa9b6c8\":\"top\",\"15d88486-9f10-4200-8468-69effb7550d6\":\"large\",\"353456f6-299a-4ccf-a717-44aa8f5eaf3e\":\"navyDark\",\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"white\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"narrowContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"large\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"large\",\"ede60280-5b1f-46f4-ba48-87483c912289\":\"#section\",\"18334eca-71b2-4090-ac35-20abdb207c33\":\"some class\",\"24a9c864-a05b-496f-92d0-6072f45d84fe\":false,\"4379e7a0-c7e2-4a76-96b1-dbcf9ed02074\":\"wave\",\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"d604dc08-fc17-470f-ac46-5bd2d5fea7f0\":\"slideLeft\"}',1,'2025-12-06 20:33:05','2025-12-06 20:33:05','fc7eaecb-fb43-4da8-84a3-427d3b754481'),
(545,545,1,'Testing flexibl editor','testtt',NULL,NULL,1,'2025-12-06 20:33:05','2025-12-06 20:33:05','37a21406-88f6-474b-905c-f5b0efc6fc49'),
(546,546,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:05','2025-12-06 20:33:05','a78a5bf3-3118-45d8-81d0-176bb396a5b1'),
(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'),
(583,583,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 08:38:43','2025-12-07 08:38:43','af05c7c3-5696-49b1-9997-188b410a7b75'),
(584,584,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\",\"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-07 08:38:43','2025-12-07 08:38:43','e61b4b24-707c-49bf-96e5-4cbcede13c8c'),
(585,585,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:38:43','2025-12-07 08:38:43','eadaf10c-f66f-4f51-9a72-33388ca9243d'),
(586,586,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','32f6b362-0944-4a9a-997a-b315eec62ed6'),
(587,587,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','88a3f0bb-b43e-4aa2-9f70-afea6383e068'),
(588,588,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','6baf4b91-5087-4132-a1e7-5f8f1557930b'),
(589,589,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','81961407-4472-4e9c-bc54-e93ea0737cad'),
(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','2025-12-07 08:46:56','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'),
(610,610,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 08:45:19','2025-12-07 08:45:19','0d5bcc5f-cf27-4877-a286-aeb40327e555'),
(611,611,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\":\"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-07 08:45:19','2025-12-07 08:45:19','3f572cc5-f6c9-455b-b6b9-d757c7f2c3b2'),
(612,612,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:45:19','2025-12-07 08:45:19','2d1205a7-71c5-4f86-9fe4-72aeb86f970c'),
(613,613,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','f44c20d9-4ff1-4f46-9085-d9d8f93a388a'),
(614,614,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','d821c4db-f7e1-456f-8679-39f8341576ce'),
(615,615,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','63459859-d5b6-45b5-badb-02bfef919b84'),
(616,616,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','b6235c07-a111-4550-9690-38d00902d64c'),
(619,619,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 08:46:56','2025-12-07 08:46:56','ca2576af-eb06-498f-9d10-e2cc3755728c'),
(620,620,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 08:46:56','2025-12-07 08:46:56','e417b403-327d-4077-a46d-e870e8d4899a'),
(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'),
(637,637,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 08:49:11','2025-12-07 08:49:11','1323c00e-4e51-46dc-8981-04a0755eb372'),
(638,638,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 08:49:11','2025-12-07 08:49:11','88547353-d08f-4c64-871b-d582b98fb3f2'),
(639,639,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:49:11','2025-12-07 08:49:11','1f479086-1056-404a-a1c6-1e78a24e1497'),
(641,641,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','04b6a1e2-9984-4dce-bd5f-47e36ac5e222'),
(642,642,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','8c5614e0-fbd1-4f25-af65-8a571b068141'),
(643,643,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','adb797ea-ae08-4a2a-b63a-a92e87ec6e1e'),
(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,'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 08:52:28','2025-12-07 09:17:46','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>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 08:52:28','2025-12-07 09:23:03','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'),
(659,659,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 08:52:28','2025-12-07 08:52:28','fd69a797-9ea0-4b4d-a725-846e06140437'),
(660,660,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 08:52:28','2025-12-07 08:52:28','e942b234-95e7-4cff-be5e-fcff463ce121'),
(661,661,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 08:52:28','2025-12-07 08:52:28','4990a47f-3371-47ee-982f-85d5187a1738'),
(662,662,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:52:28','2025-12-07 08:52:28','5e664a99-4093-4cb6-bd13-d07fe37a6dd7'),
(663,663,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:52:28','2025-12-07 08:52:28','106e08c5-8c9c-4fe4-8ed1-7ca0c3ca90fb'),
(664,664,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:52:28','2025-12-07 08:52:28','97064642-cf06-4b48-afbb-3cc075d48b5e'),
(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'),
(670,670,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:14:30','2025-12-07 09:14:30','5ac8d6bd-5a6d-46e2-bd43-ddc4c59a549d'),
(671,671,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 09:14:30','2025-12-07 09:14:30','d07226b7-b7e3-4396-8a79-a45e4d1873f9'),
(672,672,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:14:30','2025-12-07 09:14:30','b07dd757-694f-4b21-97c2-f470faa26013'),
(673,673,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 09:14:30','2025-12-07 09:14:30','72988b86-116c-42f5-8724-8e95029fa1ba'),
(678,678,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:15:44','2025-12-07 09:15:44','ee54ce74-504e-438a-88a0-c4ca51c3d92c'),
(679,679,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 09:15:44','2025-12-07 09:15:44','796c3881-c328-4c23-8b28-753c501ce7bd'),
(680,680,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:15:44','2025-12-07 09:15:44','b6d1c980-da35-4838-86d4-c970e887c4ec'),
(681,681,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<p>\\n    <span style=\\\"color:hsl(17,58%,72%);font-size:24px;\\\"><i>    For exquisitely natural results</i></span>\\n</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 09:15:44','2025-12-07 09:15:44','baab0185-e02c-48dc-9cc4-d62d023445ae'),
(686,686,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:16:47','2025-12-07 09:16:47','aeb88fd8-fbc5-4fff-80d5-9c71dfe42a55'),
(687,687,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 09:16:47','2025-12-07 09:16:47','4fc07638-daad-4be1-82c2-08ac8929e247'),
(688,688,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:16:47','2025-12-07 09:16:47','5675a27f-2909-41b7-889c-261b3743a5dd'),
(689,689,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\":\"subtitle\",\"e143d6ba-f2c7-4712-922a-18c4986f97a5\":\"center\",\"e0f06b72-a283-4059-ad08-76e79c84e85e\":false,\"f6a12dd4-f43f-4d77-92f9-750ed12602b5\":\"white\"}',1,'2025-12-07 09:16:47','2025-12-07 09:16:47','3764b19a-3a2a-4dac-8661-ff68dc9d4b34'),
(695,695,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:17:46','2025-12-07 09:17:46','0a4feb05-096c-4791-bfe9-b68169699d4f'),
(696,696,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 09:17:46','2025-12-07 09:17:46','ad127511-f3e1-4184-9b52-0272234c837e'),
(697,697,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:17:46','2025-12-07 09:17:46','54aa01bf-7190-4fcf-9090-e8a72c0daa21'),
(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'),
(704,704,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:19:05','2025-12-07 09:19:05','2e902d25-c2f7-40b4-aab0-796d5401c64b'),
(705,705,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 09:19:05','2025-12-07 09:19:05','6c6bf442-87e6-47cf-aafa-5b79af229701'),
(706,706,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:19:05','2025-12-07 09:19:05','22aa9a1e-bd93-4493-b460-1481e570edb6'),
(707,707,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\":\"base\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 09:19:05','2025-12-07 09:19:05','eb497d76-f440-43ac-a788-fe7b88b8bdd0'),
(712,712,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:19:34','2025-12-07 09:19:34','b82881f2-65a0-44d6-b887-342f1020d8b3'),
(713,713,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 09:19:34','2025-12-07 09:19:34','fcba833b-9abc-436f-8bd4-be1c73c9ab23'),
(714,714,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:19:34','2025-12-07 09:19:34','8fe8f653-823c-4dfa-8ad5-1cfff11e7140'),
(715,715,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\":\"small\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 09:19:34','2025-12-07 09:19:34','c458636a-4650-4742-ba7c-8454c3691851'),
(720,720,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:21:46','2025-12-07 09:21:46','7adf5042-d7e2-4aa6-9af6-f550169736fd'),
(721,721,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 09:21:46','2025-12-07 09:21:46','96931100-5393-48a2-a999-7fc4d5996584'),
(722,722,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:21:46','2025-12-07 09:21:46','206c48a5-6e1e-47a5-a12d-aa46e01e9eee'),
(723,723,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 09:21:46','2025-12-07 09:21:46','d28d93bc-c312-4cb5-9751-41ce840f25f9'),
(728,728,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:22:08','2025-12-07 09:22:08','af4a9d89-b8ba-4030-aab5-82f633e5e62f'),
(729,729,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 09:22:08','2025-12-07 09:22:08','58598b15-3b10-4faa-ad19-b074c6a9e27b'),
(730,730,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:22:08','2025-12-07 09:22:08','c8728a8f-6dd5-41fd-b7b2-6cb6ba885c50'),
(731,731,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 09:22:08','2025-12-07 09:22:08','4dc470f2-a9fe-445d-a850-45772393f43e'),
(736,736,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:22:31','2025-12-07 09:22:31','f48a6d7f-2391-4afe-a38f-a633d9e2f54f'),
(737,737,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 09:22:31','2025-12-07 09:22:31','6c7f3ac1-311d-436d-bad8-45f60317d76d'),
(738,738,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:22:31','2025-12-07 09:22:31','148003d6-df8f-497b-8821-53ae90874707'),
(739,739,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\":\"xLarge\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-07 09:22:31','2025-12-07 09:22:31','f7dae611-c87b-4b60-8bd1-cc08bfa56a74'),
(744,744,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:23:03','2025-12-07 09:23:03','8808bbcc-7f2e-487c-8572-f9acb3f92bbd'),
(745,745,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 09:23:03','2025-12-07 09:23:03','b44524a5-0697-4feb-989c-8a44138c4477'),
(746,746,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 09:23:03','2025-12-07 09:23:03','d0844c6f-bf78-4ff5-aff0-db792205277b'),
(747,747,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 09:23:03','2025-12-07 09:23:03','8b753398-d824-4fb5-9a77-ed00f1153b46'),
(750,750,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,'2025-12-07 09:27:22','2025-12-07 09:27:22','b284f963-563c-4232-bcf7-107297d86eb7'),
(751,751,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 09:27:22','2025-12-07 09:27:22','1fafc3ec-a2c3-4749-a6a6-a5623893e7e0'),
(752,752,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,'2025-12-07 09:27:22','2025-12-07 09:27:22','cc6edf95-0da0-4373-befa-85adde44b61d'),
(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 – the woman behind the needle of The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<p>Our approach to aesthetic medicine is rooted in precision and artistry. With years of specialized training and thousands of successful treatments, Dr Rachel understands the delicate balance required to achieve natural-looking results.</p><p>We use advanced techniques and the highest quality products to ensure every treatment is tailored to your unique facial anatomy and aesthetic goals. The result is a refreshed, rejuvenated appearance that still looks authentically you.</p><p>Our commitment to excellence extends beyond the treatment room. We take time to understand your concerns, educate you on your options, and develop a personalized treatment plan.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[757],\"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-02-21 23:28:35','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'),
(765,765,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 14:22:11','2025-12-07 14:22:11','d61ef71e-994e-4547-a16f-abe9f8e0f17c'),
(766,766,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel – the woman behind the needle of The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<p>Our approach to aesthetic medicine is rooted in precision and artistry. With years of specialized training and thousands of successful treatments, Dr Rachel understands the delicate balance required to achieve natural-looking results.</p><p>We use advanced techniques and the highest quality products to ensure every treatment is tailored to your unique facial anatomy and aesthetic goals. The result is a refreshed, rejuvenated appearance that still looks authentically you.</p><p>Our commitment to excellence extends beyond the treatment room. We take time to understand your concerns, educate you on your options, and develop a personalized treatment plan.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[757],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\"}',1,'2025-12-07 14:22:11','2025-12-07 14:22:11','a0406e21-078d-4d3c-a033-03dd59896878'),
(767,767,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','3c3bd637-ad02-43c3-a66e-4220d33170f3'),
(768,768,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','4d3e125a-cbd0-40e4-bd59-fc2a0b024926'),
(769,769,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','eea8ec65-98bf-4ba8-b401-3355f72de091'),
(771,771,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 14:26:23','2025-12-07 14:26:23','6816bffa-d156-4fd4-b607-dfd4a4c6c1e6'),
(774,774,1,'Explore Our Services','explore-our-services',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\"}',1,'2025-12-07 14:35:29','2025-12-07 14:35:29','a1835ad3-5345-4d50-82d6-da812e3e6be0'),
(775,775,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 14:35:29','2025-12-07 14:35:29','38ff408a-f1a5-473a-9746-fbf43b50315a'),
(776,776,1,'Explore Our Services','explore-our-services',NULL,'{\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\",\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\"}',1,'2025-12-07 14:35:29','2025-12-07 14:35:29','d3675396-47bc-4f16-af50-42c44623cb35'),
(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\",\"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','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,'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:53','2025-12-07 14:39:53','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>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:53','2025-12-07 14:39:53','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'),
(791,791,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 14:39:53','2025-12-07 14:39:53','3f88d8b1-6b8d-4c26-941f-ac7fb1e3cb09'),
(792,792,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[48],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-07 14:39:53','2025-12-07 14:39:53','8a8e63cf-91dd-4fec-8be2-674d352f37d2'),
(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'),
(807,807,1,'Homepage','homepage','__home__',NULL,1,'2025-12-07 14:46:22','2025-12-07 14:46:22','0686a78b-ee7b-401a-9620-29d5d1e036a4'),
(808,808,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:46:22','2025-12-07 14:46:22','13840a2b-d433-4261-8d92-f6ab8230f4e6'),
(809,809,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-07 14:46:22','2025-12-07 14:46:22','3dba261e-18bb-40ab-bebf-a2df14525439'),
(810,810,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:46:22','2025-12-07 14:46:22','9da705d3-4e92-494c-b3b2-fe6393ec26e0'),
(811,811,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel – the woman behind the needle of The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<p>Our approach to aesthetic medicine is rooted in precision and artistry. With years of specialized training and thousands of successful treatments, Dr Rachel understands the delicate balance required to achieve natural-looking results.</p><p>We use advanced techniques and the highest quality products to ensure every treatment is tailored to your unique facial anatomy and aesthetic goals. The result is a refreshed, rejuvenated appearance that still looks authentically you.</p><p>Our commitment to excellence extends beyond the treatment room. We take time to understand your concerns, educate you on your options, and develop a personalized treatment plan.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[757],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\"}',1,'2025-12-07 14:46:22','2025-12-07 14:46:22','6d3f878e-793f-491e-b1a6-c67112607b1e'),
(812,812,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','b211ec64-4990-4fe3-ae93-907faf7bf7eb'),
(815,815,1,'Homepage','homepage','__home__',NULL,1,'2025-12-08 10:02:18','2025-12-08 10:02:18','709ba7aa-6923-48c2-bd49-4d660ea7121e'),
(816,816,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[757],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-08 10:02:18','2025-12-08 10:02:18','7aaef7ac-6cff-4006-bf35-e26df93d4634'),
(819,819,1,'Homepage','homepage','__home__',NULL,1,'2025-12-08 10:03:28','2025-12-08 10:03:28','09033fc8-13fd-4b9f-a1f4-810c34f7ee5e'),
(820,820,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[312],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-08 10:03:28','2025-12-08 10:03:28','e4500a3e-6d89-4374-9df8-659ecf4d0db9'),
(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'),
(824,824,1,'Homepage','homepage','__home__',NULL,1,'2025-12-08 10:05:39','2025-12-08 10:05:39','637e287d-044e-4832-8caa-8fe32dd79f37'),
(825,825,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[312,821],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-08 10:05:39','2025-12-08 10:05:39','e7ff4c65-a6ba-4c84-a309-388515caa6d2'),
(828,828,1,'Homepage','homepage','__home__',NULL,1,'2025-12-08 10:15:20','2025-12-08 10:15:20','1ba6096a-3adc-477b-910c-cd47f75ff7ca'),
(829,829,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[312,821],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2025-12-08 10:15:20','2025-12-08 10:15:20','418c57c4-7335-425a-b2f0-82347018f729'),
(832,832,1,'Homepage','homepage','__home__',NULL,1,'2025-12-08 10:15:37','2025-12-08 10:15:37','ccf3dffd-abe6-483d-8d2f-dd354eaefe67'),
(833,833,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[312,821],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2025-12-08 10:15:37','2025-12-08 10:15:37','257efff3-4431-4231-9093-add53ff70889'),
(834,834,1,'Elegant Text section','one-column-test',NULL,'{\"3a7f3567-350e-41a1-9bb8-129cd9a6c519\":true,\"d41d3f08-74c0-46b1-804a-884be4a6fffa\":true,\"24a9c864-a05b-496f-92d0-6072f45d84fe\":true,\"12ab5942-8eb1-4e8d-af73-0d67149caea5\":false,\"08c9532b-900d-4f33-8644-fbd2b4a0448e\":\"auto\",\"420c8b0e-3fe1-4ee3-ae34-7a4e1a6ad89d\":[320],\"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\",\"f6ecf01a-0bc4-4c4c-9bcc-e0cded609999\":\"10\",\"7b70343f-41ce-4c2d-bcec-54b0cd0dc42f\":\"fullBgContainer\",\"1ba854f9-b95e-4fbd-9117-3e38dea54db5\":\"medium\",\"03a38015-ace3-4900-9eb7-553ae2371d19\":\"medium\",\"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\"}',1,'2025-12-08 10:17:13','2025-12-08 10:20:02','eb4f3ad0-de06-4809-980a-85af2c973906'),
(835,835,1,'Elegant Text Section','testtt',NULL,NULL,1,'2025-12-08 10:20:59','2025-12-08 10:20:59','b11858c9-9af8-4686-a201-b274c6598353'),
(836,836,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,'2025-12-08 10:21:00','2025-12-08 10:21:06','d4175ef7-7996-4c5d-9a7a-ca90f190be7c'),
(837,837,1,'For exquisitely natural results','for-exquisitely-natural-results',NULL,'{\"2aae0d8e-4cea-4926-92cc-9a1c5dc3ecb9\":\"<div class=\\\"page-break\\\" style=\\\"page-break-after:always;\\\"><span style=\\\"display:none;\\\">&nbsp;</span></div><p><span style=\\\"color:hsl(17,58%,72%);\\\"><i>for exquisitely natural results</i></span></p><p> </p><craft-entry data-entry-id=\\\"838\\\"> </craft-entry><p> </p><p>dsdassdaasdsda</p>\",\"1fcfdd57-b6cb-4493-bdf2-2f7f6386c8c2\":\"large\",\"d65d1c35-ed40-465c-8613-98206b6c0d67\":\"center\",\"c531a0eb-1f92-4225-a6f0-40ab68b8f3de\":\"narrow\"}',1,'2025-12-08 10:22:58','2025-12-08 10:23:38','672d70df-bced-4d5f-92bc-8f5adb0ffd4a'),
(838,838,1,'dsasdadsdas','dsasdadsdas',NULL,'{\"28396760-6b42-4e26-91fe-691bb1d0f638\":\"sdaads\",\"34edbdad-80cc-455a-8024-e4ad5cc55f12\":{\"value\":\"https://sdasadasdsdaadsda\",\"type\":\"url\"},\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"cta\"}',1,'2025-12-08 10:23:22','2025-12-08 10:23:30','4a625fef-f139-4548-ac50-6deff839254e'),
(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 & 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-02 19:00:14','2026-02-02 19:00:14','eec7fe93-76e6-46e9-bdf3-c5fb5b29e503'),
(844,844,1,'Homepage','homepage','__home__',NULL,1,'2026-02-02 19:00:14','2026-02-02 19:00:14','01b5afbb-efa6-4bb6-876a-40f61bebe653'),
(845,845,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-02 19:00:14','2026-02-02 19:00:14','e1ff4d40-3203-4beb-803a-18efede6a724'),
(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'),
(851,851,1,'Homepage','homepage','__home__',NULL,1,'2026-02-03 08:44:56','2026-02-03 08:44:56','5702a50e-3bc2-44fa-9d9e-8ba2a022d4b3'),
(852,852,1,'Location and Map','location-and-map',NULL,'{\"e9d027e0-8c7b-4fb4-9ab0-67b5217a3d29\":\"Visit Us\",\"71564ec2-e644-438f-834f-491192e8b8be\":\"Find Our Clinic\",\"ebc60d18-09c0-400f-8c1f-2f48bd3a0b42\":\"224 Town Lane, Bebington,\\nWirral, Merseyside, CH63 8LG\",\"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:44:56','359081ec-bf91-422a-adf9-75483fba78ec'),
(853,853,1,'Book Your Consultation','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:44:56','45a9c095-162a-4a2b-b536-28780dbd1d32'),
(857,857,1,'Homepage','homepage','__home__',NULL,1,'2026-02-03 08:48:06','2026-02-03 08:48:06','f31a8de2-01ca-43bc-9e9b-356759094445'),
(858,858,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:48:06','2026-02-03 08:48:06','30585ca7-3040-4129-91b5-ea0b52df8d7f'),
(859,859,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:48:06','2026-02-03 08:48:06','851d309e-244a-495c-a40c-015ea5454b8c'),
(867,867,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 2\",\"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:58:31','2026-02-03 08:58:31','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'),
(869,869,1,'Homepage','homepage','__home__',NULL,1,'2026-02-03 08:58:31','2026-02-03 08:58:31','8ee5c8c5-f47b-4c8b-b671-5384eb4486a1'),
(870,870,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 2\",\"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:58:31','2026-02-03 08:58:31','b0b9a211-4c04-4023-a4ea-89d27b58d252'),
(871,871,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','c0c6db41-663e-43a7-ba72-1d2948c345a6'),
(878,878,1,'Initial Consultation 2','initial-consultation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Initial Consultation 2\",\"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}',1,'2026-02-05 07:59:45','2026-02-05 07:59:45','a6b46943-d779-4ee7-a986-225df4a5c8dd'),
(879,879,1,'Homepage','homepage','__home__',NULL,1,'2026-02-05 07:59:45','2026-02-05 07:59:45','ed7ca1d0-e4c0-4fd5-94f3-1291e998df68'),
(880,880,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, we make every step seamless and stress-free\"}',1,'2026-02-05 07:59:45','2026-02-05 07:59:45','86f5cc73-799d-4ab1-8b7c-8e42cd054a32'),
(881,881,1,'Initial Consultation 2','initial-consultation',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Initial Consultation 2\",\"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}',1,'2026-02-05 07:59:45','2026-02-05 07:59:45','930a0307-efa8-4241-934d-640005c2c8ce'),
(884,884,1,'Homepage','homepage','__home__',NULL,1,'2026-02-05 08:00:00','2026-02-05 08:00:00','b98c249d-13ca-4e5e-b2df-1b3586d87335'),
(885,885,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, we make every step seamless and stress-free\"}',1,'2026-02-05 08:00:00','2026-02-05 08:00:00','7624063b-799c-43f4-91a3-9ce69ed56db7'),
(886,886,1,'Personalised Treatment Plan 2','personalised-treatment-plan',NULL,'{\"e7689c08-7dfa-49a7-bd36-805fe89ac1e3\":\"Personalised Treatment Plan 2\",\"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. 2\",\"6c588796-bb27-4fdf-9590-a50a0e275ca7\":false}',1,'2026-02-05 08:00:00','2026-02-05 08:00:00','93b954c8-55cd-4929-8d5e-211c50bb65f3'),
(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,'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','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'),
(915,915,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-08 10:19:31','2026-02-08 10:19:31','76003c98-2847-4872-88da-5a4e9816c804'),
(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'),
(920,920,1,'Treatment  2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Strees\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"020 1234 5678\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 15:07:05','2026-02-21 15:07:05','3f8040c2-dda7-491f-bdc7-f49088459f59'),
(921,921,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:07:05','2026-02-21 15:07:05','6259496a-31f9-4562-b59a-c193f3959e7a'),
(922,922,1,'Treatment  2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Strees\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"020 1234 5678\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 15:07:05','2026-02-21 15:07:05','fa1bf59a-7b53-4699-a417-06a662b8de20'),
(926,926,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street 1\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 15:13:00','2026-02-24 14:48:15','d3cd2a6e-eada-49ec-9406-01f2dfcd7828'),
(927,927,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:13:00','2026-02-21 15:13:00','a7e9a6c4-db94-41a9-a7cb-5ce57a6499cb'),
(928,928,1,'Treatment  2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street 2\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 15:13:00','2026-02-21 15:13:00','55b8760c-27a8-4897-8256-60ec9b4786f9'),
(931,931,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:15:35','2026-02-21 15:15:35','6b2af5b3-ed3c-457b-993b-03f37f214898'),
(932,932,1,'Treatment  2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street 2\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true,\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\"}',1,'2026-02-21 15:15:35','2026-02-21 15:15:35','19932c6b-759d-4fe7-94c7-08c4823a2dbc'),
(935,935,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:17:06','2026-02-21 15:17:06','b66161d1-2e75-40e6-8038-517f69c439b0'),
(936,936,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"test\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 15:17:06','2026-02-21 15:17:06','17b0add8-dff7-439f-be5b-6b21885d5d5c'),
(939,939,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:18:34','2026-02-21 15:18:34','57a19c3f-934a-4ec7-a78a-41e96d2f53ae'),
(940,940,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\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 15:18:34','2026-02-21 15:18:34','6c0ba07f-a3b6-40c8-8382-1a76870ab8c4'),
(945,945,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"LOREM IPSUM\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview 2\"}',1,'2026-02-21 15:32:54','2026-02-21 15:39:55','a1f27db4-81cf-4641-8e6e-3aa99caad920'),
(946,946,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:32:54','2026-02-21 15:32:54','cbe8298a-73b8-42a7-b467-143a04649f77'),
(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'),
(948,948,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:32:54','2026-02-21 15:32:54','8816dc03-4e0a-47e6-b1c6-5be0b093bb32'),
(949,949,1,'Treatment Overview','treatment-overview',NULL,NULL,1,'2026-02-21 15:32:54','2026-02-21 15:32:54','4fe37c78-5c9e-4d38-aa0f-7e146805f8ce'),
(950,950,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:32:54','2026-02-21 15:32:54','8370711a-8995-4070-9fbc-04b909f4678a'),
(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'),
(960,960,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','91dd9c8f-01ee-421c-89dc-02f819d02ca6'),
(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'),
(962,962,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','2b35e256-e57b-429e-8a2a-3b0284d7ed9d'),
(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'),
(964,964,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','ea7fb22f-76cf-4f94-bdc3-87fdbd95064f'),
(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'),
(966,966,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','edb025cc-790d-4529-98d6-340572262cec'),
(967,967,1,'Treatment Overview','treatment-overview',NULL,NULL,1,'2026-02-21 15:33:15','2026-02-21 15:33:15','38ea235e-5239-4db1-b8fd-96b387d26306'),
(968,968,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','06d009a4-8086-465a-a7b0-27c5dd686c4c'),
(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'),
(970,970,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','34990d77-6ec4-4ea0-8663-ddbd1078bc05'),
(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'),
(972,972,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-21 15:33:15','2026-02-21 15:33:15','4a8216b1-fc90-4652-a1ac-845c2dd08064'),
(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'),
(976,976,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:39:55','2026-02-21 15:39:55','19d9ae0a-aace-4201-a053-e831d0457238'),
(977,977,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"LOREM IPSUM\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview 2\"}',1,'2026-02-21 15:39:55','2026-02-21 15:39:55','8aac3879-728e-4c6f-91dd-da25e035cefe'),
(984,984,1,'One Session 2','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session 2\"}',1,'2026-02-21 15:44:00','2026-02-21 15:46:44','f266e9c2-e6ef-4565-a379-5c12519d6775'),
(985,985,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','bf20ed4f-3443-4069-a857-abb6999ddf19'),
(986,986,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','dea3487a-42bc-4cac-9b35-826e18ca479e'),
(987,987,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','39eab439-94c2-4de4-9b34-fa544aeec8ff'),
(988,988,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','21ee3b4b-1b69-4d47-a783-ebee2ee874f0'),
(989,989,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"LOREM IPSUM\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview 2\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','7e7d6835-9d0d-492d-99e0-7e9deb6908f1'),
(990,990,1,'One Session','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','ab1e2334-b748-4b53-8ff0-c57a3e6461be'),
(991,991,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','07dde186-0c87-47e4-8727-c21a78a0c6ad'),
(992,992,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','ad179ced-bbcf-4b2c-a26d-1ab7e4becb95'),
(993,993,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-02-21 15:44:00','2026-02-21 15:44:00','8c851f10-f239-4c29-b9c1-a427522b694a'),
(997,997,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:46:44','2026-02-21 15:46:44','73521cc4-2592-497f-8c87-9e5202b7e1fc'),
(998,998,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"LOREM IPSUM\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview 2\"}',1,'2026-02-21 15:46:44','2026-02-21 15:46:44','4ed97e2c-4ab4-488a-b8f4-cbc2adba5563'),
(999,999,1,'One Session 2','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session 2\"}',1,'2026-02-21 15:46:44','2026-02-21 15:46:44','00ae9c08-e297-422b-9aa5-09c3067fdfc3'),
(1002,1002,1,'Why Choose This Treatment 2','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment 2\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results. 2\"}',1,'2026-02-21 15:48:30','2026-02-21 15:52:04','3803e21a-2336-442a-9ae9-0bb2e158d945'),
(1003,1003,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:48:30','2026-02-21 15:48:30','84207b1a-05bb-4cc9-9e78-3a71ea6f102e'),
(1004,1004,1,'Why Choose This Treatment','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment\",\"db7918aa-60f2-454f-9d14-9d535b27014e\":\"left\"}',1,'2026-02-21 15:48:30','2026-02-21 15:48:30','76769812-6b88-4f8b-bb98-5b5bc385bc31'),
(1011,1011,1,'Targeted Results 2','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results 2\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns. 2\"}',1,'2026-02-21 15:50:56','2026-02-21 15:51:33','27de1231-504d-4dcb-aa51-8f015f9f9962'),
(1012,1012,1,'Safety First','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\":\"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.\"}',1,'2026-02-21 15:50:56','2026-02-21 15:50:56','4a3b1b1d-0ca0-45ff-b765-4b9605285473'),
(1013,1013,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\":\"Qualified practitioners with years of experience deliver exceptional personalised care.\"}',1,'2026-02-21 15:50:56','2026-02-21 15:50:56','226f4a19-d565-4e11-bb55-402fe554c4a8'),
(1014,1014,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\":\"Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.\"}',1,'2026-02-21 15:50:56','2026-02-21 15:50:56','4ca0c581-4229-4724-a413-58dbb969bc9c'),
(1015,1015,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:50:56','2026-02-21 15:50:56','84b4da56-1f5e-41c6-a4ae-9ff15c789067'),
(1016,1016,1,'Why Choose This Treatment','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\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results.\"}',1,'2026-02-21 15:50:57','2026-02-21 15:50:57','67c8f9d3-eb0e-48ca-896a-0b09b0f6fd9f'),
(1017,1017,1,'Targeted Results','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\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns.\"}',1,'2026-02-21 15:50:57','2026-02-21 15:50:57','beb15edb-484f-4ee4-930f-d79a50f92418'),
(1018,1018,1,'Safety First','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\":\"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.\"}',1,'2026-02-21 15:50:57','2026-02-21 15:50:57','28117a4c-5823-400a-a70f-7f6916ce2d3a'),
(1019,1019,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\":\"Qualified practitioners with years of experience deliver exceptional personalised care.\"}',1,'2026-02-21 15:50:57','2026-02-21 15:50:57','53191f0f-7f0f-4026-beda-3bae4e25412c'),
(1020,1020,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\":\"Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.\"}',1,'2026-02-21 15:50:57','2026-02-21 15:50:57','17ba67a2-4dc7-401d-b97b-3dfc208fdf1c'),
(1024,1024,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:51:33','2026-02-21 15:51:33','aae5fb0d-fcb0-477b-b7bd-ea988c6bed6f'),
(1025,1025,1,'Why Choose This Treatment 2','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\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results.\"}',1,'2026-02-21 15:51:33','2026-02-21 15:51:33','c0aa52d2-05d3-481a-8c17-aac8df1f951c'),
(1026,1026,1,'Targeted Results 2','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results 2\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns. 2\"}',1,'2026-02-21 15:51:33','2026-02-21 15:51:33','0e7fc3dd-5bbe-47d1-ae03-74b834fd3a78'),
(1029,1029,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:52:04','2026-02-21 15:52:04','7e56581a-db0a-42e7-9db7-9bf50029088e'),
(1030,1030,1,'Why Choose This Treatment 2','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment 2\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results. 2\"}',1,'2026-02-21 15:52:04','2026-02-21 15:52:04','b15534b3-3de5-4d3c-a93c-bff6885b9680'),
(1033,1033,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:52:58','2026-02-21 15:52:58','d5ce1fda-1b6a-43cb-9c62-6e2aaa92ec05'),
(1034,1034,1,'Why Choose This Treatment 2','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment 2\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results. 2\"}',1,'2026-02-21 15:52:58','2026-02-21 15:52:58','fbfc5ce6-a9b1-4c6a-b2d9-47ef6bbdf402'),
(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'),
(1038,1038,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-21 15:57:52','2026-02-21 15:57:52','f324cf68-1d5d-4c08-a52c-7e7bddd2c566'),
(1039,1039,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 15:57:52','2026-02-21 15:57:52','99971df4-2282-476c-9179-7b2026f3f7c5'),
(1040,1040,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-21 15:57:52','2026-02-21 15:57:52','bb99a1bf-ba1d-4e26-a1d7-61eb172c9b6e'),
(1043,1043,1,'Who Should Consider This Treatment? 2','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 2\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 2\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>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.</p><p> </p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[]}',1,'2026-02-21 16:00:47','2026-02-21 16:07:21','1bd79fbc-718a-4e01-b3a7-8d75da96e716'),
(1044,1044,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:00:47','2026-02-21 16:00:47','af632cf0-420c-49d3-bda5-773c76b779bd'),
(1045,1045,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\":\"<p>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.</p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\"}',1,'2026-02-21 16:00:47','2026-02-21 16:00:47','a56e2d06-dd38-434f-b5ce-cd20cdd94667'),
(1048,1048,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:01:13','2026-02-21 16:01:13','f45752cf-e2d7-4a0b-83cb-bda3203906e3'),
(1049,1049,1,'Who Should Consider This Treatment? 2','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 2\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 2\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>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.</p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\"}',1,'2026-02-21 16:01:13','2026-02-21 16:01:13','2a7c897d-6d83-42b8-9e68-5ff1494f9de5'),
(1052,1052,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:07:21','2026-02-21 16:07:21','a69af0da-42be-4b86-90a4-db243fa507f0'),
(1053,1053,1,'Who Should Consider This Treatment? 2','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 2\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 2\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>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.</p><p> </p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\"}',1,'2026-02-21 16:07:21','2026-02-21 16:07:21','1ceaf048-2c6e-4751-811c-8b65079cd33f'),
(1057,1057,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"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-02-21 16:08:29','2026-02-21 16:08:29','8c6eac7b-30a6-4c53-934f-92f09523a2e1'),
(1058,1058,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:08:29','2026-02-21 16:08:29','36aff079-7a73-4e22-9a4e-d225e3f1f59d'),
(1059,1059,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"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-02-21 16:08:29','2026-02-21 16:08:29','535a6e76-c3cd-41dd-b8d7-46a7ccd51906'),
(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'),
(1062,1062,1,'Frequently Asked Questions','frequently-asked-questions',NULL,NULL,1,'2026-02-21 16:12:14','2026-02-21 16:12:14','70efebc6-e9cf-49dd-bef4-513695b6afe5'),
(1063,1063,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:12:14','2026-02-21 16:12:14','c723de45-e196-49f4-8214-36fc6e234dc9'),
(1064,1064,1,'Frequently Asked Questions','frequently-asked-questions',NULL,NULL,1,'2026-02-21 16:12:14','2026-02-21 16:12:14','260e294c-55ca-4aef-ab69-60cd35c2ef76'),
(1075,1075,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-21 16:18:04','2026-02-21 16:21:12','46632ee3-16b8-44ae-b179-e1ef9abe8255'),
(1076,1076,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-21 16:18:04','2026-02-21 16:18:04','e4b69124-8482-4b0f-a6d4-38d093ec7e77'),
(1077,1077,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-21 16:18:04','2026-02-21 16:18:04','5883e68e-14f2-41b3-8ad0-bf9e826b0a09'),
(1078,1078,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-21 16:18:04','2026-02-21 16:18:04','9eb8920b-46b4-4ab4-947f-f23142d70712'),
(1079,1079,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-21 16:18:04','2026-02-21 16:18:04','9e8072d0-ccb4-4041-aee6-add9bd87dbac'),
(1080,1080,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-21 16:18:04','2026-02-21 16:18:04','ef08752b-6f87-4bb8-a588-f8d9c8e1dedd'),
(1081,1081,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-21 16:18:04','2026-02-21 16:18:04','c3366bfa-e8a6-424f-be65-f3e6f78e61b8'),
(1082,1082,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-21 16:18:04','2026-02-21 16:18:04','b07ed04e-6e8b-435b-8226-cced3fa3f113'),
(1083,1083,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-21 16:18:04','2026-02-21 16:18:04','74c2e114-3604-4b6e-9e48-7293750fb0a3'),
(1084,1084,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:18:04','2026-02-21 16:18:04','df66a522-db75-4321-8377-518273838f0c'),
(1085,1085,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 treatment\"}',1,'2026-02-21 16:18:04','2026-02-21 16:18:04','e5e0b7e2-f416-4366-aeed-8e251a29d90c'),
(1086,1086,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-21 16:18:04','2026-02-21 16:18:04','6f74dbcf-63f4-4a1a-b505-f420bf412597'),
(1087,1087,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-21 16:18:04','2026-02-21 16:18:04','04346d59-6383-4447-ae22-1214ff0df8ad'),
(1088,1088,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-21 16:18:04','2026-02-21 16:18:04','d6f430e0-73c8-4967-84a5-1497c5e9a750'),
(1089,1089,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-21 16:18:04','2026-02-21 16:18:04','45cdfcc4-741e-4c10-b8b0-fab245ef68dd'),
(1090,1090,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-21 16:18:04','2026-02-21 16:18:04','01e6b458-1de4-4867-b27f-c1fc81893792'),
(1091,1091,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-21 16:18:04','2026-02-21 16:18:04','6c553854-65f0-4c26-b7dc-b814d53d0acf'),
(1092,1092,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-21 16:18:04','2026-02-21 16:18:04','00006bc3-5e40-4997-a242-7ca7cfab1921'),
(1093,1093,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-21 16:18:04','2026-02-21 16:18:04','8c937331-dfc6-4246-af6f-3d4162b882d4'),
(1096,1096,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 16:21:12','2026-02-21 16:21:12','06453010-f409-4344-9049-30bff91e170a'),
(1097,1097,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-21 16:21:12','2026-02-21 16:21:12','8502f35f-fd39-41eb-b92a-a93d35f59cc9'),
(1098,1098,1,'Aptos Thread Lifts','aptos-thread-lifts',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[117],\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Lift, tighten and redefine through natural collagen stimulation.\"}',1,'2026-02-21 22:42:22','2026-02-21 22:56:31','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\":[117]}',1,'2026-02-21 22:49:52','2026-02-21 22:49:52','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,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[117],\"7d345954-18f1-422e-8882-8ad6f88da558\":\"read more about this treatment\",\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Bio Identical Hormones is a treatment used to supplement the body’s natural hormone levels.\"}',1,'2026-02-21 22:49:56','2026-02-21 22:56:39','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\":[117]}',1,'2026-02-21 22:56:39','2026-02-21 22:56:39','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,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[117],\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"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.\"}',1,'2026-02-21 22:56:49','2026-02-21 22:58:49','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\":[117]}',1,'2026-02-21 22:58:49','2026-02-21 22:58:49','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,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[117],\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read amore about this treatment\",\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Chemical Peels\"}',1,'2026-02-21 22:58:58','2026-02-21 22:59:24','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\":[117]}',1,'2026-02-21 22:59:24','2026-02-21 22:59:24','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,'Dermalux LED phototherapy','dermalux-led-phototherapy',NULL,'{\"714e1431-03c0-455c-8957-dd9d22173d46\":[117],\"7d345954-18f1-422e-8882-8ad6f88da558\":\"Read more about this treatment\",\"25b468f4-fac1-403c-a17f-13e13e0e9b60\":\"Dermalux LED phototherapy\"}',1,'2026-02-21 22:59:46','2026-02-21 23:00:22','6b9a6c2d-fecf-4cd7-8195-f533948b1e7d'),
(1133,1133,1,'Dermalux single treatment','dermalux-single-treatment',NULL,'{\"e86dfba6-6dfe-41e3-a5ab-0057691cb97d\":\"£60\",\"b9fb345b-3128-4265-b3bd-58b1d523a332\":\"Dermalux single treatment\"}',1,'2026-02-21 23:00:15','2026-02-21 23:00:21','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\":[117]}',1,'2026-02-21 23:00:22','2026-02-21 23:00:22','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'),
(1143,1143,1,'Homepage','homepage','__home__',NULL,1,'2026-02-21 23:28:16','2026-02-21 23:28:16','6d82b431-7bdd-41bd-9c40-90b962f01128'),
(1144,1144,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel – the woman behind the needle of The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<p>Our approach to aesthetic medicine is rooted in precision and artistry. With years of specialized training and thousands of successful treatments, Dr Rachel understands the delicate balance required to achieve natural-looking results.</p><p>We use advanced techniques and the highest quality products to ensure every treatment is tailored to your unique facial anatomy and aesthetic goals. The result is a refreshed, rejuvenated appearance that still looks authentically you.</p><p>Our commitment to excellence extends beyond the treatment room. We take time to understand your concerns, educate you on your options, and develop a personalized treatment plan.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[757],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":false}',1,'2026-02-21 23:28:16','2026-02-21 23:28:16','a09b8e51-fc4d-41d8-a3fd-631e261f0084'),
(1147,1147,1,'Homepage','homepage','__home__',NULL,1,'2026-02-21 23:28:36','2026-02-21 23:28:36','26f69650-f552-458d-bf75-3b3ae584e0fa'),
(1148,1148,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel – the woman behind the needle of The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<p>Our approach to aesthetic medicine is rooted in precision and artistry. With years of specialized training and thousands of successful treatments, Dr Rachel understands the delicate balance required to achieve natural-looking results.</p><p>We use advanced techniques and the highest quality products to ensure every treatment is tailored to your unique facial anatomy and aesthetic goals. The result is a refreshed, rejuvenated appearance that still looks authentically you.</p><p>Our commitment to excellence extends beyond the treatment room. We take time to understand your concerns, educate you on your options, and develop a personalized treatment plan.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[757],\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-02-21 23:28:36','2026-02-21 23:28:36','c8644ca1-e87c-4c83-87a2-fc8b6c371f1d'),
(1151,1151,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 23:31:43','2026-02-21 23:31:43','c70ec9f3-7547-4df5-b353-3a368a108030'),
(1152,1152,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\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"ebd5cb\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 23:31:43','2026-02-21 23:31:43','28baca1a-01ee-474c-bbeb-01c508e1a615'),
(1155,1155,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-21 23:32:10','2026-02-21 23:32:10','8f67b1e5-46f5-4f43-873a-f715455cf864'),
(1156,1156,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\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-21 23:32:10','2026-02-21 23:32:10','ca024e0f-e9ec-4ecd-8b0b-1bac98a8e13b'),
(1157,1157,1,'Asdasdasd','asdasdasd','conditions/asdasdasd',NULL,1,'2026-02-21 23:50:58','2026-02-21 23:51:06','839cca9f-beb8-4be2-b2e4-1e602ae9372a'),
(1158,1158,1,'Asdasdasd','asdasdasd','conditions/asdasdasd',NULL,1,'2026-02-21 23:51:06','2026-02-21 23:51:06','73fb1222-e14d-4993-bd7f-7a332bcb036f'),
(1161,1161,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:05:57','2026-02-22 00:33:44','162899c3-54a3-412f-a86e-2cc2d2a5fbfa'),
(1162,1162,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:07:00','2026-02-22 00:07:00','afea3bba-9f4e-4c01-a4f3-d88c2308ce9e'),
(1165,1165,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\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-22 00:07:17','2026-02-22 00:07:17','480d5143-869c-4c00-9a22-e95177996a2a'),
(1166,1166,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:07:17','2026-02-22 00:07:17','ddc1b512-887c-4fad-98c6-ccddfccb5c0a'),
(1167,1167,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\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-22 00:07:17','2026-02-22 00:07:17','db51b8aa-8766-456e-b186-9b0bcc1e568b'),
(1178,1178,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"LOREM IPSUM\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview 2\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','181f86d2-a135-4ffb-9d2d-9d3914299429'),
(1179,1179,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','440881b4-6d5c-4759-a6ff-615267afc2ba'),
(1180,1180,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','ca38ed6a-6228-4b2d-bc46-a869a63dbc4a'),
(1181,1181,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','764a1f90-bb07-4c69-8966-6968bafe4d43'),
(1182,1182,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','0b96a06b-27b9-4539-aff8-eda33732b150'),
(1183,1183,1,'One Session 2','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session 2\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','a4dd736b-95ac-4ae8-bc66-56a6e1f0b4bf'),
(1184,1184,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','e1b47d26-6239-4d99-a31d-466f843b385d'),
(1185,1185,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','6516723d-407b-49b9-928e-4acf31318b68'),
(1186,1186,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','105f6ab8-0e4c-4c41-99b6-34c03d12355a'),
(1187,1187,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','88b07525-8772-4437-97ba-0e93d1517ff6'),
(1188,1188,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"LOREM IPSUM\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview 2\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','4baf8262-80d8-40e0-942c-d6080a463ecd'),
(1189,1189,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','156d69c5-ba59-4a3f-ab08-d55cf90cb319'),
(1190,1190,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','ef4405d7-f664-4465-adbe-4baadf4f10c3'),
(1191,1191,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','7dd34968-1281-4aea-9d81-ea4e9abc3772'),
(1192,1192,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 £250\",\"0f7cd089-87a8-4797-9e78-54d87e5faefd\":\"Starting price\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','bd683dbd-71d2-4f95-8df8-6d73a2c6037b'),
(1193,1193,1,'One Session 2','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session 2\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','b8624db2-3796-41fe-8338-1264bdf2aa08'),
(1194,1194,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','e42b3056-044c-4024-b39b-480b862a6c27'),
(1195,1195,1,'Results visible in 2 weeks','results-visible-in-2-weeks',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Results visible in 2 weeks\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','bef1de2a-71e7-4e6c-a6ab-357e59618dee'),
(1196,1196,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-02-22 00:07:23','2026-02-22 00:07:23','961c3515-65e6-4a51-a065-e028da31b91b'),
(1203,1203,1,'Why Choose This Treatment 2','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment 2\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results. 2\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','9f40dc16-05c8-4ba4-b816-a0d3f198780d'),
(1204,1204,1,'Targeted Results 2','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results 2\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns. 2\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','6e7502cc-d235-474a-827f-61efa2c6ec6c'),
(1205,1205,1,'Safety First','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\":\"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.\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','c2260f20-9f5d-47c3-a5e6-d47cd2c32ac0'),
(1206,1206,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\":\"Qualified practitioners with years of experience deliver exceptional personalised care.\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','050f8e7a-02e8-4c81-9d6b-fb3f76691d8b'),
(1207,1207,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\":\"Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','a413a70f-3198-4861-b61f-1dc89cbf556a'),
(1208,1208,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','c5b48915-8d96-49a0-ae96-12259e03d9fb'),
(1209,1209,1,'Why Choose This Treatment 2','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Lorem Ipsum\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose This Treatment 2\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"Experience the difference of expert care, advanced technology, and personalised treatment plans designed to deliver exceptional results. 2\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','11b420bf-c684-4a83-beb8-fa0906bf0f43'),
(1210,1210,1,'Targeted Results 2','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results 2\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns. 2\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','8b564c7a-e44b-40d0-9dde-fb28795bf294'),
(1211,1211,1,'Safety First','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\":\"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.\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','3366ea88-ad99-4952-b77f-6080da48d4c0'),
(1212,1212,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\":\"Qualified practitioners with years of experience deliver exceptional personalised care.\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','239d91d5-aec3-4f78-bc2a-db894c0c0ebf'),
(1213,1213,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\":\"Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.\"}',1,'2026-02-22 00:07:37','2026-02-22 00:07:37','4baaee62-a1c0-4403-b982-4214ac28def9'),
(1216,1216,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\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":true,\"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 00:08:02','2026-02-22 22:28:10','8b53d747-2b4b-44a9-8d9b-71d6931a9e84'),
(1217,1217,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:08:02','2026-02-22 00:08:02','adc08f23-b8f0-40d7-9d87-d774e349a6c1'),
(1218,1218,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 00:08:02','2026-02-22 00:08:02','b9f6c20e-3d66-46a7-8601-d4aebb3a0a99'),
(1221,1221,1,'Who Should Consider This Treatment? 2','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 2\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 2\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>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.</p><p> </p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\"}',1,'2026-02-22 00:08:09','2026-02-22 00:08:09','8457b465-c131-4fa8-a95d-8e798133aafd'),
(1222,1222,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:08:09','2026-02-22 00:08:09','f558b390-140d-45e8-a728-2bdcfc80dadf'),
(1223,1223,1,'Who Should Consider This Treatment? 2','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 2\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 2\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>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.</p><p> </p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\"}',1,'2026-02-22 00:08:09','2026-02-22 00:08:09','fc975432-b32b-4650-bcf3-8a9582ed7384'),
(1226,1226,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"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-02-22 00:08:22','2026-02-22 00:08:22','53e78b28-036e-4b4c-911d-d69bcddd662a'),
(1227,1227,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:08:22','2026-02-22 00:08:22','5fafdcf8-435e-484b-841b-8d9e33f63ae6'),
(1228,1228,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"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-02-22 00:08:22','2026-02-22 00:08:22','4472dd33-6247-4fba-8bd5-7b8f153932c8'),
(1239,1239,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 00:08:32','2026-02-22 00:08:32','e7bd7b33-edd7-4338-921d-0dc8e8a21cc9'),
(1240,1240,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 00:08:32','2026-02-22 00:08:32','a0d04c11-fb29-4452-8da2-dcc319a12cd6'),
(1241,1241,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 00:08:32','2026-02-22 00:08:32','01b18b09-ad58-40b6-b321-dea0c7724838'),
(1242,1242,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 00:08:32','2026-02-22 00:08:32','c4c98768-bf42-4173-bbc8-738f4b55bbb4'),
(1243,1243,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 00:08:32','2026-02-22 00:08:32','66e08b48-e72d-489f-9b27-19be8899c5f2'),
(1244,1244,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 00:08:32','2026-02-22 00:08:32','fdb27d91-66b0-4cff-80e0-de9530dbf9c2'),
(1245,1245,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 00:08:32','2026-02-22 00:08:32','04e8ea4f-a7ed-40e9-b3b4-f335d502b741'),
(1246,1246,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 00:08:32','2026-02-22 00:08:32','6de2169e-185c-4c8a-aca9-70270bd793f2'),
(1247,1247,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 00:08:32','2026-02-22 00:08:32','0c8aad20-ba1f-4f39-8a9c-9632268466f9'),
(1248,1248,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:08:32','2026-02-22 00:08:32','6de322f1-668e-4f70-8f6c-e773fe26dbfe'),
(1249,1249,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 00:08:32','2026-02-22 00:08:32','ed9ff144-455b-4b8f-9e5c-5c96f75063d6'),
(1250,1250,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 00:08:32','2026-02-22 00:08:32','582b9b28-ab90-4344-bc3c-a3e07b0afa19'),
(1251,1251,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 00:08:32','2026-02-22 00:08:32','c9999ace-5074-410d-aa83-79455e72ad0f'),
(1252,1252,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 00:08:32','2026-02-22 00:08:32','3c0fa85e-78f1-4d84-9f48-f14cef524bbb'),
(1253,1253,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 00:08:32','2026-02-22 00:08:32','0e0670c7-5a6f-49e2-b0b5-201d8a3007d4'),
(1254,1254,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 00:08:32','2026-02-22 00:08:32','91e2888f-5216-4bb8-b3da-ab23a2aa4234'),
(1255,1255,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 00:08:32','2026-02-22 00:08:32','bb649df9-b080-4a3e-b9eb-3b93212ee5ab'),
(1256,1256,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 00:08:32','2026-02-22 00:08:32','182584a0-e482-4200-9522-2feef7b277ab'),
(1257,1257,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 00:08:32','2026-02-22 00:08:32','c17ca5f1-a1af-41b8-9284-339796feb850'),
(1259,1259,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:10:17','2026-02-22 00:10:17','8e5b0a46-f45d-462a-aa41-1b054a1e96f0'),
(1261,1261,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:10:31','2026-02-22 00:10:31','a8cc7eb1-8e8d-48c0-a044-6f6463c005b1'),
(1264,1264,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:18:14','2026-02-22 00:18:14','616883c7-7fc0-49ac-8969-23bc61fede4b'),
(1265,1265,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.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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 00:18:14','2026-02-22 00:18:14','9e72ac96-cefc-4f95-a16e-8495c06416cb'),
(1268,1268,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:22:36','2026-02-22 00:22:36','de360b45-473b-4cd7-876c-51af3546e25c'),
(1269,1269,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?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"Swipe to reveal the transformation. See the remarkable results our patients have achieved.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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 00:22:36','2026-02-22 00:22:36','eb08c58b-9b87-4078-8c12-4f53b610c032'),
(1272,1272,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:28:19','2026-02-22 00:28:19','6c992227-8326-44f5-b3e8-c0c190339407'),
(1273,1273,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\",\"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 00:28:19','2026-02-22 00:28:19','4f7f23e4-da37-4abd-bffc-7a17cd9feaec'),
(1276,1276,1,'Condition 2','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:29:01','2026-02-22 00:29:01','cd81d29d-5959-4c70-9489-329c5339c3c9'),
(1277,1277,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\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Dr Rachel – the woman behind the needle 2 777\",\"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. 77\",\"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. 777\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"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],\"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 77\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell 2 7\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Botox & Dermal Fillers 2 7\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S. M. 7\",\"780ba720-3833-46e6-89d7-7d24cc606852\":4,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Our Harley Street Clinic? 2 7\",\"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 7\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Consultation 2 7\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"#\"}',1,'2026-02-22 00:29:01','2026-02-22 00:29:01','bf519bac-4a0d-4026-b020-f1c3b1c0af7c'),
(1279,1279,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 00:33:44','2026-02-22 00:33:44','632da2fa-11e2-45f0-becf-f04074497294'),
(1282,1282,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-22 00:34:17','2026-02-22 00:34:17','3fc5ecc5-5ddc-4eb3-b9f2-c4f8909ffc4e'),
(1283,1283,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street 1\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-22 00:34:17','2026-02-22 00:34:17','ccb37aa4-a737-43da-ade1-4639b3aa78fc'),
(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'),
(1287,1287,1,NULL,'__temp_hunrbgccrcirtdkwiwmgbbglejmhnmvjievm',NULL,'{\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"left\"}',1,'2026-02-22 00:42:12','2026-02-22 00:42:12','a4ee86df-6c3a-4591-a1ae-ce630e71102f'),
(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'),
(1292,1292,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 18:53:48','2026-02-22 18:53:48','eae72cf4-714f-49ca-ba2f-bdb102b4164b'),
(1293,1293,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],\"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 77\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Sarah Mitchell 2 7\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Botox & Dermal Fillers 2 7\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"S. M. 7\",\"780ba720-3833-46e6-89d7-7d24cc606852\":4,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Our Harley Street Clinic? 2 7\",\"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 7\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Consultation 2 7\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"#\"}',1,'2026-02-22 18:53:48','2026-02-22 18:53:48','8086ea4b-dbc7-4441-b70c-8e353adc71ce'),
(1296,1296,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 20:58:05','2026-02-22 20:58:05','c7faf03c-ae73-4975-9557-b6ddfd3dbaf2'),
(1297,1297,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],\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Our Harley Street Clinic? 2 7\",\"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 7\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Consultation 2 7\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"#\"}',1,'2026-02-22 20:58:05','2026-02-22 20:58:05','007f13cb-ccc2-4822-82a4-892234fc0d1a'),
(1300,1300,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 20:59:10','2026-02-22 20:59:10','6c62a16a-3e2b-4f12-aa8a-7c9869d61048'),
(1301,1301,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 20:59:10','2026-02-22 20:59:10','452f2d75-1499-4419-be2c-d053a0640efe'),
(1304,1304,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:13:23','2026-02-22 21:13:23','8bc04b3d-416a-48cf-8141-cb0e832e4007'),
(1305,1305,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 21:13:23','2026-02-22 21:13:23','7b3ce2cd-a60d-41fa-a642-2ba78ce00684'),
(1308,1308,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:15:15','2026-02-22 21:15:15','7f065cc2-8705-4fd6-91bc-1f66fb506c64'),
(1309,1309,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 21:15:15','2026-02-22 21:15:15','2c96b7ea-f6c0-43b7-b606-3d8d0d49d929'),
(1312,1312,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:15:32','2026-02-22 21:15:32','e2ce6078-f907-42c4-9d0c-e377a0c27b22'),
(1313,1313,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\":\"white\",\"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 21:15:32','2026-02-22 21:15:32','b894b0a4-4598-4c86-bbd4-8f6fc1a23773'),
(1316,1316,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:16:12','2026-02-22 21:16:12','c144a5ce-0df4-42bb-981d-896314d198be'),
(1317,1317,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 21:16:12','2026-02-22 21:16:12','8c5519a3-7d93-4ab0-9b52-8315593bfe8d'),
(1319,1319,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:18:20','2026-02-22 21:18:20','7a6017b3-84ec-4513-8d96-410d116016ce'),
(1322,1322,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:20:06','2026-02-22 21:20:06','a786f2a5-29cb-4a4e-b44b-972bb9d596bb'),
(1325,1325,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-02-22 21:21:00','2026-02-22 21:21:00','7d35bdb4-a485-40ef-ba73-22521672cee9'),
(1326,1326,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:21:00','2026-02-22 21:21:00','912f26be-44e7-477a-96da-791b6eaf9ead'),
(1327,1327,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-02-22 21:21:00','2026-02-22 21:21:00','a30586db-0748-4f4e-a4aa-07fbe9642ee5'),
(1330,1330,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:21:52','2026-02-22 21:21:52','ccc5f8aa-b941-4eb4-82b3-43ebbf8b91e7'),
(1331,1331,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 21:21:52','2026-02-22 21:21:52','aa1d0541-762d-4da2-87bf-bce44433ea10'),
(1334,1334,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],\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-02-22 21:22:41','2026-02-22 22:00:26','28e6687d-d266-496e-ad1d-6d8bebbf4c52'),
(1335,1335,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:22:41','2026-02-22 21:22:41','41df07d4-8b3c-4406-b1eb-97577879c42e'),
(1336,1336,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 21:22:41','2026-02-22 21:22:41','612d1b6e-0d39-4c34-ab0b-f53e40c8dd6a'),
(1338,1338,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:23:02','2026-02-22 21:23:02','49d4e7db-717e-4272-be39-e42e8a5d0c54'),
(1340,1340,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:23:16','2026-02-22 21:23:16','0defb241-faaf-44df-b487-74d3b658fcc6'),
(1344,1344,1,'fddfd','fddfd',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"sadaads\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"dasssaddas\"}',1,'2026-02-22 21:27:46','2026-02-22 21:27:46','8a0d35b5-e486-4a49-a7c0-78993746951e'),
(1345,1345,1,'vfdsfds','vfdsfds',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"sdfffsd\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"sdffsfsd\"}',1,'2026-02-22 21:27:46','2026-02-22 21:27:46','7307240a-cfd6-4a23-83c3-50fe0b2b54be'),
(1346,1346,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:27:46','2026-02-22 21:27:46','c1cbaf8f-be14-4658-a04c-5ffab1ee3fe7'),
(1347,1347,1,'fddfd','fddfd',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"sadaads\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"dasssaddas\"}',1,'2026-02-22 21:27:46','2026-02-22 21:27:46','cf28fe80-049b-480a-8dfe-d3b6541de08a'),
(1348,1348,1,'vfdsfds','vfdsfds',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"sdfffsd\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"sdffsfsd\"}',1,'2026-02-22 21:27:46','2026-02-22 21:27:46','4c6c3d86-3d9e-45f1-8758-c1b97d672f82'),
(1349,1349,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:35:40','2026-02-22 21:35:40','9bf05ea6-ec38-4e19-8d1e-4ac08d901e86'),
(1351,1351,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 21:43:39','2026-02-22 21:43:39','41fceeed-6044-4028-89bd-d3b6a9656b91'),
(1354,1354,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 22:00:26','2026-02-22 22:00:26','9b6c9da4-6a5c-44db-9a6b-e75cba8256db'),
(1355,1355,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]}',1,'2026-02-22 22:00:26','2026-02-22 22:00:26','56ff1dec-a559-4645-b23f-1c3e4c8d72bb'),
(1358,1358,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 22:08:59','2026-02-22 22:08:59','af677456-bb4a-482d-8f33-4cbd6fac48d3'),
(1362,1362,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.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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]}',1,'2026-02-22 22:10:10','2026-02-22 22:10:10','340f592a-2a3e-4bb7-8aed-5f0286b6594a'),
(1363,1363,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 22:10:10','2026-02-22 22:10:10','8bc9c95d-0af2-4cba-ab16-81420d66b2bb'),
(1364,1364,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.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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]}',1,'2026-02-22 22:10:10','2026-02-22 22:10:10','3806ae26-61d0-48d2-a059-4540b73164f6'),
(1367,1367,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\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[],\"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:19:04','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 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','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 & 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','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'),
(1413,1413,1,'Condition 2 123','condition-2','conditions/condition-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-02-22 22:28:10','2026-02-22 22:28:10','18b9e239-a743-43f0-ab67-6cb589d768a4'),
(1414,1414,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\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":true,\"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:28:10','2026-02-22 22:28:10','01554b5a-478e-4f7f-bc18-d2119a34f52e'),
(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'),
(1422,1422,1,'About Dr Rachel','about-dr-rachel',NULL,'{\"0f4b4599-37ec-4e32-951d-314472221e14\":\"whiteClean\",\"099020e5-c897-49cc-b679-3ec70fecd44b\":\"Meet Your Doctor\",\"682128f9-a862-4496-8c65-4d0449904510\":\"Dr Rachel – the woman behind the needle of The Aesthetic Clinic\",\"adfbaf55-55b2-4e91-9c89-9edfe83cad7e\":\"<p>Our approach to aesthetic medicine is rooted in precision and artistry. With years of specialized training and thousands of successful treatments, Dr Rachel understands the delicate balance required to achieve natural-looking results.</p><p>We use advanced techniques and the highest quality products to ensure every treatment is tailored to your unique facial anatomy and aesthetic goals. The result is a refreshed, rejuvenated appearance that still looks authentically you.</p><p>Our commitment to excellence extends beyond the treatment room. We take time to understand your concerns, educate you on your options, and develop a personalized treatment plan.</p>\",\"ce445ff0-ffd3-46dc-92fd-7f90be2c8f57\":[757],\"3b49b148-2424-4f38-b0f2-631cf577bc4b\":\"left\",\"cedb678d-86a4-4d73-865d-e821937bc248\":true}',1,'2026-02-24 14:17:13','2026-02-24 14:17:15','ab9f9495-2449-4392-847b-9a4759c97656'),
(1423,1423,1,'Explore Our Services','explore-our-services',NULL,'{\"16daf059-c7fd-4b72-a424-158e791ae13c\":\"all\",\"3b3a78d0-f320-4edb-8883-3e52ec1f93af\":\"Explore Our Services\",\"11aa40c7-103c-4706-ace9-3f450871c29f\":\"What can a treatment do today?\"}',1,'2026-02-24 14:31:44','2026-02-24 14:31:45','33de752f-1757-4620-b531-312f1ab58862'),
(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'),
(1428,1428,1,'Reveal Your Natural Beauty','homepage',NULL,'{\"12def3da-8ca1-48fa-891d-c3798b3b46e9\":\"Reveal Your 2\",\"5dfd8cfe-1390-4f09-9378-3016c101b1dc\":\"Natural Beauty\",\"17d6bc9c-9563-4fc4-8b98-b7dc3fb68dd4\":\"Doctor-Led Aesthetic Medicine\",\"cf5f75f8-8ee4-4a97-b726-1bef5dd1e817\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you.\",\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\":[312,821],\"238ce99e-fad8-4e55-b39c-58e5e5704123\":\"right\"}',1,'2026-02-24 14:43:36','2026-02-24 14:43:36','b6b82b8f-81f9-4e02-a6bb-0c52de48cb88'),
(1429,1429,1,NULL,'__temp_jhmtytvjjmwtfmvdzdonqnlfokbgcgxbcibk',NULL,'{\"306c8a8b-7513-4a3f-82c5-7797d86388ed\":\"normal\"}',1,'2026-02-24 14:43:36','2026-02-24 14:43:36','e814c331-9512-4788-a657-5590ead73983'),
(1432,1432,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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-24 14:47:57','2026-02-24 14:47:57','6691ecdc-86df-4890-ad50-591302494369'),
(1433,1433,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-24 14:47:57','2026-02-24 14:47:57','1e572298-5407-4187-b808-7281112aaeb8'),
(1434,1434,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street 1\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"ebd5cb\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-24 14:47:57','2026-02-24 14:47:57','e794c0bd-fd9f-4f24-bb23-ea6206ed3394'),
(1435,1435,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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-24 14:47:57','2026-02-24 14:47:57','f6e1c18b-ad2f-4495-b97e-da134eea3261'),
(1438,1438,1,'Treatment 2','treatment-2','treatments/treatment-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[81]}',1,'2026-02-24 14:48:15','2026-02-24 14:48:15','662c357d-2e2a-4ad4-8019-18f9dc756705'),
(1439,1439,1,'Treatment 2','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Treatment 2\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"In Harley Street 1\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Expert medical aesthetics, face, and skin treatments. Precision artistry for results that look authentically you. 2\",\"b88966fc-0b88-461c-956d-3ecfdf5fe6f0\":\"white\",\"06ee9e91-0695-45d2-b6e6-9c976f1c2bd3\":\"Book Consultation 2\",\"5db50043-52e9-4e56-ba19-ac40464d29e4\":\"https://google.com2\",\"5db102a4-8437-416e-be95-5eab08c6ded8\":\"0222 1234 56791\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"0222 1234 56791\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-02-24 14:48:15','2026-02-24 14:48:15','4aa7ee79-605e-43d5-af61-eaee7eda6b2c'),
(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'),
(1441,1441,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:03:26','2026-03-02 17:11:13','eae8d24a-20cd-4d85-90d8-1aa3860688e0'),
(1442,1442,1,'Jalupro Young Eye Wirral Targeted Under-Eye Rejuvenation by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Jalupro Young Eye Wirral Targeted Under-Eye Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Doctor-led periocular skin booster | Reduces dark circles, fine lines & tired eyes | Non-volumising formula\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 17:03:26','2026-03-02 17:13:22','cac96802-bf87-421b-b2e2-7b2bf1adf52d'),
(1443,1443,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 17:03:26','2026-03-02 17:21:22','547113c9-fb87-42d5-8cfe-55f662ca6c7b'),
(1444,1444,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-02 17:03:26','2026-03-02 17:21:22','61b5ef1f-1cb5-4160-ae59-e9f69e983730'),
(1445,1445,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 min\"}',1,'2026-03-02 17:03:26','2026-03-02 17:34:03','9d5ab4cc-0ca6-43b8-b473-aff736b265be'),
(1446,1446,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-02 17:03:26','2026-03-02 17:35:59','b28e988d-025e-4fbd-b9ef-106073f44b0e'),
(1447,1447,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\":\"4-6 months\"}',1,'2026-03-02 17:03:26','2026-03-02 17:36:24','45997be1-b8f0-41d2-9333-21c874e11bb6'),
(1448,1448,1,'One Session 2','one-session',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"One Session 2\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','d2ff0114-64d6-420a-9839-6fe147b1c4f3'),
(1449,1449,1,'Anaesthetic not normally required','anaesthetic-not-normally-required',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Anaesthetic not normally required\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','72fdbaf1-77e8-4ba4-9e8c-df28ebc59259'),
(1450,1450,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-02 17:03:26','2026-03-02 17:03:26','81347c65-477e-4dbd-8688-0e214a1d3f87'),
(1451,1451,1,'Very low discomfort','very-low-discomfort',NULL,'{\"13f581e3-1751-464d-9b4b-65a1a57a2c2e\":\"Very low discomfort\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','ecbed4f2-7b2a-4f09-9f52-034166201fcd'),
(1452,1452,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"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. \\n\\nJalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.\"}',1,'2026-03-02 17:03:26','2026-03-02 17:38:50','221cbeb4-c375-44e0-9c77-386155817376'),
(1453,1453,1,'Targeted Results 2','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results 2\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns. 2\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','b6518cec-d85e-45ed-bed1-e8417b86cf9a'),
(1454,1454,1,'Safety First','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\":\"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.\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','78e83884-ef9c-4b55-a344-336dea4ffccf'),
(1455,1455,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\":\"Qualified practitioners with years of experience deliver exceptional personalised care.\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','d93d2eb1-dd36-4cc1-93cd-e9380fbbd539'),
(1456,1456,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\":\"Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','7cb3f3bd-2f29-400d-9c2f-5d9e98a66a72'),
(1457,1457,1,'What is Jalupro Young Eye','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"What is Jalupro Young Eye\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Jalupro Young Eye\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"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=\\\"background-color:transparent;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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is why careful medical assessment and experience matter when treating the eye area.</span></p><p><span style=\\\"background-color:transparent;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, helping to minimise risks such as swelling, migration or vascular complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Just as importantly, medical training allows me to assess what the under-eye area truly needs. While Jalupro Young Eye 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 to address deeper structural volume loss. Others may benefit more from regenerative treatments such as polynucleotides, or a carefully staged combination approach. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye vs Tear Trough Filler:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Understanding the difference between these treatments is key to achieving natural, balanced results.</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> focuses on improving skin quality - hydration, brightness, texture and fine lines. It is best suited to dark circles caused by thin skin or reduced circulation, crepey texture, and mild hollowing where volume replacement is not required.</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Tear trough filler</strong> replaces lost volume and restores structural support. It is more appropriate for significant volume loss creating a pronounced tear trough deformity.</span><br /><br /> </li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, the best results come from using both treatments strategically - restoring structure first, then improving skin quality - always guided by anatomy and individual need.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Safety Protocols:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Treating the under-eye area requires meticulous technique. Injection depth must be precise, product distribution must be even, and post-treatment care plays an important role in achieving optimal results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I use ultra-fine needles, a gentle injection technique, and carefully placed micro-deposits to allow smooth integration within the tissue. Detailed aftercare guidance is provided, including advice on lymphatic drainage where appropriate.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC</strong>, I remain up to date with current safety standards for periocular treatments and carry emergency equipment to manage the rare event of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The eye area is central to how we look, express emotion and connect with others. It deserves nothing less than a thoughtful, medically-led approach focused on safety, subtlety and long-term skin health.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p><p> </p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 17:03:26','2026-03-02 19:47:34','77832f42-1a2d-4076-9d8c-4a821d3d2a25'),
(1458,1458,1,'Why choose aesthetics by Dr Rachel?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Why choose aesthetics by Dr Rachel?\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1691],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[]}',1,'2026-03-02 17:03:26','2026-03-02 18:44:26','232fb092-269d-4652-a3f9-754f18c52faf'),
(1459,1459,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 17:03:26','2026-03-02 19:49:43','198a3d99-d13b-48ca-b1c8-2ce25ef83d97'),
(1460,1460,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 17:03:26','2026-03-02 19:50:16','35b2395c-423d-44dc-8f5e-84690544cd1d'),
(1461,1461,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Jalupro Young Eye under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:07:29','6586eacf-7740-4dfe-9354-fc1069e9e54c'),
(1462,1462,1,'Q: How many Jalupro Young Eye sessions will I need?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many Jalupro Young Eye sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients benefit from a course of 3 treatment sessions, spaced 3–4 weeks apart, to achieve optimal cumulative improvement. This staged approach allows gradual collagen support and strengthening of the delicate under-eye skin, with each session building on the last. Some patients with more pronounced dark circles or significant skin thinning may benefit from additional treatments. To maintain results, maintenance sessions are typically recommended every 6–9 months. A personalised treatment plan will always be discussed and agreed during your consultation, based on your individual anatomy, skin quality and treatment goals.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:21:42','11590bc5-4d35-49a8-a358-7fe74981a53d'),
(1463,1463,1,'Q: Is Jalupro Young Eye painful?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Downtime is usually minimal. Immediately after treatment, small injection marks and mild swelling under the eyes are common. This typically settles within 24–48 hours. Some patients may experience minor bruising, which usually resolves within 3–5 days and is easily concealed with makeup. Most patients return to work and normal daily activities straight away. I recommend avoiding makeup for the remainder of the day, strenuous exercise for 24 hours, and excessive heat such as saunas or hot yoga for 48 hours.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','c6f6c3eb-0146-4bd2-91a0-0e91192c81ce'),
(1464,1464,1,'Q: When will I see results from Jalupro Young Eye?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Some patients notice subtle improvements in hydration and brightness within 1–2 weeks as the hyaluronic acid integrates into the skin. More meaningful changes develop gradually over 4–6 weeks, as your skin uses the amino acids and peptides to support new collagen and elastin production. Peak results are typically seen 4–6 weeks after completing the recommended treatment course of 3 sessions. This gradual progression allows for natural-looking rejuvenation, without sudden or obvious change.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','56db5b28-d696-4282-853b-0e0a6816a531'),
(1465,1465,1,'Q: How long do Jalupro Young Eye results last?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do Jalupro Young Eye results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Results typically last 6–9 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolism. Over time, collagen and elastin production naturally slows, which is why maintenance is recommended. To sustain optimal results, single maintenance treatments every 6–9 months are usually sufficient. Many patients find that maintenance may be required less frequently over time, as overall under-eye skin quality continues to improve with repeated treatments.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','b030970a-3017-4250-b40b-2f3540d57370'),
(1466,1466,1,'Q: What is the difference between Jalupro Young Eye and tear trough filler?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between Jalupro Young Eye and tear trough filler?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Jalupro Young Eye focuses on improving skin quality rather than adding volume. It enhances hydration, brightness, texture and fine lines through a non-volumising biorevitalisation approach. This makes it particularly suitable for dark circles, crepey skin and mild hollowing where structural volume replacement is not required. Tear trough filler, by contrast, is designed to replace lost volume. It uses a crosslinked hyaluronic acid gel to fill deeper hollows and restore structural support, making it more appropriate for significant volume loss. Jalupro Young Eye creates subtle, natural-looking improvement, while tear trough filler produces more noticeable structural correction. In some cases, the best results are achieved by using both treatments strategically - restoring structure where needed and improving skin quality for a balanced, refreshed outcome.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','be576cda-995f-41ac-acea-74e405444fd9'),
(1467,1467,1,'Q: Can Jalupro Young Eye treat dark circles?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can Jalupro Young Eye treat dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, Jalupro Young Eye can be very effective for certain types of dark circles - particularly those caused by thin, translucent skin where underlying blood vessels are visible, or by reduced microcirculation creating a bluish or purplish tone. In these cases, Jalupro works by strengthening and thickening the skin, helping to disguise visible vessels, while also supporting healthier circulation to reduce blood pooling. It is important to note that dark circles caused primarily by excess pigment (melanin) respond better to other treatments, such as targeted skincare, chemical peels or laser, rather than injectable biorevitalisation.\\nDuring your consultation, I will assess the underlying cause of your dark circles and advise on the most appropriate treatment plan for your skin.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','6a4f53a6-daa3-46b7-9fa0-b66f7594cb80'),
(1468,1468,1,'Q: Is Jalupro Young Eye safe?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, when administered by a qualified medical professional. Jalupro Young Eye contains biocompatible ingredients, including non-crosslinked hyaluronic acid, amino acids and peptides, which are generally very well tolerated. As with any injectable treatment, side effects and complications are possible, but serious adverse events are rare when treatment is carried out correctly and with appropriate patient selection. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols. This includes a detailed medical history assessment, strict sterile technique, careful attention to injection depth and product placement, and appropriate post-treatment monitoring. Emergency equipment is always available to manage the unlikely event of a complication.\\nYour safety is always my priority, and suitability for treatment is carefully assessed during your consultation.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','e7a4fb8e-3cff-4336-815b-ba205a0be1e2'),
(1469,1469,1,'Q: Can I combine Jalupro Young Eye with other treatments?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine Jalupro Young Eye with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. Jalupro Young Eye can be safely and effectively combined with other treatments as part of a tailored, comprehensive rejuvenation plan. Depending on your individual concerns, it may be used alongside tear trough filler to address both skin quality and structural volume, polynucleotides to support deeper cellular repair, anti-wrinkle treatments to soften expression lines, or skin boosters to improve hydration and quality across the rest of the face.\\nThe most appropriate combination and treatment sequence will always be discussed during your consultation, based on your anatomy, skin quality and aesthetic goals.\"}',1,'2026-03-02 17:03:26','2026-03-02 19:26:19','15d0f9fc-d149-4771-870a-bd5acf8b62ca'),
(1486,1486,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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 17:03:26','2026-03-02 17:03:26','846b9c66-a1ae-4d5d-89f2-375387dc5181'),
(1488,1488,1,'Who Should Consider This Treatment? 2','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 2\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 2\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>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.</p><p> </p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\"}',1,'2026-03-02 17:03:26','2026-03-02 17:03:26','5b7df064-b0e5-4f72-9972-c90f262d81a4'),
(1489,1489,1,'Transformations','transformations',NULL,'{\"b711d73c-2e12-484e-aa49-7fbd53b17a66\":\"Transformations 2\",\"f6773126-ca9b-4379-9aa4-35fdc0de9bbd\":\"Real Results 2\",\"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 17:03:26','2026-03-02 17:03:26','f40ad69b-38b9-4665-af4f-dcfbba4aa059'),
(1490,1490,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-03-02 17:03:26','2026-03-02 17:03:26','6c2456ee-5ddd-476e-b911-ade6e8d656d7'),
(1491,1491,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-03-02 17:03:26','2026-03-02 17:03:26','707b149d-ffb3-4c41-b0c6-b648049d3a83'),
(1492,1492,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-03-02 17:03:26','2026-03-02 17:03:26','b9c5faab-59d5-4b1a-8bf3-163b5c2ccb65'),
(1493,1493,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-03-02 17:03:26','2026-03-02 17:03:26','648d45dd-6fdd-49fc-81a4-8f68bdf1758d'),
(1494,1494,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-03-02 17:03:26','2026-03-02 17:03:26','3c9b5a49-ff08-4ada-b647-918ff9b5ddf6'),
(1495,1495,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-03-02 17:03:26','2026-03-02 17:03:26','3fd0b35e-2e34-4aa1-ae25-d652751555a8'),
(1496,1496,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-03-02 17:03:26','2026-03-02 17:03:26','eb550a14-dd54-4c7a-bccd-53185609ca2f'),
(1497,1497,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-03-02 17:03:26','2026-03-02 17:03:26','026a67a7-22ee-4a69-a72f-787cbb93c143'),
(1498,1498,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-03-02 17:03:26','2026-03-02 17:03:26','7af37359-9ad5-42e1-99a3-6e01d81bc06f'),
(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'),
(1509,1509,1,'Jalupro Young Eye Wirral Targeted Under-Eye Rejuvenation by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Jalupro Young Eye Wirral Targeted Under-Eye Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Doctor-led periocular skin booster | Reduces dark circles, fine lines & tired eyes | Non-volumising formula\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 17:13:22','2026-03-02 17:13:22','640bfdf4-46f6-4e69-9d97-80f03b18fc1c'),
(1519,1519,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-02 17:21:23','2026-03-02 17:21:23','e4688f82-ae96-46d1-8b2d-4737184cc7f3'),
(1534,1534,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 min\"}',1,'2026-03-02 17:34:03','2026-03-02 17:34:03','861fbdf0-c151-4910-869a-5464f524432b'),
(1549,1549,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-02 17:35:59','2026-03-02 17:35:59','e6ebac7a-ff7b-4b7f-941f-2380ba6f45c7'),
(1554,1554,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 17:36:24','2026-03-02 17:36:24','e6c51b54-f196-4d7d-af08-10af2ea354b3'),
(1555,1555,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\":\"4-6 months\"}',1,'2026-03-02 17:36:24','2026-03-02 17:36:24','e31fec18-450f-4325-93e4-e21724adae80'),
(1558,1558,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:38:23','2026-03-02 17:38:23','b9051183-dba1-42f2-8260-10250742fe75'),
(1559,1559,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"Why Choose Jalupro Young Eye?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"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. <br />\\nJalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.\"}',1,'2026-03-02 17:38:23','2026-03-02 17:38:23','9dbabdc7-f03e-4214-8400-4bca2204e326'),
(1562,1562,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:38:50','2026-03-02 17:38:50','724b22c5-66ff-4e47-bc49-76c086ac73c9'),
(1563,1563,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"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. \\n\\nJalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.\"}',1,'2026-03-02 17:38:50','2026-03-02 17:38:50','cc253e49-42b6-4aa2-a26d-45790e9302df'),
(1571,1571,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p> </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 17:40:04','2026-03-02 17:40:46','2ead0941-2afc-4936-8a6f-0fe26e646d87'),
(1572,1572,1,'Non-Volumising Formula','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Unlike traditional fillers that add volume and can sometimes leave the under-eye area looking puffy or heavy, Jalupro Young Eye focuses purely on improving skin quality. The beautiful blend of non-crosslinked hyaluronic acid, amino acids and peptides, works to hydrate, brighten and strengthen delicate under-eye skin, while also helping to reduce the appearance of under-eye pigmentation, without altering structure or adding volume.</p>\"}',1,'2026-03-02 17:40:04','2026-03-02 17:47:21','0adb8c77-c108-4023-8bca-ed597e485db0'),
(1573,1573,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Dark circles often result from a combination of thin, translucent skin revealing underlying blood vessels, reduced microcirculation, and increased pigment under the eyes.<br />Jalupro Young Eye works across all three by supporting skin strength and thickness, improving microcirculation, and encouraging healthy cellular turnover. By addressing the underlying causes rather than simply masking them, this multi-mechanism approach delivers meaningful improvement in an area where topical eye products are often limited.</p>\"}',1,'2026-03-02 17:40:04','2026-03-02 17:42:37','9dbc7738-6de1-43b8-8827-cd6b76bf5c25'),
(1574,1574,1,'Gentle Yet Effective','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>The delicate under-eye area requires a careful, specialist approach. Jalupro Young Eye is specifically formulated for this sensitive area, using low-molecular-weight hyaluronic acid that integrates gently into the skin, amino acids that support collagen production without unnecessary inflammation, and peptides that signal cellular repair. The result is visible improvement in skin quality without the complications sometimes seen with heavier products.</p>\"}',1,'2026-03-02 17:40:04','2026-03-02 17:42:37','9be915f1-9e23-4a40-9732-e4996273dd1e'),
(1575,1575,1,'Natural, Subtle Results','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Results develop gradually over four to six weeks 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. People often comment that you look well, without being able to pinpoint why. This approach reflects my philosophy of aesthetics: refreshed, not changed - subtle improvement that still looks entirely like you.</p>\"}',1,'2026-03-02 17:40:04','2026-03-02 17:42:37','16e844e2-5f6f-4830-b6cb-a1fe8b2f55cd'),
(1576,1576,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:40:04','2026-03-02 17:40:04','ceb6c2cd-69b5-42f4-961e-fa9bb0481195'),
(1577,1577,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 17:40:04','2026-03-02 17:40:04','02a70231-fb34-4933-96f0-c6d79bbf57cd'),
(1578,1578,1,'Targeted Results 2','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targeted Results 2\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"Precision technology and personalised treatment plans ensure optimal outcomes tailored to your unique skin concerns. 2\"}',1,'2026-03-02 17:40:04','2026-03-02 17:40:04','7ecda8ce-0aac-4af0-b917-194c74b0b185'),
(1579,1579,1,'Safety First','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\":\"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.\"}',1,'2026-03-02 17:40:04','2026-03-02 17:40:04','4c30aa78-307c-48d4-a9d0-d07030147978'),
(1580,1580,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\":\"Qualified practitioners with years of experience deliver exceptional personalised care.\"}',1,'2026-03-02 17:40:04','2026-03-02 17:40:04','c5a319ab-b31f-4cb2-a79e-4ae0b4843374'),
(1581,1581,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\":\"Thousands of satisfied clients demonstrate our commitment to exceptional outcomes.\"}',1,'2026-03-02 17:40:04','2026-03-02 17:40:04','17b94ef8-d92e-497c-9fbd-6b77d3a67cd6'),
(1584,1584,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:40:46','2026-03-02 17:40:46','3b539ccf-4acb-4b76-a839-312242af94a2'),
(1585,1585,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p> </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 17:40:46','2026-03-02 17:40:46','4a44434b-3e7d-4bad-b493-73dd8d576a9e'),
(1592,1592,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:42:37','2026-03-02 17:42:37','a1a157b2-c29e-46c8-acef-54f20c99d93e'),
(1593,1593,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p> </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 17:42:37','2026-03-02 17:42:37','628c2fa4-e945-4bbd-ac69-cd612f1374cb'),
(1594,1594,1,'Non-Volumising Formula','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Unlike traditional fillers that add volume and can sometimes leave the under-eye area looking puffy or heavy, Jalupro Young Eye focuses purely on improving skin quality. The beautiful blend of non-crosslinked hyaluronic acid, amino acids and peptides, works to hydrate, brighten and strengthen delicate under-eye skin, while also helping to reduce the appearance of under-eye pigmentation, without altering structure or adding volume.</p>\"}',1,'2026-03-02 17:42:37','2026-03-02 17:42:37','9bc2b079-388d-4dd6-8ba0-22793d646e14'),
(1595,1595,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Dark circles often result from a combination of thin, translucent skin revealing underlying blood vessels, reduced microcirculation, and increased pigment under the eyes.<br />Jalupro Young Eye works across all three by supporting skin strength and thickness, improving microcirculation, and encouraging healthy cellular turnover. By addressing the underlying causes rather than simply masking them, this multi-mechanism approach delivers meaningful improvement in an area where topical eye products are often limited.</p>\"}',1,'2026-03-02 17:42:37','2026-03-02 17:42:37','e91f7128-7b29-4a0b-935b-d8172b953198'),
(1596,1596,1,'Gentle Yet Effective','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>The delicate under-eye area requires a careful, specialist approach. Jalupro Young Eye is specifically formulated for this sensitive area, using low-molecular-weight hyaluronic acid that integrates gently into the skin, amino acids that support collagen production without unnecessary inflammation, and peptides that signal cellular repair. The result is visible improvement in skin quality without the complications sometimes seen with heavier products.</p>\"}',1,'2026-03-02 17:42:37','2026-03-02 17:42:37','ec408492-f1ac-402b-a1a6-069c49e292ac'),
(1597,1597,1,'Natural, Subtle Results','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Results develop gradually over four to six weeks 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. People often comment that you look well, without being able to pinpoint why. This approach reflects my philosophy of aesthetics: refreshed, not changed - subtle improvement that still looks entirely like you.</p>\"}',1,'2026-03-02 17:42:38','2026-03-02 17:42:38','2d8f229c-1f5d-4e74-88eb-12049269d1a3'),
(1601,1601,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:44:37','2026-03-02 17:44:37','11d37cfa-63d9-4535-aaf9-3cf6eca166a3'),
(1602,1602,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p> </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 17:44:37','2026-03-02 17:44:37','9d21d1a3-4e9a-4e93-b411-41a830ec004f'),
(1603,1603,1,'Non-Volumising Formula','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>asddssdasdassda</p>\"}',1,'2026-03-02 17:44:37','2026-03-02 17:44:37','221de2e5-453e-48a8-b855-1d2687b9949e'),
(1607,1607,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:47:21','2026-03-02 17:47:21','9ba18bda-ef8d-44ad-9e63-26e94a37cb56'),
(1608,1608,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p> </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 17:47:21','2026-03-02 17:47:21','0c7b4417-ffa6-4698-8485-e52eddd852e1'),
(1609,1609,1,'Non-Volumising Formula','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Unlike traditional fillers that add volume and can sometimes leave the under-eye area looking puffy or heavy, Jalupro Young Eye focuses purely on improving skin quality. The beautiful blend of non-crosslinked hyaluronic acid, amino acids and peptides, works to hydrate, brighten and strengthen delicate under-eye skin, while also helping to reduce the appearance of under-eye pigmentation, without altering structure or adding volume.</p>\"}',1,'2026-03-02 17:47:21','2026-03-02 17:47:21','d3381b41-eb4c-40ac-a201-e7a68330e269'),
(1612,1612,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:48:48','2026-03-02 17:48:48','134d9d5f-eb91-4fcf-91e9-c56b054ed917'),
(1613,1613,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</p>\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 17:48:48','2026-03-02 17:48:48','97d53dc1-9cff-4d31-b2fb-1bf1282d0c62'),
(1616,1616,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:51:31','2026-03-02 17:51:31','d88b47c2-cc5c-451f-a202-a9fa06201e7d'),
(1617,1617,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 17:51:31','2026-03-02 17:51:31','4e3d13cd-12d5-4b7e-82ff-4653b588a62c'),
(1620,1620,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:56:03','2026-03-02 17:56:03','cbf921a7-8166-4f2c-9f85-bd203fc92433'),
(1621,1621,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 17:56:03','2026-03-02 17:56:03','2517a8d0-7e23-434a-a95b-b681e13cf8f8'),
(1624,1624,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 17:56:13','2026-03-02 17:56:13','4c908917-ac5d-4ecd-9ff2-db0100092277'),
(1625,1625,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"bg-navy\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 17:56:13','2026-03-02 17:56:13','2b446e99-1de4-4508-a1ad-4b2c621a6252'),
(1628,1628,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:15:17','2026-03-02 18:15:17','87232096-98da-4f60-8ceb-28cdb6ebf44c'),
(1629,1629,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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>\\\"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.</p><p>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, migration and an unnatural appearance.</p><p><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</p><p><strong>The Formula:</strong></p><p><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</p><p><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</p><p><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</p><p>This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 18:15:17','2026-03-02 18:15:17','23f0aa0c-7316-4670-b46d-aaf66d59c622'),
(1632,1632,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:15:51','2026-03-02 18:15:51','5c4782af-9fd6-4250-85ae-9786fe30f853'),
(1633,1633,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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>\\\"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.</p><p>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, migration and an unnatural appearance.</p><p><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</p><p><strong>The Formula:</strong></p><p><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</p><p><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</p><p><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</p><p>This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 18:15:51','2026-03-02 18:15:51','27311a2e-e108-4bce-9c9d-ecae490922c5'),
(1636,1636,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:16:18','2026-03-02 18:16:18','68553a57-9bf5-4da7-904a-58a6c14767cf'),
(1637,1637,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 18:16:18','2026-03-02 18:16:18','bfeac260-e5bb-4616-849a-3d2d746ed1be'),
(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'),
(1643,1643,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:22:44','2026-03-02 18:22:44','48567f26-dfe1-478d-99c8-5d84d7c2acf7'),
(1644,1644,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640]}',1,'2026-03-02 18:22:44','2026-03-02 18:22:44','f0df6d49-64cb-476b-ab14-acfd88aecd4e'),
(1645,1645,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.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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-03-02 18:22:44','2026-03-02 18:22:44','bfae969e-7a99-4d4b-ad8f-e6897556e59e'),
(1648,1648,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:25:32','2026-03-02 18:25:32','fd11f689-d751-4beb-8288-292a767d9b62'),
(1649,1649,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640]}',1,'2026-03-02 18:25:32','2026-03-02 18:25:32','bfb9814b-2517-4eea-83f4-20d591ad0403'),
(1652,1652,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:27:42','2026-03-02 18:27:42','e70fe633-08a5-4810-9622-aa843d72a999'),
(1653,1653,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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.</span><br /><br /> </p>\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Rebecca, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:27:42','2026-03-02 18:27:42','b0a7dd27-034c-4389-9e69-2e1b702fd5d5'),
(1656,1656,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:28:41','2026-03-02 18:28:41','2a2ef941-8ae7-47a3-877f-4000fd09d950'),
(1657,1657,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"<h3><span style=\\\"background-color:transparent;color:#000000;\\\">I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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.</span><br /><br /> </h3>\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Rebecca, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:28:41','2026-03-02 18:28:41','da36bec2-8b80-49dc-aa74-dcb316625a4a'),
(1660,1660,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:29:27','2026-03-02 18:29:27','a72447f4-bfc2-47e0-9c02-0df329497aad'),
(1661,1661,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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.</span><br /><br /> </p>\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Rebecca, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:29:28','2026-03-02 18:29:28','427f176e-8741-4cfa-829a-738661ee5b2e'),
(1664,1664,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:29:57','2026-03-02 18:29:57','11a79aad-19b2-4407-8402-0773e89e61cf'),
(1665,1665,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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.</span><br /><br /> </p>\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Rebecca, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:29:57','2026-03-02 18:29:57','2a95e384-8dc8-453f-8fd8-07bc8474bac7'),
(1668,1668,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:31:09','2026-03-02 18:31:09','aa5e14e0-5ef0-4b63-8e33-4af66f5848f6'),
(1669,1669,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"189b4eff-c4aa-4bd6-885c-24922e54375f\":\"<p>\\n    <span style=\\\"font-size:24px;background-color:transparent;color:#000000;\\\">I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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.</span><br />\\n    <br />\\n     \\n</p>\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Rebecca, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:31:09','2026-03-02 18:31:09','c4acb6f4-fa01-444e-9ccc-554e577e01d3'),
(1672,1672,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:36:15','2026-03-02 18:36:15','73002177-ff14-4978-85d4-e596b605d052'),
(1673,1673,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"How It Works:\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:36:15','2026-03-02 18:36:15','472e2e4e-fe7d-4da9-925c-2c5c11fcd690'),
(1676,1676,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:37:35','2026-03-02 18:37:35','93963a29-6275-4bbe-ae09-101408a17c92'),
(1677,1677,1,'WHAT IS JALUPRO YOUNG EYE?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHAT IS JALUPRO YOUNG EYE?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHAT IS JALUPRO YOUNG EYE?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"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=\\\"background-color:transparent;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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is why careful medical assessment and experience matter when treating the eye area.</span></p><p><span style=\\\"background-color:transparent;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, helping to minimise risks such as swelling, migration or vascular complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Just as importantly, medical training allows me to assess what the under-eye area truly needs. While Jalupro Young Eye 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 to address deeper structural volume loss. Others may benefit more from regenerative treatments such as polynucleotides, or a carefully staged combination approach. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye vs Tear Trough Filler:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Understanding the difference between these treatments is key to achieving natural, balanced results.</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> focuses on improving skin quality - hydration, brightness, texture and fine lines. It is best suited to dark circles caused by thin skin or reduced circulation, crepey texture, and mild hollowing where volume replacement is not required.</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Tear trough filler</strong> replaces lost volume and restores structural support. It is more appropriate for significant volume loss creating a pronounced tear trough deformity.</span><br /><br /> </li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, the best results come from using both treatments strategically - restoring structure first, then improving skin quality - always guided by anatomy and individual need.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Safety Protocols:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Treating the under-eye area requires meticulous technique. Injection depth must be precise, product distribution must be even, and post-treatment care plays an important role in achieving optimal results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I use ultra-fine needles, a gentle injection technique, and carefully placed micro-deposits to allow smooth integration within the tissue. Detailed aftercare guidance is provided, including advice on lymphatic drainage where appropriate.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC</strong>, I remain up to date with current safety standards for periocular treatments and carry emergency equipment to manage the rare event of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The eye area is central to how we look, express emotion and connect with others. It deserves nothing less than a thoughtful, medically-led approach focused on safety, subtlety and long-term skin health.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:37:35','2026-03-02 18:37:35','07b3a3d1-5c3f-4e10-9ed4-2eeeb305e4a8'),
(1680,1680,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:39:40','2026-03-02 18:39:40','d42c9e13-c0d6-4c29-9862-beb430f87578'),
(1681,1681,1,'WHY CHOOSE AESTHETICS BY DR RACHEL?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"Why Choose Our Clinic?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 18:39:40','2026-03-02 18:39:40','211084bc-3f38-49bb-b705-945f5d697b60'),
(1684,1684,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:40:58','2026-03-02 18:40:58','6866fa0d-4e2a-474d-92f0-ac4e3bdd4195'),
(1685,1685,1,'WHY CHOOSE AESTHETICS BY DR RACHEL?','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 18:40:58','2026-03-02 18:40:58','c66e7f51-33b9-4740-ad2d-ad026b8fd37d'),
(1688,1688,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:41:15','2026-03-02 18:41:15','76ec84e3-3c7c-4078-a595-a692285758d7'),
(1689,1689,1,'WHY CHOOSE AESTHETICS BY DR RACHEL?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[81],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"c38db626-85ba-4201-9240-e8c2b19beb5e\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 18:41:15','2026-03-02 18:41:15','bceb63f2-2fde-41aa-9141-a2c4813fe614'),
(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'),
(1693,1693,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:43:10','2026-03-02 18:43:10','8d0b194d-59d7-43cc-8c41-fa28f3d4ddd7'),
(1694,1694,1,'WHY CHOOSE AESTHETICS BY DR RACHEL?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1691],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-02 18:43:10','2026-03-02 18:43:10','a0160272-f683-4404-b424-2f8fd43eebbf'),
(1697,1697,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:43:45','2026-03-02 18:43:45','caf645f3-4b5a-448b-9897-cbf0e7ce5763'),
(1698,1698,1,'WHY CHOOSE AESTHETICS BY DR RACHEL?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1691],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-02 18:43:45','2026-03-02 18:43:45','17a4c896-4ddc-40eb-9703-fb17e8be8697'),
(1702,1702,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:44:26','2026-03-02 18:44:26','a7078fec-2556-4558-89d5-77ac9ceca7a2'),
(1703,1703,1,'What is Jalupro Young Eye','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"What is Jalupro Young Eye\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Jalupro Young Eye\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"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=\\\"background-color:transparent;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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is why careful medical assessment and experience matter when treating the eye area.</span></p><p><span style=\\\"background-color:transparent;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, helping to minimise risks such as swelling, migration or vascular complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Just as importantly, medical training allows me to assess what the under-eye area truly needs. While Jalupro Young Eye 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 to address deeper structural volume loss. Others may benefit more from regenerative treatments such as polynucleotides, or a carefully staged combination approach. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye vs Tear Trough Filler:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Understanding the difference between these treatments is key to achieving natural, balanced results.</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> focuses on improving skin quality - hydration, brightness, texture and fine lines. It is best suited to dark circles caused by thin skin or reduced circulation, crepey texture, and mild hollowing where volume replacement is not required.</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Tear trough filler</strong> replaces lost volume and restores structural support. It is more appropriate for significant volume loss creating a pronounced tear trough deformity.</span><br /><br /> </li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, the best results come from using both treatments strategically - restoring structure first, then improving skin quality - always guided by anatomy and individual need.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Safety Protocols:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Treating the under-eye area requires meticulous technique. Injection depth must be precise, product distribution must be even, and post-treatment care plays an important role in achieving optimal results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I use ultra-fine needles, a gentle injection technique, and carefully placed micro-deposits to allow smooth integration within the tissue. Detailed aftercare guidance is provided, including advice on lymphatic drainage where appropriate.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC</strong>, I remain up to date with current safety standards for periocular treatments and carry emergency equipment to manage the rare event of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The eye area is central to how we look, express emotion and connect with others. It deserves nothing less than a thoughtful, medically-led approach focused on safety, subtlety and long-term skin health.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5}',1,'2026-03-02 18:44:26','2026-03-02 18:44:26','b6ecceb8-b0c8-45e8-8f89-4f521dfe4f8a'),
(1704,1704,1,'Why choose aesthetics by Dr Rachel?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Why choose aesthetics by Dr Rachel?\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"275f9f89-7d68-41ef-9e4d-b2f9f830d528\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"09b096a5-3744-49b5-aca3-68c5a759cee3\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1691],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-02 18:44:27','2026-03-02 18:44:27','ca9b1568-0bf4-409d-9790-157a4a8f043e'),
(1705,1705,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:47:24','2026-03-02 18:47:24','b065aef4-62b8-4f9b-840b-20035756541f'),
(1707,1707,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 18:48:46','2026-03-02 18:48:46','ab4f6994-f604-40a3-a592-a7555be121d6'),
(1710,1710,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:04:26','2026-03-02 19:04:26','26c3a763-944e-4e4d-8525-6d57a7e69c8c'),
(1711,1711,1,'Who Should Consider This Treatment? 22','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"Lorem Ipsum 212\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider This Treatment? 22\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p>Treatment 2 is an ideal solution for individuals seeking to improve their skin\'s appearance and addres11s 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.</p><p> </p><h3>Ideal Candidates Include Those With:</h3><ul><li>Fine lines and wrinkles that have begun to appear on the face and neck</li><li>Uneven skin tone or texture, including hyperpigmentation and age spots</li><li>Loss of skin elasticity and firmness, particularly around the jawline and neck</li><li>Acne scars or other textural irregularities that affect skin smoothness</li><li>Dull or lackluster complexion that needs revitalization</li><li>Desire for a non-surgical approach to skin rejuvenation with minimal downtime</li></ul>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1640]}',1,'2026-03-02 19:04:26','2026-03-02 19:04:26','0dc4ef42-22d2-4dcd-b22a-0314473d24e5'),
(1715,1715,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:07:29','2026-03-02 19:07:29','9fe32aa1-9b85-45d8-a41f-c617887971ba'),
(1716,1716,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Jalupro Young Eye under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-02 19:07:29','2026-03-02 19:07:29','9f8be650-098b-41d3-9597-20fe8246a4e3'),
(1717,1717,1,'Q: How many Jalupro Young Eye sessions will I need?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many Jalupro Young Eye sessions will I need?\",\"d460f3f1-fc2f-49ef-8ca8-93fbd178a05a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>A:</strong> Most patients benefit from a course of 3 treatment sessions, spaced 3–4 weeks apart, to achieve optimal cumulative improvement. This staged approach allows gradual collagen support and strengthening of the delicate under-eye skin, with each session building on the last. Some patients with more pronounced dark circles or significant skin thinning may benefit from additional treatments. To maintain results, maintenance sessions are typically recommended every 6–9 months. A personalised treatment plan will always be discussed and agreed during your consultation, based on your individual anatomy, skin quality and treatment goals.</span></p>\"}',1,'2026-03-02 19:07:29','2026-03-02 19:07:29','f7a9dcdb-88bf-4c06-a749-0560e22368a7'),
(1721,1721,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:21:42','2026-03-02 19:21:42','6634506e-3bd4-43db-9fca-c0cd782ae375'),
(1722,1722,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Jalupro Young Eye under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-02 19:21:42','2026-03-02 19:21:42','17e90259-4613-4bcc-9237-b587e94bc1f4'),
(1723,1723,1,'Q: How many Jalupro Young Eye sessions will I need?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many Jalupro Young Eye sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients benefit from a course of 3 treatment sessions, spaced 3–4 weeks apart, to achieve optimal cumulative improvement. This staged approach allows gradual collagen support and strengthening of the delicate under-eye skin, with each session building on the last. Some patients with more pronounced dark circles or significant skin thinning may benefit from additional treatments. To maintain results, maintenance sessions are typically recommended every 6–9 months. A personalised treatment plan will always be discussed and agreed during your consultation, based on your individual anatomy, skin quality and treatment goals.\"}',1,'2026-03-02 19:21:42','2026-03-02 19:21:42','dce7f7b2-cb3a-48c3-8ccf-ae56d1041ed4'),
(1734,1734,1,'Q: What skincare should I use after Jalupro Young Eye?','q-what-skincare-should-i-use-after-jalupro-young-eye',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The under-eye area can be sensitive after treatment, so gentle aftercare is important. Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. It is usually best to 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 and healing. 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.\\nYou will be given detailed aftercare instructions, and I may recommend appropriate medical-grade eye care products, such as those from pHformula, to help optimise and maintain your results.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','23c3f66c-c63e-49e8-b644-6ad86e1280e3'),
(1735,1735,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','e4e31f15-fe94-4a52-a785-4564f7f2638b'),
(1736,1736,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Jalupro Young Eye under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','7155d45c-caac-4c59-a332-f8fd5e2e9303'),
(1737,1737,1,'Q: Is Jalupro Young Eye painful?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Downtime is usually minimal. Immediately after treatment, small injection marks and mild swelling under the eyes are common. This typically settles within 24–48 hours. Some patients may experience minor bruising, which usually resolves within 3–5 days and is easily concealed with makeup. Most patients return to work and normal daily activities straight away. I recommend avoiding makeup for the remainder of the day, strenuous exercise for 24 hours, and excessive heat such as saunas or hot yoga for 48 hours.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','aa4d0db4-b7a8-42c8-8172-52eff428a50f'),
(1738,1738,1,'Q: When will I see results from Jalupro Young Eye?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Some patients notice subtle improvements in hydration and brightness within 1–2 weeks as the hyaluronic acid integrates into the skin. More meaningful changes develop gradually over 4–6 weeks, as your skin uses the amino acids and peptides to support new collagen and elastin production. Peak results are typically seen 4–6 weeks after completing the recommended treatment course of 3 sessions. This gradual progression allows for natural-looking rejuvenation, without sudden or obvious change.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','6092f267-25b7-4d85-bda8-b3d3a7c91181'),
(1739,1739,1,'Q: How long do Jalupro Young Eye results last?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do Jalupro Young Eye results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Results typically last 6–9 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolism. Over time, collagen and elastin production naturally slows, which is why maintenance is recommended. To sustain optimal results, single maintenance treatments every 6–9 months are usually sufficient. Many patients find that maintenance may be required less frequently over time, as overall under-eye skin quality continues to improve with repeated treatments.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','0d6e4748-3cd5-4c81-a17e-aa9a07f2ceb5'),
(1740,1740,1,'Q: What is the difference between Jalupro Young Eye and tear trough filler?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between Jalupro Young Eye and tear trough filler?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Jalupro Young Eye focuses on improving skin quality rather than adding volume. It enhances hydration, brightness, texture and fine lines through a non-volumising biorevitalisation approach. This makes it particularly suitable for dark circles, crepey skin and mild hollowing where structural volume replacement is not required. Tear trough filler, by contrast, is designed to replace lost volume. It uses a crosslinked hyaluronic acid gel to fill deeper hollows and restore structural support, making it more appropriate for significant volume loss. Jalupro Young Eye creates subtle, natural-looking improvement, while tear trough filler produces more noticeable structural correction. In some cases, the best results are achieved by using both treatments strategically - restoring structure where needed and improving skin quality for a balanced, refreshed outcome.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','513b3783-ce94-4299-857e-b5d1485cbc73'),
(1741,1741,1,'Q: Can Jalupro Young Eye treat dark circles?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can Jalupro Young Eye treat dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, Jalupro Young Eye can be very effective for certain types of dark circles - particularly those caused by thin, translucent skin where underlying blood vessels are visible, or by reduced microcirculation creating a bluish or purplish tone. In these cases, Jalupro works by strengthening and thickening the skin, helping to disguise visible vessels, while also supporting healthier circulation to reduce blood pooling. It is important to note that dark circles caused primarily by excess pigment (melanin) respond better to other treatments, such as targeted skincare, chemical peels or laser, rather than injectable biorevitalisation.\\nDuring your consultation, I will assess the underlying cause of your dark circles and advise on the most appropriate treatment plan for your skin.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','5c42be64-c778-499c-94d3-a0f55c3b92ae'),
(1742,1742,1,'Q: Is Jalupro Young Eye safe?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, when administered by a qualified medical professional. Jalupro Young Eye contains biocompatible ingredients, including non-crosslinked hyaluronic acid, amino acids and peptides, which are generally very well tolerated. As with any injectable treatment, side effects and complications are possible, but serious adverse events are rare when treatment is carried out correctly and with appropriate patient selection. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols. This includes a detailed medical history assessment, strict sterile technique, careful attention to injection depth and product placement, and appropriate post-treatment monitoring. Emergency equipment is always available to manage the unlikely event of a complication.\\nYour safety is always my priority, and suitability for treatment is carefully assessed during your consultation.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','8e8e7d97-2423-4083-a932-a479816ab2e9'),
(1743,1743,1,'Q: Can I combine Jalupro Young Eye with other treatments?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine Jalupro Young Eye with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. Jalupro Young Eye can be safely and effectively combined with other treatments as part of a tailored, comprehensive rejuvenation plan. Depending on your individual concerns, it may be used alongside tear trough filler to address both skin quality and structural volume, polynucleotides to support deeper cellular repair, anti-wrinkle treatments to soften expression lines, or skin boosters to improve hydration and quality across the rest of the face.\\nThe most appropriate combination and treatment sequence will always be discussed during your consultation, based on your anatomy, skin quality and aesthetic goals.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','b291998e-ce1a-41d7-b15e-b7e56e19529a'),
(1744,1744,1,'Q: What skincare should I use after Jalupro Young Eye?','q-what-skincare-should-i-use-after-jalupro-young-eye',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The under-eye area can be sensitive after treatment, so gentle aftercare is important. Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. It is usually best to 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 and healing. 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.\\nYou will be given detailed aftercare instructions, and I may recommend appropriate medical-grade eye care products, such as those from pHformula, to help optimise and maintain your results.\"}',1,'2026-03-02 19:26:19','2026-03-02 19:26:19','07a35970-25d6-4787-965d-6bb36e163ee4'),
(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'),
(1747,1747,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:34:56','2026-03-02 19:34:56','dcaa48f1-d792-48fc-9d60-f511404a0313'),
(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'),
(1751,1751,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:44:37','2026-03-02 19:44:37','99673152-cc4b-489b-a9ac-cc17e8803069'),
(1752,1752,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 19:44:37','2026-03-02 19:44:37','4cded507-2a25-481b-a95a-be618bc04500'),
(1755,1755,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:47:09','2026-03-02 19:47:09','60736c49-aa57-4601-a5c3-ea45cbe4f3b6'),
(1756,1756,1,'What is Jalupro Young Eye','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"What is Jalupro Young Eye\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Jalupro Young Eye\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"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=\\\"background-color:transparent;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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is why careful medical assessment and experience matter when treating the eye area.</span></p><p><span style=\\\"background-color:transparent;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, helping to minimise risks such as swelling, migration or vascular complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Just as importantly, medical training allows me to assess what the under-eye area truly needs. While Jalupro Young Eye 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 to address deeper structural volume loss. Others may benefit more from regenerative treatments such as polynucleotides, or a carefully staged combination approach. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye vs Tear Trough Filler:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Understanding the difference between these treatments is key to achieving natural, balanced results.</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> focuses on improving skin quality - hydration, brightness, texture and fine lines. It is best suited to dark circles caused by thin skin or reduced circulation, crepey texture, and mild hollowing where volume replacement is not required.</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Tear trough filler</strong> replaces lost volume and restores structural support. It is more appropriate for significant volume loss creating a pronounced tear trough deformity.</span><br /><br /> </li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, the best results come from using both treatments strategically - restoring structure first, then improving skin quality - always guided by anatomy and individual need.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Safety Protocols:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Treating the under-eye area requires meticulous technique. Injection depth must be precise, product distribution must be even, and post-treatment care plays an important role in achieving optimal results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I use ultra-fine needles, a gentle injection technique, and carefully placed micro-deposits to allow smooth integration within the tissue. Detailed aftercare guidance is provided, including advice on lymphatic drainage where appropriate.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC</strong>, I remain up to date with current safety standards for periocular treatments and carry emergency equipment to manage the rare event of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The eye area is central to how we look, express emotion and connect with others. It deserves nothing less than a thoughtful, medically-led approach focused on safety, subtlety and long-term skin health.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 19:47:09','2026-03-02 19:47:09','3cce3555-c529-489c-8bcb-4d28cd9a4943'),
(1759,1759,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:47:34','2026-03-02 19:47:34','74aa7cd9-b05a-4712-8a83-e78e08573222'),
(1760,1760,1,'What is Jalupro Young Eye','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"What is Jalupro Young Eye\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Jalupro Young Eye\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"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=\\\"background-color:transparent;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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is why careful medical assessment and experience matter when treating the eye area.</span></p><p><span style=\\\"background-color:transparent;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, helping to minimise risks such as swelling, migration or vascular complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Just as importantly, medical training allows me to assess what the under-eye area truly needs. While Jalupro Young Eye 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 to address deeper structural volume loss. Others may benefit more from regenerative treatments such as polynucleotides, or a carefully staged combination approach. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye vs Tear Trough Filler:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Understanding the difference between these treatments is key to achieving natural, balanced results.</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> focuses on improving skin quality - hydration, brightness, texture and fine lines. It is best suited to dark circles caused by thin skin or reduced circulation, crepey texture, and mild hollowing where volume replacement is not required.</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Tear trough filler</strong> replaces lost volume and restores structural support. It is more appropriate for significant volume loss creating a pronounced tear trough deformity.</span><br /><br /> </li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, the best results come from using both treatments strategically - restoring structure first, then improving skin quality - always guided by anatomy and individual need.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Safety Protocols:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Treating the under-eye area requires meticulous technique. Injection depth must be precise, product distribution must be even, and post-treatment care plays an important role in achieving optimal results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I use ultra-fine needles, a gentle injection technique, and carefully placed micro-deposits to allow smooth integration within the tissue. Detailed aftercare guidance is provided, including advice on lymphatic drainage where appropriate.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC</strong>, I remain up to date with current safety standards for periocular treatments and carry emergency equipment to manage the rare event of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The eye area is central to how we look, express emotion and connect with others. It deserves nothing less than a thoughtful, medically-led approach focused on safety, subtlety and long-term skin health.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p><p> </p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 19:47:34','2026-03-02 19:47:34','66150e6c-5a96-46cd-b7ca-e34988ddbb6b'),
(1762,1762,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:48:05','2026-03-02 19:48:05','9e99638c-b8f9-453f-be90-8dcfda179f4e'),
(1764,1764,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:48:24','2026-03-02 19:48:24','a73e1453-e50d-486b-aa4a-f419e6913d2f'),
(1767,1767,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:48:38','2026-03-02 19:48:38','ab09249d-6665-4a3c-8369-c2d1bf338c73'),
(1768,1768,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 19:48:38','2026-03-02 19:48:38','98288c36-06d9-446a-9ba6-acda590e31cd'),
(1771,1771,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:49:05','2026-03-02 19:49:05','0ada3cd9-e793-4c59-8d25-a19f8f23b1f4'),
(1772,1772,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 19:49:05','2026-03-02 19:49:05','b8c3678c-9455-475d-be40-096eb0e3320f'),
(1775,1775,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:49:25','2026-03-02 19:49:25','e0e07b5f-0217-4bd7-a13b-a222349f0305'),
(1776,1776,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><p> </p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h3><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 19:49:25','2026-03-02 19:49:25','9ca4131e-9f27-41d0-8fa2-4494a75a6bb5'),
(1779,1779,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:49:43','2026-03-02 19:49:43','55466be8-af31-4f68-9dec-9564de2cefca'),
(1780,1780,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 19:49:43','2026-03-02 19:49:43','f5d7ca25-aa94-4c9e-99e6-af4ecc050f4c'),
(1783,1783,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 19:50:16','2026-03-02 19:50:16','a4084847-2f51-449d-a410-74ef171b7597'),
(1784,1784,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 19:50:16','2026-03-02 19:50:16','07bd0b1e-dc31-4492-8f36-10b236501158'),
(1787,1787,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\":\"020 1234 5678\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:020 1234 5678\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 20:03:22','2026-03-02 20:06:40','a6423e45-d3dc-4470-8ccd-397f39b23b16'),
(1788,1788,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 20:03:22','2026-03-02 20:03:22','6ef72031-70e1-4c26-ac72-5a5cf43a8a5f'),
(1789,1789,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\":\"020 1234 5678\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:020 1234 5678\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 20:03:22','2026-03-02 20:03:22','4a96df71-387f-49a4-be46-de795b7f318a'),
(1792,1792,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 20:04:28','2026-03-02 20:04:28','fe2f60da-d96d-4882-b5de-e61ffc687a90'),
(1793,1793,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\":\"020 1234 5678\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:020 1234 5678\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 20:04:28','2026-03-02 20:04:28','983b3755-a76e-44e8-a019-c55a3d0088c0'),
(1796,1796,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 20:06:25','2026-03-02 20:06:25','cc390ebf-489a-4c51-bd37-9af383b90f7e'),
(1797,1797,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\":\"020 1234 5678\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:020 1234 5678\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"fffaf7\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 20:06:25','2026-03-02 20:06:25','9205e275-3900-4c3b-8248-9321f1541305'),
(1800,1800,1,'Jalupro Young Eye','treatment-2-2','treatments/treatment-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 20:06:40','2026-03-02 20:06:40','624993f2-ce35-444c-981d-8531d35a3b83'),
(1801,1801,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\":\"020 1234 5678\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:020 1234 5678\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 20:06:40','2026-03-02 20:06:40','5c96929e-de0f-4d80-9efe-e74d1ca061de'),
(1802,1802,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1937]}',1,'2026-03-02 21:08:38','2026-03-02 21:42:37','64c7ff05-8494-4998-be20-007bf8809f4c'),
(1803,1803,1,'Skin Consultation Wirral By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:08:38','2026-03-02 21:12:52','a64676e1-de3d-4639-9b09-360b225bc639'),
(1804,1804,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','d3716dae-f335-430d-b033-b053743e3dbf'),
(1805,1805,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-02 21:08:38','2026-03-02 21:11:55','69c8356e-6a44-48c8-950f-2f7125f5bee9'),
(1806,1806,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-02 21:08:38','2026-03-02 21:11:55','54a52189-a79d-4d4f-932e-bd83cf1e6121'),
(1807,1807,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-02 21:08:38','2026-03-02 21:08:38','0616b5c5-649c-4652-b792-9eef1f657df7'),
(1808,1808,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-02 21:08:38','2026-03-02 21:11:55','84dc972c-0cc7-46de-8f00-61366ef24acb'),
(1809,1809,1,'Why Book a Skin Consultation?','why-choose-this-treatment',NULL,'{\"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-02 21:08:38','2026-03-02 21:16:57','2b73fa49-a174-46af-a41b-97f60b7a74e1'),
(1810,1810,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\":\"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. This allows me to create a clinically sound plan tailored specifically to you - because your skin is unique, and your treatments should be too. </span></p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:16:57','f00a122f-aa4b-4ad6-8f33-1a437f579e0a'),
(1811,1811,1,'Test Your Skin\'s Tolerance','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. It is a valuable step in building safe, effective, and genuinely personalised treatment programmes.</span></p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:16:57','8a80e674-c4b2-41f3-8adb-680f13f4a795'),
(1812,1812,1,'Get Your Personalised Plan','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Get Your Personalised Plan\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#000000;\\\">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 </span>Radiance Collection<span style=\\\"background-color:transparent;color:#000000;\\\"> programme or the </span>Skin Coach Club<span style=\\\"background-color:transparent;color:#000000;\\\">, offering structured, long-term skin support. You will always receive clear explanations, realistic expectations, and the space to move forward in a way that feels right for you.</span>\\n</p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:16:57','32c14a33-bfa1-4519-9743-308c4c0d656c'),
(1813,1813,1,'Ongoing Support','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 - I am here to guide you every step of the way, whether that is a check-in, a question, or reassurance when you need it most.</span></p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:16:57','0f5bc5f2-aad2-4b7b-add9-bc3b58295b9c'),
(1814,1814,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\":[1638],\"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\":[1640],\"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:08:38','2026-03-02 21:30:03','1e06c490-383e-459a-ab64-a4fd04c23594'),
(1815,1815,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD BOOK?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Will Benefit From a Skin Consultation?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Ideal for anyone struggling with their skin, who is ready to stop guessing and move forward with a personalised, evidence-led plan.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have:</strong></span></h4><p> </p><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></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><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>What Is Included:</strong></span></h4><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ In-depth discussion of your concerns and goals</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Advanced multi-layer skin analysis</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ pHformula SP Complex sensitivity test facial</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Personalised, evidence-led skin plan</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Optional Skin Coach Club or Radiance Collection pathway</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Ongoing support throughout your journey</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-02 21:08:38','2026-03-02 21:44:06','fd7b11cb-2f90-41c0-b7e9-fc5152be722a'),
(1816,1816,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:08:38','2026-03-02 21:08:38','28dfd184-f599-4471-be66-7ed989d3bbf2'),
(1817,1817,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 21:08:38','2026-03-02 21:29:26','7284ae79-c3bc-47b0-b15d-8b8bc4807709'),
(1818,1818,1,'Q: How many Jalupro Young Eye sessions will I need?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many Jalupro Young Eye sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients benefit from a course of 3 treatment sessions, spaced 3–4 weeks apart, to achieve optimal cumulative improvement. This staged approach allows gradual collagen support and strengthening of the delicate under-eye skin, with each session building on the last. Some patients with more pronounced dark circles or significant skin thinning may benefit from additional treatments. To maintain results, maintenance sessions are typically recommended every 6–9 months. A personalised treatment plan will always be discussed and agreed during your consultation, based on your individual anatomy, skin quality and treatment goals.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','e80942ec-1889-48ec-86de-44197193ec70'),
(1819,1819,1,'Q: Is Jalupro Young Eye painful?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Downtime is usually minimal. Immediately after treatment, small injection marks and mild swelling under the eyes are common. This typically settles within 24–48 hours. Some patients may experience minor bruising, which usually resolves within 3–5 days and is easily concealed with makeup. Most patients return to work and normal daily activities straight away. I recommend avoiding makeup for the remainder of the day, strenuous exercise for 24 hours, and excessive heat such as saunas or hot yoga for 48 hours.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','001f8237-6401-4127-9a8d-d99d93d810a7'),
(1820,1820,1,'Q: When will I see results from Jalupro Young Eye?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Some patients notice subtle improvements in hydration and brightness within 1–2 weeks as the hyaluronic acid integrates into the skin. More meaningful changes develop gradually over 4–6 weeks, as your skin uses the amino acids and peptides to support new collagen and elastin production. Peak results are typically seen 4–6 weeks after completing the recommended treatment course of 3 sessions. This gradual progression allows for natural-looking rejuvenation, without sudden or obvious change.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','aba76b56-0c85-4538-89fd-1e6e14ca359f'),
(1821,1821,1,'Q: How long do Jalupro Young Eye results last?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do Jalupro Young Eye results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Results typically last 6–9 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolism. Over time, collagen and elastin production naturally slows, which is why maintenance is recommended. To sustain optimal results, single maintenance treatments every 6–9 months are usually sufficient. Many patients find that maintenance may be required less frequently over time, as overall under-eye skin quality continues to improve with repeated treatments.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','e521b408-083b-4d75-9a45-e9b4281cdb9a'),
(1822,1822,1,'Q: What is the difference between Jalupro Young Eye and tear trough filler?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between Jalupro Young Eye and tear trough filler?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Jalupro Young Eye focuses on improving skin quality rather than adding volume. It enhances hydration, brightness, texture and fine lines through a non-volumising biorevitalisation approach. This makes it particularly suitable for dark circles, crepey skin and mild hollowing where structural volume replacement is not required. Tear trough filler, by contrast, is designed to replace lost volume. It uses a crosslinked hyaluronic acid gel to fill deeper hollows and restore structural support, making it more appropriate for significant volume loss. Jalupro Young Eye creates subtle, natural-looking improvement, while tear trough filler produces more noticeable structural correction. In some cases, the best results are achieved by using both treatments strategically - restoring structure where needed and improving skin quality for a balanced, refreshed outcome.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','57fb2be4-89f5-4c29-b869-4abfbe5c48f6'),
(1823,1823,1,'Q: Can Jalupro Young Eye treat dark circles?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can Jalupro Young Eye treat dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, Jalupro Young Eye can be very effective for certain types of dark circles - particularly those caused by thin, translucent skin where underlying blood vessels are visible, or by reduced microcirculation creating a bluish or purplish tone. In these cases, Jalupro works by strengthening and thickening the skin, helping to disguise visible vessels, while also supporting healthier circulation to reduce blood pooling. It is important to note that dark circles caused primarily by excess pigment (melanin) respond better to other treatments, such as targeted skincare, chemical peels or laser, rather than injectable biorevitalisation.\\nDuring your consultation, I will assess the underlying cause of your dark circles and advise on the most appropriate treatment plan for your skin.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','f9a39b7b-f07a-4493-a741-d30ad73901b3'),
(1824,1824,1,'Q: Is Jalupro Young Eye safe?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, when administered by a qualified medical professional. Jalupro Young Eye contains biocompatible ingredients, including non-crosslinked hyaluronic acid, amino acids and peptides, which are generally very well tolerated. As with any injectable treatment, side effects and complications are possible, but serious adverse events are rare when treatment is carried out correctly and with appropriate patient selection. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols. This includes a detailed medical history assessment, strict sterile technique, careful attention to injection depth and product placement, and appropriate post-treatment monitoring. Emergency equipment is always available to manage the unlikely event of a complication.\\nYour safety is always my priority, and suitability for treatment is carefully assessed during your consultation.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','7227e9b6-b271-4472-bbb0-8c15e3d6e805'),
(1825,1825,1,'Q: Can I combine Jalupro Young Eye with other treatments?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine Jalupro Young Eye with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. Jalupro Young Eye can be safely and effectively combined with other treatments as part of a tailored, comprehensive rejuvenation plan. Depending on your individual concerns, it may be used alongside tear trough filler to address both skin quality and structural volume, polynucleotides to support deeper cellular repair, anti-wrinkle treatments to soften expression lines, or skin boosters to improve hydration and quality across the rest of the face.\\nThe most appropriate combination and treatment sequence will always be discussed during your consultation, based on your anatomy, skin quality and aesthetic goals.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','29e23807-714d-466b-b366-8ec81f435cb7'),
(1826,1826,1,'Q: What skincare should I use after Jalupro Young Eye?','q-what-skincare-should-i-use-after-jalupro-young-eye',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The under-eye area can be sensitive after treatment, so gentle aftercare is important. Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. It is usually best to 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 and healing. 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.\\nYou will be given detailed aftercare instructions, and I may recommend appropriate medical-grade eye care products, such as those from pHformula, to help optimise and maintain your results.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','a29dadb8-1e3b-4153-b6d1-b2719d06a4bb'),
(1827,1827,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:08:38','2026-03-02 21:11:55','d7ed5f82-12a2-405a-a49c-4ef64b9a6221'),
(1828,1828,1,'Jalupro Young Eye','treatment-2-2-2','treatments/treatment-2-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','d679bc75-5c22-45ed-88b5-1ffdaa4528e5'),
(1829,1829,1,'Jalupro Young Eye Wirral Targeted Under-Eye Rejuvenation by Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Jalupro Young Eye Wirral Targeted Under-Eye Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"da1cef0a-85ef-4a87-845c-ae060c5f178a\":\"Doctor-led periocular skin booster | Reduces dark circles, fine lines &amp; tired eyes | Non-volumising formula\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','d02f8b4a-4525-432c-97eb-602342b1484b'),
(1830,1830,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','d346928d-82bc-4903-9e2e-ca1051b1466d'),
(1831,1831,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-02 21:08:38','2026-03-02 21:08:38','da8f3966-a5ef-4920-b304-4e2d6be74c72'),
(1832,1832,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 min\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','229d58c5-298f-4a9e-92f3-b03643819dc9'),
(1833,1833,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-02 21:08:38','2026-03-02 21:08:38','d1b15c3d-6b3f-4710-b39f-5df06d08cb82'),
(1834,1834,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\":\"4-6 months\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','451ce831-637b-4a5a-9798-f9ac29093b00'),
(1835,1835,1,'Why Choose Jalupro Young Eye?','why-choose-this-treatment',NULL,'{\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Jalupro Young Eye?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>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. </p><p> </p><p>Jalupro Young Eye is a skin-boosting treatment specifically designed for use under the eyes, where the skin is particularly delicate. It works by improving hydration, elasticity and overall skin quality, offering visible improvement without the heaviness or risks associated with traditional tear trough filler.</p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','b0c15eb5-229f-4565-ac22-1164dd3a7d98'),
(1836,1836,1,'Non-Volumising Formula','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Volumising Formula\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Unlike traditional fillers that add volume and can sometimes leave the under-eye area looking puffy or heavy, Jalupro Young Eye focuses purely on improving skin quality. The beautiful blend of non-crosslinked hyaluronic acid, amino acids and peptides, works to hydrate, brighten and strengthen delicate under-eye skin, while also helping to reduce the appearance of under-eye pigmentation, without altering structure or adding volume.</p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','45b7b3d4-852f-4395-8c34-e5353beb954b'),
(1837,1837,1,'Targets Root Causes','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Targets Root Causes\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Dark circles often result from a combination of thin, translucent skin revealing underlying blood vessels, reduced microcirculation, and increased pigment under the eyes.<br />Jalupro Young Eye works across all three by supporting skin strength and thickness, improving microcirculation, and encouraging healthy cellular turnover. By addressing the underlying causes rather than simply masking them, this multi-mechanism approach delivers meaningful improvement in an area where topical eye products are often limited.</p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','3a982c1f-7768-411e-818e-1a62e32b1938'),
(1838,1838,1,'Gentle Yet Effective','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Gentle Yet Effective\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>The delicate under-eye area requires a careful, specialist approach. Jalupro Young Eye is specifically formulated for this sensitive area, using low-molecular-weight hyaluronic acid that integrates gently into the skin, amino acids that support collagen production without unnecessary inflammation, and peptides that signal cellular repair. The result is visible improvement in skin quality without the complications sometimes seen with heavier products.</p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','72040d42-b35a-4dc6-ab7b-f715c1ae5c49'),
(1839,1839,1,'Natural, Subtle Results','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural, Subtle Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>Results develop gradually over four to six weeks 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. People often comment that you look well, without being able to pinpoint why. This approach reflects my philosophy of aesthetics: refreshed, not changed - subtle improvement that still looks entirely like you.</p>\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','69a0dcb2-e711-47be-9cae-1cabd1d4ef41'),
(1840,1840,1,'What is Jalupro Young Eye','what-is-treatment-3',NULL,'{\"a8216afd-a278-431d-9241-249a8482c463\":\"What is Jalupro Young Eye\",\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What is Jalupro Young Eye\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p>Jalupro Young Eye is a targeted biorevitalising injectable, specifically designed for the delicate periocular area. It works to improve under-eye skin quality, brightness and texture without adding volume, making it an ideal option for patients seeking subtle, natural-looking rejuvenation rather than structural change.</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><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, migration and an unnatural appearance.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> takes a fundamentally different approach. Rather than altering structure, it focuses on improving the quality and resilience of the tissue itself, across the full periorbital area — not just the under-eye.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>The Formula:</strong></span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Non-crosslinked hyaluronic acid</strong> provides immediate hydration without adding bulk. It attracts and binds water within the skin, improving plumpness and texture while remaining light and natural.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Eight amino acids</strong> act as the essential building blocks required by fibroblasts to produce collagen and elastin. Delivering these directly into the dermis supports tissue repair at a cellular level.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\"><strong>Biomimetic peptides</strong> signal skin cells to enhance collagen production and improve microcirculation, helping to address both thinning skin and dark circles related to blood pooling.</span></p><p><span style=\\\"color:hsl(0,0%,100%);\\\">This carefully balanced formulation is what makes Jalupro Young Eye uniquely suited to the delicate periocular region.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>How It Works:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During a 30-minute treatment, I place precise micro-injections across the lower eyelid and eye-contour region using ultra-fine needles. The product integrates gently into the tissue, delivering its active components exactly where they are needed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the following 4 to 6 weeks, several processes take place:</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Fibroblasts use the amino acids to generate new collagen and elastin, strengthening and thickening the skin.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Peptides support healthier microcirculation, reducing the appearance of dark circles caused by visible underlying vessels.</span><br /><br /> </li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Hyaluronic acid improves hydration, smoothing crepey texture and enhancing skin suppleness.</span></li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The Result:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Brighter, more rested-looking eyes.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Reduced dark circles through improved circulation and stronger skin.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Softened fine lines from enhanced hydration and collagen support.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">A smoother, healthier eye contour that looks refreshed - never overdone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For optimal cumulative improvement, I typically recommend a course of 3 sessions spaced 3 to 4 weeks apart, followed by maintenance treatments every 6 to 9 months, depending on individual skin needs.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[1638],\"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=\\\"background-color:transparent;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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is why careful medical assessment and experience matter when treating the eye area.</span></p><p><span style=\\\"background-color:transparent;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, helping to minimise risks such as swelling, migration or vascular complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Just as importantly, medical training allows me to assess what the under-eye area truly needs. While Jalupro Young Eye 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 to address deeper structural volume loss. Others may benefit more from regenerative treatments such as polynucleotides, or a carefully staged combination approach. Making these distinctions requires clinical judgement, not a one-size-fits-all mindset.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye vs Tear Trough Filler:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Understanding the difference between these treatments is key to achieving natural, balanced results.</span></p><ul><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Jalupro Young Eye</strong> focuses on improving skin quality - hydration, brightness, texture and fine lines. It is best suited to dark circles caused by thin skin or reduced circulation, crepey texture, and mild hollowing where volume replacement is not required.</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Tear trough filler</strong> replaces lost volume and restores structural support. It is more appropriate for significant volume loss creating a pronounced tear trough deformity.</span><br /><br /> </li></ul><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In some cases, the best results come from using both treatments strategically - restoring structure first, then improving skin quality - always guided by anatomy and individual need.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Safety Protocols:</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Treating the under-eye area requires meticulous technique. Injection depth must be precise, product distribution must be even, and post-treatment care plays an important role in achieving optimal results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I use ultra-fine needles, a gentle injection technique, and carefully placed micro-deposits to allow smooth integration within the tissue. Detailed aftercare guidance is provided, including advice on lymphatic drainage where appropriate.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC</strong>, I remain up to date with current safety standards for periocular treatments and carry emergency equipment to manage the rare event of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The eye area is central to how we look, express emotion and connect with others. It deserves nothing less than a thoughtful, medically-led approach focused on safety, subtlety and long-term skin health.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[1640],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"I have struggled with hereditary dark circles my entire adult life and tried every eye cream imaginable. Jalupro Young Eye 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\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Jalupro Young Eye\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"R.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Under-Eye Treatment?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">The periocular area is one of the most delicate regions of the face and requires medical expertise, anatomical precision and appropriate treatment selection. As a GP-led clinic, under-eye treatments are performed with a detailed understanding of facial anatomy and skin physiology, supporting safe decision-making and natural results. All treatments are carried out by a fully qualified medical doctor (MBChB (Hons), MRCGP) with over 10 years of clinical experience and advanced periocular injection training.</span></p><p> </p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','0ae7517b-ce8d-4b95-822e-00ebd422de3b'),
(1841,1841,1,'Who Should Consider Jalupro Young Eye?','who-should-consider-this-treatment',NULL,'{\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Jalupro Young Eye?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Jalupro Young Eye is well-suited to patients seeking subtle, natural-looking under-eye rejuvenation through improvements in skin quality rather than volume replacement.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have hereditary dark circles</strong> related to thin under-eye skin, where underlying blood vessels are more visible. Jalupro Young Eye works by strengthening the skin and supporting healthier microcirculation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have crepey under-eye texture</strong> that makes the area appear tired or aged. The collagen-supporting formula helps improve skin thickness and smoothness over time.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have mild hollowing</strong> but are worried about puffiness or an unnatural appearance with tear trough filler. Jalupro Young Eye improves skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You look perpetually tired</strong> despite adequate sleep. Improved hydration and brightness can help the eye area appear fresher and more rested.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are considering preventative treatment</strong> in your 30s-40s to support under-eye skin quality before more significant ageing changes develop.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for tear trough filler</strong> due to anatomy, previous experiences, or a personal preference for non-volumising treatments.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','c5e53cc2-82c4-4a59-9472-4114ba18b081'),
(1842,1842,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:08:38','2026-03-02 21:08:38','dd0dcb06-8adb-45ce-b778-2a9be48ff301'),
(1843,1843,1,'Frequently Asked Questions','frequently-asked-questions',NULL,'{\"96d1abae-7af3-4774-9e8c-ee2ca0c789ec\":\"Frequently Asked Questions\",\"13b81fd6-015d-4533-92c8-003014ed992f\":\"Your questions about Jalupro Young Eye under-eye treatment answered by Dr Rachel.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','3dd8c6e0-6026-4ae6-ab41-63d18e6cd7db'),
(1844,1844,1,'Q: How many Jalupro Young Eye sessions will I need?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many Jalupro Young Eye sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients benefit from a course of 3 treatment sessions, spaced 3–4 weeks apart, to achieve optimal cumulative improvement. This staged approach allows gradual collagen support and strengthening of the delicate under-eye skin, with each session building on the last. Some patients with more pronounced dark circles or significant skin thinning may benefit from additional treatments. To maintain results, maintenance sessions are typically recommended every 6–9 months. A personalised treatment plan will always be discussed and agreed during your consultation, based on your individual anatomy, skin quality and treatment goals.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','305c62bf-daa0-4415-a379-c1bda845e1f8'),
(1845,1845,1,'Q: Is Jalupro Young Eye painful?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye painful?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Downtime is usually minimal. Immediately after treatment, small injection marks and mild swelling under the eyes are common. This typically settles within 24–48 hours. Some patients may experience minor bruising, which usually resolves within 3–5 days and is easily concealed with makeup. Most patients return to work and normal daily activities straight away. I recommend avoiding makeup for the remainder of the day, strenuous exercise for 24 hours, and excessive heat such as saunas or hot yoga for 48 hours.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','7804ec30-e48f-4947-8616-9190797c5f5f'),
(1846,1846,1,'Q: When will I see results from Jalupro Young Eye?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Some patients notice subtle improvements in hydration and brightness within 1–2 weeks as the hyaluronic acid integrates into the skin. More meaningful changes develop gradually over 4–6 weeks, as your skin uses the amino acids and peptides to support new collagen and elastin production. Peak results are typically seen 4–6 weeks after completing the recommended treatment course of 3 sessions. This gradual progression allows for natural-looking rejuvenation, without sudden or obvious change.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','36920e4c-a30d-49a4-8c48-741a44a7674b'),
(1847,1847,1,'Q: How long do Jalupro Young Eye results last?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do Jalupro Young Eye results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Results typically last 6–9 months, depending on factors such as age, baseline skin quality, lifestyle and individual metabolism. Over time, collagen and elastin production naturally slows, which is why maintenance is recommended. To sustain optimal results, single maintenance treatments every 6–9 months are usually sufficient. Many patients find that maintenance may be required less frequently over time, as overall under-eye skin quality continues to improve with repeated treatments.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','cda4f8c6-ee37-46d9-8ce2-e45a85467b93'),
(1848,1848,1,'Q: What is the difference between Jalupro Young Eye and tear trough filler?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between Jalupro Young Eye and tear trough filler?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Jalupro Young Eye focuses on improving skin quality rather than adding volume. It enhances hydration, brightness, texture and fine lines through a non-volumising biorevitalisation approach. This makes it particularly suitable for dark circles, crepey skin and mild hollowing where structural volume replacement is not required. Tear trough filler, by contrast, is designed to replace lost volume. It uses a crosslinked hyaluronic acid gel to fill deeper hollows and restore structural support, making it more appropriate for significant volume loss. Jalupro Young Eye creates subtle, natural-looking improvement, while tear trough filler produces more noticeable structural correction. In some cases, the best results are achieved by using both treatments strategically - restoring structure where needed and improving skin quality for a balanced, refreshed outcome.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','511b05f7-e3e9-43b6-a507-9857c170d5a3'),
(1849,1849,1,'Q: Can Jalupro Young Eye treat dark circles?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can Jalupro Young Eye treat dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, Jalupro Young Eye can be very effective for certain types of dark circles - particularly those caused by thin, translucent skin where underlying blood vessels are visible, or by reduced microcirculation creating a bluish or purplish tone. In these cases, Jalupro works by strengthening and thickening the skin, helping to disguise visible vessels, while also supporting healthier circulation to reduce blood pooling. It is important to note that dark circles caused primarily by excess pigment (melanin) respond better to other treatments, such as targeted skincare, chemical peels or laser, rather than injectable biorevitalisation.\\nDuring your consultation, I will assess the underlying cause of your dark circles and advise on the most appropriate treatment plan for your skin.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','a1fca469-5496-4c05-86b5-8c01bef3b8bd'),
(1850,1850,1,'Q: Is Jalupro Young Eye safe?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is Jalupro Young Eye safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes, when administered by a qualified medical professional. Jalupro Young Eye contains biocompatible ingredients, including non-crosslinked hyaluronic acid, amino acids and peptides, which are generally very well tolerated. As with any injectable treatment, side effects and complications are possible, but serious adverse events are rare when treatment is carried out correctly and with appropriate patient selection. As a GMC-registered GP and member of CMAC, I follow comprehensive medical safety protocols. This includes a detailed medical history assessment, strict sterile technique, careful attention to injection depth and product placement, and appropriate post-treatment monitoring. Emergency equipment is always available to manage the unlikely event of a complication.\\nYour safety is always my priority, and suitability for treatment is carefully assessed during your consultation.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','d46e9513-1480-444c-8d18-4b5d6fe03c63'),
(1851,1851,1,'Q: Can I combine Jalupro Young Eye with other treatments?','is-advanced-skin-rejuvenation-suitable-for-all-skin-types',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine Jalupro Young Eye with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. Jalupro Young Eye can be safely and effectively combined with other treatments as part of a tailored, comprehensive rejuvenation plan. Depending on your individual concerns, it may be used alongside tear trough filler to address both skin quality and structural volume, polynucleotides to support deeper cellular repair, anti-wrinkle treatments to soften expression lines, or skin boosters to improve hydration and quality across the rest of the face.\\nThe most appropriate combination and treatment sequence will always be discussed during your consultation, based on your anatomy, skin quality and aesthetic goals.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','9b746060-3697-4f63-b31a-7f432259be8f'),
(1852,1852,1,'Q: What skincare should I use after Jalupro Young Eye?','q-what-skincare-should-i-use-after-jalupro-young-eye',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after Jalupro Young Eye?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The under-eye area can be sensitive after treatment, so gentle aftercare is important. Avoid touching or rubbing the area for 24 hours. Makeup should be avoided for the rest of the day. It is usually best to 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 and healing. 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.\\nYou will be given detailed aftercare instructions, and I may recommend appropriate medical-grade eye care products, such as those from pHformula, to help optimise and maintain your results.\"}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','b2a98733-3426-48d1-ba7d-d011a8e80605'),
(1853,1853,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\":\"020 1234 5678\",\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\":\"tel:020 1234 5678\",\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\":\"ebd5cb\",\"209bc342-909a-4162-b9dc-50fad3dd2f69\":true}',1,'2026-03-02 21:08:38','2026-03-02 21:08:38','11f5f9d6-8ca3-449f-9f0b-ed07d8b05cd8'),
(1862,1862,1,'Skin Consultation Wirral','treatment-2-2-2','treatments/treatment-2-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:11:55','2026-03-02 21:11:55','c00f9008-fcd9-4054-836e-1515f8f0f6b9'),
(1863,1863,1,'Skin Consultation Wirral By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:11:55','2026-03-02 21:11:55','e2741fb1-ecb7-4422-b369-613a9b2d01a9'),
(1864,1864,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:11:55','2026-03-02 21:11:55','ad9c6093-fb13-4690-b8f9-7945d627da44'),
(1865,1865,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-02 21:11:55','2026-03-02 21:11:55','e0a7360f-d599-4b0e-b6f0-a0f304fe0887'),
(1866,1866,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-02 21:11:55','2026-03-02 21:11:55','8c8dcab0-249a-4bb7-be8d-4e9bc3d8239b'),
(1867,1867,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-02 21:11:55','2026-03-02 21:11:55','9b4c3ea7-f251-4f7d-b689-e880d0a7f8c5'),
(1868,1868,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-02 21:11:55','2026-03-02 21:11:55','954e95fe-a01f-4d3b-a1db-61cbbea42246'),
(1869,1869,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:11:55','2026-03-02 21:11:55','a293979c-fd35-4661-8dd0-6cb9560bed2c'),
(1872,1872,1,'Skin Consultation Wirral','treatment-2-2-2','treatments/treatment-2-2-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:12:20','2026-03-02 21:12:20','dac017c9-5fa7-4aaf-99d9-f1c1f1c0b2ef'),
(1873,1873,1,'Skin Consultation Wirral By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:12:20','2026-03-02 21:12:20','240be0b3-a4ac-4f0a-8d0b-a868eedf4dcd'),
(1874,1874,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:12:34','2026-03-02 21:12:34','b71d046c-1d08-444d-a08a-39b55f2a98d8'),
(1877,1877,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:12:52','2026-03-02 21:12:52','656d9e2c-9470-4509-9aa0-d02fde9f0870'),
(1878,1878,1,'Skin Consultation Wirral By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:12:52','2026-03-02 21:12:52','b1c578d8-5641-43e7-90ee-3c9798e768bc'),
(1885,1885,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:16:57','2026-03-02 21:16:57','fb5a592b-51b8-4cb6-aef2-392f18fc23d3'),
(1886,1886,1,'Why Book a Skin Consultation?','why-choose-this-treatment',NULL,'{\"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-02 21:16:58','2026-03-02 21:16:58','71347bc9-9ead-473e-bae1-53a805894074'),
(1887,1887,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\":\"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. This allows me to create a clinically sound plan tailored specifically to you - because your skin is unique, and your treatments should be too. </span></p>\"}',1,'2026-03-02 21:16:58','2026-03-02 21:16:58','9cb607c4-2021-45ec-9d1d-845c7161f9a5'),
(1888,1888,1,'Test Your Skin\'s Tolerance','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. It is a valuable step in building safe, effective, and genuinely personalised treatment programmes.</span></p>\"}',1,'2026-03-02 21:16:58','2026-03-02 21:16:58','d1c69b5a-9965-4e81-baba-506c02959a52'),
(1889,1889,1,'Get Your Personalised Plan','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Get Your Personalised Plan\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#000000;\\\">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 </span>Radiance Collection<span style=\\\"background-color:transparent;color:#000000;\\\"> programme or the </span>Skin Coach Club<span style=\\\"background-color:transparent;color:#000000;\\\">, offering structured, long-term skin support. You will always receive clear explanations, realistic expectations, and the space to move forward in a way that feels right for you.</span>\\n</p>\"}',1,'2026-03-02 21:16:58','2026-03-02 21:16:58','1bc9a6aa-a1f5-41da-8501-61c58ff2e97b'),
(1890,1890,1,'Ongoing Support','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 - I am here to guide you every step of the way, whether that is a check-in, a question, or reassurance when you need it most.</span></p>\"}',1,'2026-03-02 21:16:58','2026-03-02 21:16:58','c5281d4d-34c8-4513-b214-3cc734b74e36'),
(1905,1905,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:29:26','2026-03-02 21:29:26','301cbd06-41cb-46c2-8b79-7f9fc599616d'),
(1906,1906,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:29:26','2026-03-02 21:29:26','e5e1de36-df53-4c6e-88b5-444a663c8934'),
(1907,1907,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:29:26','2026-03-02 21:29:26','6846085d-19d2-4c80-84c2-9c02be8c1f95'),
(1908,1908,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:29:27','2026-03-02 21:29:27','ecfea501-9dce-459a-a4d5-d251349d34ba'),
(1909,1909,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:29:27','2026-03-02 21:29:27','834526cb-cdbd-475a-a54c-71e7653c65f4'),
(1910,1910,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:29:27','2026-03-02 21:29:27','ed542011-2820-48c2-b67d-4d762d2684af'),
(1911,1911,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:29:27','2026-03-02 21:29:27','f086e10b-ec32-44f1-bc41-5937a72bae49'),
(1912,1912,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:29:27','2026-03-02 21:29:27','3d9628d7-3eb1-471e-a7ff-359efef274f1'),
(1913,1913,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:29:27','2026-03-02 21:29:27','54b05393-6f55-4b3c-add1-34d5545c97bb'),
(1914,1914,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:29:27','2026-03-02 21:29:27','c2c05446-c692-4d74-acc4-222e1c75515f'),
(1915,1915,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:29:27','2026-03-02 21:29:27','21643eaa-bcf3-41bd-87d6-fd55729f8b99'),
(1916,1916,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:#000000;\\\">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\":[1638],\"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\":[1640],\"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:29:27','2026-03-02 21:29:27','82e6cbb1-6279-482a-9f1c-04f885057445'),
(1917,1917,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD BOOK?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Will Benefit From a Skin Consultation?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Ideal for anyone struggling with their skin, who is ready to stop guessing and move forward with a personalised, evidence-led plan.</span></p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have:</strong></span></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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Sensitive or compromised skin </strong>that requires a careful, medically informed approach</span></p><h3><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>What Is Included:</strong></span></h3><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ In-depth discussion of your concerns and goals</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Advanced multi-layer skin analysis</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ pHformula SP Complex sensitivity test facial</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Personalised, evidence-led skin plan</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Optional Skin Coach Club or Radiance Collection pathway</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Ongoing support throughout your journey</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 21:29:27','2026-03-02 21:29:27','ff591dcc-4508-4e68-bbb0-b9a7116e8931'),
(1918,1918,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 21:29:27','2026-03-02 21:29:27','4feb84f5-8109-4de4-80bd-0f69bfbcc7de'),
(1919,1919,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:29:27','2026-03-02 21:29:27','f29683fc-457e-42e2-a7fb-f4611c6f3384'),
(1920,1920,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:29:27','2026-03-02 21:29:27','f318da6a-79be-4bcd-aa29-d287732e376f'),
(1921,1921,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:29:27','2026-03-02 21:29:27','b8737f70-b650-4cce-b2aa-4bd62b637751'),
(1922,1922,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:29:27','2026-03-02 21:29:27','86730a99-68d3-4c8d-9104-aab4cbea2ccf'),
(1923,1923,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:29:27','2026-03-02 21:29:27','0e4d343a-8446-4311-af96-3a94d1afc175'),
(1924,1924,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:29:27','2026-03-02 21:29:27','4ad4c93e-4eaf-417e-b022-540fdd8e6655'),
(1925,1925,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:29:27','2026-03-02 21:29:27','a9ec42eb-0d4a-4083-8c72-43a5ab61fd10'),
(1926,1926,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:29:27','2026-03-02 21:29:27','75e84eba-ec47-476c-8a58-cdfc92a5adb1'),
(1927,1927,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:29:27','2026-03-02 21:29:27','e2ef3bd9-1523-4451-8c55-40ebacb90da3'),
(1928,1928,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:29:27','2026-03-02 21:29:27','d9114b0d-b343-4005-ab54-f2697fc4c537'),
(1931,1931,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:30:03','2026-03-02 21:30:03','b922b55b-499d-471c-b094-a0850b2a4564'),
(1932,1932,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\":[1638],\"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\":[1640],\"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:30:03','2026-03-02 21:30:03','14893c14-ef6a-4c00-b263-785620916d73'),
(1935,1935,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1503]}',1,'2026-03-02 21:31:38','2026-03-02 21:31:38','5f662c46-c2e9-4bb5-9dbc-68d3e2dade25'),
(1936,1936,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD BOOK?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Will Benefit From a Skin Consultation?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Ideal for anyone struggling with their skin, who is ready to stop guessing and move forward with a personalised, evidence-led plan.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have:</strong></span></h4><p> </p><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></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><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>What Is Included:</strong></span></h4><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ In-depth discussion of your concerns and goals</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Advanced multi-layer skin analysis</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ pHformula SP Complex sensitivity test facial</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Personalised, evidence-led skin plan</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Optional Skin Coach Club or Radiance Collection pathway</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Ongoing support throughout your journey</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1749]}',1,'2026-03-02 21:31:38','2026-03-02 21:31:38','c9562919-d164-47cd-8658-a2791f101383'),
(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'),
(1943,1943,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:42:37','2026-03-02 21:42:37','56e4e326-e875-4ad3-90f0-57cecade0499'),
(1944,1944,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1937]}',1,'2026-03-02 21:42:37','2026-03-02 21:42:37','ff75aacc-d521-4449-a2ee-fd08a34bb696'),
(1945,1945,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:42:37','2026-03-02 21:42:37','5cdcc422-6c62-4de5-9262-595c9f7665ff'),
(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'),
(1949,1949,1,'Skin Consultation Wirral','skin-consultation','treatments/skin-consultation','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1937]}',1,'2026-03-02 21:44:06','2026-03-02 21:44:06','227e0363-ab4e-4c25-a438-326d6ad8c35a'),
(1950,1950,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD BOOK?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Will Benefit From a Skin Consultation?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Ideal for anyone struggling with their skin, who is ready to stop guessing and move forward with a personalised, evidence-led plan.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have:</strong></span></h4><p> </p><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></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><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>What Is Included:</strong></span></h4><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ In-depth discussion of your concerns and goals</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Advanced multi-layer skin analysis</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ pHformula SP Complex sensitivity test facial</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Personalised, evidence-led skin plan</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Optional Skin Coach Club or Radiance Collection pathway</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Ongoing support throughout your journey</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-02 21:44:06','2026-03-02 21:44:06','6accefdf-89ec-4fa1-af10-13e8c3063968'),
(1951,1951,1,'Anti-Wrinkle Injections On The Wirral','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 21:45:13','2026-03-02 21:54:33','82fddac9-38bc-40aa-99ef-4fd5780be67e'),
(1952,1952,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections On The Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:45:13','2026-03-02 21:54:33','c6407b1e-3c3d-442b-926a-77e05933a939'),
(1953,1953,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','40ff44b6-e2be-431d-bd4f-22cab6ea0148'),
(1954,1954,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-02 21:45:13','2026-03-02 21:54:33','169f8bfb-99ac-424c-92f5-2e60c3aabb27'),
(1955,1955,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-02 21:45:13','2026-03-02 21:54:33','5d82e636-acd0-4b41-9b87-bd7c16ba0b73'),
(1956,1956,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-02 21:45:13','2026-03-02 21:54:33','cb55cebd-c086-468b-9670-aea0df94423c'),
(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\":\"Up to 12 weeks\"}',1,'2026-03-02 21:45:13','2026-03-02 21:54:33','23d03066-7162-417f-80f9-62ad09d000d7'),
(1958,1958,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"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-02 21:45:13','2026-03-02 21:54:33','936b33fa-4abc-45da-9f14-1c45d89e2175'),
(1959,1959,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 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-02 21:45:13','2026-03-02 21:54:33','3c956dae-2659-4fe6-88bd-67410003fc8f'),
(1960,1960,1,'Subtle & Safe','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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-02 21:45:13','2026-03-02 21:54:33','9bc05972-ec04-4f52-b97a-a56d4475934a'),
(1961,1961,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 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-02 21:45:13','2026-03-02 21:54:33','f97be819-343c-40f3-8849-88856dc065d2'),
(1962,1962,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 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-02 21:45:13','2026-03-02 21:54:33','1af4c5c9-97a3-4970-ba30-80eba467ad7d'),
(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 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 21:45:13','2026-03-02 22:03:47','c46dcb70-f065-45dc-9690-9ea7fa6f6ed5'),
(1965,1965,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','6f68b19c-a252-4aec-bc90-ba6f37d7d6da'),
(1966,1966,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 21:45:13','2026-03-02 21:45:13','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\":\"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','fea70c73-8295-4a38-8b36-0895c4358a9f'),
(1978,1978,1,'Skin Consultation Wirral','skin-consultation-2','treatments/skin-consultation-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[1937]}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','79f5e7d3-8889-42e4-a0d9-64c720cfc9a9'),
(1979,1979,1,'Skin Consultation Wirral By Dr Rachel','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Consultation Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','a35cd65c-819a-413c-8d23-50f566784268'),
(1980,1980,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','524d8124-f49e-47d6-81cd-12e940355eb9'),
(1981,1981,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-02 21:45:13','2026-03-02 21:45:13','9fac4f49-1ad3-4d48-8688-dd5f47b95642'),
(1982,1982,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-02 21:45:13','2026-03-02 21:45:13','e23121cc-b319-4300-8671-b01cece0ff06'),
(1983,1983,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-02 21:45:13','2026-03-02 21:45:13','9229d1a3-cb5a-4e3f-9152-c773eff0950c'),
(1984,1984,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-02 21:45:13','2026-03-02 21:45:13','1a824861-598f-4787-9d22-68221364529c'),
(1985,1985,1,'Why Book a Skin Consultation?','why-choose-this-treatment',NULL,'{\"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-02 21:45:13','2026-03-02 21:45:13','a674d24e-9c95-4dfb-be18-9e6c65345878'),
(1986,1986,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\":\"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. This allows me to create a clinically sound plan tailored specifically to you - because your skin is unique, and your treatments should be too. </span></p>\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','c5cc13c8-4143-4ba7-adc1-6bdb99e7d550'),
(1987,1987,1,'Test Your Skin\'s Tolerance','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. It is a valuable step in building safe, effective, and genuinely personalised treatment programmes.</span></p>\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','c2543936-063f-4cb5-a3ad-f2fd62619f99'),
(1988,1988,1,'Get Your Personalised Plan','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Get Your Personalised Plan\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p>\\n    <span style=\\\"background-color:transparent;color:#000000;\\\">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 </span>Radiance Collection<span style=\\\"background-color:transparent;color:#000000;\\\"> programme or the </span>Skin Coach Club<span style=\\\"background-color:transparent;color:#000000;\\\">, offering structured, long-term skin support. You will always receive clear explanations, realistic expectations, and the space to move forward in a way that feels right for you.</span>\\n</p>\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','cc96aae3-d1a9-4d16-b2ff-22149d4a19a8'),
(1989,1989,1,'Ongoing Support','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 - I am here to guide you every step of the way, whether that is a check-in, a question, or reassurance when you need it most.</span></p>\"}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','e1ccd250-75b7-4be4-817b-da6184d818d1'),
(1990,1990,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','d7447d88-6545-4435-a91a-4554d6664593'),
(1991,1991,1,'Who Will Benefit From a Skin Consultation?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD BOOK?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Will Benefit From a Skin Consultation?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Ideal for anyone struggling with their skin, who is ready to stop guessing and move forward with a personalised, evidence-led plan.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>This Consultation Is For You If You Have:</strong></span></h4><p> </p><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Acne scarring or uneven skin texture</strong> that needs expert guidance and treatment</span></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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Dull, fatigued skin </strong>that has not improved despite investment in skincare</span></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><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>What Is Included:</strong></span></h4><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ In-depth discussion of your concerns and goals</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Advanced multi-layer skin analysis</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ pHformula SP Complex sensitivity test facial</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Personalised, evidence-led skin plan</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Optional Skin Coach Club or Radiance Collection pathway</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Ongoing support throughout your journey</span></p><p> </p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-02 21:45:13','2026-03-02 21:45:13','963a48ab-0e59-4fc6-9331-3b252013334e'),
(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'),
(1993,1993,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 21:45:13','2026-03-02 21:45:13','6bdbf76f-b0da-4ac6-b6bf-112cd8b7e931'),
(1994,1994,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','534c0eac-8215-43dd-8440-4a085a9a008e'),
(1995,1995,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','69b246e4-556c-4107-97f8-dba08f2bb200'),
(1996,1996,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','178c6055-123c-463a-8a60-25cf3e5364f1'),
(1997,1997,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','c72df572-aaa9-4283-b225-ba7fe0f2d050'),
(1998,1998,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','e8c8fc34-6830-4d6f-8c51-12f24c50e240'),
(1999,1999,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','2c3fd695-a8c4-47c3-a330-42b69c0cbcc1'),
(2000,2000,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','bbfd858d-81ad-433e-8181-c26720e5cc2f'),
(2001,2001,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','014b1a59-2aab-4da8-806c-28eae55df916'),
(2002,2002,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','62540709-c1e8-4e99-a02b-8d8c8f99b572'),
(2003,2003,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','2348eea3-190b-431e-8738-2a3efb48195c'),
(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 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 21:54:33','2026-03-02 22:05:29','df13dab5-602f-4fd9-b559-2276af02b2fe'),
(2021,2021,1,'Anti-Wrinkle Injections On The Wirral','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 21:54:33','2026-03-02 21:54:33','c540dd16-9f81-4507-9cbf-9e2c966bf39f'),
(2022,2022,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections On The Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 21:54:33','2026-03-02 21:54:33','ffa3d5b1-73e6-46b8-afb3-d112e29d7644'),
(2023,2023,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 21:54:33','2026-03-02 21:54:33','8d9d1576-e293-49e0-a8d2-503dc403453c'),
(2024,2024,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-02 21:54:33','2026-03-02 21:54:33','ece4b673-7db4-4416-9301-0e8796a3a5a3'),
(2025,2025,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-02 21:54:33','2026-03-02 21:54:33','cc7bda95-46d5-4cc3-95bc-29bc654a97fc'),
(2026,2026,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-02 21:54:33','2026-03-02 21:54:33','33936154-dea2-4a7f-9177-85df09bb8e8b'),
(2027,2027,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-02 21:54:33','2026-03-02 21:54:33','b880fa8e-93ce-4796-8773-cab94f2456c2'),
(2028,2028,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"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-02 21:54:33','2026-03-02 21:54:33','0909b718-57f5-4643-88d4-04a3cc32f9bc'),
(2029,2029,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 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-02 21:54:34','2026-03-02 21:54:34','a768d508-9e4b-438f-a437-00d2fe8d542b'),
(2030,2030,1,'Subtle & Safe','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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-02 21:54:34','2026-03-02 21:54:34','8eb51049-a82f-4e32-b64c-8efd3bf8c949'),
(2031,2031,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 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-02 21:54:34','2026-03-02 21:54:34','ee1ceead-3d80-41d0-ac53-eb488fbae6de'),
(2032,2032,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 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-02 21:54:34','2026-03-02 21:54:34','a9958e0f-40ad-4627-adba-fc7459d70145'),
(2033,2033,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\":[1939],\"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\":[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 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 21:54:34','2026-03-02 21:54:34','2517ed45-040d-483a-9ed6-4943d4ed0f0d'),
(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'),
(2051,2051,1,'Q: How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','edee6a20-3132-4133-aa92-f024403e346e'),
(2052,2052,1,'Q: 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\":\"Q: How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','43c9e83d-ef2e-45f4-97c6-f31d82f81a32'),
(2053,2053,1,'Q: How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','3ab9a443-6ce7-40e8-8dfa-038a6fdedbd8'),
(2054,2054,1,'Q: Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','f4de41b1-3b49-4b1a-aec8-5ea55da913a5'),
(2055,2055,1,'Q: Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','5b2224b0-b5e9-4405-9d40-1d1f2e1669e6'),
(2056,2056,1,'Q: Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','cb4f564f-335a-4533-85f6-fb6518f6540c'),
(2057,2057,1,'Q: Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','cbfa5313-0e05-4bf6-b120-75ba5bbd0984'),
(2058,2058,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','14d3455f-9b3b-4a64-b8c1-35333fc3db92'),
(2059,2059,1,'Q: 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\":\"Q: Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:47','2026-03-02 22:03:47','da67ab72-75a6-4722-b4c0-49ac06a845fc'),
(2060,2060,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: 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-02 22:03:47','2026-03-02 22:03:47','70171e95-74eb-4136-a59f-e39b02968c10'),
(2061,2061,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:47','2026-03-02 22:03:47','0f6a08ed-282e-494a-8c0e-7bff608ab9e7'),
(2062,2062,1,'Anti-Wrinkle Injections On The Wirral','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:03:47','2026-03-02 22:03:47','c821a5e9-25cf-462d-b0dd-746a84250b48'),
(2063,2063,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\":\"\\\"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 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:03:47','2026-03-02 22:03:47','1c6779f9-6331-4f30-a220-9354f8dff6e2'),
(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'),
(2066,2066,1,'Q: How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','c15a9cf1-b2d5-4c39-b484-11019847fe39'),
(2067,2067,1,'Q: 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\":\"Q: How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','31045ebb-19ec-4727-8272-cff3cdbb37e9'),
(2068,2068,1,'Q: How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','88c5535b-bc28-437f-bad9-7cec2e73a5e4'),
(2069,2069,1,'Q: Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','a86905be-b7f7-44d0-9d09-dd21804946c7'),
(2070,2070,1,'Q: Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','d3d26133-c060-4bdd-b3e5-1a10926a3275'),
(2071,2071,1,'Q: Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','32a7f670-fea5-4bc7-b1ff-6317157e70ec'),
(2072,2072,1,'Q: Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','09ca1585-22cf-4735-b74f-a156e14483f8'),
(2073,2073,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','3669d40b-c4b7-4499-89c4-3b8b1e118d91'),
(2074,2074,1,'Q: 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\":\"Q: Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:03:48','2026-03-02 22:03:48','48785c97-aff8-4e0d-b12f-216cd03f72e9'),
(2075,2075,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: 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-02 22:03:48','2026-03-02 22:03:48','f209031f-4df5-4803-8ee6-e903ca64f430'),
(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'),
(2079,2079,1,'Anti-Wrinkle Injections On The Wirral','anti-wrinkle-injections','treatments/anti-wrinkle-injections','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:05:29','2026-03-02 22:05:29','e13891c7-6a56-4632-a03a-088b2e401eee'),
(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'),
(2081,2081,1,'JULÄINE™ Bio-Stimulator','bio-stimulators','treatments/bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:08:18','2026-03-02 22:25:33','1d47147f-8a36-4e0f-9bf6-d9e05d57347e'),
(2082,2082,1,'JULÄINE™ Bio-Stimulator Wirral Doctor-Led Regenerative Aesthetics','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"Doctor-Led Regenerative Aesthetics\",\"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>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:08:18','2026-03-02 22:25:33','4c4b1b10-7ed1-4c66-bd7e-cb0579831960'),
(2083,2083,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:08:18','2026-03-02 22:08:18','dca4bd5e-be0e-4f86-9e19-74edf918d591'),
(2084,2084,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-02 22:08:18','2026-03-02 22:25:33','8af38fa3-cd10-40ec-8c47-12ed23279d6f'),
(2085,2085,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-02 22:08:18','2026-03-02 22:25:33','6b847636-d44f-4597-869d-30ac1c3cfc4d'),
(2086,2086,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-02 22:08:18','2026-03-02 22:25:33','1f394d22-1eca-455f-8d07-3678805f20bc'),
(2087,2087,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-02 22:08:18','2026-03-02 22:25:33','e64c8914-fb1a-47b5-98cb-54a65315353a'),
(2088,2088,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"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-02 22:08:18','2026-03-02 22:25:33','584bca5f-ecf9-4929-92e3-47be3ed6596a'),
(2089,2089,1,'Next-Generation Swedish Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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><p><span style=\\\"background-color:transparent;color:#000000;\\\">It represents a significant step forward in collagen-stimulating treatments. More refined and safety-led than earlier generation options, it fulfils a real need I see in clinic for natural, long-term collagen support. </span></p>\"}',1,'2026-03-02 22:08:18','2026-03-02 22:25:33','5d5e0d23-40a9-4fa6-81ac-0377573b41ec'),
(2090,2090,1,'The Invisible Transformation','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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><p><span style=\\\"background-color:transparent;color:#000000;\\\">Most patients begin to notice improvements in skin quality after the second treatment, which usually takes place around 4–6 weeks after the first. From this point onwards, changes continue to build steadily as new collagen forms, leading to skin that looks firmer, smoother, and truly transformed. </span></p>\"}',1,'2026-03-02 22:08:18','2026-03-02 22:25:33','b7b75b8a-0bd9-4d1c-a9ab-f21248d4c116'),
(2091,2091,1,'True Tissue Regeneration','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">The collagen produced is predominantly Type I collagen — the form most closely associated with skin firmness, bounce, and strength. This helps improve skin texture, support, and elasticity in a way that feels natural because it is your own tissue doing the work. Your own collagen, rebuilt naturally within your skin using advanced Swedish biotechnology.</span></p>\"}',1,'2026-03-02 22:08:18','2026-03-02 22:25:33','5f27473d-56d0-4c34-a349-a310390d150a'),
(2092,2092,1,'Exceptional Longevity','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Over time, the treatment material is naturally broken down by the body, leaving behind the collagen your skin has produced. This means results continue to look natural and authentic, long after treatment is complete.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">For many patients, JULÄINE™ represents the premium, long-term skin health investment they have been seeking.</span></p>\"}',1,'2026-03-02 22:08:18','2026-03-02 22:25:33','26642a37-745f-485e-bbfc-264b2b8ad690'),
(2093,2093,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\":\"\\\"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:08:18','2026-03-02 22:42:57','ef824dad-f67b-4ed0-9e0a-c4939cff6aa7'),
(2094,2094,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:08:18','2026-03-02 22:08:18','dd25d6f6-f5b6-41a3-969d-4499d71cb115'),
(2095,2095,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 22:08:18','2026-03-02 22:08:18','08c084d3-cb85-41f8-b2cd-fd37c76f2f8f'),
(2096,2096,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:08:18','2026-03-02 22:08:18','87716e2f-5574-4718-b7ee-6f6deabee635'),
(2097,2097,1,'Q: How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','1993849e-0ad5-4443-98ff-638260b6dc1e'),
(2098,2098,1,'Q: 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\":\"Q: How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','04e85dd9-f0ef-4592-a25a-175bad8b0757'),
(2099,2099,1,'Q: How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','57b04d13-a985-46c7-9ad1-03a7a1cfa286'),
(2100,2100,1,'Q: Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','146f4281-747f-43a7-ab44-83125f9039ec'),
(2101,2101,1,'Q: Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','38df0b61-8107-4c15-9e0c-63fd637dd655'),
(2102,2102,1,'Q: Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','c059a3ee-d86b-450f-938e-c1503bcf47f2'),
(2103,2103,1,'Q: Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','be28cca6-4100-4398-807d-8d0e26c46d6a'),
(2104,2104,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','59513df6-8658-421f-b860-58de67a65757'),
(2105,2105,1,'Q: 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\":\"Q: Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','e2677ebb-dbdc-449b-a018-4447a6b01ab1'),
(2106,2106,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: 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-02 22:08:18','2026-03-02 22:08:18','5ab61829-1838-4e43-8cbd-8f2c026e47ba'),
(2107,2107,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:08:18','2026-03-02 22:08:18','5a22bb7b-40cf-4fb6-99d5-07fcf80839a3'),
(2108,2108,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 22:08:18','2026-03-02 22:08:18','354e378b-7105-40ab-826c-e5c42bb8ee16'),
(2109,2109,1,'Anti-Wrinkle Injections On The Wirral','anti-wrinkle-injections-2','treatments/anti-wrinkle-injections-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:08:18','2026-03-02 22:08:18','088f4440-6453-4457-9e5f-53a5f422c75e'),
(2110,2110,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections On The Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:08:18','2026-03-02 22:08:18','2a10d4b4-4755-4d88-9810-a2b7c7a6a23c'),
(2111,2111,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:08:18','2026-03-02 22:08:18','78a8f257-d330-4bfa-bc52-7b43f2d7990a'),
(2112,2112,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-02 22:08:18','2026-03-02 22:08:18','ad218385-8b86-4381-9035-7f63fc01bfe1'),
(2113,2113,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-02 22:08:18','2026-03-02 22:08:18','0314c758-f279-4c8c-a09d-8e214e875c3f'),
(2114,2114,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-02 22:08:18','2026-03-02 22:08:18','e8e3b08d-1170-4b64-aedc-f61234db67a3'),
(2115,2115,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-02 22:08:18','2026-03-02 22:08:18','a87aec20-ab52-448c-9005-dd2d70dd04d2'),
(2116,2116,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"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-02 22:08:18','2026-03-02 22:08:18','a5bb2a7a-4856-41bf-b5d7-0f133e02fb84'),
(2117,2117,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 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-02 22:08:18','2026-03-02 22:08:18','ffd4dd7c-e43e-40be-a473-7a2ee537bd17'),
(2118,2118,1,'Subtle & Safe','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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-02 22:08:18','2026-03-02 22:08:18','8df29259-a910-4265-9248-c2c466f5af2b'),
(2119,2119,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 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-02 22:08:18','2026-03-02 22:08:18','81d88df1-a5bc-48a6-b5ed-7e2f12e84d52'),
(2120,2120,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 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-02 22:08:18','2026-03-02 22:08:18','49d82d99-0dc9-4bc2-bb93-4368e181ad11'),
(2121,2121,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:08:18','2026-03-02 22:08:18','8a99f543-b12a-44cd-89e7-10717a9abadf'),
(2122,2122,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:08:18','2026-03-02 22:08:18','bcc9163a-15d4-43c6-aed8-4b0b3c1aff9d'),
(2123,2123,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 22:08:18','2026-03-02 22:08:18','1751db51-a63a-4fba-a47f-c76814ef8954'),
(2124,2124,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:08:18','2026-03-02 22:08:18','fd811544-363b-4d02-a7c9-86945baaf828'),
(2125,2125,1,'Q: How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','e80af841-defd-4a5a-84cc-eda7adf9b1b2'),
(2126,2126,1,'Q: 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\":\"Q: How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','3ed9ace5-715d-4607-9a95-c12f39ab62cf'),
(2127,2127,1,'Q: How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','25f6eb83-e874-4344-8c79-4fcf46d916b2'),
(2128,2128,1,'Q: Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','05df6181-bd7e-4168-8fae-79a50889bb61'),
(2129,2129,1,'Q: Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','d0765466-d584-462a-91f5-811a1f5c85fa'),
(2130,2130,1,'Q: Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','c2a02068-5754-45c6-a6cc-d3b9f58257cf'),
(2131,2131,1,'Q: Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','93e9de09-8dee-4a7c-8929-d70b1433d4c5'),
(2132,2132,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','99d9494d-886e-4dbe-bb84-87375d9e4db3'),
(2133,2133,1,'Q: 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\":\"Q: Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:08:18','2026-03-02 22:08:18','019b1d40-51a9-47e3-8317-f6836e409f5c'),
(2134,2134,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: 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-02 22:08:18','2026-03-02 22:08:18','0e3d712e-f87d-4d29-9d4b-98bde7ad93d3'),
(2135,2135,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:08:18','2026-03-02 22:08:18','7eaf5668-ad31-4c64-af45-b201fcee5b2c'),
(2136,2136,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 22:08:18','2026-03-02 22:08:18','155cad74-14d7-4cdd-a027-a0190901b3be'),
(2137,2137,1,'Anti-Wrinkle Injections On The Wirral','bio-stimulators','treatments/bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:08:30','2026-03-02 22:08:30','737e162d-94df-439d-a1ef-088a51ac97f8'),
(2150,2150,1,'JULÄINE™ Bio-Stimulator','bio-stimulators','treatments/bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','289e7b0f-c224-4faa-888f-3585c7fe11e1'),
(2151,2151,1,'JULÄINE™ Bio-Stimulator Wirral Doctor-Led Regenerative Aesthetics','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"JULÄINE™ Bio-Stimulator Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"Doctor-Led Regenerative Aesthetics\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','c3a631b3-7a62-4561-852a-06db91ffcb42'),
(2152,2152,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','351766ba-4370-414b-91ad-70781004703e'),
(2153,2153,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-02 22:25:33','2026-03-02 22:25:33','a3c2b2dc-01d8-4599-a4e4-f5b1ee786d44'),
(2154,2154,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-02 22:25:33','2026-03-02 22:25:33','7da3290a-92ab-4e61-b276-5a964a6fd35b'),
(2155,2155,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-02 22:25:33','2026-03-02 22:25:33','ef362bf5-6f32-4bfc-aa2a-cc956a3607a5'),
(2156,2156,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-02 22:25:33','2026-03-02 22:25:33','da084120-68a2-4996-b5a2-3fae77314853'),
(2157,2157,1,'Why Choose JULÄINE™ Bio-Stimulator?','why-choose-this-treatment',NULL,'{\"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-02 22:25:33','2026-03-02 22:25:33','5298ec32-20e2-42ce-a6bc-23ec682e9107'),
(2158,2158,1,'Next-Generation Swedish Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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><p><span style=\\\"background-color:transparent;color:#000000;\\\">It represents a significant step forward in collagen-stimulating treatments. More refined and safety-led than earlier generation options, it fulfils a real need I see in clinic for natural, long-term collagen support. </span></p>\"}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','b265182e-09f2-45cd-bad9-db77b4218a56'),
(2159,2159,1,'The Invisible Transformation','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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><p><span style=\\\"background-color:transparent;color:#000000;\\\">Most patients begin to notice improvements in skin quality after the second treatment, which usually takes place around 4–6 weeks after the first. From this point onwards, changes continue to build steadily as new collagen forms, leading to skin that looks firmer, smoother, and truly transformed. </span></p>\"}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','391171fd-9739-4e4a-b9ed-15e2bb66baac'),
(2160,2160,1,'True Tissue Regeneration','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">The collagen produced is predominantly Type I collagen — the form most closely associated with skin firmness, bounce, and strength. This helps improve skin texture, support, and elasticity in a way that feels natural because it is your own tissue doing the work. Your own collagen, rebuilt naturally within your skin using advanced Swedish biotechnology.</span></p>\"}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','ee358e5a-9834-43dd-a319-77111b2407dd'),
(2161,2161,1,'Exceptional Longevity','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Over time, the treatment material is naturally broken down by the body, leaving behind the collagen your skin has produced. This means results continue to look natural and authentic, long after treatment is complete.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">For many patients, JULÄINE™ represents the premium, long-term skin health investment they have been seeking.</span></p>\"}',1,'2026-03-02 22:25:33','2026-03-02 22:25:33','218bd0a6-4dcd-467c-bfbc-691f210c29ce'),
(2162,2162,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','3e2c94e8-e41c-4e26-8542-dbeb92d50152'),
(2163,2163,1,'Chemical Peels Wirral Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Wirral Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','22b184cb-5089-4e96-b853-15b42cdb0c1c'),
(2164,2164,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:26:42','2026-03-02 22:26:42','fd17f22d-9411-4973-9df2-974e98578bba'),
(2165,2165,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-02 22:26:42','2026-03-02 22:42:38','a24e9b83-4803-4d0f-8aaf-f8da69b8d08b'),
(2166,2166,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-02 22:26:42','2026-03-02 22:42:38','d7dd6ef6-df93-4cae-af77-67542ac23c3d'),
(2167,2167,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-02 22:26:42','2026-03-02 22:42:38','3cbaaf38-af4d-45ed-9774-38afcdc75d6f'),
(2168,2168,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-02 22:26:42','2026-03-02 22:42:38','a1b8a673-160e-464a-a73e-52fc0004e358'),
(2169,2169,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p>\"}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','14935942-45f1-4ea8-ac2c-1aed3cf5d5d0'),
(2170,2170,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over time, skin becomes smoother, more even in tone, less congested and visibly healthier - with results that go beyond simple exfoliation.</span></p>\"}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','daf1bdab-ba5f-48ae-b75c-566a068c0bd6'),
(2171,2171,1,'Bespoke, Intelligent Formulations','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 or visible ageing.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Rather than a one-size-fits-all peel, I carefully select and layer ingredients to work synergistically - enhancing results while protecting your skin barrier. This personalised approach allows me to move beyond traditional “peeling” and into advanced chemical resurfacing, where controlled regeneration replaces aggressive exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">It is this tailored, medically-led strategy that delivers meaningful, sustainable improvement — not just temporary surface glow.</span></p>\"}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','04ac4ac4-4826-4fda-95ce-7d52fe848f2a'),
(2172,2172,1,'Treats What High-Street Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 high-street serums simply cannot resolve. Stubborn pigmentation that refuses to fade. Active acne that needs true pore decongestion. Post-inflammatory hyperpigmentation left behind after breakouts. Fine lines etched by cumulative sun damage. Rough, uneven texture that no primer can smooth. While over-the-counter products try to work on the very surface of the skin, professional chemical resurfacing penetrates in a controlled, clinical way to stimulate genuine change within the epidermis and upper dermis. The result is not just temporary brightness — but measurable, professional-grade improvement in clarity, tone and texture.</span></p>\"}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','d1cdccd9-f29b-4ceb-93a1-1e9aa7533263'),
(2173,2173,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 full medical history, current skincare, medication use and Fitzpatrick skin type before selecting the most appropriate treatment. This is particularly important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Precise product selection, controlled application, correct timing and appropriate aftercare all matter. Medical oversight means your treatment is not only effective, but safe, measured and tailored to your individual skin. It is this level of clinical judgement that turns a standard peel into a carefully managed regenerative treatment — with results you can trust.</span></p>\"}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','4ccbd76c-e32a-48d9-8f18-778ec1de0b0b'),
(2174,2174,1,'Dr Rachel - The Science of Advanced Chemical Resurfacing','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"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%);\\\">\\\"When most people search for “chemical peels”, they are usually imagining visible peeling and surface exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is what makes pHformula fundamentally different.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Each system is concern-led:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>CR (Chronic Redness)</strong> – Calms inflammation, strengthens barrier function and improves rosacea-prone or reactive skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AC (Acne)</strong> – Targets congestion, excess oil, inflammation and post-inflammatory pigmentation while supporting healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>MELA (Pigmentation)</strong> – Addresses uneven tone, sun damage and melasma by regulating melanogenesis pathways.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AGE (Ageing Skin)</strong> – Stimulates collagen production, improves elasticity and refines fine lines through dermal activation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These are not one-size-fits-all peels. They are progressive resurfacing programmes designed to work alongside specific pHformula homecare. Pre-treatment preparation and ongoing homecare optimise penetration, enhance results and significantly reduce the risk of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The philosophy is correction without aggression — achieving meaningful, sustainable improvement while maintaining long-term skin health.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I assess your medical history, skin type, current skincare, medication use and tolerance before creating your treatment plan. My aim is not visible peeling for its own sake, but measurable improvement in the clarity, strength and resilience of your skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For this reason, many of the treatments I offer are more accurately described as advanced chemical resurfacing rather than traditional chemical peels.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel - Why Doctor-Led Treatments Matter\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare is equally important. I provide clear, medically guided post-treatment protocols including appropriate skincare, strict SPF use and ongoing monitoring. Should sensitivity or unexpected reactions occur, I am able to assess and manage these appropriately.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical oversight does not simply make treatment safer - it makes outcomes more predictable, more refined and ultimately more effective.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had a series of TCA peels for stubborn pigmentation, and the transformation is remarkable. Dr Rachel explained everything so thoroughly and monitored my skin carefully throughout. My complexion is now even, bright, and glowing. The medical expertise made me feel completely safe, and the results speak for themselves.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Michelle, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Chemical Peels\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Chemical Peels?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 22:26:42','2026-03-02 22:44:08','cb85fb5b-45b0-4f26-b8e9-0051c8ae69d2'),
(2175,2175,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Chemical Resurfacing?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing is ideal for those seeking meaningful improvement in pigmentation, acne, uneven texture or visible signs of ageing - particularly when skincare alone has not delivered the results you hoped for. It is suitable for patients who want clearer, smoother, healthier-looking skin through a structured, medically guided treatment plan rather than quick fixes or temporary glow.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><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><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><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><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><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><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\":[1946]}',1,'2026-03-02 22:26:42','2026-03-02 22:42:38','de7171c9-b565-4acc-81ac-a32307535fc4'),
(2176,2176,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 22:26:42','2026-03-02 22:26:42','e0d0ea00-3e12-4b6f-a9f5-2c80549b279e'),
(2177,2177,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:26:42','2026-03-02 22:26:42','10423e74-6095-4eb5-9385-52002c1b1db1'),
(2178,2178,1,'Q: How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','d5981446-a218-46eb-ab3f-b9483ed66a99'),
(2179,2179,1,'Q: 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\":\"Q: How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','2fc7491d-95b2-4a3f-a295-841e2c333427'),
(2180,2180,1,'Q: How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','12670e0b-0222-467c-8a70-e481e41fcd89'),
(2181,2181,1,'Q: Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','b7de5beb-0d88-4a95-a8b2-a639264478e3'),
(2182,2182,1,'Q: Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','b3ae4760-1892-46dc-a06b-dafbf846c5b6'),
(2183,2183,1,'Q: Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','3c96bfe3-1ad1-4171-9833-1e27fa19e456'),
(2184,2184,1,'Q: Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','64f7bce2-3957-4e5c-8236-6ce2d6e6c2d6'),
(2185,2185,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','1d08f42e-e4f0-4704-ade5-931e5353b3a1'),
(2186,2186,1,'Q: 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\":\"Q: Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','1c837414-2ef0-484a-8bc2-920ccdea2ffe'),
(2187,2187,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: 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-02 22:26:42','2026-03-02 22:26:42','500e4da5-d153-42d0-9c77-186f68577878'),
(2188,2188,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:26:42','2026-03-02 22:26:42','9f321256-8bd7-4a0c-9297-1559daf5b9f0'),
(2189,2189,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 22:26:42','2026-03-02 22:26:42','7d1c3c01-f3e6-42dd-9980-48775de29a68'),
(2190,2190,1,'Anti-Wrinkle Injections On The Wirral','anti-wrinkle-injections-2','treatments/anti-wrinkle-injections-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:26:42','2026-03-02 22:26:42','fb83117b-3dca-4963-895c-ea1045ee8507'),
(2191,2191,1,'Anti-Wrinkle Injections On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Anti-Wrinkle Injections On The Wirral\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:26:42','2026-03-02 22:26:42','2a57f804-5e55-45c6-a22f-290b8cd40a10'),
(2192,2192,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:26:42','2026-03-02 22:26:42','62de7cf7-73ab-470b-acbd-f463194f8aa1'),
(2193,2193,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-02 22:26:42','2026-03-02 22:26:42','07fa8c91-2d63-4c7d-bcdb-ebe3abfeacc3'),
(2194,2194,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-02 22:26:42','2026-03-02 22:26:42','2dd47a4f-8943-4048-a407-e79fa4232311'),
(2195,2195,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-02 22:26:42','2026-03-02 22:26:42','9099d3d1-4ea8-49ac-a8e0-b4c01e24fcda'),
(2196,2196,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-02 22:26:42','2026-03-02 22:26:42','85878241-2246-4220-ae4f-5e7a321a2298'),
(2197,2197,1,'Why Choose Anti-Wrinkle Injections?','why-choose-this-treatment',NULL,'{\"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-02 22:26:42','2026-03-02 22:26:42','d988c5b7-810f-47f3-9314-a0b75c022a12'),
(2198,2198,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 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-02 22:26:42','2026-03-02 22:26:42','e610650b-5c38-468b-b28a-bce59e39f15c'),
(2199,2199,1,'Subtle & Safe','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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-02 22:26:42','2026-03-02 22:26:42','434e05d5-5ede-4926-8533-4f082f5a6809'),
(2200,2200,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 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-02 22:26:42','2026-03-02 22:26:42','e787fb0e-6ba9-4c84-aeed-6f7864d228ff'),
(2201,2201,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 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-02 22:26:42','2026-03-02 22:26:42','9f7a5a94-eb0b-4226-954b-834f36cab1a4'),
(2202,2202,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:26:42','2026-03-02 22:26:42','179570c7-0bbd-44a5-b9b1-d7898af65aa8'),
(2203,2203,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:26:42','2026-03-02 22:26:42','d86c599c-78ae-4670-ab39-6b03fa9a850c'),
(2204,2204,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 22:26:42','2026-03-02 22:26:42','6835dd4c-f5d0-4796-815a-4d4ddc2dc068'),
(2205,2205,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:26:42','2026-03-02 22:26:42','e97067ba-7212-4c75-a0c2-4b2474dfa538'),
(2206,2206,1,'Q: How long do anti-wrinkle injection results last?','q-how-long-do-anti-wrinkle-injection-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do anti-wrinkle injection results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','c806430d-6cf4-4e8b-9345-06c1d6f387e6'),
(2207,2207,1,'Q: 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\":\"Q: How many treatments will I need? Is it a one-off treatment or ongoing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','30945fde-fcb3-4198-9454-1cfa8f7b397d'),
(2208,2208,1,'Q: How permanent are the results?','q-how-permanent-are-the-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How permanent are the results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','9bcf08c3-c369-412b-9302-1a846141b218'),
(2209,2209,1,'Q: Is the treatment safe?','q-is-the-treatment-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is the treatment safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','ba141716-1806-4e82-927a-31704fcecc78'),
(2210,2210,1,'Q: Does it hurt? How is the procedure done?','q-does-it-hurt-how-is-the-procedure-done',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt? How is the procedure done?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','557bce95-8372-4f41-af97-1295fae9bba0'),
(2211,2211,1,'Q: Will I look \"frozen\" or expressionless?','q-will-i-look-frozen-or-expressionless',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look \\\"frozen\\\" or expressionless?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','4fde4e5a-2b55-4dbb-acda-a4ee8a14145c'),
(2212,2212,1,'Q: Is there any downtime after treatment?','q-is-there-any-downtime-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','4a44a240-6734-428f-a212-0a233814c39c'),
(2213,2213,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','31460b5b-7f93-42c3-85a3-c856e1b4b529'),
(2214,2214,1,'Q: 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\":\"Q: Can I combine anti-wrinkle injections with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:26:42','2026-03-02 22:26:42','734c1622-a8e2-4912-8cac-5668bc9ae462'),
(2215,2215,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: 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-02 22:26:42','2026-03-02 22:26:42','73f9f66f-5659-4969-accf-1c55c711cbc3'),
(2216,2216,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:26:42','2026-03-02 22:26:42','119fd648-fe94-4d83-9a9a-9f395d9021d3'),
(2217,2217,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 22:26:42','2026-03-02 22:26:42','b63bb3d5-ba4e-41ec-89f1-5367c124208e'),
(2243,2243,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-02 22:42:38','2026-03-02 22:42:38','1cf9a878-bbf7-4b41-b70b-34ca40fc15ec'),
(2244,2244,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-02 22:42:38','2026-03-02 22:42:38','15338b23-6962-4a4a-857b-b717156c1cea'),
(2245,2245,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','c3dc088f-8a83-4483-8463-5c3e63005e08'),
(2246,2246,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-02 22:42:38','2026-03-02 22:42:38','82d364b7-92ef-4bf0-8f09-004626d2c413'),
(2247,2247,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','7cb29df7-ac4b-4e76-ae39-3c564fcf0e29'),
(2248,2248,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','afe4f2f1-a5a4-44c1-8d52-f5f358cead94'),
(2249,2249,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','ef00fa24-3053-4e48-9591-70a3193b1fcf'),
(2250,2250,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','d2dd632a-bd16-403d-945c-c4e140b17964'),
(2251,2251,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','cb27e8d1-5cd5-4436-b691-eb7b08d0e863'),
(2252,2252,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:38','2026-03-02 22:42:38','04dc90cf-7efa-4da9-9e6d-d355b0588506'),
(2253,2253,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','159a29b4-cbe8-4648-a3bb-780a51563c3e'),
(2254,2254,1,'Chemical Peels Wirral Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Wirral Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','5043a84c-f9e5-48e1-ae3c-03cde9ae6879'),
(2255,2255,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','2cbbc6f6-25c2-4e99-90c5-a257e4f25a58'),
(2256,2256,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-02 22:42:39','2026-03-02 22:42:39','8b42ac5d-9fdb-49ef-bc50-141460573b0f'),
(2257,2257,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-02 22:42:39','2026-03-02 22:42:39','c7b3b523-1d6f-447e-a145-a04a2a19c61f'),
(2258,2258,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-02 22:42:39','2026-03-02 22:42:39','51c9b67c-5ed2-4e04-a12e-bde2857846e2'),
(2259,2259,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-02 22:42:39','2026-03-02 22:42:39','1c372caa-39a1-491c-ba4c-ea1ee68341a9'),
(2260,2260,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p>\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','9744743f-4d26-4c8b-bab8-1602b107af32'),
(2261,2261,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over time, skin becomes smoother, more even in tone, less congested and visibly healthier - with results that go beyond simple exfoliation.</span></p>\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','5712ffa7-fc2e-4574-b1d2-47ba4d9a0a1b'),
(2262,2262,1,'Bespoke, Intelligent Formulations','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 or visible ageing.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Rather than a one-size-fits-all peel, I carefully select and layer ingredients to work synergistically - enhancing results while protecting your skin barrier. This personalised approach allows me to move beyond traditional “peeling” and into advanced chemical resurfacing, where controlled regeneration replaces aggressive exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">It is this tailored, medically-led strategy that delivers meaningful, sustainable improvement — not just temporary surface glow.</span></p>\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','eace075d-77af-4dab-a7ef-bb5be868d9b6'),
(2263,2263,1,'Treats What High-Street Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 high-street serums simply cannot resolve. Stubborn pigmentation that refuses to fade. Active acne that needs true pore decongestion. Post-inflammatory hyperpigmentation left behind after breakouts. Fine lines etched by cumulative sun damage. Rough, uneven texture that no primer can smooth. While over-the-counter products try to work on the very surface of the skin, professional chemical resurfacing penetrates in a controlled, clinical way to stimulate genuine change within the epidermis and upper dermis. The result is not just temporary brightness — but measurable, professional-grade improvement in clarity, tone and texture.</span></p>\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','9a654646-5f94-4749-bc31-68d600c3fbd4'),
(2264,2264,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 full medical history, current skincare, medication use and Fitzpatrick skin type before selecting the most appropriate treatment. This is particularly important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Precise product selection, controlled application, correct timing and appropriate aftercare all matter. Medical oversight means your treatment is not only effective, but safe, measured and tailored to your individual skin. It is this level of clinical judgement that turns a standard peel into a carefully managed regenerative treatment — with results you can trust.</span></p>\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','6e9d2427-91e4-4edf-9eae-275452d544fb'),
(2265,2265,1,'Dr Rachel - The Science of Advanced Chemical Resurfacing','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is what makes pHformula fundamentally different.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Each system is concern-led:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>CR (Chronic Redness)</strong> – Calms inflammation, strengthens barrier function and improves rosacea-prone or reactive skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AC (Acne)</strong> – Targets congestion, excess oil, inflammation and post-inflammatory pigmentation while supporting healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>MELA (Pigmentation)</strong> – Addresses uneven tone, sun damage and melasma by regulating melanogenesis pathways.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AGE (Ageing Skin)</strong> – Stimulates collagen production, improves elasticity and refines fine lines through dermal activation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These are not one-size-fits-all peels. They are progressive resurfacing programmes designed to work alongside specific pHformula homecare. Pre-treatment preparation and ongoing homecare optimise penetration, enhance results and significantly reduce the risk of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The philosophy is correction without aggression — achieving meaningful, sustainable improvement while maintaining long-term skin health.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I assess your medical history, skin type, current skincare, medication use and tolerance before creating your treatment plan. My aim is not visible peeling for its own sake, but measurable improvement in the clarity, strength and resilience of your skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For this reason, many of the treatments I offer are more accurately described as advanced chemical resurfacing rather than traditional chemical peels.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></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 - Why Doctor-Led Treatments Matter\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare is equally important. I provide clear, medically guided post-treatment protocols including appropriate skincare, strict SPF use and ongoing monitoring. Should sensitivity or unexpected reactions occur, I am able to assess and manage these appropriately.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical oversight does not simply make treatment safer - it makes outcomes more predictable, more refined and ultimately more effective.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had a series of TCA peels for stubborn pigmentation, and the transformation is remarkable. Dr Rachel explained everything so thoroughly and monitored my skin carefully throughout. My complexion is now even, bright, and glowing. The medical expertise made me feel completely safe, and the results speak for themselves.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Michelle, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Chemical Peels\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Chemical Peels?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','7ac2b5a2-7097-432b-9318-b6c0041e56d3'),
(2266,2266,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Chemical Resurfacing?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing is ideal for those seeking meaningful improvement in pigmentation, acne, uneven texture or visible signs of ageing - particularly when skincare alone has not delivered the results you hoped for. It is suitable for patients who want clearer, smoother, healthier-looking skin through a structured, medically guided treatment plan rather than quick fixes or temporary glow.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><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><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><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><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><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><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\":[1946]}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','3d2230e7-f74d-405c-af11-ef606be443cd'),
(2267,2267,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:42:39','2026-03-02 22:42:39','3c4b540b-83c4-43ad-bb4a-6e2f736fe57c'),
(2268,2268,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','0dd672f3-80dc-4009-88c1-ec707eebb43c'),
(2269,2269,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','3690ccd9-aaac-4ffd-a6f1-4019ca1ca70b'),
(2270,2270,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','250950d3-ab4d-4832-875d-68b891d9dfe4'),
(2271,2271,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-02 22:42:39','2026-03-02 22:42:39','8fc388e2-8b12-404b-a54c-77f3e2adeb84'),
(2272,2272,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','4e4d6f5c-96b2-4e9b-b40c-165782c464fa'),
(2273,2273,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','c53b19ab-d2d4-4ade-aee9-848af9c33a46'),
(2274,2274,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','7e260fd0-8f0d-43fc-baba-956835065d78'),
(2275,2275,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','dd6f1cf9-ccad-4ce2-b704-afc9c37e7a6f'),
(2276,2276,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','59bc909e-dd8a-4a7d-adcb-40445179d6f9'),
(2277,2277,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:42:39','2026-03-02 22:42:39','af34454c-434c-4922-934e-bb647e9b5a08'),
(2280,2280,1,'JULÄINE™ Bio-Stimulator','bio-stimulators','treatments/bio-stimulators','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:42:57','2026-03-02 22:42:57','9cf87ebb-e84b-4b87-b0f7-43a22743a375'),
(2281,2281,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\":\"\\\"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:42:57','2026-03-02 22:42:57','1ddc23aa-d280-4d0e-aef6-00723b6157a7'),
(2284,2284,1,'Chemical Peels','chemical-peels','treatments/chemical-peels','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:44:08','2026-03-02 22:44:08','62134d3e-4446-4ae0-b9ae-5174a745fa7b'),
(2285,2285,1,'Dr Rachel - The Science of Advanced Chemical Resurfacing','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"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%);\\\">\\\"When most people search for “chemical peels”, they are usually imagining visible peeling and surface exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is what makes pHformula fundamentally different.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Each system is concern-led:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>CR (Chronic Redness)</strong> – Calms inflammation, strengthens barrier function and improves rosacea-prone or reactive skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AC (Acne)</strong> – Targets congestion, excess oil, inflammation and post-inflammatory pigmentation while supporting healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>MELA (Pigmentation)</strong> – Addresses uneven tone, sun damage and melasma by regulating melanogenesis pathways.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AGE (Ageing Skin)</strong> – Stimulates collagen production, improves elasticity and refines fine lines through dermal activation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These are not one-size-fits-all peels. They are progressive resurfacing programmes designed to work alongside specific pHformula homecare. Pre-treatment preparation and ongoing homecare optimise penetration, enhance results and significantly reduce the risk of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The philosophy is correction without aggression — achieving meaningful, sustainable improvement while maintaining long-term skin health.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I assess your medical history, skin type, current skincare, medication use and tolerance before creating your treatment plan. My aim is not visible peeling for its own sake, but measurable improvement in the clarity, strength and resilience of your skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For this reason, many of the treatments I offer are more accurately described as advanced chemical resurfacing rather than traditional chemical peels.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel - Why Doctor-Led Treatments Matter\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare is equally important. I provide clear, medically guided post-treatment protocols including appropriate skincare, strict SPF use and ongoing monitoring. Should sensitivity or unexpected reactions occur, I am able to assess and manage these appropriately.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical oversight does not simply make treatment safer - it makes outcomes more predictable, more refined and ultimately more effective.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had a series of TCA peels for stubborn pigmentation, and the transformation is remarkable. Dr Rachel explained everything so thoroughly and monitored my skin carefully throughout. My complexion is now even, bright, and glowing. The medical expertise made me feel completely safe, and the results speak for themselves.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Michelle, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Chemical Peels\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Chemical Peels?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 22:44:08','2026-03-02 22:44:08','d30133ca-5160-429c-aac3-4f8f4a0b45ba'),
(2286,2286,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-02 22:50:42','2026-03-02 23:14:59','96982af5-b9a5-424c-9b73-463f157ff67e'),
(2287,2287,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\":\"by Dr Rachel\",\"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><br /> </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\":\"/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-02 22:50:42','2026-03-02 23:14:36','78f0593b-a083-4156-b3bc-6934db19ed60'),
(2288,2288,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','d2ff81e8-c7f9-4f98-9a49-73af9e2c7f27'),
(2289,2289,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-02 22:50:42','2026-03-02 23:14:36','3035b278-ccef-4537-8f6c-c323bff48033'),
(2290,2290,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-02 22:50:42','2026-03-02 22:50:42','b3a62677-17a6-421b-92c8-1bd0a6835535'),
(2291,2291,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-02 22:50:42','2026-03-02 22:50:42','c0af0d02-4888-411a-952a-6a26128eaac7'),
(2292,2292,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 22:50:42','2026-03-02 23:14:36','bab96b0a-921c-4975-8b60-f4d66654fbba'),
(2293,2293,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span><br /> </p>\"}',1,'2026-03-02 22:50:42','2026-03-02 23:14:36','a852d40e-0842-4aac-a2d8-a36c8cf88a5a'),
(2294,2294,1,'True Collagen Induction','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This is collagen induction therapy working at a cellular level, using the skin’s own repair mechanisms to improve strength, texture, and quality.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 23:14:36','66abf053-b42a-4336-b37c-6b095060522c'),
(2295,2295,1,'Advanced Serum Technology','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. These serums are delivered through the micro-channels created during microneedling, allowing deeper penetration than topical application alone and supporting meaningful, long-term improvement in skin quality.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 23:14:36','3fe13f86-9e83-455f-a11d-c5d7ff93e11e'),
(2296,2296,1,'Treats What Lasers Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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, including acne scarring, stretch marks, fine lines, pigmentation, enlarged pores, and even scalp hair thinning. This versatility allows microneedling to be safely adapted to different areas and skin types, making it a valuable option where other treatments may be less appropriate.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 23:14:36','22a1fbc6-6243-4362-bcf7-ebd96e575469'),
(2297,2297,1,'Medical-Grade Precision','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This level of clinical oversight allows microneedling to be used as a form of true dermal repair, rather than a superficial skin treatment. Depth, technique, and product choice are all tailored to the individual, ensuring treatments are both safe and effective. It is this medical expertise and attention to detail that elevates outcomes and supports consistent, high-quality results over time.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 23:14:36','a00228e1-f291-4fd5-8562-e5eab7e67881'),
(2298,2298,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"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><p> </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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">One of the key advantages of medical microneedling is precision. I carefully tailor needle depth to the area being treated and the concern being addressed.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Superficial depths are used to enhance radiance and product penetration, medium depths to improve fine lines and texture, and deeper treatments for scarring and more significant structural remodelling. This individualised approach allows results to be optimised while maintaining safety.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What further differentiates medical microneedling is the use of advanced, medical-grade serums during treatment. The micro-channels created allow active ingredients to penetrate far more effectively than they would through intact skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I offer three carefully selected serum options:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>NCTF 135 HA:</strong> A poly-revitalising formulation containing over 50 active ingredients, including hyaluronic acid, amino acids, vitamins, minerals, and antioxidants. This supports hydration, luminosity, and long-term skin quality.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Topical PDRNs (Polynucleotides):</strong> A high-strength polynucleotide formulation that combines PDRNs (building blocks of DNA), with skin-nourishing hyaluronic acid and niacinamide. This combination supports cellular repair, hydration at multiple skin levels, and barrier function, helping to enhance tissue regeneration and collagen quality, tackling multiple signs of ageing in the skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Exosomes:</strong> Next-generation technology designed to support skin repair and regeneration at a cellular level. They contain purified extracellular vesicles rich in signalling molecules that help improve communication between skin cells, encouraging repair, renewal, and collagen stimulation over time. Exosomes are particularly effective for improving scarring and treating stubborn pigmentation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During your treatment, precise microneedling is performed across the treatment areas using your chosen serum. Most patients describe the sensation as firm pressure with manageable discomfort, and the procedure is generally very well tolerated.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">After treatment, the skin typically appears flushed and warm, similar to the glow you might see after brisk exercise. This usually settles within 24 hours. Many patients notice an immediate improvement in brightness and skin vitality, with deeper, longer-term improvements continuing to develop over the following weeks as new collagen forms and matures.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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><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 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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Safety underpins every treatment I perform. Microneedling temporarily creates micro-channels within the skin, which requires strict sterile technique and medical-grade infection control. I use single-use sterile needle cartridges and adhere to clinical hygiene standards designed to minimise risk and support safe healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare and follow-up are equally important. I provide clear post-treatment guidance, including gentle skincare, sun protection, and recovery support, and I monitor progress so treatment plans can be adjusted if sensitivity or unexpected reactions occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of CMAC (the Complications in Medical Aesthetic Collaborative), I remain up to date with best-practice safety protocols and have the training and support to recognise and manage complications promptly, should they arise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When compared with energy-based resurfacing treatments, microneedling offers a non-ablative approach to collagen induction that works without heat-related tissue damage. This makes it a versatile option across a wide range of skin types, including those where pigmentation risk must be carefully considered.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led microneedling within a GP-run clinic prioritises precision, safety, and long-term skin health - ensuring treatments are tailored, evidence-based, and delivered with clinical oversight at every stage.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had medical microneedling with exosomes for my acne scarring, and the results are phenomenal. My skin texture has dramatically improved, and the deep scars have softened significantly. Dr Rachel explained everything so clearly and made me feel completely comfortable. This treatment has genuinely changed my confidence.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Katie, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Microneedling\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"K.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Microneedling?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 22:50:42','2026-03-02 23:15:24','e1512b3b-dbbd-4c2e-b6b9-a665f9223a8a'),
(2299,2299,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Medical Microneedling?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is ideal for individuals seeking deeper skin repair for concerns such as scarring, uneven texture, pigmentation changes, or age-related skin changes, particularly where topical skincare alone has reached its limits.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><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><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You prefer a non-ablative approach </strong>that works with the skin’s natural healing processes rather than relying on heat or tissue destruction.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2342]}',1,'2026-03-02 22:50:42','2026-03-02 23:14:36','3deaadd1-92b3-411c-8b41-eb3e36af61b0'),
(2300,2300,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 22:50:42','2026-03-02 22:50:42','654a22b8-83ce-4451-aa50-2db07ad3edad'),
(2301,2301,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:50:42','2026-03-02 22:50:42','a8034f22-151d-4d9a-b52d-e9cc648c8acc'),
(2302,2302,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','7efb606e-539f-48be-9a00-34ee5823f86b'),
(2303,2303,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','f5ecd1aa-80c1-4128-901d-41dd14703250'),
(2304,2304,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','0dec0d63-2b0d-4737-8db2-3139fba1eb69'),
(2305,2305,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','fa2137dd-a647-4536-8278-e889f196e9ef'),
(2306,2306,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','19b715ec-f09f-4fcf-adf8-69acefb04d33'),
(2307,2307,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','9fae3ed5-023c-4960-96e1-75074ef0355d'),
(2308,2308,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','132c13ab-fa0a-4245-a8d0-b7717efaec6a');
INSERT INTO `elements_sites` VALUES
(2309,2309,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','96359442-34c1-408d-a45f-e66664b0494c'),
(2310,2310,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','99ba62b2-65e2-4786-9c5b-e44ee8500916'),
(2311,2311,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','09e7471e-97e8-4b5e-8212-9355defde916'),
(2312,2312,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 22:50:42','2026-03-02 22:50:42','7071da30-1041-4d99-ba00-24fb0a6cf5c1'),
(2313,2313,1,'Chemical Peels','chemical-peels-2','treatments/chemical-peels-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','3e4681bc-9525-47d7-a65a-6218acca3590'),
(2314,2314,1,'Chemical Peels Wirral Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Wirral Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','0f711420-79e4-45b5-bb94-415d4097ed55'),
(2315,2315,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','6d5f570e-27c8-4745-8897-5051529c9890'),
(2316,2316,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-02 22:50:42','2026-03-02 22:50:42','f99b50c0-bc24-4109-9d89-721a7647b1ac'),
(2317,2317,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-02 22:50:42','2026-03-02 22:50:42','cf27348b-5083-4ca8-936c-27d1978d4e83'),
(2318,2318,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-02 22:50:42','2026-03-02 22:50:42','b5c2ebab-783f-4c9d-9416-cb36e6422295'),
(2319,2319,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-02 22:50:42','2026-03-02 22:50:42','b7f5a00c-8dd9-44d9-95d6-0777d5f2f38a'),
(2320,2320,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','96cc3bfe-45a0-4853-81fa-654b9fd3d562'),
(2321,2321,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over time, skin becomes smoother, more even in tone, less congested and visibly healthier - with results that go beyond simple exfoliation.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','8ace9826-7141-4f97-a3f7-6d607b36f3e0'),
(2322,2322,1,'Bespoke, Intelligent Formulations','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 or visible ageing.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Rather than a one-size-fits-all peel, I carefully select and layer ingredients to work synergistically - enhancing results while protecting your skin barrier. This personalised approach allows me to move beyond traditional “peeling” and into advanced chemical resurfacing, where controlled regeneration replaces aggressive exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">It is this tailored, medically-led strategy that delivers meaningful, sustainable improvement — not just temporary surface glow.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','d6a8c116-2089-40fd-a332-9832ca5e089d'),
(2323,2323,1,'Treats What High-Street Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 high-street serums simply cannot resolve. Stubborn pigmentation that refuses to fade. Active acne that needs true pore decongestion. Post-inflammatory hyperpigmentation left behind after breakouts. Fine lines etched by cumulative sun damage. Rough, uneven texture that no primer can smooth. While over-the-counter products try to work on the very surface of the skin, professional chemical resurfacing penetrates in a controlled, clinical way to stimulate genuine change within the epidermis and upper dermis. The result is not just temporary brightness — but measurable, professional-grade improvement in clarity, tone and texture.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','45c23d57-7b3f-4d83-aa7b-e904560cf8df'),
(2324,2324,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 full medical history, current skincare, medication use and Fitzpatrick skin type before selecting the most appropriate treatment. This is particularly important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Precise product selection, controlled application, correct timing and appropriate aftercare all matter. Medical oversight means your treatment is not only effective, but safe, measured and tailored to your individual skin. It is this level of clinical judgement that turns a standard peel into a carefully managed regenerative treatment — with results you can trust.</span></p>\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','956b5601-82c0-4f37-95b9-ce6f20b1d1f0'),
(2325,2325,1,'Dr Rachel - The Science of Advanced Chemical Resurfacing','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"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%);\\\">\\\"When most people search for “chemical peels”, they are usually imagining visible peeling and surface exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is what makes pHformula fundamentally different.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Each system is concern-led:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>CR (Chronic Redness)</strong> – Calms inflammation, strengthens barrier function and improves rosacea-prone or reactive skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AC (Acne)</strong> – Targets congestion, excess oil, inflammation and post-inflammatory pigmentation while supporting healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>MELA (Pigmentation)</strong> – Addresses uneven tone, sun damage and melasma by regulating melanogenesis pathways.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AGE (Ageing Skin)</strong> – Stimulates collagen production, improves elasticity and refines fine lines through dermal activation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These are not one-size-fits-all peels. They are progressive resurfacing programmes designed to work alongside specific pHformula homecare. Pre-treatment preparation and ongoing homecare optimise penetration, enhance results and significantly reduce the risk of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The philosophy is correction without aggression — achieving meaningful, sustainable improvement while maintaining long-term skin health.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I assess your medical history, skin type, current skincare, medication use and tolerance before creating your treatment plan. My aim is not visible peeling for its own sake, but measurable improvement in the clarity, strength and resilience of your skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For this reason, many of the treatments I offer are more accurately described as advanced chemical resurfacing rather than traditional chemical peels.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel - Why Doctor-Led Treatments Matter\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare is equally important. I provide clear, medically guided post-treatment protocols including appropriate skincare, strict SPF use and ongoing monitoring. Should sensitivity or unexpected reactions occur, I am able to assess and manage these appropriately.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical oversight does not simply make treatment safer - it makes outcomes more predictable, more refined and ultimately more effective.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had a series of TCA peels for stubborn pigmentation, and the transformation is remarkable. Dr Rachel explained everything so thoroughly and monitored my skin carefully throughout. My complexion is now even, bright, and glowing. The medical expertise made me feel completely safe, and the results speak for themselves.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Michelle, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Chemical Peels\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Chemical Peels?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','0d2eef77-317e-4e7a-9009-fb2e3b4e8287'),
(2326,2326,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Chemical Resurfacing?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing is ideal for those seeking meaningful improvement in pigmentation, acne, uneven texture or visible signs of ageing - particularly when skincare alone has not delivered the results you hoped for. It is suitable for patients who want clearer, smoother, healthier-looking skin through a structured, medically guided treatment plan rather than quick fixes or temporary glow.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><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><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><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><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><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><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\":[1946]}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','e3bde8c0-88c0-4571-9697-002cde1ff9e6'),
(2327,2327,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 22:50:42','2026-03-02 22:50:42','97d9d969-e58a-4f7e-9b51-4a65ed91d406'),
(2328,2328,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:50:42','2026-03-02 22:50:42','501d156c-73a1-4dd9-a3a6-54cee34c882f'),
(2329,2329,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','33e87065-95cb-4015-b97b-be9dcce3db9a'),
(2330,2330,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','d9f94a65-1884-4998-8368-596c3d603326'),
(2331,2331,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','478953b6-5ca3-427b-8cf0-0b650dfd4311'),
(2332,2332,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-02 22:50:42','2026-03-02 22:50:42','63c093cc-fb08-41ae-b7b0-e33a77169a52'),
(2333,2333,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','6596cb1b-43f8-49df-9938-c0eb0f1129b4'),
(2334,2334,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','643cb110-74f2-4ad9-b171-2011878b4bf4'),
(2335,2335,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','d448cfaa-a2fa-4053-b9f4-82ee572510e3'),
(2336,2336,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','217858a3-0d93-4832-9a6f-10ac2299daef'),
(2337,2337,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','90074834-2b09-475a-887f-033dc0317cf5'),
(2338,2338,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 22:50:42','2026-03-02 22:50:42','78232d0a-56cf-4452-ba82-f73d589c8035'),
(2339,2339,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 22:50:42','2026-03-02 22:50:42','a90e681c-3a9a-40ec-8057-547f4ab6d045'),
(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'),
(2368,2368,1,'Q: How many microneedling sessions will I need?','q-how-many-microneedling-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many microneedling sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of sessions rather than a one-off treatment. Treatment plans involve a course of microneedling sessions spaced 4–6 weeks apart to allow the skin time to heal and remodel between treatments. The number of sessions required depends on the concern being treated and how your skin responds. 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 plan. 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.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','f8babe24-3cbe-4846-8397-aa5e145ee717'),
(2369,2369,1,'Q: Does microneedling hurt?','q-does-microneedling-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','c591a525-3dd9-40aa-bb72-a72b50cf0e7c'),
(2370,2370,1,'Q: When will I see results from microneedling?','q-when-will-i-see-results-from-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','2862c5db-8e0b-49ee-b0d4-d0f1e5409053'),
(2371,2371,1,'Q: What is the downtime after microneedling?','q-what-is-the-downtime-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','1aa4439c-6567-4e40-83f6-e1c03468332d'),
(2372,2372,1,'Q: Is microneedling safe for dark skin?','q-is-microneedling-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is microneedling safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','3ec0fa88-f05e-452e-826c-a826c01dac82'),
(2373,2373,1,'Q: What is the difference between NCTF, PDRNs, and Exosomes?','q-what-is-the-difference-between-nctf-pdrns-and-exosomes',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between NCTF, PDRNs, and Exosomes?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: NCTF 135 HA is a poly-revitalising formulation containing over 50 active ingredients that supports hydration, luminosity and overall skin quality. Topical PDRNs (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. Exosomes 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 a detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','42f1642f-dce3-4373-a25a-5ef04bc0a7a2'),
(2374,2374,1,'Q: Can microneedling treat acne scars?','q-can-microneedling-treat-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling treat acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced medical-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 polynucleotides, biostimulators like JULAINE™ and chemical resurfacing, 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.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','820ddb90-dac7-492a-9276-0e97c636dbc1'),
(2375,2375,1,'Q: How does microneedling compare to laser resurfacing?','q-how-does-microneedling-compare-to-laser-resurfacing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does microneedling compare to laser resurfacing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 many patients.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','35d062d8-d4c2-45e4-9695-33f6510b54ca'),
(2376,2376,1,'Q: Can microneedling help with hair loss?','q-can-microneedling-help-with-hair-loss',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling help with hair loss?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','43ebdd8c-13a5-4064-b3c3-8a6797386c00'),
(2377,2377,1,'Q: What skincare should I use after microneedling?','q-what-skincare-should-i-use-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 pharmaceutical-grade 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.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','2ec2dcfd-8ad3-489f-87ec-ca29d3a52d55'),
(2378,2378,1,'Chemical Peels','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','10b838ae-67a4-417e-94bb-42efb76f1013'),
(2379,2379,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\":\"by Dr Rachel\",\"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><br /> </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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','267c1494-c0df-4b47-b33b-0e898cb8fe55'),
(2380,2380,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','a00a8fa3-1efe-4833-bc05-a0a992a96f84'),
(2381,2381,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-02 23:14:36','2026-03-02 23:14:36','e6cd274a-e047-420d-87da-4d35aabd5b29'),
(2382,2382,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-02 23:14:36','2026-03-02 23:14:36','36edd10d-aebb-45d4-b2f3-aeea494e9ce9'),
(2383,2383,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-02 23:14:36','2026-03-02 23:14:36','96f1a87f-b24d-45f2-ac6d-7e01f8f9e993'),
(2384,2384,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 23:14:36','2026-03-02 23:14:36','5cdce90f-af64-4422-88dd-5b9c888881c6'),
(2385,2385,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span><br /> </p>\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','51071833-45e2-49fc-9b27-9f0c11e73410'),
(2386,2386,1,'True Collagen Induction','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This is collagen induction therapy working at a cellular level, using the skin’s own repair mechanisms to improve strength, texture, and quality.</span></p>\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','03f52f07-8d3f-45ee-8892-90563f04fded'),
(2387,2387,1,'Advanced Serum Technology','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. These serums are delivered through the micro-channels created during microneedling, allowing deeper penetration than topical application alone and supporting meaningful, long-term improvement in skin quality.</span></p>\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','6df4d88a-e263-48a4-8f45-b6d021a5fbdf'),
(2388,2388,1,'Treats What Lasers Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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, including acne scarring, stretch marks, fine lines, pigmentation, enlarged pores, and even scalp hair thinning. This versatility allows microneedling to be safely adapted to different areas and skin types, making it a valuable option where other treatments may be less appropriate.</span></p>\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','61c43e02-ae2e-4a23-86f8-2de3fbdc8db7'),
(2389,2389,1,'Medical-Grade Precision','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This level of clinical oversight allows microneedling to be used as a form of true dermal repair, rather than a superficial skin treatment. Depth, technique, and product choice are all tailored to the individual, ensuring treatments are both safe and effective. It is this medical expertise and attention to detail that elevates outcomes and supports consistent, high-quality results over time.</span></p>\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','70cd3c47-5cd8-4eee-a9ce-4b35976ea87f'),
(2390,2390,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Is Medical Microneedling?\",\"8f4ed747-6538-42b3-9204-10e4e72f859a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">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><p> </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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">One of the key advantages of medical microneedling is precision. I carefully tailor needle depth to the area being treated and the concern being addressed.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Superficial depths are used to enhance radiance and product penetration, medium depths to improve fine lines and texture, and deeper treatments for scarring and more significant structural remodelling. This individualised approach allows results to be optimised while maintaining safety.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What further differentiates medical microneedling is the use of advanced, medical-grade serums during treatment. The micro-channels created allow active ingredients to penetrate far more effectively than they would through intact skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I offer three carefully selected serum options:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>NCTF 135 HA:</strong> A poly-revitalising formulation containing over 50 active ingredients, including hyaluronic acid, amino acids, vitamins, minerals, and antioxidants. This supports hydration, luminosity, and long-term skin quality.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Topical PDRNs (Polynucleotides):</strong> A high-strength polynucleotide formulation that combines PDRNs (building blocks of DNA), with skin-nourishing hyaluronic acid and niacinamide. This combination supports cellular repair, hydration at multiple skin levels, and barrier function, helping to enhance tissue regeneration and collagen quality, tackling multiple signs of ageing in the skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Exosomes:</strong> Next-generation technology designed to support skin repair and regeneration at a cellular level. They contain purified extracellular vesicles rich in signalling molecules that help improve communication between skin cells, encouraging repair, renewal, and collagen stimulation over time. Exosomes are particularly effective for improving scarring and treating stubborn pigmentation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During your treatment, precise microneedling is performed across the treatment areas using your chosen serum. Most patients describe the sensation as firm pressure with manageable discomfort, and the procedure is generally very well tolerated.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">After treatment, the skin typically appears flushed and warm, similar to the glow you might see after brisk exercise. This usually settles within 24 hours. Many patients notice an immediate improvement in brightness and skin vitality, with deeper, longer-term improvements continuing to develop over the following weeks as new collagen forms and matures.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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><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 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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Safety underpins every treatment I perform. Microneedling temporarily creates micro-channels within the skin, which requires strict sterile technique and medical-grade infection control. I use single-use sterile needle cartridges and adhere to clinical hygiene standards designed to minimise risk and support safe healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare and follow-up are equally important. I provide clear post-treatment guidance, including gentle skincare, sun protection, and recovery support, and I monitor progress so treatment plans can be adjusted if sensitivity or unexpected reactions occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of CMAC (the Complications in Medical Aesthetic Collaborative), I remain up to date with best-practice safety protocols and have the training and support to recognise and manage complications promptly, should they arise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When compared with energy-based resurfacing treatments, microneedling offers a non-ablative approach to collagen induction that works without heat-related tissue damage. This makes it a versatile option across a wide range of skin types, including those where pigmentation risk must be carefully considered.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led microneedling within a GP-run clinic prioritises precision, safety, and long-term skin health - ensuring treatments are tailored, evidence-based, and delivered with clinical oversight at every stage.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had medical microneedling with exosomes for my acne scarring, and the results are phenomenal. My skin texture has dramatically improved, and the deep scars have softened significantly. Dr Rachel explained everything so clearly and made me feel completely comfortable. This treatment has genuinely changed my confidence.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Katie, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Microneedling\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"K.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Microneedling?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','1755e77f-c1db-4fbe-81cc-602a1088659e'),
(2391,2391,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Medical Microneedling?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is ideal for individuals seeking deeper skin repair for concerns such as scarring, uneven texture, pigmentation changes, or age-related skin changes, particularly where topical skincare alone has reached its limits.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><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><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You prefer a non-ablative approach </strong>that works with the skin’s natural healing processes rather than relying on heat or tissue destruction.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2342]}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','f603bedf-e5e6-43c2-890f-a23bfeb814dc'),
(2392,2392,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 23:14:36','2026-03-02 23:14:36','319c1253-5b4c-4230-945f-4a5e8cd9d6fa'),
(2393,2393,1,'Q: How many microneedling sessions will I need?','q-how-many-microneedling-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many microneedling sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of sessions rather than a one-off treatment. Treatment plans involve a course of microneedling sessions spaced 4–6 weeks apart to allow the skin time to heal and remodel between treatments. The number of sessions required depends on the concern being treated and how your skin responds. 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 plan. 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.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','de2f4b79-14cd-48f0-921a-46f74bd09fdd'),
(2394,2394,1,'Q: Does microneedling hurt?','q-does-microneedling-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','ef20622e-fd95-431f-82da-49c1ccaad387'),
(2395,2395,1,'Q: When will I see results from microneedling?','q-when-will-i-see-results-from-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','b7b55957-904a-4cbf-af45-ca32c148f701'),
(2396,2396,1,'Q: What is the downtime after microneedling?','q-what-is-the-downtime-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','e219c697-a741-4cfd-94f4-3223d4b14125'),
(2397,2397,1,'Q: Is microneedling safe for dark skin?','q-is-microneedling-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is microneedling safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','65268ec9-3082-44ef-b2c4-ca6d740a1399'),
(2398,2398,1,'Q: What is the difference between NCTF, PDRNs, and Exosomes?','q-what-is-the-difference-between-nctf-pdrns-and-exosomes',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between NCTF, PDRNs, and Exosomes?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: NCTF 135 HA is a poly-revitalising formulation containing over 50 active ingredients that supports hydration, luminosity and overall skin quality. Topical PDRNs (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. Exosomes 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 a detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','9b86fc9a-5ff3-4c37-a037-93b46a01e054'),
(2399,2399,1,'Q: Can microneedling treat acne scars?','q-can-microneedling-treat-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling treat acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced medical-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 polynucleotides, biostimulators like JULAINE™ and chemical resurfacing, 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.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','86a5b04d-999d-4adc-a449-68b886967dc4'),
(2400,2400,1,'Q: How does microneedling compare to laser resurfacing?','q-how-does-microneedling-compare-to-laser-resurfacing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does microneedling compare to laser resurfacing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 many patients.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','35a0d7cd-fb4b-41a5-a0ee-a48828639dd8'),
(2401,2401,1,'Q: Can microneedling help with hair loss?','q-can-microneedling-help-with-hair-loss',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling help with hair loss?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:14:36','2026-03-02 23:14:36','38cbc401-50d8-4526-8fcd-a73d8102dda5'),
(2402,2402,1,'Q: What skincare should I use after microneedling?','q-what-skincare-should-i-use-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 pharmaceutical-grade 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.\"}',1,'2026-03-02 23:14:36','2026-03-02 23:14:36','8fad939e-096c-42a8-91bb-dd508b6a7fd3'),
(2404,2404,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-02 23:14:59','2026-03-02 23:14:59','075e9801-a197-4558-90e2-6b41bfa21129'),
(2407,2407,1,'Microneedling','microneedling','treatments/microneedling','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-02 23:15:24','2026-03-02 23:15:24','2a219f40-5017-4ec2-924e-6960185f8455'),
(2408,2408,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"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><p> </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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">One of the key advantages of medical microneedling is precision. I carefully tailor needle depth to the area being treated and the concern being addressed.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Superficial depths are used to enhance radiance and product penetration, medium depths to improve fine lines and texture, and deeper treatments for scarring and more significant structural remodelling. This individualised approach allows results to be optimised while maintaining safety.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What further differentiates medical microneedling is the use of advanced, medical-grade serums during treatment. The micro-channels created allow active ingredients to penetrate far more effectively than they would through intact skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I offer three carefully selected serum options:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>NCTF 135 HA:</strong> A poly-revitalising formulation containing over 50 active ingredients, including hyaluronic acid, amino acids, vitamins, minerals, and antioxidants. This supports hydration, luminosity, and long-term skin quality.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Topical PDRNs (Polynucleotides):</strong> A high-strength polynucleotide formulation that combines PDRNs (building blocks of DNA), with skin-nourishing hyaluronic acid and niacinamide. This combination supports cellular repair, hydration at multiple skin levels, and barrier function, helping to enhance tissue regeneration and collagen quality, tackling multiple signs of ageing in the skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Exosomes:</strong> Next-generation technology designed to support skin repair and regeneration at a cellular level. They contain purified extracellular vesicles rich in signalling molecules that help improve communication between skin cells, encouraging repair, renewal, and collagen stimulation over time. Exosomes are particularly effective for improving scarring and treating stubborn pigmentation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During your treatment, precise microneedling is performed across the treatment areas using your chosen serum. Most patients describe the sensation as firm pressure with manageable discomfort, and the procedure is generally very well tolerated.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">After treatment, the skin typically appears flushed and warm, similar to the glow you might see after brisk exercise. This usually settles within 24 hours. Many patients notice an immediate improvement in brightness and skin vitality, with deeper, longer-term improvements continuing to develop over the following weeks as new collagen forms and matures.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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><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 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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Safety underpins every treatment I perform. Microneedling temporarily creates micro-channels within the skin, which requires strict sterile technique and medical-grade infection control. I use single-use sterile needle cartridges and adhere to clinical hygiene standards designed to minimise risk and support safe healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare and follow-up are equally important. I provide clear post-treatment guidance, including gentle skincare, sun protection, and recovery support, and I monitor progress so treatment plans can be adjusted if sensitivity or unexpected reactions occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of CMAC (the Complications in Medical Aesthetic Collaborative), I remain up to date with best-practice safety protocols and have the training and support to recognise and manage complications promptly, should they arise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When compared with energy-based resurfacing treatments, microneedling offers a non-ablative approach to collagen induction that works without heat-related tissue damage. This makes it a versatile option across a wide range of skin types, including those where pigmentation risk must be carefully considered.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led microneedling within a GP-run clinic prioritises precision, safety, and long-term skin health - ensuring treatments are tailored, evidence-based, and delivered with clinical oversight at every stage.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had medical microneedling with exosomes for my acne scarring, and the results are phenomenal. My skin texture has dramatically improved, and the deep scars have softened significantly. Dr Rachel explained everything so clearly and made me feel completely comfortable. This treatment has genuinely changed my confidence.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Katie, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Microneedling\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"K.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Microneedling?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:15:24','2026-03-02 23:15:24','896d4a21-764b-4ed4-b80f-598088afb6fe'),
(2409,2409,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 23:19:00','2026-03-02 23:27:02','f139aaa2-aaaf-46d6-aecf-17457cc98396'),
(2410,2410,1,'Skin Boosters Wirral Doctor-Led Injectable Hydration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Boosters Wirral Doctor-Led Injectable Hydration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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 | Serving Heswall, West Kirby, Caldy &amp; Bebington</span></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\":\"/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-02 23:19:00','2026-03-02 23:27:02','24ec283c-b6a4-44b6-8e40-8b93f09652a6'),
(2411,2411,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','c1349de8-c854-4753-ae69-735cbd4305f6'),
(2412,2412,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-02 23:19:00','2026-03-02 23:27:02','6cb789b1-66d3-4aa0-b02f-80c3feac9116'),
(2413,2413,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-02 23:19:00','2026-03-02 23:19:00','de9ffe99-35f8-4a0b-8c2f-b6f37ee78baf'),
(2414,2414,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-02 23:19:00','2026-03-02 23:19:00','41b7e25d-adbf-44d9-8391-25cf7474014d'),
(2415,2415,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-02 23:19:00','2026-03-02 23:19:00','c69f5962-441d-40fa-9980-a3906490dce3'),
(2416,2416,1,'Why Choose Skin Boosters?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE THIS TREATMENT?\",\"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><br /> </p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:27:02','015d6ff3-8516-42e4-9c9e-235205d7a547'),
(2417,2417,1,'Intelligent Skin Hydration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Together, this improves luminosity, skin elasticity and overall skin quality, creating both an immediate glow and longer-term improvement in healthier, more resilient skin.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:27:03','0463d254-8998-4000-a1de-1132b873a348'),
(2418,2418,1,'Quality, Not Volume','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 <strong>refreshed, never changed</strong>.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:27:03','76c8c377-6e5d-4c85-a810-cf861b8a4d2e'),
(2419,2419,1,'Treats What Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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-02 23:19:00','2026-03-02 23:27:03','5c7206a8-783e-4172-9a23-3df30048e2ac'),
(2420,2420,1,'Medical-Grade Science','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. When administered by a GMC-registered doctor with detailed anatomical expertise, these treatments provide medical-grade skin rejuvenation delivered within comprehensive safety protocols.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:27:03','2b178170-75bf-4efb-855a-2d3ca5353a1e'),
(2421,2421,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In my clinic, I use premium products such as <strong>Profhilo®</strong> and <strong>Neauvia Hydro Deluxe</strong>, chosen for their safety, purity and clinical performance. Profhilo® delivers a uniquely high concentration of hyaluronic acid to stimulate collagen and elastin through bio-remodelling, while Neauvia Hydro Deluxe combines hyaluronic acid with calcium hydroxyapatite, which actively stimulates collagen production and supports skin structure and firmness alongside deep hydration.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Results are often felt quickly, with the skin feeling smoother and more hydrated within days. However, the most meaningful improvement develops over the following <strong>6-12 weeks</strong>, as fibroblasts respond and new collagen and elastin are produced. Skin gradually becomes firmer, more resilient and more luminous, with an overall improvement in texture and tone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">To maximise and maintain results, I often combine injectable skin boosters with <strong>advanced medical skincare such as pHformula</strong>. Unlike conventional skincare, pHformula is formulated to work beyond the surface, supporting controlled skin renewal and barrier repair, allowing us to improve skin health both in-clinic and at home.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For best results, I usually recommend a course of <strong>3 treatments spaced 4 weeks apart</strong>, followed by maintenance treatments every <strong>6–9 months</strong>. This layered, medical approach builds long-term skin quality rather than short-lived improvement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a <strong>GMC-registered GP</strong> with over <strong>10 years of clinical experience</strong>, I bring diagnostic training and robust safety protocols to every treatment. I have an in-depth understanding of facial vascular anatomy, can recognise early signs of complications, and carry emergency equipment to manage adverse events should they occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">However, GP-led care is about far more than managing risk.</span></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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I also design bespoke treatment programmes that integrate injectable treatments with advanced skincare as part of my <strong>Radiance Collection</strong>, where treatments are layered and timed strategically to support long-term skin health. Many of my Wirral patients combine skin boosters with carefully selected topical protocols, including retinoids, vitamin C and daily SPF 50, to enhance and maintain their results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC (Complications in Medical Aesthetic Collaborative)</strong>, I remain up to date with the latest safety guidance and best practice in injectable aesthetics.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skin deserves thoughtful assessment, precise technique and a medical approach that prioritises safety as much as results. GP-led care ensures you receive treatment that is appropriate, personalised and grounded in clinical expertise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had skin boosters for my face and neck and the results are incredible. My skin looks so much healthier and more radiant, and the crepey texture on my neck has completely smoothed out. Dr Rachel was so thorough in explaining everything, I felt completely confident. This treatment has genuinely transformed my skin.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Laura, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Skin Boosters\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Skin Boosters?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When it comes to injectable treatments, medical expertise makes a meaningful difference. Doctor-led care brings diagnostic precision, anatomical knowledge and robust safety protocols to achieve consistently safe, high-quality outcomes.</span><br /> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:19:00','2026-03-02 23:27:03','4a37c17f-c32c-4b39-9e3a-03d5739588e1'),
(2422,2422,1,'Who Should Consider Skin Boosters?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Skin Boosters?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Skin boosters are an ideal option for those with dull or dehydrated skin who are seeking meaningful improvement in skin quality, texture and radiance, without adding volume.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates for Skin Boosters:</strong></span></h4><p> </p><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><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You value skin quality over volume</strong> and and want to enhance hydration, texture and radiance without adding structure or altering your natural facial shape.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-02 23:19:00','2026-03-02 23:27:03','d73c9979-c2b7-45ea-9936-74482c8c13c1'),
(2423,2423,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 23:19:00','2026-03-02 23:19:00','51d83fdc-891c-4b3a-a50a-0c9a28eb6f57'),
(2424,2424,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 23:19:00','2026-03-02 23:19:00','a2b38781-befd-49e3-becc-74a8ab05fa8e'),
(2425,2425,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','4191038d-ded4-401b-8282-035bdd04a613'),
(2426,2426,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','c5ec1e5d-af3c-4d46-8180-d2a471d4502f'),
(2427,2427,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','240668a8-575a-40a8-80c5-86d04d2160a3'),
(2428,2428,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','c7d2197f-6f69-44bf-befd-fd2b7fc08eb1'),
(2429,2429,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','4c7b9df1-9983-4410-8033-2f25fd596b36'),
(2430,2430,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','e770fac2-d0c0-4a39-8779-ae8750a5e47c'),
(2431,2431,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','005a329f-325b-4437-a7b3-ef883702cd1a'),
(2432,2432,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','16e35101-f99f-47f1-80ef-cef948603f5c'),
(2433,2433,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','e57fb117-0e30-40fd-afe9-880d980d3156'),
(2434,2434,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','8e166864-0ce1-424d-81b7-c83b6b67ab70'),
(2435,2435,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 23:19:00','2026-03-02 23:19:00','acfe9a02-9a0c-4d32-8da6-b896b3794a06'),
(2436,2436,1,'Chemical Peels','chemical-peels-2','treatments/chemical-peels-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','2a9e6293-32a7-453c-87a1-0b6a6091bb1b'),
(2437,2437,1,'Chemical Peels Wirral Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Wirral Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','c773322f-bdbc-457b-b33d-08892d3fcba4'),
(2438,2438,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','43d9b39a-5f6d-4625-a4bb-030638a55173'),
(2439,2439,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-02 23:19:00','2026-03-02 23:19:00','b44296d0-1951-479e-bfec-f5aed3e7fd46'),
(2440,2440,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-02 23:19:00','2026-03-02 23:19:00','cf4a571b-84fa-4f19-a97e-5dfd1c2b9999'),
(2441,2441,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-02 23:19:00','2026-03-02 23:19:00','eacd6646-e65d-4095-a1ab-aa875bab2106'),
(2442,2442,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-02 23:19:00','2026-03-02 23:19:00','5a7989a6-de0b-470a-bdab-d8a329585749'),
(2443,2443,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','c5bb6e29-6753-485b-bf86-3e8c4dcb10ba'),
(2444,2444,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over time, skin becomes smoother, more even in tone, less congested and visibly healthier - with results that go beyond simple exfoliation.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','c1749fcc-7cde-4313-bf12-e70b8ec8e456'),
(2445,2445,1,'Bespoke, Intelligent Formulations','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 or visible ageing.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Rather than a one-size-fits-all peel, I carefully select and layer ingredients to work synergistically - enhancing results while protecting your skin barrier. This personalised approach allows me to move beyond traditional “peeling” and into advanced chemical resurfacing, where controlled regeneration replaces aggressive exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">It is this tailored, medically-led strategy that delivers meaningful, sustainable improvement — not just temporary surface glow.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','bbfaa30b-88ae-449f-8e03-ee7fc75eef3f'),
(2446,2446,1,'Treats What High-Street Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 high-street serums simply cannot resolve. Stubborn pigmentation that refuses to fade. Active acne that needs true pore decongestion. Post-inflammatory hyperpigmentation left behind after breakouts. Fine lines etched by cumulative sun damage. Rough, uneven texture that no primer can smooth. While over-the-counter products try to work on the very surface of the skin, professional chemical resurfacing penetrates in a controlled, clinical way to stimulate genuine change within the epidermis and upper dermis. The result is not just temporary brightness — but measurable, professional-grade improvement in clarity, tone and texture.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','3f5af80f-eb52-4b2e-b255-340f015e0756'),
(2447,2447,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 full medical history, current skincare, medication use and Fitzpatrick skin type before selecting the most appropriate treatment. This is particularly important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Precise product selection, controlled application, correct timing and appropriate aftercare all matter. Medical oversight means your treatment is not only effective, but safe, measured and tailored to your individual skin. It is this level of clinical judgement that turns a standard peel into a carefully managed regenerative treatment — with results you can trust.</span></p>\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','1458097f-0b31-456a-9fc5-2441274fd225'),
(2448,2448,1,'Dr Rachel - The Science of Advanced Chemical Resurfacing','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"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%);\\\">\\\"When most people search for “chemical peels”, they are usually imagining visible peeling and surface exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is what makes pHformula fundamentally different.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Each system is concern-led:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>CR (Chronic Redness)</strong> – Calms inflammation, strengthens barrier function and improves rosacea-prone or reactive skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AC (Acne)</strong> – Targets congestion, excess oil, inflammation and post-inflammatory pigmentation while supporting healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>MELA (Pigmentation)</strong> – Addresses uneven tone, sun damage and melasma by regulating melanogenesis pathways.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AGE (Ageing Skin)</strong> – Stimulates collagen production, improves elasticity and refines fine lines through dermal activation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These are not one-size-fits-all peels. They are progressive resurfacing programmes designed to work alongside specific pHformula homecare. Pre-treatment preparation and ongoing homecare optimise penetration, enhance results and significantly reduce the risk of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The philosophy is correction without aggression — achieving meaningful, sustainable improvement while maintaining long-term skin health.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I assess your medical history, skin type, current skincare, medication use and tolerance before creating your treatment plan. My aim is not visible peeling for its own sake, but measurable improvement in the clarity, strength and resilience of your skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For this reason, many of the treatments I offer are more accurately described as advanced chemical resurfacing rather than traditional chemical peels.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel - Why Doctor-Led Treatments Matter\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare is equally important. I provide clear, medically guided post-treatment protocols including appropriate skincare, strict SPF use and ongoing monitoring. Should sensitivity or unexpected reactions occur, I am able to assess and manage these appropriately.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical oversight does not simply make treatment safer - it makes outcomes more predictable, more refined and ultimately more effective.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had a series of TCA peels for stubborn pigmentation, and the transformation is remarkable. Dr Rachel explained everything so thoroughly and monitored my skin carefully throughout. My complexion is now even, bright, and glowing. The medical expertise made me feel completely safe, and the results speak for themselves.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Michelle, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Chemical Peels\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Chemical Peels?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','8a41c21f-2a91-404f-931e-2eddba0fc6e7'),
(2449,2449,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Chemical Resurfacing?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing is ideal for those seeking meaningful improvement in pigmentation, acne, uneven texture or visible signs of ageing - particularly when skincare alone has not delivered the results you hoped for. It is suitable for patients who want clearer, smoother, healthier-looking skin through a structured, medically guided treatment plan rather than quick fixes or temporary glow.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><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><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><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><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><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><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\":[1946]}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','32d1dec2-ec0e-4716-8720-0acc1706322f'),
(2450,2450,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 23:19:00','2026-03-02 23:19:00','b2322084-d6e6-4904-94ab-20aa519ab9c3'),
(2451,2451,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 23:19:00','2026-03-02 23:19:00','00cebc6b-2f59-4fa6-a0f1-c7b1e6e86bb6'),
(2452,2452,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','8b14aee0-f18f-4e67-aa1e-f12ca42fd346'),
(2453,2453,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','ea99a805-9ba9-4495-82ba-abd462e43734'),
(2454,2454,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','c0a1c194-78f4-46c2-9da7-88a2a1f1c460'),
(2455,2455,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-02 23:19:00','2026-03-02 23:19:00','1e7cf952-9d0e-4764-87ac-b6a94a35a0bb'),
(2456,2456,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','e3022479-804c-4109-a35a-2f5710d8ddf3'),
(2457,2457,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','7c088d48-ccc0-429a-a400-83b5fb8aa3be'),
(2458,2458,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:00','2026-03-02 23:19:00','ca03afc3-ffbd-4a77-bb5c-adda39cd44e5'),
(2459,2459,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:01','2026-03-02 23:19:01','4b89ce84-ce36-47a0-9f32-9f8cdecf17a3'),
(2460,2460,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:01','2026-03-02 23:19:01','54f69489-3702-4913-a3ab-16fee1723aaa'),
(2461,2461,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:19:01','2026-03-02 23:19:01','b215bf56-dc5e-4a1e-b64c-e5460a7bccf6'),
(2462,2462,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 23:19:01','2026-03-02 23:19:01','5468c8da-2f65-4038-a7f0-da53076be8c3'),
(2488,2488,1,'Q: Do skin boosters hurt?','q-do-skin-boosters-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do skin boosters hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','09aa55c3-f94e-4600-bbb6-9c6606a9714e'),
(2489,2489,1,'Q: When will I see results from skin boosters?','q-when-will-i-see-results-from-skin-boosters',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from skin boosters?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','abc2a6bc-ef55-4bba-90ff-b368793ff50d'),
(2490,2490,1,'Q: Are skin boosters safe?','q-are-skin-boosters-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are skin boosters safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','d346d12d-07d2-427e-8688-70460c8de1ff'),
(2491,2491,1,'Q: What is the downtime after skin boosters?','q-what-is-the-downtime-after-skin-boosters',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after skin boosters?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','86bb186e-5aa5-495a-adab-8c4ce8d11000'),
(2492,2492,1,'Q: How long do skin booster results last?','q-how-long-do-skin-booster-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do skin booster results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','711a88b0-6a76-4ee7-a8c5-dd0e4a90b164'),
(2493,2493,1,'Q: How many treatments will I need?','q-how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many treatments will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','8b1575be-3f6a-4680-be49-f6f10ef6fd3c'),
(2494,2494,1,'Q: What is the difference between skin boosters and Profhilo?','q-what-is-the-difference-between-skin-boosters-and-profhilo',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between skin boosters and Profhilo?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','f59b29e9-dc6a-497d-9a96-866692f372c8'),
(2495,2495,1,'Q: Can I combine skin boosters with other treatments?','q-can-i-combine-skin-boosters-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine skin boosters with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','e2eaa91f-1e62-4844-84aa-484158118a66'),
(2496,2496,1,'Q: How can I extend my skin booster results?','q-how-can-i-extend-my-skin-booster-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How can I extend my skin booster results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\n\\n\\nComplementary treatments: 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.\\n\\n\\nI provide detailed aftercare and skin guidance following treatment to help you maintain and maximise your results over time.\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','59796559-9180-4acd-bbd7-6a49c4e68fd6'),
(2497,2497,1,'Q: Will skin boosters help my acne scars?','q-will-skin-boosters-help-my-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will skin boosters help my acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','fb70c977-2feb-48cc-990b-130e9ca28180'),
(2498,2498,1,'Skin Boosters','skin-boosters','treatments/skin-boosters','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','2b81330b-510a-43af-9e04-4a8dc947df21'),
(2499,2499,1,'Skin Boosters Wirral Doctor-Led Injectable Hydration','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Skin Boosters Wirral Doctor-Led Injectable Hydration\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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 | Serving Heswall, West Kirby, Caldy &amp; Bebington</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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','55d5d192-3097-4631-894f-c865e88eac8b'),
(2500,2500,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','675f1295-b843-4b5a-b44d-d16418a5043b'),
(2501,2501,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-02 23:27:03','2026-03-02 23:27:03','f81ce8e5-8a50-4feb-b450-3d62d92c85eb'),
(2502,2502,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-02 23:27:03','2026-03-02 23:27:03','01a86f6f-331e-417a-8c85-c6e35f6a06bf'),
(2503,2503,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-02 23:27:03','2026-03-02 23:27:03','a8837e72-9c52-44aa-8ae4-1078233fc3fe'),
(2504,2504,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-02 23:27:03','2026-03-02 23:27:03','722b002e-5663-4247-b7a1-e07f4a3ae324'),
(2505,2505,1,'Why Choose Skin Boosters?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE THIS TREATMENT?\",\"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><br /> </p>\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','4cdff373-64fc-4c59-866b-fa83391a958e'),
(2506,2506,1,'Intelligent Skin Hydration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Together, this improves luminosity, skin elasticity and overall skin quality, creating both an immediate glow and longer-term improvement in healthier, more resilient skin.</span></p>\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','8c886002-1527-4efd-97b3-3f7377cd76b6'),
(2507,2507,1,'Quality, Not Volume','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 <strong>refreshed, never changed</strong>.</span></p>\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','6706a84c-6f1f-4ba6-a240-af180807a3e2'),
(2508,2508,1,'Treats What Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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-02 23:27:03','2026-03-02 23:27:03','281760ff-fbf3-421c-bb94-52d4b753700c'),
(2509,2509,1,'Medical-Grade Science','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. When administered by a GMC-registered doctor with detailed anatomical expertise, these treatments provide medical-grade skin rejuvenation delivered within comprehensive safety protocols.</span></p>\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','03e901f3-07bf-4de5-ba5c-f55b78e6cdf0'),
(2510,2510,1,'What Are Skin Boosters?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Skin Boosters?\",\"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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In my clinic, I use premium products such as <strong>Profhilo®</strong> and <strong>Neauvia Hydro Deluxe</strong>, chosen for their safety, purity and clinical performance. Profhilo® delivers a uniquely high concentration of hyaluronic acid to stimulate collagen and elastin through bio-remodelling, while Neauvia Hydro Deluxe combines hyaluronic acid with calcium hydroxyapatite, which actively stimulates collagen production and supports skin structure and firmness alongside deep hydration.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Results are often felt quickly, with the skin feeling smoother and more hydrated within days. However, the most meaningful improvement develops over the following <strong>6-12 weeks</strong>, as fibroblasts respond and new collagen and elastin are produced. Skin gradually becomes firmer, more resilient and more luminous, with an overall improvement in texture and tone.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">To maximise and maintain results, I often combine injectable skin boosters with <strong>advanced medical skincare such as pHformula</strong>. Unlike conventional skincare, pHformula is formulated to work beyond the surface, supporting controlled skin renewal and barrier repair, allowing us to improve skin health both in-clinic and at home.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For best results, I usually recommend a course of <strong>3 treatments spaced 4 weeks apart</strong>, followed by maintenance treatments every <strong>6–9 months</strong>. This layered, medical approach builds long-term skin quality rather than short-lived improvement.</span></p><p> </p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a <strong>GMC-registered GP</strong> with over <strong>10 years of clinical experience</strong>, I bring diagnostic training and robust safety protocols to every treatment. I have an in-depth understanding of facial vascular anatomy, can recognise early signs of complications, and carry emergency equipment to manage adverse events should they occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">However, GP-led care is about far more than managing risk.</span></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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I also design bespoke treatment programmes that integrate injectable treatments with advanced skincare as part of my <strong>Radiance Collection</strong>, where treatments are layered and timed strategically to support long-term skin health. Many of my Wirral patients combine skin boosters with carefully selected topical protocols, including retinoids, vitamin C and daily SPF 50, to enhance and maintain their results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of <strong>CMAC (Complications in Medical Aesthetic Collaborative)</strong>, I remain up to date with the latest safety guidance and best practice in injectable aesthetics.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your skin deserves thoughtful assessment, precise technique and a medical approach that prioritises safety as much as results. GP-led care ensures you receive treatment that is appropriate, personalised and grounded in clinical expertise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had skin boosters for my face and neck and the results are incredible. My skin looks so much healthier and more radiant, and the crepey texture on my neck has completely smoothed out. Dr Rachel was so thorough in explaining everything, I felt completely confident. This treatment has genuinely transformed my skin.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Laura, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Skin Boosters\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Skin Boosters?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When it comes to injectable treatments, medical expertise makes a meaningful difference. Doctor-led care brings diagnostic precision, anatomical knowledge and robust safety protocols to achieve consistently safe, high-quality outcomes.</span><br /> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','d835a12f-af97-4ef6-925f-d7e409d0a609'),
(2511,2511,1,'Who Should Consider Skin Boosters?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Skin Boosters?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Skin boosters are an ideal option for those with dull or dehydrated skin who are seeking meaningful improvement in skin quality, texture and radiance, without adding volume.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates for Skin Boosters:</strong></span></h4><p> </p><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><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You value skin quality over volume</strong> and and want to enhance hydration, texture and radiance without adding structure or altering your natural facial shape.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[1946]}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','e5e877de-5259-477a-b069-38cc71dabfc9'),
(2512,2512,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 23:27:03','2026-03-02 23:27:03','c106ccca-239f-4c93-920b-98f26d0d91dc'),
(2513,2513,1,'Q: Do skin boosters hurt?','q-do-skin-boosters-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do skin boosters hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','fb6ecab2-c8d5-44fa-9e4f-e8e43b363cdd'),
(2514,2514,1,'Q: When will I see results from skin boosters?','q-when-will-i-see-results-from-skin-boosters',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from skin boosters?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','3e8713db-492e-41e9-b0c3-c574426fc436'),
(2515,2515,1,'Q: Are skin boosters safe?','q-are-skin-boosters-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are skin boosters safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','4536f33e-5bd7-4f4b-aed8-dbbb3a1f8311'),
(2516,2516,1,'Q: What is the downtime after skin boosters?','q-what-is-the-downtime-after-skin-boosters',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after skin boosters?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','7ddbda92-4a12-4288-878a-53b3ac48e2ba'),
(2517,2517,1,'Q: How long do skin booster results last?','q-how-long-do-skin-booster-results-last',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do skin booster results last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','69bb21b0-ada8-4cb5-9b71-955c99c2cb81'),
(2518,2518,1,'Q: How many treatments will I need?','q-how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many treatments will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','27b2a76d-fae5-4e67-abdd-26e9563b9920'),
(2519,2519,1,'Q: What is the difference between skin boosters and Profhilo?','q-what-is-the-difference-between-skin-boosters-and-profhilo',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between skin boosters and Profhilo?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','deced41c-227a-4d98-98ec-4c0a1eb23de3'),
(2520,2520,1,'Q: Can I combine skin boosters with other treatments?','q-can-i-combine-skin-boosters-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine skin boosters with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','90575eb7-6fe8-4804-b966-79cd1b5ef896'),
(2521,2521,1,'Q: How can I extend my skin booster results?','q-how-can-i-extend-my-skin-booster-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How can I extend my skin booster results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\n\\n\\nComplementary treatments: 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.\\n\\n\\nI provide detailed aftercare and skin guidance following treatment to help you maintain and maximise your results over time.\"}',1,'2026-03-02 23:27:03','2026-03-02 23:27:03','03de5067-9816-45e7-a96f-6628621388c0'),
(2522,2522,1,'Q: Will skin boosters help my acne scars?','q-will-skin-boosters-help-my-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will skin boosters help my acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:27:03','2026-03-02 23:27:03','f3de68d3-da8c-4f0c-bccd-653bd4abce0a'),
(2523,2523,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2581]}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','3e4c3dd8-4068-44bc-8e06-a0ff3cc41a7e'),
(2524,2524,1,'Polynucleotides on the Wirral, Doctor-Led Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides on the Wirral, Doctor-Led Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','8f5ac076-f646-459a-b567-863f94d5a446'),
(2525,2525,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','771f0f7b-c3ae-4fd8-97ef-316518a25076'),
(2526,2526,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-02 23:42:31','2026-03-02 23:57:48','6124310b-c660-425f-a2a8-cbb9d4202a4e'),
(2527,2527,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-02 23:42:31','2026-03-02 23:42:31','be7c0b8a-53b0-4f33-bf8a-feb783618470'),
(2528,2528,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-02 23:42:31','2026-03-02 23:42:31','308b7fcf-2365-4ff3-bff3-e4bacc9544ff'),
(2529,2529,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-02 23:42:31','2026-03-02 23:57:48','a4f7a2a9-4ebf-40ab-9dc9-9eb5f1222fbb'),
(2530,2530,1,'Why Choose Polynucleotide Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"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-02 23:42:31','2026-03-02 23:57:48','917f6106-0381-4128-bf99-2a1f9e0638b1'),
(2531,2531,1,'True Regenerative Medicine','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over the following 12 weeks, the skin gradually rebuilds itself, leading to improved strength, elasticity and overall skin quality in a natural, progressive way.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','654f439b-5092-4813-8d21-00f55dabc359'),
(2532,2532,1,'Treats What Others Cannot','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. By supporting repair at a cellular level, polynucleotides help improve skin strength, resilience and function in areas where other approaches may be limited.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','1877cc98-0bb1-495c-b08d-9c422d1dec49'),
(2533,2533,1,'Natural, Lasting Results','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Polynucleotides align beautifully with my philosophy of refreshed, never changed, enhancing skin quality in a way that looks natural, gradual and never overdone.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','a8836a09-8637-4310-9323-c3b48f310e06'),
(2534,2534,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. When administered by qualified medical professionals with detailed anatomical knowledge, polynucleotide treatments offer a high level of safety alongside meaningful, regenerative skin improvement.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','e3211c8b-ba57-4088-bedd-5be621e61cfd'),
(2535,2535,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In my clinic, I use premium, CE-marked products such as <strong>Plinest</strong>, selected for their safety, purity and clinical evidence. A typical course involves 3-4 treatments spaced 3-4 weeks apart, building a regenerative foundation within the skin. Improvements develop gradually, with results becoming most noticeable around <strong>12 weeks</strong> as the skin strengthens and renews.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For menopausal skin, where thinning and dryness are influenced by declining oestrogen levels, polynucleotides offer targeted cellular support alongside hormonal management. Many of my Wirral patients in their 40s, 50s and 60s find this approach particularly helpful for restoring skin quality and resilience.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This reflects the direction aesthetic medicine is moving in: supporting the skin to repair and regenerate itself, rather than simply addressing surface changes.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>— Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2583],\"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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is where doctor-led treatment matters.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a <strong>GMC-registered GP</strong> with over ten years of clinical experience, I bring medical training, diagnostic expertise and a detailed understanding of facial anatomy to every treatment. I am trained to recognise complications early and manage them appropriately, and just as importantly, to reduce the risk of complications through careful planning, anatomical knowledge and clinical judgement.</span></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 thorough assessment, correct product choice and precise technique.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I am also a member of <strong>CMAC (Complications in Medical Aesthetics Collaborative)</strong>, ensuring that my practice remains aligned with the latest safety guidance and evidence-based protocols.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your face deserves expert care, careful judgement and a medical approach focused on safety as well as results.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>— Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2582],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I\'ve had polynucleotides for my under-eyes for six months now and the transformation is incredible. My hereditary dark circles have significantly faded and my skin looks so much healthier. Dr Rachel explained everything thoroughly, and I felt completely confident in her expertise. This has genuinely changed how I feel about my face.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Emma, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Polynucleotides\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"E.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Aesthetics by Dr Rachel?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"> An award-winning, doctor-led aesthetic clinic specialising in natural, regenerative results across the Wirral. Advanced under-eye treatments demand a medical approach, expert assessment and precise technique.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','e04f0ad7-6cbb-468c-8ea1-37343e3f3748'),
(2536,2536,1,'Who Should Consider Polynucleotides?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Polynucleotides?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are an ideal option for those seeking genuine cellular repair and long-term improvement in skin quality. They are particularly well suited to concerns linked to skin thinning and reduced resilience, such as dark circles, crepey texture and menopausal skin changes, especially where other treatments may offer more limited benefit.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates For Polynucleotides:</strong></span></h4><p> </p><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for dermal fillers</strong> in delicate areas such as the under-eyes, or prefer a non-volumising approach. Polynucleotides improve skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have acne scarring</strong> that requires tissue remodelling and collagen support to improve uneven texture and atrophic scars.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Common Concerns Treated:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ Dark circles (related to skin thinning and vascular visibility)</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Fine lines and crepey texture</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Skin thinning and loss of firmness</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Dehydration and dull complexion</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Acne scarring and uneven texture</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Menopausal skin changes</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Hair thinning </span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Not Suitable If:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\">✗ Pregnant or breastfeeding</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✗ Active skin infection</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✗ Autoimmune skin conditions</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✗ Unrealistic expectations for immediate results</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2581]}',1,'2026-03-02 23:42:31','2026-03-02 23:57:48','827b0427-1784-493a-a2c1-f50c5017cd85'),
(2537,2537,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 23:42:31','2026-03-02 23:42:31','71223f27-9712-433e-8b45-a26c9631451a'),
(2538,2538,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 23:42:31','2026-03-02 23:42:31','a8458120-657c-4b43-badd-27dccea8aac7'),
(2539,2539,1,'Q: How many microneedling sessions will I need?','q-how-many-microneedling-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many microneedling sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of sessions rather than a one-off treatment. Treatment plans involve a course of microneedling sessions spaced 4–6 weeks apart to allow the skin time to heal and remodel between treatments. The number of sessions required depends on the concern being treated and how your skin responds. 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 plan. 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.\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','d22ce1cc-edbb-46fb-8017-a10c793b9dff'),
(2540,2540,1,'Q: Does microneedling hurt?','q-does-microneedling-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:31','2026-03-02 23:42:31','8eec98fb-0241-423b-9306-177f64ff652a'),
(2541,2541,1,'Q: When will I see results from microneedling?','q-when-will-i-see-results-from-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:31','2026-03-02 23:42:31','28bbf8fe-a097-4cc7-8611-5cf579449c8a'),
(2542,2542,1,'Q: What is the downtime after microneedling?','q-what-is-the-downtime-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:31','2026-03-02 23:42:31','89a1bcc8-9e2a-40bd-b2c4-acea52ca097a'),
(2543,2543,1,'Q: Is microneedling safe for dark skin?','q-is-microneedling-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is microneedling safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:31','2026-03-02 23:42:31','493b6848-f794-47ec-bf36-abc344a94fe2'),
(2544,2544,1,'Q: What is the difference between NCTF, PDRNs, and Exosomes?','q-what-is-the-difference-between-nctf-pdrns-and-exosomes',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between NCTF, PDRNs, and Exosomes?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: NCTF 135 HA is a poly-revitalising formulation containing over 50 active ingredients that supports hydration, luminosity and overall skin quality. Topical PDRNs (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. Exosomes 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 a detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','8aa2ebbb-030e-4aec-bd73-3dd9d68ca34c'),
(2545,2545,1,'Q: Can microneedling treat acne scars?','q-can-microneedling-treat-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling treat acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced medical-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 polynucleotides, biostimulators like JULAINE™ and chemical resurfacing, 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.\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','2c25ccb5-f1c4-44e3-943f-d6beca70762c'),
(2546,2546,1,'Q: How does microneedling compare to laser resurfacing?','q-how-does-microneedling-compare-to-laser-resurfacing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does microneedling compare to laser resurfacing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 many patients.\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','2fd9f492-0890-4853-8759-2ea3828cbef1'),
(2547,2547,1,'Q: Can microneedling help with hair loss?','q-can-microneedling-help-with-hair-loss',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling help with hair loss?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:31','2026-03-02 23:42:31','4402e866-9c07-427f-986c-deb937d12e6b'),
(2548,2548,1,'Q: What skincare should I use after microneedling?','q-what-skincare-should-i-use-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 pharmaceutical-grade 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.\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','6d53518f-b36b-43d9-8d3d-fd47c910d4d8'),
(2549,2549,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 23:42:31','2026-03-02 23:42:31','fb789618-35b3-457d-91ac-d760d8e944fa'),
(2550,2550,1,'Microneedling','microneedling-2','treatments/microneedling-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','6c6a1a0a-1394-4387-af0a-937828e41ab6'),
(2551,2551,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\":\"by Dr Rachel\",\"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><br /> </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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','c760ea8d-7f68-4af4-8bcb-e99913db0433'),
(2552,2552,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','f68c7c7b-0afc-4f4c-bcdc-206c4b7ab3e2'),
(2553,2553,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-02 23:42:31','2026-03-02 23:42:31','33800fa2-3fe3-4202-bd9e-f93fb877e29e'),
(2554,2554,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-02 23:42:31','2026-03-02 23:42:31','f2c4e1bf-0244-4c9d-9fa9-cfceab477c7f'),
(2555,2555,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-02 23:42:31','2026-03-02 23:42:31','b41e25a3-0965-4e38-b795-dc736f30201f'),
(2556,2556,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 23:42:31','2026-03-02 23:42:31','1d57f87a-217c-40cf-81cd-18a100a6aa4d'),
(2557,2557,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span><br /> </p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','4b46d697-7e8a-4471-a90e-8f4b76fc1b3f'),
(2558,2558,1,'True Collagen Induction','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This is collagen induction therapy working at a cellular level, using the skin’s own repair mechanisms to improve strength, texture, and quality.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','5cdef092-72df-4273-ace8-467ec0db7882'),
(2559,2559,1,'Advanced Serum Technology','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. These serums are delivered through the micro-channels created during microneedling, allowing deeper penetration than topical application alone and supporting meaningful, long-term improvement in skin quality.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','798f6058-f896-46dd-ab90-a20dd8ef3109'),
(2560,2560,1,'Treats What Lasers Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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, including acne scarring, stretch marks, fine lines, pigmentation, enlarged pores, and even scalp hair thinning. This versatility allows microneedling to be safely adapted to different areas and skin types, making it a valuable option where other treatments may be less appropriate.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','a8cfa0fb-419e-4124-b018-0fbcd6723cbf'),
(2561,2561,1,'Medical-Grade Precision','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This level of clinical oversight allows microneedling to be used as a form of true dermal repair, rather than a superficial skin treatment. Depth, technique, and product choice are all tailored to the individual, ensuring treatments are both safe and effective. It is this medical expertise and attention to detail that elevates outcomes and supports consistent, high-quality results over time.</span></p>\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','1691f036-2684-40d5-85aa-5b3439b88a0f'),
(2562,2562,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"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><p> </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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">One of the key advantages of medical microneedling is precision. I carefully tailor needle depth to the area being treated and the concern being addressed.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Superficial depths are used to enhance radiance and product penetration, medium depths to improve fine lines and texture, and deeper treatments for scarring and more significant structural remodelling. This individualised approach allows results to be optimised while maintaining safety.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What further differentiates medical microneedling is the use of advanced, medical-grade serums during treatment. The micro-channels created allow active ingredients to penetrate far more effectively than they would through intact skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I offer three carefully selected serum options:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>NCTF 135 HA:</strong> A poly-revitalising formulation containing over 50 active ingredients, including hyaluronic acid, amino acids, vitamins, minerals, and antioxidants. This supports hydration, luminosity, and long-term skin quality.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Topical PDRNs (Polynucleotides):</strong> A high-strength polynucleotide formulation that combines PDRNs (building blocks of DNA), with skin-nourishing hyaluronic acid and niacinamide. This combination supports cellular repair, hydration at multiple skin levels, and barrier function, helping to enhance tissue regeneration and collagen quality, tackling multiple signs of ageing in the skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Exosomes:</strong> Next-generation technology designed to support skin repair and regeneration at a cellular level. They contain purified extracellular vesicles rich in signalling molecules that help improve communication between skin cells, encouraging repair, renewal, and collagen stimulation over time. Exosomes are particularly effective for improving scarring and treating stubborn pigmentation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During your treatment, precise microneedling is performed across the treatment areas using your chosen serum. Most patients describe the sensation as firm pressure with manageable discomfort, and the procedure is generally very well tolerated.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">After treatment, the skin typically appears flushed and warm, similar to the glow you might see after brisk exercise. This usually settles within 24 hours. Many patients notice an immediate improvement in brightness and skin vitality, with deeper, longer-term improvements continuing to develop over the following weeks as new collagen forms and matures.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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><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 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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Safety underpins every treatment I perform. Microneedling temporarily creates micro-channels within the skin, which requires strict sterile technique and medical-grade infection control. I use single-use sterile needle cartridges and adhere to clinical hygiene standards designed to minimise risk and support safe healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare and follow-up are equally important. I provide clear post-treatment guidance, including gentle skincare, sun protection, and recovery support, and I monitor progress so treatment plans can be adjusted if sensitivity or unexpected reactions occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of CMAC (the Complications in Medical Aesthetic Collaborative), I remain up to date with best-practice safety protocols and have the training and support to recognise and manage complications promptly, should they arise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When compared with energy-based resurfacing treatments, microneedling offers a non-ablative approach to collagen induction that works without heat-related tissue damage. This makes it a versatile option across a wide range of skin types, including those where pigmentation risk must be carefully considered.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led microneedling within a GP-run clinic prioritises precision, safety, and long-term skin health - ensuring treatments are tailored, evidence-based, and delivered with clinical oversight at every stage.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had medical microneedling with exosomes for my acne scarring, and the results are phenomenal. My skin texture has dramatically improved, and the deep scars have softened significantly. Dr Rachel explained everything so clearly and made me feel completely comfortable. This treatment has genuinely changed my confidence.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Katie, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Microneedling\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"K.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Microneedling?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','d8703a89-1d93-4077-abae-8ac234577b02'),
(2563,2563,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Medical Microneedling?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is ideal for individuals seeking deeper skin repair for concerns such as scarring, uneven texture, pigmentation changes, or age-related skin changes, particularly where topical skincare alone has reached its limits.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><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><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You prefer a non-ablative approach </strong>that works with the skin’s natural healing processes rather than relying on heat or tissue destruction.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2342]}',1,'2026-03-02 23:42:31','2026-03-02 23:42:31','5dea5736-c006-4e98-be11-f301dcaecbd4'),
(2564,2564,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 23:42:31','2026-03-02 23:42:31','c2630c1f-72fa-4583-933d-959ee9d58a2d'),
(2565,2565,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 23:42:31','2026-03-02 23:42:31','b57b60d4-fc44-4c34-ad88-6b989ef00ba2'),
(2566,2566,1,'Q: How many microneedling sessions will I need?','q-how-many-microneedling-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many microneedling sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of sessions rather than a one-off treatment. Treatment plans involve a course of microneedling sessions spaced 4–6 weeks apart to allow the skin time to heal and remodel between treatments. The number of sessions required depends on the concern being treated and how your skin responds. 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 plan. 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.\"}',1,'2026-03-02 23:42:32','2026-03-02 23:42:32','beb777b9-cc3a-49ab-8f65-009cfe6817e3'),
(2567,2567,1,'Q: Does microneedling hurt?','q-does-microneedling-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:32','2026-03-02 23:42:32','c51c946d-d88e-4ee7-933c-9ac4de7c80c9'),
(2568,2568,1,'Q: When will I see results from microneedling?','q-when-will-i-see-results-from-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:32','2026-03-02 23:42:32','daffdc1f-69a8-4c2b-a120-cf07969d1874'),
(2569,2569,1,'Q: What is the downtime after microneedling?','q-what-is-the-downtime-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:32','2026-03-02 23:42:32','f8b017dd-0915-48b4-bb03-778e9db15a9d'),
(2570,2570,1,'Q: Is microneedling safe for dark skin?','q-is-microneedling-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is microneedling safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:32','2026-03-02 23:42:32','90508b66-56c0-41fd-9ca6-418c304c2285'),
(2571,2571,1,'Q: What is the difference between NCTF, PDRNs, and Exosomes?','q-what-is-the-difference-between-nctf-pdrns-and-exosomes',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between NCTF, PDRNs, and Exosomes?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: NCTF 135 HA is a poly-revitalising formulation containing over 50 active ingredients that supports hydration, luminosity and overall skin quality. Topical PDRNs (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. Exosomes 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 a detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.\"}',1,'2026-03-02 23:42:32','2026-03-02 23:42:32','e8ad9d84-d80f-44a3-a75d-76c3fe5af374'),
(2572,2572,1,'Q: Can microneedling treat acne scars?','q-can-microneedling-treat-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling treat acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced medical-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 polynucleotides, biostimulators like JULAINE™ and chemical resurfacing, 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.\"}',1,'2026-03-02 23:42:32','2026-03-02 23:42:32','dc6a2b34-dff6-4727-a22d-bd844f38ce7b'),
(2573,2573,1,'Q: How does microneedling compare to laser resurfacing?','q-how-does-microneedling-compare-to-laser-resurfacing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does microneedling compare to laser resurfacing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 many patients.\"}',1,'2026-03-02 23:42:32','2026-03-02 23:42:32','a39e1337-86fc-4ed3-aad7-86460c287da9'),
(2574,2574,1,'Q: Can microneedling help with hair loss?','q-can-microneedling-help-with-hair-loss',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling help with hair loss?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:42:32','2026-03-02 23:42:32','8dcdf8de-bc3a-412c-ac4d-6c14a26c2d11'),
(2575,2575,1,'Q: What skincare should I use after microneedling?','q-what-skincare-should-i-use-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 pharmaceutical-grade 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.\"}',1,'2026-03-02 23:42:32','2026-03-02 23:42:32','2748cf03-1758-414e-a0ce-c200f272a8b9'),
(2576,2576,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 23:42:32','2026-03-02 23:42:32','3ae36804-0425-482a-8563-b11e5689d236'),
(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'),
(2608,2608,1,'Q: Are polynucleotides safe?','q-are-polynucleotides-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are polynucleotides safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','b64a6726-2517-4dbb-8cb7-b47a7636fc25'),
(2609,2609,1,'Q: How long before I see results?','q-how-long-before-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long before I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','e6810975-83dd-4bb4-9530-6fbe0ecb50ee'),
(2610,2610,1,'Q: Is there any downtime?','q-is-there-any-downtime',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','501f1b4e-db4f-4e3f-aaef-dbe897d63e1e'),
(2611,2611,1,'Q: Does it hurt?','q-does-it-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','6ee830a3-824a-4705-857d-f0e0df7f68c4'),
(2612,2612,1,'Q: How many treatments will I need?','q-how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many treatments will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','85486198-9e59-4496-abf2-ca6dbf334723'),
(2613,2613,1,'Q: What\'s the difference between polynucleotides and Profhilo®?','q-whats-the-difference-between-polynucleotides-and-profhilo',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What\'s the difference between polynucleotides and Profhilo®?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','acbc0b7f-3987-4d1a-9090-b0f1a3de7418'),
(2614,2614,1,'Q: Can polynucleotides treat my dark circles?','q-can-polynucleotides-treat-my-dark-circles',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can polynucleotides treat my dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 laser. 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-02 23:57:48','2026-03-02 23:57:48','3ee42747-76c5-463b-8401-aba727c272ab'),
(2615,2615,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, 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 JULAINE™ to stimulate even more collagen and improve skin firmness over time. Microneedling can further enhance collagen production, while pharmaceutical-grade skincare such as pHformula 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.\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','56ef5578-c121-4b0c-a3a3-fc04336c34b9'),
(2616,2616,1,'Q: Are they suitable for menopausal skin?','q-are-they-suitable-for-menopausal-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are they suitable for menopausal skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','f31b5e3a-56db-41d0-90ce-4967d1a9ca47'),
(2617,2617,1,'Q: How much do polynucleotides cost?','q-how-much-do-polynucleotides-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much do polynucleotides cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Pricing depends on treatment area:\\nUnder-eyes: From £240 per treatment\\nFull face: From £320 per treatment\\nNeck/décolletage: From £240 per treatment.\\nPolynucleotides are prescribed as a minimum course of 3 treatments, as this is how regenerative benefits are achieved safely and effectively. Full pricing is discussed transparently during your consultation once I have assessed your skin and confirmed suitability.\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','c703a5fd-e6a6-4b6f-a756-71e568e34d63'),
(2618,2618,1,'Polynucleotides','polynucleotides','treatments/polynucleotides','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2581]}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','1536d8d1-2648-4594-abe8-e92b421bc796'),
(2619,2619,1,'Polynucleotides on the Wirral, Doctor-Led Regenerative Skin Treatment','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Polynucleotides on the Wirral, Doctor-Led Regenerative Skin Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','83f075b8-335d-44e3-afb0-f0de368a9125'),
(2620,2620,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','e765f0ae-1dfc-4c58-ad23-8f0c9448ad86'),
(2621,2621,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-02 23:57:48','2026-03-02 23:57:48','22c4f565-1ca3-4088-8c36-21e65f0716a8'),
(2622,2622,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-02 23:57:48','2026-03-02 23:57:48','9497cf69-0c3f-4a07-8c0b-c4ac15625b8f'),
(2623,2623,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-02 23:57:48','2026-03-02 23:57:48','15ad811e-f5a7-49b4-b4ea-0b0d1fcd76a4'),
(2624,2624,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-02 23:57:48','2026-03-02 23:57:48','b6aaa522-d268-4248-801a-f034c98cd86f'),
(2625,2625,1,'Why Choose Polynucleotide Treatment?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"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-02 23:57:48','2026-03-02 23:57:48','7103e0fc-8a0b-44d9-9b42-45cfa8c8fbb9'),
(2626,2626,1,'True Regenerative Medicine','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over the following 12 weeks, the skin gradually rebuilds itself, leading to improved strength, elasticity and overall skin quality in a natural, progressive way.</span></p>\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','1d377490-4f2d-448a-8f74-077b0f90a5f0'),
(2627,2627,1,'Treats What Others Cannot','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. By supporting repair at a cellular level, polynucleotides help improve skin strength, resilience and function in areas where other approaches may be limited.</span></p>\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','79edda90-be68-4710-945a-fb4ba6cc2515'),
(2628,2628,1,'Natural, Lasting Results','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Polynucleotides align beautifully with my philosophy of refreshed, never changed, enhancing skin quality in a way that looks natural, gradual and never overdone.</span></p>\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','67345b02-9f2f-4cf2-b62f-79f17922264b'),
(2629,2629,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. When administered by qualified medical professionals with detailed anatomical knowledge, polynucleotide treatments offer a high level of safety alongside meaningful, regenerative skin improvement.</span></p>\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','1a0d6569-754c-420d-98e4-37cc6dd8e087'),
(2630,2630,1,'What Are Polynucleotides?','what-is-treatment-3',NULL,'{\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In my clinic, I use premium, CE-marked products such as <strong>Plinest</strong>, selected for their safety, purity and clinical evidence. A typical course involves 3-4 treatments spaced 3-4 weeks apart, building a regenerative foundation within the skin. Improvements develop gradually, with results becoming most noticeable around <strong>12 weeks</strong> as the skin strengthens and renews.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For menopausal skin, where thinning and dryness are influenced by declining oestrogen levels, polynucleotides offer targeted cellular support alongside hormonal management. Many of my Wirral patients in their 40s, 50s and 60s find this approach particularly helpful for restoring skin quality and resilience.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This reflects the direction aesthetic medicine is moving in: supporting the skin to repair and regenerate itself, rather than simply addressing surface changes.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>— Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2583],\"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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is where doctor-led treatment matters.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a <strong>GMC-registered GP</strong> with over ten years of clinical experience, I bring medical training, diagnostic expertise and a detailed understanding of facial anatomy to every treatment. I am trained to recognise complications early and manage them appropriately, and just as importantly, to reduce the risk of complications through careful planning, anatomical knowledge and clinical judgement.</span></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 thorough assessment, correct product choice and precise technique.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I am also a member of <strong>CMAC (Complications in Medical Aesthetics Collaborative)</strong>, ensuring that my practice remains aligned with the latest safety guidance and evidence-based protocols.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Your face deserves expert care, careful judgement and a medical approach focused on safety as well as results.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>— Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2582],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I\'ve had polynucleotides for my under-eyes for six months now and the transformation is incredible. My hereditary dark circles have significantly faded and my skin looks so much healthier. Dr Rachel explained everything thoroughly, and I felt completely confident in her expertise. This has genuinely changed how I feel about my face.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Emma, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Polynucleotides\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"E.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Aesthetics by Dr Rachel?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\"> An award-winning, doctor-led aesthetic clinic specialising in natural, regenerative results across the Wirral. Advanced under-eye treatments demand a medical approach, expert assessment and precise technique.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','a2e75d60-aa1d-40da-a886-2f4940c5469e'),
(2631,2631,1,'Who Should Consider Polynucleotides?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Polynucleotides?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Polynucleotides are an ideal option for those seeking genuine cellular repair and long-term improvement in skin quality. They are particularly well suited to concerns linked to skin thinning and reduced resilience, such as dark circles, crepey texture and menopausal skin changes, especially where other treatments may offer more limited benefit.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates For Polynucleotides:</strong></span></h4><p> </p><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are not suitable for dermal fillers</strong> in delicate areas such as the under-eyes, or prefer a non-volumising approach. Polynucleotides improve skin quality without adding volume.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have acne scarring</strong> that requires tissue remodelling and collagen support to improve uneven texture and atrophic scars.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Common Concerns Treated:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\">✓ Dark circles (related to skin thinning and vascular visibility)</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Fine lines and crepey texture</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Skin thinning and loss of firmness</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Dehydration and dull complexion</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Acne scarring and uneven texture</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Menopausal skin changes</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✓ Hair thinning </span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Not Suitable If:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\">✗ Pregnant or breastfeeding</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✗ Active skin infection</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✗ Autoimmune skin conditions</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> ✗ Unrealistic expectations for immediate results</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2581]}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','ff32e00b-fc1a-4404-b158-2721fd774d3f'),
(2632,2632,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 23:57:48','2026-03-02 23:57:48','b2050e26-ac48-4047-9a5a-352f645644e8'),
(2633,2633,1,'Q: Are polynucleotides safe?','q-are-polynucleotides-safe',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are polynucleotides safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','d798f325-ef51-4033-bd80-358c96dcdcc0'),
(2634,2634,1,'Q: How long before I see results?','q-how-long-before-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long before I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','28e782d5-dd74-4408-9430-401ee72ca86d'),
(2635,2635,1,'Q: Is there any downtime?','q-is-there-any-downtime',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','c671efbd-7423-46fd-9c62-27469a6d53da'),
(2636,2636,1,'Q: Does it hurt?','q-does-it-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does it hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','689af49f-e97d-4399-9263-a28e96bee37b'),
(2637,2637,1,'Q: How many treatments will I need?','q-how-many-treatments-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many treatments will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','bde3d15c-128a-42a6-a85e-34fd3a9001ad'),
(2638,2638,1,'Q: What\'s the difference between polynucleotides and Profhilo®?','q-whats-the-difference-between-polynucleotides-and-profhilo',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What\'s the difference between polynucleotides and Profhilo®?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','fdaba6ca-69b6-4f83-bd6a-b2c0f3760570'),
(2639,2639,1,'Q: Can polynucleotides treat my dark circles?','q-can-polynucleotides-treat-my-dark-circles',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can polynucleotides treat my dark circles?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 laser. 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-02 23:57:48','2026-03-02 23:57:48','32679a97-ea07-4f36-b04b-c841bc52a1a4'),
(2640,2640,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, 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 JULAINE™ to stimulate even more collagen and improve skin firmness over time. Microneedling can further enhance collagen production, while pharmaceutical-grade skincare such as pHformula 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.\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','428e06cb-3ff9-4d31-85b4-bff98c04cabf'),
(2641,2641,1,'Q: Are they suitable for menopausal skin?','q-are-they-suitable-for-menopausal-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are they suitable for menopausal skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-02 23:57:48','2026-03-02 23:57:48','a3b24f66-b291-43fa-aff0-4c98d150d173'),
(2642,2642,1,'Q: How much do polynucleotides cost?','q-how-much-do-polynucleotides-cost',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much do polynucleotides cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Pricing depends on treatment area:\\nUnder-eyes: From £240 per treatment\\nFull face: From £320 per treatment\\nNeck/décolletage: From £240 per treatment.\\nPolynucleotides are prescribed as a minimum course of 3 treatments, as this is how regenerative benefits are achieved safely and effectively. Full pricing is discussed transparently during your consultation once I have assessed your skin and confirmed suitability.\"}',1,'2026-03-02 23:57:48','2026-03-02 23:57:48','2794acc4-6c24-4d03-be25-91c6bf273a9d'),
(2643,2643,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:06:26','2026-03-03 00:20:07','9a1df33f-739e-4f24-9981-efbb0bf37c5e'),
(2644,2644,1,'Dermal Fillers Wirral - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers Wirral - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"93738b02-f267-4516-b95a-6418676ff545\":[],\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 00:06:26','2026-03-03 00:14:33','fb96cce1-a2bf-49b6-b50b-ba03340e4393'),
(2645,2645,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','cf93cf9e-6ad6-4b90-8f75-c3694973e927'),
(2646,2646,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-03 00:06:26','2026-03-03 00:14:33','2d4b8f7d-fa32-4dc8-96f3-539d170748c6'),
(2647,2647,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-03 00:06:26','2026-03-03 00:14:33','06ef084b-fe53-4cad-b0b1-ea1a9b15c221'),
(2648,2648,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-03 00:06:26','2026-03-03 00:06:26','cdbc8a28-b479-4be8-bea5-5319cfb6c79b'),
(2649,2649,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-03 00:06:26','2026-03-03 00:14:33','3c440a4c-d37d-4185-af9b-8f4ce0c4f0d3'),
(2650,2650,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>\\n    <span style=\\\"background-color:transparent;\\\">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. </span>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.\\n</p>\\n<p>\\n     \\n</p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:15:48','ff335e43-348a-4a15-988b-de88ffe2f2be'),
(2651,2651,1,'Natural Volume Restoration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural Volume Restoration\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As we age, the face naturally loses volume as collagen levels decline, fat shifts, and the underlying bone structure changes. Dermal fillers use hyaluronic acid - a substance your skin already produces - to gently replace this lost support, restore natural contours, and improve hydration from within. The result is a refreshed, well-rested version of you, without ever looking artificial or overdone.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:14:33','86aecdd6-28d2-49a2-a9a0-0876e89dee1d'),
(2652,2652,1,'Immediate, Beautiful Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Immediate, Beautiful Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike treatments that take weeks to show results, dermal fillers provide an immediate visible improvement. You will notice a difference as soon as you leave the clinic, with the final result continuing to refine over the following 2 weeks as any minor swelling settles. Whether you are looking for subtle lip definition, restored cheek support, or gentle jawline definition, results are carefully tailored to your individual goals.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:14:33','31a74581-e68b-4776-ad9f-56843da5d9a1'),
(2653,2653,1,'Non-Surgical Facial Rejuvenation','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Surgical Facial Rejuvenation\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers offer many of the rejuvenating benefits of facial surgery without the risks, downtime, or permanent changes. There are no incisions, no general anaesthetic, and no lengthy recovery. Instead, treatment involves a quick, precise procedure designed to fit seamlessly into your life, using hyaluronic acid that is naturally broken down by the body over time.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:14:33','fba8ad06-f599-4ec2-bac3-073682ab42f7'),
(2654,2654,1,'Doctor-Led Safety & Expertise','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Doctor-Led Safety & Expertise\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers are medical devices and should only be administered by qualified medical professionals with advanced anatomical knowledge. As a GMC-registered GP, I understand facial anatomy at a clinical level, can recognise and manage complications promptly, and create bespoke treatment plans based on your unique facial structure. I am passionate about delivering natural, subtle, and balanced results that respect your individual anatomy and enhance your features, rather than following trends or one-size-fits-all approaches.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:14:33','b6e8c89a-207f-4d7b-82bb-9704454f206b'),
(2655,2655,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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. 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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The result is hollowing around the eyes and temples, flattening of the cheeks, deepening of smile lines, and loss of lip volume and definition. Light no longer bounces off the face in the same way, contributing to a tired or drawn appearance that often does not reflect how you feel inside.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>This is where dermal fillers come in.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are injectable gels made from hyaluronic acid (HA) - the same substance your skin naturally produces to maintain hydration, structure, and elasticity. When placed carefully into specific areas of the face, hyaluronic acid fillers work in three remarkable ways:</span></p><ol><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>They replace lost volume</strong>, restoring structural support that naturally diminishes with time</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>They attract and hold water</strong>, helping to hydrate the skin from within and recreate a fresher, more luminous skin quality</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>They support collagen production</strong> in the surrounding tissue, contributing to improved skin quality over time</span><br /><br /> </li></ol><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In my clinic, I use only premium, UK-licensed hyaluronic acid fillers, including <strong>Neauvia</strong>, <strong>Restylane</strong>, and <strong>Teoxane</strong>. These products are manufactured to the highest medical standards, rigorously tested for safety, and designed to integrate naturally with your own tissue for subtle, balanced results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What makes my approach different is precision and restraint.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I do not believe in overfilling, chasing trends, or creating the same result on every face. Instead, I take the time to study your individual facial anatomy, listen carefully to what is bothering you, and design a bespoke treatment plan that enhances your natural features rather than changing them.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes that means using less filler than you expected. Sometimes it means treating an area you had not initially considered. And sometimes it means recommending a different treatment altogether. My role is to guide you with honesty, clinical judgement, and medical expertise towards the outcome that will suit <i>you</i> best.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The result?</strong> Natural-looking volume restoration that has people saying, “You look really well,” without quite knowing why. My aim is simple: to help you feel comfortable, confident, and like yourself again - refreshed, never changed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> - Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2711],\"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: <strong>dermal fillers are medical devices, yet they are being administered in settings with no medical oversight whatsoever.</strong></span></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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>As a GMC-registered doctor and practising GP,</strong> 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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Equally important is knowing when </strong><i><strong>not</strong></i><strong> to treat. </strong>That may be when expectations are unrealistic, when anatomy makes an area higher risk, or when an alternative treatment would be safer or more effective. This level of clinical judgement comes from medical training and experience, not short courses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led care means treatment delivered with safety, proportion, and professional oversight at its core.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> — Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I was so nervous about looking overdone, but Dr Rachel completely understood what I wanted. She enhanced my lips so subtly that even my husband didn\'t notice, he just said I looked really fresh and healthy. The whole experience was professional, caring, and exactly what I hoped for. I finally feel like myself again.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Laura, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Cryotherapy\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Aesthetics by Dr Rachel for Dermal Fillers?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led skin and aesthetics clinic delivering natural-looking dermal filler results across the Wirral.</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">When it comes to dermal fillers, expertise matters. The difference between a beautiful, natural result and an overdone, disproportionate outcome lies in the skill, experience, and medical judgement of the practitioner.</span><br /> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-03 00:06:26','2026-03-03 00:14:33','58de51f1-7260-4ad3-94f6-21a74e6b8386'),
(2656,2656,1,'What Areas Can Dermal Fillers Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"What Areas Can Dermal Fillers Treat?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers can be used to address a range of facial concerns in a subtle, natural-looking way. Below are the areas I most commonly treat, always guided by your unique facial anatomy and personal concerns.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Detailed Treatment Areas:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Lip Fillers Wirral</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Lip fillers can be used to gently enhance volume, improve definition, address asymmetry, and restore the natural fullness that gradually reduces with age. I specialise in subtle, proportionate lip enhancement that looks natural when you speak, smile, and at rest. The focus is always on balance and harmony, creating lips that suit your face and look completely natural. There will be no overfilled or “duck lips” leaving my clinic.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. By supporting this area, cheek filler can also soften nasolabial folds and under-eye hollowing, creating a balanced, refreshed appearance. For many patients, this is one of the most effective ways to address age-related facial changes. This is one of my favourite treatments, and often one patients feel most apprehensive about at first. With a careful, measured approach, the aim is simply to restore what time has taken - improving softness, light, and confidence, without heaviness or an overfilled look, and always in a way that still feels entirely like <i>you</i>.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. Chin augmentation can improve facial proportion, particularly where the chin sits further back or the lower face lacks definition. This treatment is popular with patients seeking a stronger, more structured jawline, including many male patients, while always maintaining natural proportions.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">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. A conservative approach is essential to maintain balance and natural movement.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. When combined with gentle chin support, filler in this area can restore balance to the lower face and create a more refreshed, positive expression.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Temples (Temporal Hollowing)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">The temples can gradually lose volume with age, which may create a more hollowed appearance. Carefully placed filler in this area helps restore balance to the upper face, gently widening the temples and supporting a softer, more youthful facial shape.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Not sure which area would benefit you most?</strong> Book your consultation and we can talk it through together. I will assess your facial structure, listen carefully to your concerns, and create a bespoke treatment plan tailored to your goals.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2698]}',1,'2026-03-03 00:06:26','2026-03-03 00:21:05','8793a6dc-52ef-4ca3-bc4e-f653802c8e2c'),
(2657,2657,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 00:06:26','2026-03-03 00:06:26','86449dea-bfba-41d6-8aec-8df7e5bc97e6'),
(2658,2658,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-03 00:06:26','2026-03-03 00:06:26','d890fd91-c3be-44fa-b7bb-94ccd7ea2c8a'),
(2659,2659,1,'Q: Do dermal fillers hurt?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do dermal fillers hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:25:48','3947e632-4099-49fa-a101-a6251deb6f8e'),
(2660,2660,1,'Q: How long do dermal fillers last?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do dermal fillers last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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. As a general guide:\\n- Lips: 6-9 months (higher movement area metabolises filler faster)\\n- Cheeks: 12-18 months (lower movement area, deeper placement)\\n- Jawline/Chin: 12-18 months\\n- Nasolabial Folds: 9-12 months\\nYour 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.\"}',1,'2026-03-03 00:06:26','2026-03-03 00:25:48','2d891f6d-d469-4002-979e-6a3b5ac76cdc'),
(2661,2661,1,'Q: What is the aftercare for dermal fillers?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the aftercare for dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 settles 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-03 00:06:26','2026-03-03 00:25:48','8b20e506-b65e-40d9-b186-6c63e7c81974'),
(2662,2662,1,'Q: Will I look swollen or bruised after treatment?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look swollen or bruised after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:25:48','8a74e407-48ab-4404-98bd-43ba9ca560af'),
(2663,2663,1,'Q: Can dermal fillers look natural?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can dermal fillers look natural?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:25:48','c3668c83-6893-4d10-8289-ff093d5b85a6'),
(2664,2664,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','50e5dd0d-2736-44bd-bb56-738223dcf9a5'),
(2665,2665,1,'Q: Are dermal fillers safe?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are dermal fillers safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nI carry full emergency equipment, including hyaluronidase (a filler-dissolving enzyme), at every appointment. Just as importantly, I remain accountable, contactable, and available if you have any concerns during your recovery. Ongoing care, reassurance, and professional oversight are an integral part of safe aesthetic practice.\"}',1,'2026-03-03 00:06:26','2026-03-03 00:25:48','4d4416a9-68d9-4953-a010-e6b536df905e'),
(2666,2666,1,'Q: Can dermal fillers be reversed?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can dermal fillers be reversed?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:25:48','6051ad43-f76b-470d-99bd-86c7a609f7fa'),
(2667,2667,1,'Q: How much do dermal fillers cost?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much do dermal fillers cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A:  Pricing 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-03 00:06:26','2026-03-03 00:25:48','786ffc0e-2a7e-40b9-a7ac-cf94205c1472'),
(2668,2668,1,'Q: Will dermal fillers make me look younger?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will dermal fillers make me look younger?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Dermal fillers help restore facial volume and natural contours, which are important features of a youthful appearance. That said, my aim is not to make you look like a different person or to turn back the clock dramatically, but to help you look like the most refreshed and confident version of yourself at your current age.\\nAgeing well is about maintaining healthy skin, balanced structure, and natural facial proportions. Dermal fillers support this by replacing what time has gradually taken away, rather than altering your features or erasing the character that makes you recognisable.\\nThe result is a rested, vibrant appearance that feels natural and authentic — never artificial or overdone.\"}',1,'2026-03-03 00:06:26','2026-03-03 00:25:48','0f57f23f-9c93-4cbe-a214-aacf4e62b448'),
(2669,2669,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 00:06:26','2026-03-03 00:06:26','5a630455-5436-4b06-a448-cfbc62521ece'),
(2670,2670,1,'Chemical Peels','chemical-peels-2','treatments/chemical-peels-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2006]}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','3fb6114e-477d-4cd4-819f-f3657c95a90d'),
(2671,2671,1,'Chemical Peels Wirral Clinical-Grade Skin Resurfacing','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Chemical Peels Wirral Clinical-Grade Skin Resurfacing\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','540fff7f-2887-4442-a2a0-b545def79485'),
(2672,2672,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','6c49ac39-6352-4166-b2c9-bcb5e59dfd59'),
(2673,2673,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-03 00:06:26','2026-03-03 00:06:26','cb9c4625-3d52-48df-9945-de6454af613e'),
(2674,2674,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-03 00:06:26','2026-03-03 00:06:26','df8c2e1a-5654-4308-ae90-aeb1a9c2c0a3'),
(2675,2675,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-03 00:06:26','2026-03-03 00:06:26','600307a8-7a59-44a6-a29a-45baeb2dfa43'),
(2676,2676,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-03 00:06:26','2026-03-03 00:06:26','d1b1b499-eaad-4c8c-b7aa-23134822eca2'),
(2677,2677,1,'Why Choose Chemical Peels?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Chemical Peels?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','85795db3-f9d5-4cb7-87e7-b3dc96fafaa4'),
(2678,2678,1,'Accelerated Cellular Renewal','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. Over time, skin becomes smoother, more even in tone, less congested and visibly healthier - with results that go beyond simple exfoliation.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','33740e7b-b267-4132-853c-ae7e7f0b4a6c'),
(2679,2679,1,'Bespoke, Intelligent Formulations','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 or visible ageing.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">Rather than a one-size-fits-all peel, I carefully select and layer ingredients to work synergistically - enhancing results while protecting your skin barrier. This personalised approach allows me to move beyond traditional “peeling” and into advanced chemical resurfacing, where controlled regeneration replaces aggressive exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\">It is this tailored, medically-led strategy that delivers meaningful, sustainable improvement — not just temporary surface glow.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','56ad0abc-4076-4545-9e43-c3e053f17d80'),
(2680,2680,1,'Treats What High-Street Skincare Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 high-street serums simply cannot resolve. Stubborn pigmentation that refuses to fade. Active acne that needs true pore decongestion. Post-inflammatory hyperpigmentation left behind after breakouts. Fine lines etched by cumulative sun damage. Rough, uneven texture that no primer can smooth. While over-the-counter products try to work on the very surface of the skin, professional chemical resurfacing penetrates in a controlled, clinical way to stimulate genuine change within the epidermis and upper dermis. The result is not just temporary brightness — but measurable, professional-grade improvement in clarity, tone and texture.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','362da1a4-6cde-4ec3-887c-9e18f4f8d18b'),
(2681,2681,1,'Medical-Grade Safety','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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 full medical history, current skincare, medication use and Fitzpatrick skin type before selecting the most appropriate treatment. This is particularly important when treating pigmentation or darker skin tones, where the risk of post-inflammatory hyperpigmentation must be minimised. Precise product selection, controlled application, correct timing and appropriate aftercare all matter. Medical oversight means your treatment is not only effective, but safe, measured and tailored to your individual skin. It is this level of clinical judgement that turns a standard peel into a carefully managed regenerative treatment — with results you can trust.</span></p>\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','51b9e06b-e8cd-4f8d-ac2b-f7fee3ffa1b1'),
(2682,2682,1,'Dr Rachel - The Science of Advanced Chemical Resurfacing','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"Dr Rachel - The Science of Advanced Chemical Resurfacing\",\"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%);\\\">\\\"When most people search for “chemical peels”, they are usually imagining visible peeling and surface exfoliation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">This is what makes pHformula fundamentally different.</span></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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Each system is concern-led:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>CR (Chronic Redness)</strong> – Calms inflammation, strengthens barrier function and improves rosacea-prone or reactive skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AC (Acne)</strong> – Targets congestion, excess oil, inflammation and post-inflammatory pigmentation while supporting healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>MELA (Pigmentation)</strong> – Addresses uneven tone, sun damage and melasma by regulating melanogenesis pathways.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>AGE (Ageing Skin)</strong> – Stimulates collagen production, improves elasticity and refines fine lines through dermal activation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">These are not one-size-fits-all peels. They are progressive resurfacing programmes designed to work alongside specific pHformula homecare. Pre-treatment preparation and ongoing homecare optimise penetration, enhance results and significantly reduce the risk of complications.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The philosophy is correction without aggression — achieving meaningful, sustainable improvement while maintaining long-term skin health.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a GMC-registered GP, I assess your medical history, skin type, current skincare, medication use and tolerance before creating your treatment plan. My aim is not visible peeling for its own sake, but measurable improvement in the clarity, strength and resilience of your skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">For this reason, many of the treatments I offer are more accurately described as advanced chemical resurfacing rather than traditional chemical peels.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2036],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"556a3ac6-956d-48f1-b64a-184871e63dde\":\"Dr Rachel - Why Doctor-Led Treatments Matter\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare is equally important. I provide clear, medically guided post-treatment protocols including appropriate skincare, strict SPF use and ongoing monitoring. Should sensitivity or unexpected reactions occur, I am able to assess and manage these appropriately.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Medical oversight does not simply make treatment safer - it makes outcomes more predictable, more refined and ultimately more effective.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2034],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had a series of TCA peels for stubborn pigmentation, and the transformation is remarkable. Dr Rachel explained everything so thoroughly and monitored my skin carefully throughout. My complexion is now even, bright, and glowing. The medical expertise made me feel completely safe, and the results speak for themselves.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Michelle, West Kirby\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Chemical Peels\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"M.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Chemical Peels?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing requires accurate assessment, intelligent product selection and careful management before and after treatment. As a practising GP, I assess your medical history, skin type and current skincare to ensure treatment is safe and appropriate - particularly when managing pigmentation, acne or darker skin tones where the risk of post-inflammatory hyperpigmentation must be minimised. Doctor-led care means precise application, evidence-based protocols and ongoing support, with a focus on achieving meaningful improvement while protecting the long-term health of your skin.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','409ec79b-f784-4a38-b5c8-dd383b3c6324'),
(2683,2683,1,'Who Should Consider Chemical Resurfacing?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Chemical Resurfacing?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Chemical resurfacing is ideal for those seeking meaningful improvement in pigmentation, acne, uneven texture or visible signs of ageing - particularly when skincare alone has not delivered the results you hoped for. It is suitable for patients who want clearer, smoother, healthier-looking skin through a structured, medically guided treatment plan rather than quick fixes or temporary glow.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><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><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><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><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><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><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\":[1946]}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','7b7bf8df-305c-473c-9cb5-8ec97e382913'),
(2684,2684,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 00:06:26','2026-03-03 00:06:26','2e877a98-b5cb-4273-809a-5122fea8dc77'),
(2685,2685,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-03 00:06:26','2026-03-03 00:06:26','a6a8e9c9-9961-43d0-8d64-383ac44c42bc'),
(2686,2686,1,'Q: How much downtime do chemical peels require?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much downtime do chemical peels require?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nFor 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.\\nI 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.\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','36d57e18-1eb0-434d-9fb1-6f22087db37f'),
(2687,2687,1,'Q: Do chemical peels hurt?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do chemical peels hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nThere are very deep peels that can be uncomfortable, but I do not offer these in clinic. My focus is safe, doctor-led resurfacing that gives effective, natural results without unnecessary discomfort.\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','d1130ba2-5c79-401c-9492-533898f4afd2'),
(2688,2688,1,'Q: How many chemical peel sessions will I need?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many chemical peel sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','72a94174-f260-4ad9-8653-d05fe3878ada'),
(2689,2689,1,'Q: When will I see results from chemical peels?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from chemical peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Most patients notice a lovely healthy glow within a few days as the skin surface refreshes, but the deeper 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\"}',1,'2026-03-03 00:06:26','2026-03-03 00:06:26','facb6da3-b2f5-4cea-b3e7-e99aa17b47ce'),
(2690,2690,1,'Q: Are chemical peels safe for dark skin?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are chemical peels safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','0d454965-74ba-4a86-b977-1ad2253aa04d'),
(2691,2691,1,'Q: What is the difference between glycolic, salicylic, and TCA peels?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between glycolic, salicylic, and TCA peels?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','133ddee8-1b79-4e72-9128-ea97df4469b2'),
(2692,2692,1,'Q: Can I combine chemical peels with other treatments?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I combine chemical peels with other treatments?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','4bb8d906-21a2-4409-9b33-887d60ef733c'),
(2693,2693,1,'Q: What skincare should I use after a chemical peel?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after a chemical peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','b8aac783-ef5f-471f-b2f5-9aa6e6e7441b'),
(2694,2694,1,'Q: How do I prevent pigmentation after a peel?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How do I prevent pigmentation after a peel?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','7b29aec8-849f-4686-93c4-c9cd85d8b99f'),
(2695,2695,1,'Q: Can chemical peels treat acne?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can chemical peels treat acne?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:06:26','2026-03-03 00:06:26','a2f4aad6-121d-4049-b775-951fb10d8e19'),
(2696,2696,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 00:06:26','2026-03-03 00:06:26','6ec8ccd6-08f0-4796-906f-f08949f3469f'),
(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'),
(2714,2714,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','17337153-107d-4b87-8cb0-9184c28b5bb9'),
(2715,2715,1,'Dermal Fillers Wirral - Natural Facial Rejuvenation','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Dermal Fillers Wirral - Natural Facial Rejuvenation\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel\",\"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>\",\"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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','c5f60c39-0a51-4fe3-b4f8-caf0a8779e8a'),
(2716,2716,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','d165914c-4341-4da5-8a72-df4e2ed6e656'),
(2717,2717,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-03 00:14:33','2026-03-03 00:14:33','d98f6746-7892-4405-8bfe-b5f9cdc1830c'),
(2718,2718,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-03 00:14:33','2026-03-03 00:14:33','e32b1eac-4ec0-4131-b55a-bdf872037f90'),
(2719,2719,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-03 00:14:33','2026-03-03 00:14:33','4554c4c6-a825-4138-b62a-4af0aeef58ab'),
(2720,2720,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-03 00:14:33','2026-03-03 00:14:33','b22912c7-a96e-4ec7-a1b0-2cf652816a56'),
(2721,2721,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">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. </span><span style=\\\"background-color:#ffffff;color:#000000;\\\">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><p> </p>\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','2daa2dcf-99eb-445f-9d05-45a4be4fe92a'),
(2722,2722,1,'Natural Volume Restoration','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Natural Volume Restoration\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">As we age, the face naturally loses volume as collagen levels decline, fat shifts, and the underlying bone structure changes. Dermal fillers use hyaluronic acid - a substance your skin already produces - to gently replace this lost support, restore natural contours, and improve hydration from within. The result is a refreshed, well-rested version of you, without ever looking artificial or overdone.</span></p>\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','8d742d7a-0f72-4e1f-af38-69d4ccfb7b3a'),
(2723,2723,1,'Immediate, Beautiful Results','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Immediate, Beautiful Results\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Unlike treatments that take weeks to show results, dermal fillers provide an immediate visible improvement. You will notice a difference as soon as you leave the clinic, with the final result continuing to refine over the following 2 weeks as any minor swelling settles. Whether you are looking for subtle lip definition, restored cheek support, or gentle jawline definition, results are carefully tailored to your individual goals.</span></p>\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','cc422538-617b-468e-9012-61d564941a94'),
(2724,2724,1,'Non-Surgical Facial Rejuvenation','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Non-Surgical Facial Rejuvenation\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers offer many of the rejuvenating benefits of facial surgery without the risks, downtime, or permanent changes. There are no incisions, no general anaesthetic, and no lengthy recovery. Instead, treatment involves a quick, precise procedure designed to fit seamlessly into your life, using hyaluronic acid that is naturally broken down by the body over time.</span></p>\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','ea8ff456-378c-42f3-9f3b-46e9192179d2'),
(2725,2725,1,'Doctor-Led Safety & Expertise','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"6ca65211-02ec-4f68-960c-39eb200c7e18\":\"Doctor-Led Safety & Expertise\",\"28708981-cf62-4bc8-916e-3de90d2c1149\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers are medical devices and should only be administered by qualified medical professionals with advanced anatomical knowledge. As a GMC-registered GP, I understand facial anatomy at a clinical level, can recognise and manage complications promptly, and create bespoke treatment plans based on your unique facial structure. I am passionate about delivering natural, subtle, and balanced results that respect your individual anatomy and enhance your features, rather than following trends or one-size-fits-all approaches.</span></p>\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','aa418c81-e45e-4d38-aab8-8d429ee7dfd5'),
(2726,2726,1,'What Are Dermal Fillers?','what-is-treatment-3',NULL,'{\"7139eaa1-a3c8-41e6-8bea-bbf2be110df9\":\"What Are Dermal Fillers?\",\"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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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. 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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">The result is hollowing around the eyes and temples, flattening of the cheeks, deepening of smile lines, and loss of lip volume and definition. Light no longer bounces off the face in the same way, contributing to a tired or drawn appearance that often does not reflect how you feel inside.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>This is where dermal fillers come in.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Dermal fillers are injectable gels made from hyaluronic acid (HA) - the same substance your skin naturally produces to maintain hydration, structure, and elasticity. When placed carefully into specific areas of the face, hyaluronic acid fillers work in three remarkable ways:</span></p><ol><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>They replace lost volume</strong>, restoring structural support that naturally diminishes with time</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>They attract and hold water</strong>, helping to hydrate the skin from within and recreate a fresher, more luminous skin quality</span></li><li><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>They support collagen production</strong> in the surrounding tissue, contributing to improved skin quality over time</span><br /><br /> </li></ol><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">In my clinic, I use only premium, UK-licensed hyaluronic acid fillers, including <strong>Neauvia</strong>, <strong>Restylane</strong>, and <strong>Teoxane</strong>. These products are manufactured to the highest medical standards, rigorously tested for safety, and designed to integrate naturally with your own tissue for subtle, balanced results.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>What makes my approach different is precision and restraint.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I do not believe in overfilling, chasing trends, or creating the same result on every face. Instead, I take the time to study your individual facial anatomy, listen carefully to what is bothering you, and design a bespoke treatment plan that enhances your natural features rather than changing them.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Sometimes that means using less filler than you expected. Sometimes it means treating an area you had not initially considered. And sometimes it means recommending a different treatment altogether. My role is to guide you with honesty, clinical judgement, and medical expertise towards the outcome that will suit <i>you</i> best.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>The result?</strong> Natural-looking volume restoration that has people saying, “You look really well,” without quite knowing why. My aim is simple: to help you feel comfortable, confident, and like yourself again - refreshed, never changed.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> - Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2711],\"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: <strong>dermal fillers are medical devices, yet they are being administered in settings with no medical oversight whatsoever.</strong></span></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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>As a GMC-registered doctor and practising GP,</strong> 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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Equally important is knowing when </strong><i><strong>not</strong></i><strong> to treat. </strong>That may be when expectations are unrealistic, when anatomy makes an area higher risk, or when an alternative treatment would be safer or more effective. This level of clinical judgement comes from medical training and experience, not short courses.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led care means treatment delivered with safety, proportion, and professional oversight at its core.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> — Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2712],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I was so nervous about looking overdone, but Dr Rachel completely understood what I wanted. She enhanced my lips so subtly that even my husband didn\'t notice, he just said I looked really fresh and healthy. The whole experience was professional, caring, and exactly what I hoped for. I finally feel like myself again.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Laura, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Cryotherapy\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"L.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Aesthetics by Dr Rachel for Dermal Fillers?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Award-winning, doctor-led skin and aesthetics clinic delivering natural-looking dermal filler results across the Wirral.</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">When it comes to dermal fillers, expertise matters. The difference between a beautiful, natural result and an overdone, disproportionate outcome lies in the skill, experience, and medical judgement of the practitioner.</span><br /> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-03 00:14:33','2026-03-03 00:14:33','e00d9748-2369-4165-b9df-937e1d86984e'),
(2727,2727,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-03 00:14:33','2026-03-03 00:14:33','c6c865fa-696d-4f13-bcba-1cfa69c4c937'),
(2730,2730,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:15:16','2026-03-03 00:15:16','605c4322-b09f-4b45-b3ad-7b8da0de9594'),
(2731,2731,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;\\\">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. </span><span style=\\\"background-color:#ffffff;\\\">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><p> </p>\"}',1,'2026-03-03 00:15:16','2026-03-03 00:15:16','3f810e61-0737-4830-9951-3bd7c1417dd1'),
(2734,2734,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:15:48','2026-03-03 00:15:48','e8775319-3439-4cbc-a3ba-70f7336d0c9f'),
(2735,2735,1,'Why Choose Dermal Fillers?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Dermal Fillers?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p>\\n    <span style=\\\"background-color:transparent;\\\">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. </span>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.\\n</p>\\n<p>\\n     \\n</p>\"}',1,'2026-03-03 00:15:48','2026-03-03 00:15:48','b7211d52-c160-434b-b27e-90e7b777f3ec'),
(2740,2740,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:20:08','2026-03-03 00:20:08','7f968eda-8b27-426b-8e69-9d9aecedfb90'),
(2741,2741,1,'What Areas Can Dermal Fillers Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"What Areas Can Dermal Fillers Treat?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers can be used to address a range of facial concerns in a subtle, natural-looking way. Below are the areas I most commonly treat, always guided by your unique facial anatomy and personal concerns.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Detailed Treatment Areas:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Lip Fillers Wirral</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Lip fillers can be used to gently enhance volume, improve definition, address asymmetry, and restore the natural fullness that gradually reduces with age. I specialise in subtle, proportionate lip enhancement that looks natural when you speak, smile, and at rest. The focus is always on balance and harmony, creating lips that suit your face and look completely natural. There will be no overfilled or “duck lips” leaving my clinic.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. By supporting this area, cheek filler can also soften nasolabial folds and under-eye hollowing, creating a balanced, refreshed appearance. For many patients, this is one of the most effective ways to address age-related facial changes. This is one of my favourite treatments, and often one patients feel most apprehensive about at first. With a careful, measured approach, the aim is simply to restore what time has taken - improving softness, light, and confidence, without heaviness or an overfilled look, and always in a way that still feels entirely like <i>you</i>.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. Chin augmentation can improve facial proportion, particularly where the chin sits further back or the lower face lacks definition. This treatment is popular with patients seeking a stronger, more structured jawline, including many male patients, while always maintaining natural proportions.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">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. A conservative approach is essential to maintain balance and natural movement.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. When combined with gentle chin support, filler in this area can restore balance to the lower face and create a more refreshed, positive expression.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Temples (Temporal Hollowing)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">The temples can gradually lose volume with age, which may create a more hollowed appearance. Carefully placed filler in this area helps restore balance to the upper face, gently widening the temples and supporting a softer, more youthful facial shape.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Not sure which area would benefit you most?</strong> Book your consultation and we can talk it through together. I will assess your facial structure, listen carefully to your concerns, and create a bespoke treatment plan tailored to your goals.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2712]}',1,'2026-03-03 00:20:08','2026-03-03 00:20:08','dd13b4b6-6ced-4188-a03d-bfda33004245'),
(2744,2744,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:21:05','2026-03-03 00:21:05','2e1b1d76-0066-4008-aaf7-74abea61d9a6'),
(2745,2745,1,'What Areas Can Dermal Fillers Treat?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"What Areas Can Dermal Fillers Treat?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Dermal fillers can be used to address a range of facial concerns in a subtle, natural-looking way. Below are the areas I most commonly treat, always guided by your unique facial anatomy and personal concerns.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Detailed Treatment Areas:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Lip Fillers Wirral</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Lip fillers can be used to gently enhance volume, improve definition, address asymmetry, and restore the natural fullness that gradually reduces with age. I specialise in subtle, proportionate lip enhancement that looks natural when you speak, smile, and at rest. The focus is always on balance and harmony, creating lips that suit your face and look completely natural. There will be no overfilled or “duck lips” leaving my clinic.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Cheek Augmentation (Midface Volume Restoration)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Restoring volume in the mid-face can help recreate the high, gently defined cheek contours associated with youth. By supporting this area, cheek filler can also soften nasolabial folds and under-eye hollowing, creating a balanced, refreshed appearance. For many patients, this is one of the most effective ways to address age-related facial changes. This is one of my favourite treatments, and often one patients feel most apprehensive about at first. With a careful, measured approach, the aim is simply to restore what time has taken - improving softness, light, and confidence, without heaviness or an overfilled look, and always in a way that still feels entirely like <i>you</i>.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Jawline &amp; Chin Contouring</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Jawline and chin filler can be used to gently define and support the lower face, helping to create a more balanced, youthful profile. Chin augmentation can improve facial proportion, particularly where the chin sits further back or the lower face lacks definition. This treatment is popular with patients seeking a stronger, more structured jawline, including many male patients, while always maintaining natural proportions.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Nasolabial Folds (Smile Lines)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">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. A conservative approach is essential to maintain balance and natural movement.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Marionette Lines</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Treating the lines that run from the corners of the mouth to the chin can help soften a downturned or tired appearance at rest. When combined with gentle chin support, filler in this area can restore balance to the lower face and create a more refreshed, positive expression.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Temples (Temporal Hollowing)</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">The temples can gradually lose volume with age, which may create a more hollowed appearance. Carefully placed filler in this area helps restore balance to the upper face, gently widening the temples and supporting a softer, more youthful facial shape.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Not sure which area would benefit you most?</strong> Book your consultation and we can talk it through together. I will assess your facial structure, listen carefully to your concerns, and create a bespoke treatment plan tailored to your goals.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2698]}',1,'2026-03-03 00:21:05','2026-03-03 00:21:05','18bbccd2-d856-4076-be2b-4c8506a2a442'),
(2761,2761,1,'Q: What is the difference between dermal fillers and anti-wrinkle injections?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between dermal fillers and anti-wrinkle injections?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: These treatments work in different ways and are often used together for the most natural, balanced results.\\nDermal fillers:\\n- Restore volume and structural support\\n- Improve facial contours and balance\\n- Help hydrate the skin from within\\n- Treat areas of hollowing, thinning, and volume loss\\n- Provide immediate results that typically last 6–18 months\\n\\n\\nAnti-wrinkle injections (botulinum toxin):\\n- Gently relax overactive muscles\\n- Help prevent and soften expression lines\\n- Treat dynamic wrinkles such as frown lines, forehead lines, and crow’s feet\\n- Results develop gradually over around two weeks and usually last 3–4 months\\n\\n\\nMany 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-03 00:25:48','2026-03-03 00:25:48','ff5dcf99-dbd0-42b2-a17b-287af513159f'),
(2762,2762,1,'Q: Can men have dermal fillers?','q-can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can men have dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in 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-03 00:25:48','2026-03-03 00:25:48','398fea9d-e53b-4c5a-8ee5-7d5c5608f3b6'),
(2763,2763,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Results are visible immediately, and you will notice an improvement as soon as you leave the clinic. That said, final results continue to develop over the following 4 weeks as any minor swelling settles and the hyaluronic acid integrates naturally with your tissue.\\nI schedule a complimentary 4-week review appointment for every patient. This allows us to assess your results together once everything has fully settled, check that you are happy, and consider any adjustments if needed.\\nI do not believe in rushing aesthetic treatments. Taking time, reviewing results properly, and making considered decisions leads to the most natural, balanced outcomes. This staged, no-pressure approach ensures results are tailored carefully to you and your goals.\"}',1,'2026-03-03 00:25:48','2026-03-03 00:25:48','a52bcef1-afa5-4135-875f-ac909746928c'),
(2764,2764,1,'Dermal Fillers','dermal-fillers','treatments/dermal-fillers','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2698]}',1,'2026-03-03 00:25:48','2026-03-03 00:25:48','3e4ff1c6-ee97-4cdd-a089-444f09f285f1'),
(2765,2765,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-03 00:25:48','2026-03-03 00:25:48','af16fb53-2cf4-4d43-b8ae-72e510743744'),
(2766,2766,1,'Q: Do dermal fillers hurt?','q-how-much-downtime-do-chemical-peels-require',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Do dermal fillers hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:25:48','2026-03-03 00:25:48','9b3bd4ca-7611-456a-9a65-b8647bd0e42a'),
(2767,2767,1,'Q: How long do dermal fillers last?','q-do-chemical-peels-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long do dermal fillers last?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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. As a general guide:\\n- Lips: 6-9 months (higher movement area metabolises filler faster)\\n- Cheeks: 12-18 months (lower movement area, deeper placement)\\n- Jawline/Chin: 12-18 months\\n- Nasolabial Folds: 9-12 months\\nYour 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.\"}',1,'2026-03-03 00:25:48','2026-03-03 00:25:48','17453d86-1308-4472-aedf-f7dc23cddb2e'),
(2768,2768,1,'Q: What is the aftercare for dermal fillers?','q-how-many-chemical-peel-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the aftercare for dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 settles 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-03 00:25:48','2026-03-03 00:25:48','cc531209-600d-4556-8fc4-bcbc07a49b25'),
(2769,2769,1,'Q: Will I look swollen or bruised after treatment?','q-when-will-i-see-results-from-chemical-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I look swollen or bruised after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:25:48','2026-03-03 00:25:48','80a13fb9-d026-41cf-8955-36eb27be3f82'),
(2770,2770,1,'Q: Can dermal fillers look natural?','q-are-chemical-peels-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can dermal fillers look natural?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:25:48','2026-03-03 00:25:48','e361b8d2-074d-4e26-9b8c-2928603bb79f'),
(2771,2771,1,'Q: What is the difference between dermal fillers and anti-wrinkle injections?','q-what-is-the-difference-between-glycolic-salicylic-and-tca-peels',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between dermal fillers and anti-wrinkle injections?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: These treatments work in different ways and are often used together for the most natural, balanced results.\\nDermal fillers:\\n- Restore volume and structural support\\n- Improve facial contours and balance\\n- Help hydrate the skin from within\\n- Treat areas of hollowing, thinning, and volume loss\\n- Provide immediate results that typically last 6–18 months\\n\\n\\nAnti-wrinkle injections (botulinum toxin):\\n- Gently relax overactive muscles\\n- Help prevent and soften expression lines\\n- Treat dynamic wrinkles such as frown lines, forehead lines, and crow’s feet\\n- Results develop gradually over around two weeks and usually last 3–4 months\\n\\n\\nMany 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-03 00:25:48','2026-03-03 00:25:48','063eb091-f251-4dee-86b4-d2987baf4794'),
(2772,2772,1,'Q: Are dermal fillers safe?','q-can-i-combine-chemical-peels-with-other-treatments',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Are dermal fillers safe?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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.\\nI carry full emergency equipment, including hyaluronidase (a filler-dissolving enzyme), at every appointment. Just as importantly, I remain accountable, contactable, and available if you have any concerns during your recovery. Ongoing care, reassurance, and professional oversight are an integral part of safe aesthetic practice.\"}',1,'2026-03-03 00:25:48','2026-03-03 00:25:48','e4d01111-ed20-48e7-9665-6bb4e472b3be'),
(2773,2773,1,'Q: Can dermal fillers be reversed?','q-what-skincare-should-i-use-after-a-chemical-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can dermal fillers be reversed?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:25:48','2026-03-03 00:25:48','325a2c14-acf8-4f4a-b58d-0feab80d6440'),
(2774,2774,1,'Q: How much do dermal fillers cost?','q-how-do-i-prevent-pigmentation-after-a-peel',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How much do dermal fillers cost?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A:  Pricing 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-03 00:25:48','2026-03-03 00:25:48','124f94a1-f6cf-4b6a-8a59-8b956e23fffd'),
(2775,2775,1,'Q: Will dermal fillers make me look younger?','q-can-chemical-peels-treat-acne',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will dermal fillers make me look younger?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Dermal fillers help restore facial volume and natural contours, which are important features of a youthful appearance. That said, my aim is not to make you look like a different person or to turn back the clock dramatically, but to help you look like the most refreshed and confident version of yourself at your current age.\\nAgeing well is about maintaining healthy skin, balanced structure, and natural facial proportions. Dermal fillers support this by replacing what time has gradually taken away, rather than altering your features or erasing the character that makes you recognisable.\\nThe result is a rested, vibrant appearance that feels natural and authentic — never artificial or overdone.\"}',1,'2026-03-03 00:25:48','2026-03-03 00:25:48','b2b97b22-0398-421e-9ac4-47e89f95a62c'),
(2776,2776,1,'Q: Can men have dermal fillers?','q-can-men-have-dermal-fillers',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can men have dermal fillers?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Absolutely. More men are choosing dermal fillers, and I am seeing a growing number of male patients in 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-03 00:25:48','2026-03-03 00:25:48','c08b0419-98c9-42e6-bafb-207163da1efc'),
(2777,2777,1,'Q: When will I see results?','q-when-will-i-see-results',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Results are visible immediately, and you will notice an improvement as soon as you leave the clinic. That said, final results continue to develop over the following 4 weeks as any minor swelling settles and the hyaluronic acid integrates naturally with your tissue.\\nI schedule a complimentary 4-week review appointment for every patient. This allows us to assess your results together once everything has fully settled, check that you are happy, and consider any adjustments if needed.\\nI do not believe in rushing aesthetic treatments. Taking time, reviewing results properly, and making considered decisions leads to the most natural, balanced outcomes. This staged, no-pressure approach ensures results are tailored carefully to you and your goals.\"}',1,'2026-03-03 00:25:48','2026-03-03 00:25:48','accca6fe-8e78-4bf5-9f07-53869fe3238e'),
(2778,2778,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-03 00:28:21','2026-03-03 00:28:32','6466e9ce-90e6-44c0-b348-c826e66a0d37'),
(2779,2779,1,'Expert Cryotherapy Treatment by Dr Rachel On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel 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 Bebington, Eastham &amp; Moreton</span></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\":\"/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 00:28:21','2026-03-03 07:55:09','88634bf3-8e10-4513-8069-de0abe69f6af'),
(2780,2780,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','1fc52752-597b-4eba-8396-aeba395232a6'),
(2781,2781,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-03 00:28:21','2026-03-03 07:55:09','f8f73029-5673-4736-935a-c39fe06cd485'),
(2782,2782,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-03 00:28:21','2026-03-03 07:55:09','eae6e9ca-1d57-4317-862a-e71ed32b5356'),
(2783,2783,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-03 00:28:21','2026-03-03 07:55:09','8b801f30-32e3-48c0-83dd-976a20717040'),
(2784,2784,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-03 00:28:21','2026-03-03 07:55:09','73ca8eda-5a40-4b8f-9ce7-99b8a2e9c793'),
(2785,2785,1,'Why Choose Cryotherapy for Skin Lesions?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"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><p> </p>\"}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','ddf3b5a0-2fba-4607-9b33-e59fb3399617'),
(2786,2786,1,'Precision Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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 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><p> </p>\"}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','70b5b992-1b28-428f-9395-a950e44354f3'),
(2787,2787,1,'Doctor-Led Expertise','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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 <strong>not</strong> be treated and instead referred for further medical assessment. Treatment is carried out with patient safety as the priority, within clear clinical boundaries and referral pathways.</span></p><p> </p>\"}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','35bcd6ff-6c5b-44f5-8b1e-11ef36dba175'),
(2788,2788,1,'Quick & Effective','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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><p> </p>\"}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','f64b189e-6af0-465a-91ba-5de90c4b90f9'),
(2789,2789,1,'Proven Results','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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><p> </p>\"}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','1b055de0-d130-4c8d-a4d1-73a78ba35363'),
(2790,2790,1,'What Is Cryotherapy Treatment?','what-is-treatment-3',NULL,'{\"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%);\\\">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><p> </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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">At my clinic, I use the <strong>CryoIQ pen</strong>, 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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Why does this matter?</strong> 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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the next 7-14 days, a scab will form and eventually fall away, revealing fresh pink skin underneath. <strong>The key to avoiding scarring is simple: do not pick the scab.</strong> Let it lift away naturally. It is important to bear in mind that some skin lesions need more than one treatment.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I treat everything from common skin tags and warts to more complex lesions such as actinic keratosis (pre-cancerous sun damage) and selected benign moles. That said, I will only ever treat lesions that I am confident are safe and appropriate for cryotherapy. Because this clinic does not provide a diagnostic service, any pigmented lesions will need to have been checked and confirmed as benign by your NHS GP, or assessed using the Map My Mole service available in clinic before treatment.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">If I have any concerns at any point during your consultation, I will recommend referral for specialist assessment rather than proceeding with treatment. Your safety and wellbeing will always take priority over any treatment fee.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Many of my patients have lived with bothersome skin lesions for years, trying over-the-counter remedies that simply do not work. Cryotherapy offers a definitive medical solution with minimal discomfort and excellent results.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> — Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>[Image: Dr Rachel performing Cryotherapy treatment]</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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%);\\\">\\\"Here is something many people do not realise: <strong>cryotherapy is a medical procedure, not a beauty treatment.</strong></span></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><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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>As a practising GP here on the Wirral, </strong>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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">And critically, I know when <strong>not</strong> to treat, when a mole needs dermatology referral, when a lesion requires biopsy and when cryotherapy is not the safest option. Knowing when not to proceed is just as important as knowing how to treat.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I am also a member of Complications in Medical Aesthetic Collaborative (CMAC), meaning I am trained to recognise and manage complications should they arise. I use medical-grade equipment, follow strict clinical protocols, and maintain full professional indemnity insurance.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>You deserve treatment delivered with medical judgement, safety, and accountability at its core.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">My clinic is based in Bebington, easily accessible from Eastham, Moreton, Heswall, and across the Wirral. Every appointment is one-to-one with me, from consultation through to treatment and follow-up.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I look forward to helping you achieve clear, healthy skin you feel confident in.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> - Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had three stubborn skin tags on my neck that had bothered me for years. Dr Rachel explained everything clearly, the treatment took literally seconds, and they have completely gone with no scarring. I wish I had done this years ago! She is so reassuring and clearly knows her stuff.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Kim, Bebington\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Cryotherapy\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"Kim\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Aesthetics by Dr Rachel for Cryotherapy?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When it comes to your skin, there is no substitute for genuine medical expertise delivered with care, precision, and honesty. Cryotherapy may appear straightforward, but achieving safe, effective results relies on careful assessment, technical precision, and the clinical judgement to know when treatment is appropriate and when it is not.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','0e5ceeed-8560-4d1f-ae01-33ed705bd636'),
(2791,2791,1,'Who Should Consider Cryotherapy?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Cryotherapy?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy is ideal for anyone with a skin lesion that is bothering them, and is looking for a quick and effective treatment.</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>You have benign skin lesions causing concern</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want medical-grade treatment, not salon procedures</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are looking for medical-grade treatment rather than a salon procedure, and value having a GMC-registered doctor with clinical expertise who can assess whether cryotherapy is appropriate and advise when further medical review is needed.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have tried other methods without success</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Over-the-counter treatments and other home remedies have failed to work, or have even caused irritation. You want a definitive medical solution.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You prefer non-surgical removal</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You want to avoid surgical excision and prefer a quick freezing procedure with no stitches required.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are in good general health</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are in good general health and do not have any medical conditions that would make cryotherapy unsafe or unsuitable, all of which will be discussed during your consultation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have realistic expectations</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You understand that healing takes up to 4 weeks, that there may be temporary redness or lightening of the treated area, and that deeper lesions may require 2 or more treatment sessions.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Conditions I Commonly Treat:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>✓ Skin tags</strong> - Small, flesh-coloured growths often found on the neck, underarms, eyelids or groin</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Warts &amp; verrucae</strong> - Common viral growths that appear on the hands, fingers or feet</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Milia</strong> - Tiny white bumps around eyes and cheeks</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Cherry angiomas</strong> - Small, bright red spots made up of tiny blood vessels</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Age spots (solar lentigines)</strong> - Flat brown patches of sun damage</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Seborrhoeic keratosis</strong> - Raised, “stuck-on” looking growths that become more common with age</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Actinic keratosis</strong> - Pre-cancerous rough scaly patches caused by sun damage</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Sebaceous hyperplasia</strong> - Small yellowish bumps caused by enlarged oil glands, usually on the face</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2342]}',1,'2026-03-03 00:28:21','2026-03-03 07:55:09','dd1410e1-3b68-4a64-ae93-26ee00b4dd89'),
(2792,2792,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 00:28:21','2026-03-03 00:28:21','9753f6d2-c1ad-4c4d-ab54-6eb2888e07ac'),
(2793,2793,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-03 00:28:21','2026-03-03 00:28:21','d00ae588-abfc-4e50-adb7-01aab5153eef'),
(2794,2794,1,'Q: How many microneedling sessions will I need?','q-how-many-microneedling-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many microneedling sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of sessions rather than a one-off treatment. Treatment plans involve a course of microneedling sessions spaced 4–6 weeks apart to allow the skin time to heal and remodel between treatments. The number of sessions required depends on the concern being treated and how your skin responds. 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 plan. 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.\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','af1f2af9-226c-4dba-892c-a73810c09ea3'),
(2795,2795,1,'Q: Does microneedling hurt?','q-does-microneedling-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:21','2026-03-03 00:28:21','f1f0beb0-38dc-4faf-8c85-1ce4f09286c8'),
(2796,2796,1,'Q: When will I see results from microneedling?','q-when-will-i-see-results-from-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:21','2026-03-03 00:28:21','7bac7823-2e60-446e-8ceb-1f971994cab6'),
(2797,2797,1,'Q: What is the downtime after microneedling?','q-what-is-the-downtime-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:21','2026-03-03 00:28:21','50002f12-0ea8-4f5a-9786-752206cfc4af'),
(2798,2798,1,'Q: Is microneedling safe for dark skin?','q-is-microneedling-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is microneedling safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:21','2026-03-03 00:28:21','3a1d8533-a9e7-4537-b8b0-f40c41f693dd'),
(2799,2799,1,'Q: What is the difference between NCTF, PDRNs, and Exosomes?','q-what-is-the-difference-between-nctf-pdrns-and-exosomes',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between NCTF, PDRNs, and Exosomes?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: NCTF 135 HA is a poly-revitalising formulation containing over 50 active ingredients that supports hydration, luminosity and overall skin quality. Topical PDRNs (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. Exosomes 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 a detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','9561e0b1-a7e6-43a1-93a5-d4ac2b534a4b'),
(2800,2800,1,'Q: Can microneedling treat acne scars?','q-can-microneedling-treat-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling treat acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced medical-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 polynucleotides, biostimulators like JULAINE™ and chemical resurfacing, 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.\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','f7d6024a-e919-4918-a6f3-bebebebec635'),
(2801,2801,1,'Q: How does microneedling compare to laser resurfacing?','q-how-does-microneedling-compare-to-laser-resurfacing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does microneedling compare to laser resurfacing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 many patients.\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','6a5d82fa-a836-482b-9f0d-f01b327e57fa'),
(2802,2802,1,'Q: Can microneedling help with hair loss?','q-can-microneedling-help-with-hair-loss',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling help with hair loss?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:21','2026-03-03 00:28:21','d428cc48-3fbd-4771-8427-21c76c0992ec'),
(2803,2803,1,'Q: What skincare should I use after microneedling?','q-what-skincare-should-i-use-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 pharmaceutical-grade 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.\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','5a817baa-bd7f-4708-913e-407a4c1f0891'),
(2804,2804,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 00:28:21','2026-03-03 00:28:21','756c20f5-53ef-43c2-bef5-0078b3306c93'),
(2805,2805,1,'Microneedling','microneedling-2','treatments/microneedling-2','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','8badbfff-da6d-4adc-91c1-39abf933b065'),
(2806,2806,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\":\"by Dr Rachel\",\"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><br /> </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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','1e8863f8-67b3-4003-875d-903a75470570'),
(2807,2807,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','12ab6771-2673-48a2-9c2a-7e43dc12b7ec'),
(2808,2808,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-03 00:28:21','2026-03-03 00:28:21','ef8bcbf5-b6ee-47c6-a745-839dfe13bad6'),
(2809,2809,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-03 00:28:21','2026-03-03 00:28:21','bdcb81d0-d650-4164-9502-1d42dfd1de8c'),
(2810,2810,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-03 00:28:21','2026-03-03 00:28:21','e70d8e5d-761f-4384-ba91-26249942807e'),
(2811,2811,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-03 00:28:21','2026-03-03 00:28:21','25472e43-f5d1-4aba-af0d-08c3d1bc2ccd'),
(2812,2812,1,'Why Choose Medical Microneedling?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"3cbe2fed-6999-4764-ab9a-308f0b982499\":\"Why Choose Doctor-Led Microneedling?\",\"45c80109-3898-433b-96cc-3838022d84f9\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span><br /> </p>\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','26aa5090-b13d-4012-b3c2-8ab34e3147f9'),
(2813,2813,1,'True Collagen Induction','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This is collagen induction therapy working at a cellular level, using the skin’s own repair mechanisms to improve strength, texture, and quality.</span></p>\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','2a55d9ae-7499-478b-9a92-511dd607b8ad'),
(2814,2814,1,'Advanced Serum Technology','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. These serums are delivered through the micro-channels created during microneedling, allowing deeper penetration than topical application alone and supporting meaningful, long-term improvement in skin quality.</span></p>\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','8f45575c-f6ac-4a5e-a57c-916205eac14f'),
(2815,2815,1,'Treats What Lasers Cannot','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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, including acne scarring, stretch marks, fine lines, pigmentation, enlarged pores, and even scalp hair thinning. This versatility allows microneedling to be safely adapted to different areas and skin types, making it a valuable option where other treatments may be less appropriate.</span></p>\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','c1e667b8-f12a-4b77-b327-9d2a5dac1071'),
(2816,2816,1,'Medical-Grade Precision','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column text-2xl\",\"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. This level of clinical oversight allows microneedling to be used as a form of true dermal repair, rather than a superficial skin treatment. Depth, technique, and product choice are all tailored to the individual, ensuring treatments are both safe and effective. It is this medical expertise and attention to detail that elevates outcomes and supports consistent, high-quality results over time.</span></p>\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','4329e60d-d91c-4708-b79e-91d2999feead'),
(2817,2817,1,'What Is Medical Microneedling?','what-is-treatment-3',NULL,'{\"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><p> </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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">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><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><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><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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">One of the key advantages of medical microneedling is precision. I carefully tailor needle depth to the area being treated and the concern being addressed.</span><br /><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Superficial depths are used to enhance radiance and product penetration, medium depths to improve fine lines and texture, and deeper treatments for scarring and more significant structural remodelling. This individualised approach allows results to be optimised while maintaining safety.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">What further differentiates medical microneedling is the use of advanced, medical-grade serums during treatment. The micro-channels created allow active ingredients to penetrate far more effectively than they would through intact skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I offer three carefully selected serum options:</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>NCTF 135 HA:</strong> A poly-revitalising formulation containing over 50 active ingredients, including hyaluronic acid, amino acids, vitamins, minerals, and antioxidants. This supports hydration, luminosity, and long-term skin quality.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Topical PDRNs (Polynucleotides):</strong> A high-strength polynucleotide formulation that combines PDRNs (building blocks of DNA), with skin-nourishing hyaluronic acid and niacinamide. This combination supports cellular repair, hydration at multiple skin levels, and barrier function, helping to enhance tissue regeneration and collagen quality, tackling multiple signs of ageing in the skin.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Exosomes:</strong> Next-generation technology designed to support skin repair and regeneration at a cellular level. They contain purified extracellular vesicles rich in signalling molecules that help improve communication between skin cells, encouraging repair, renewal, and collagen stimulation over time. Exosomes are particularly effective for improving scarring and treating stubborn pigmentation.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">During your treatment, precise microneedling is performed across the treatment areas using your chosen serum. Most patients describe the sensation as firm pressure with manageable discomfort, and the procedure is generally very well tolerated.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">After treatment, the skin typically appears flushed and warm, similar to the glow you might see after brisk exercise. This usually settles within 24 hours. Many patients notice an immediate improvement in brightness and skin vitality, with deeper, longer-term improvements continuing to develop over the following weeks as new collagen forms and matures.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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><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 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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Safety underpins every treatment I perform. Microneedling temporarily creates micro-channels within the skin, which requires strict sterile technique and medical-grade infection control. I use single-use sterile needle cartridges and adhere to clinical hygiene standards designed to minimise risk and support safe healing.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Aftercare and follow-up are equally important. I provide clear post-treatment guidance, including gentle skincare, sun protection, and recovery support, and I monitor progress so treatment plans can be adjusted if sensitivity or unexpected reactions occur.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">As a member of CMAC (the Complications in Medical Aesthetic Collaborative), I remain up to date with best-practice safety protocols and have the training and support to recognise and manage complications promptly, should they arise.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">When compared with energy-based resurfacing treatments, microneedling offers a non-ablative approach to collagen induction that works without heat-related tissue damage. This makes it a versatile option across a wide range of skin types, including those where pigmentation risk must be carefully considered.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Doctor-led microneedling within a GP-run clinic prioritises precision, safety, and long-term skin health - ensuring treatments are tailored, evidence-based, and delivered with clinical oversight at every stage.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</strong></span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had medical microneedling with exosomes for my acne scarring, and the results are phenomenal. My skin texture has dramatically improved, and the deep scars have softened significantly. Dr Rachel explained everything so clearly and made me feel completely comfortable. This treatment has genuinely changed my confidence.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Katie, Heswall\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Microneedling\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"K.H.\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Doctor-Led Microneedling?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Effective microneedling depends on understanding skin anatomy, adjusting depth appropriately, maintaining high standards of hygiene, and selecting the right treatment approach for your skin. Doctor-led microneedling offers an added level of clinical oversight, safety, and personalised care giving you optimal results.</span></p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','22139b51-c386-471f-a0a9-a4a33ad96ce5'),
(2818,2818,1,'Who Should Consider Medical Microneedling?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Medical Microneedling?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Medical microneedling is ideal for individuals seeking deeper skin repair for concerns such as scarring, uneven texture, pigmentation changes, or age-related skin changes, particularly where topical skincare alone has reached its limits.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Ideal Candidates:</strong></span></h4><p> </p><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><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><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><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><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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You prefer a non-ablative approach </strong>that works with the skin’s natural healing processes rather than relying on heat or tissue destruction.</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2342]}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','4918681b-4505-42b4-b690-f9aac7de5e19'),
(2819,2819,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 00:28:21','2026-03-03 00:28:21','9dc1eb93-e0bc-430a-a1b0-5d63676c1176'),
(2820,2820,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-03 00:28:21','2026-03-03 00:28:21','e12b14a4-5c8e-42aa-a1f7-d1cb335dfeb8'),
(2821,2821,1,'Q: How many microneedling sessions will I need?','q-how-many-microneedling-sessions-will-i-need',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How many microneedling sessions will I need?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Medical microneedling is a course-based treatment, and meaningful results are achieved through a planned series of sessions rather than a one-off treatment. Treatment plans involve a course of microneedling sessions spaced 4–6 weeks apart to allow the skin time to heal and remodel between treatments. The number of sessions required depends on the concern being treated and how your skin responds. 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 plan. 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.\"}',1,'2026-03-03 00:28:21','2026-03-03 00:28:21','6b027b66-3831-4101-b7f6-6bb97bdcd441'),
(2822,2822,1,'Q: Does microneedling hurt?','q-does-microneedling-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does microneedling hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:22','2026-03-03 00:28:22','0dff6853-4a05-440f-8143-01b8d2cf417d'),
(2823,2823,1,'Q: When will I see results from microneedling?','q-when-will-i-see-results-from-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: When will I see results from microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:22','2026-03-03 00:28:22','76d9cfcd-9bad-4a31-b7d1-ee71da88aff5'),
(2824,2824,1,'Q: What is the downtime after microneedling?','q-what-is-the-downtime-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the downtime after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:22','2026-03-03 00:28:22','0f69b8a7-a33f-4ff1-9db6-25843b7b0e37'),
(2825,2825,1,'Q: Is microneedling safe for dark skin?','q-is-microneedling-safe-for-dark-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is microneedling safe for dark skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:22','2026-03-03 00:28:22','eda8b411-45d5-4e6f-b38d-bd6de9268b31'),
(2826,2826,1,'Q: What is the difference between NCTF, PDRNs, and Exosomes?','q-what-is-the-difference-between-nctf-pdrns-and-exosomes',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between NCTF, PDRNs, and Exosomes?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: NCTF 135 HA is a poly-revitalising formulation containing over 50 active ingredients that supports hydration, luminosity and overall skin quality. Topical PDRNs (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. Exosomes 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 a detailed consultation, taking into account your skin type, concerns and how your skin is likely to respond.\"}',1,'2026-03-03 00:28:22','2026-03-03 00:28:22','df8d9c70-f592-4fd4-9d4c-39b4828cc373'),
(2827,2827,1,'Q: Can microneedling treat acne scars?','q-can-microneedling-treat-acne-scars',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling treat acne scars?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Yes. Medical microneedling is an effective treatment for atrophic acne scars, such as rolling, boxcar and ice-pick scars, particularly when paired with advanced medical-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 polynucleotides, biostimulators like JULAINE™ and chemical resurfacing, 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.\"}',1,'2026-03-03 00:28:22','2026-03-03 00:28:22','f7159f39-0c90-43b7-98e5-6e3c3b04d745'),
(2828,2828,1,'Q: How does microneedling compare to laser resurfacing?','q-how-does-microneedling-compare-to-laser-resurfacing',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How does microneedling compare to laser resurfacing?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 many patients.\"}',1,'2026-03-03 00:28:22','2026-03-03 00:28:22','75bf55e3-7374-4089-9939-c2de07ab1a67'),
(2829,2829,1,'Q: Can microneedling help with hair loss?','q-can-microneedling-help-with-hair-loss',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can microneedling help with hair loss?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 00:28:22','2026-03-03 00:28:22','1e3345b8-ac16-49b7-ac29-feea803799c4'),
(2830,2830,1,'Q: What skincare should I use after microneedling?','q-what-skincare-should-i-use-after-microneedling',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What skincare should I use after microneedling?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 pharmaceutical-grade 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.\"}',1,'2026-03-03 00:28:22','2026-03-03 00:28:22','402ffcbb-d73e-445f-8146-f0b88f034353'),
(2831,2831,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 00:28:22','2026-03-03 00:28:22','7fd30153-702e-4d33-b0f2-786109b96eab'),
(2832,2832,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-03 00:28:32','2026-03-03 00:28:32','4773ad75-b368-4307-a5ac-d9891c0de053'),
(2862,2862,1,'Q: How long does the treatment take?','q-how-long-does-the-treatment-take',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long does the treatment take?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','e18ee825-db9b-4612-91fa-c7d979f391a8'),
(2863,2863,1,'Q: Does cryotherapy hurt?','q-does-cryotherapy-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does cryotherapy hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','8ba914f9-d1eb-49fd-8bab-be555b518d59'),
(2864,2864,1,'Q: What happens immediately after treatment?','q-what-happens-immediately-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What happens immediately after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','6eb6b245-2561-4cf2-84e1-9da85bf7f527'),
(2865,2865,1,'Q: How long does it take to heal?','q-how-long-does-it-take-to-heal',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long does it take to heal?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The healing timeline varies by lesion depth:\\n- Days 1-3: Redness and possible blister formation\\n- Days 3-7: Scab forms as blister dries\\n- Days 7-14: Scab lifts away naturally, revealing fresh pink skin\\n- Weeks 2-8: Treated area gradually blends with surrounding skin\\nMost lesions heal completely within 2-4 weeks. Deeper lesions may take longer.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','2e3dd020-e8ef-44e8-9e69-316ef29252fd'),
(2866,2866,1,'Q: Will I have a scar?','q-will-i-have-a-scar',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I have a scar?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','cb617bbb-68c2-424b-a638-23e786683060'),
(2867,2867,1,'Q: Will the treated area look lighter than my skin?','q-will-the-treated-area-look-lighter-than-my-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will the treated area look lighter than my skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','22a01383-ec2f-4022-bb28-20a20bcc12a1'),
(2868,2868,1,'Q: Is there any downtime?','q-is-there-any-downtime',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','bdd3c0f1-476f-46ab-9ad3-e0213d0df855'),
(2869,2869,1,'Q: Will the lesion come back?','q-will-the-lesion-come-back',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will the lesion come back?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 your consultation.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','8fdbb37f-37c6-4124-9349-d34ff53c5b00'),
(2870,2870,1,'Q: Can I have multiple lesions treated at once?','q-can-i-have-multiple-lesions-treated-at-once',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I have multiple lesions treated at once?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','495e141c-8476-46bf-ac68-1fb30f5d57a7'),
(2871,2871,1,'Q: What is the difference between the CryoIQ pen and liquid nitrogen?','q-what-is-the-difference-between-the-cryoiq-pen-and-liquid-nitrogen',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between the CryoIQ pen and liquid nitrogen?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','ebe93368-55ab-4ee3-8df8-69a8b3d6f76d'),
(2872,2872,1,'Q: Can you treat moles with cryotherapy?','q-can-you-treat-moles-with-cryotherapy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can you treat moles with cryotherapy?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Only benign moles are suitable for cryotherapy in clinic. All moles must be confirmed as benign using dermatoscopy before cryotherapy can be considered. This can be done either through your NHS GP or via the Map My Mole service available in clinic, which provides a report from a consultant dermatologist within 48 hours.\\nIf a mole has not been confirmed as benign, or if there is any uncertainty, cryotherapy will not be carried out and appropriate referral will be recommended. Your safety will always take priority over treatment.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','69d66484-3cbd-45a1-9835-e9530d341c50'),
(2873,2873,1,'Q: Is cryotherapy safe for children?','q-is-cryotherapy-safe-for-children',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is cryotherapy safe for children?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','66dfb4e0-2215-44a4-9237-10efebb4ec53'),
(2874,2874,1,'Q: What should I do if the area becomes infected?','q-what-should-i-do-if-the-area-becomes-infected',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What should I do if the area becomes infected?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Signs of infection include increasing redness spreading beyond the treated area, pus, significant swelling, or severe pain. If you notice any of these symptoms, contact me immediately. Infection is rare but can occur if the area is not kept clean or if the scab is picked prematurely. I provide detailed written aftercare instructions to minimise this risk.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','6037c7a2-b067-42a9-a3eb-3d7859dd87b0'),
(2875,2875,1,'Q: Why should I choose a doctor over a beauty salon for cryotherapy?','q-why-should-i-choose-a-doctor-over-a-beauty-salon-for-cryotherapy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Why should I choose a doctor over a beauty salon for cryotherapy?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Cryotherapy is a medical treatment, and while the freezing itself may appear straightforward, knowing what is safe to treat and when not to proceed requires clinical training and experience.\\nMany high-street salons offer cryotherapy, but they are not medically trained to assess skin lesions in the context of your overall health, recognise when treatment is not appropriate, or advise when further medical assessment is the safest next step.\\nAs a GMC-registered GP, I bring medical judgement, careful assessment, and professional oversight to every consultation. My focus is on ensuring cryotherapy is appropriate for you, recommending referral or further review when needed, and delivering treatment within clear clinical boundaries and medical accountability.\\nWhen it comes to your skin, choosing doctor-led care means safety, reassurance, and confidence that your best interests always come first.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','263384e8-611b-4ddd-afdc-d21553e0ef8a'),
(2876,2876,1,'Cryotherapy','cryotherapy','treatments/cryotherapy','{\"15c485a1-c1dd-465e-93b2-21f693927c55\":[2341]}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','a3800122-31e7-463b-8024-97698c5c4254'),
(2877,2877,1,'Expert Cryotherapy Treatment by Dr Rachel On The Wirral','treatment-2',NULL,'{\"733c704a-1ef5-425f-82bb-2c7ed16220f6\":\"Expert Cryotherapy Treatment\",\"14363a43-2d96-4339-9c8f-1176bb7ac41a\":\"by Dr Rachel 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 Bebington, Eastham &amp; Moreton</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\":\"Call 07834 258596\",\"417ec013-10ea-4c74-9ebb-451de4da5f3f\":\"tel:07834258596\",\"a5274579-8206-47e3-8cdd-64cbb42cfa04\":true}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','f1ba8343-49ab-4403-9c8f-e08abb560ec3'),
(2878,2878,1,'Treatment Overview','treatment-overview',NULL,'{\"27981bad-5628-40c6-8263-ab2118bca482\":\"Treatment Overview\",\"a2a192d6-b8b6-40f0-9ac2-e971e485a9e8\":\"Treatment Overview\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','b223ebf0-5799-4a71-8656-73a70a6cf435'),
(2879,2879,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-03 07:55:09','2026-03-03 07:55:09','ec6e2744-ac7a-4472-bcf8-5599bc99738d'),
(2880,2880,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-03 07:55:09','2026-03-03 07:55:09','e334f646-002f-4f16-9f4f-d98870db708a'),
(2881,2881,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-03 07:55:09','2026-03-03 07:55:09','fd543494-d9db-465f-8276-0c9c047810bb'),
(2882,2882,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-03 07:55:09','2026-03-03 07:55:09','a868917d-6d20-41d3-9c55-e774fd94179e'),
(2883,2883,1,'Why Choose Cryotherapy for Skin Lesions?','why-choose-this-treatment',NULL,'{\"f8e6258b-90c5-4137-bace-60c62639da4a\":\"WHY CHOOSE AESTHETICS BY DR RACHEL?\",\"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><p> </p>\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','356df7e3-5e52-4ddb-a896-6e941a3a950e'),
(2884,2884,1,'Precision Technology','targeted-results',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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 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><p> </p>\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','65fc76b8-cebf-436f-bdce-fea1812fbb02'),
(2885,2885,1,'Doctor-Led Expertise','safety-first',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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 <strong>not</strong> be treated and instead referred for further medical assessment. Treatment is carried out with patient safety as the priority, within clear clinical boundaries and referral pathways.</span></p><p> </p>\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','58d95bc4-9b83-445e-a2b5-34f018e9457d'),
(2886,2886,1,'Quick & Effective','expert-care',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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><p> </p>\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','a4a2ac89-0749-4c35-9ef3-897e6f48b62c'),
(2887,2887,1,'Proven Results','proven-excellence',NULL,'{\"1ae5caab-db45-4566-bedb-13220889b058\":\"fa-solid fa-chart-column 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><p> </p>\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','79bcf5f7-516a-49ed-889b-dfd64068cab2'),
(2888,2888,1,'What Is Cryotherapy Treatment?','what-is-treatment-3',NULL,'{\"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%);\\\">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><p> </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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">At my clinic, I use the <strong>CryoIQ pen</strong>, 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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Why does this matter?</strong> 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><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.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Over the next 7-14 days, a scab will form and eventually fall away, revealing fresh pink skin underneath. <strong>The key to avoiding scarring is simple: do not pick the scab.</strong> Let it lift away naturally. It is important to bear in mind that some skin lesions need more than one treatment.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I treat everything from common skin tags and warts to more complex lesions such as actinic keratosis (pre-cancerous sun damage) and selected benign moles. That said, I will only ever treat lesions that I am confident are safe and appropriate for cryotherapy. Because this clinic does not provide a diagnostic service, any pigmented lesions will need to have been checked and confirmed as benign by your NHS GP, or assessed using the Map My Mole service available in clinic before treatment.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">If I have any concerns at any point during your consultation, I will recommend referral for specialist assessment rather than proceeding with treatment. Your safety and wellbeing will always take priority over any treatment fee.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">Many of my patients have lived with bothersome skin lesions for years, trying over-the-counter remedies that simply do not work. Cryotherapy offers a definitive medical solution with minimal discomfort and excellent results.\\\"</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> — Dr Rachel Sinton, MBChB (Hons), MRCGP, GMC-Registered GP</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>[Image: Dr Rachel performing Cryotherapy treatment]</strong></span></p>\",\"00524f8a-98d9-4f47-b5d0-b4c407115118\":[2343],\"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%);\\\">\\\"Here is something many people do not realise: <strong>cryotherapy is a medical procedure, not a beauty treatment.</strong></span></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><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><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><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>As a practising GP here on the Wirral, </strong>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><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">And critically, I know when <strong>not</strong> to treat, when a mole needs dermatology referral, when a lesion requires biopsy and when cryotherapy is not the safest option. Knowing when not to proceed is just as important as knowing how to treat.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I am also a member of Complications in Medical Aesthetic Collaborative (CMAC), meaning I am trained to recognise and manage complications should they arise. I use medical-grade equipment, follow strict clinical protocols, and maintain full professional indemnity insurance.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>You deserve treatment delivered with medical judgement, safety, and accountability at its core.</strong></span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">My clinic is based in Bebington, easily accessible from Eastham, Moreton, Heswall, and across the Wirral. Every appointment is one-to-one with me, from consultation through to treatment and follow-up.</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\">I look forward to helping you achieve clear, healthy skin you feel confident in.”</span></p><p><span style=\\\"background-color:transparent;color:hsl(0,0%,100%);\\\"><strong>Attribution:</strong> - Dr Rachel Sinton, GMC-Registered GP &amp; CMAC Member</span></p>\",\"7509c6f1-b682-433b-9708-0d83e83f3a1f\":[2341],\"0e712616-4ff7-45e0-bd93-b25da08757d3\":\"\\\"I had three stubborn skin tags on my neck that had bothered me for years. Dr Rachel explained everything clearly, the treatment took literally seconds, and they have completely gone with no scarring. I wish I had done this years ago! She is so reassuring and clearly knows her stuff.\\\"\",\"a0af3f1d-586c-4a0f-a63b-23905a40f7f4\":\"Kim, Bebington\",\"2b3e1715-32ff-447b-9460-6469aeb01c95\":\"Cryotherapy\",\"662abfc6-cb86-492b-a40d-00775916402e\":\"Kim\",\"780ba720-3833-46e6-89d7-7d24cc606852\":5,\"80b2559f-f6ea-4425-a80c-d4905608eff9\":\"Why Choose Aesthetics by Dr Rachel for Cryotherapy?\",\"2e2b47ba-c967-4b16-8293-07e5c74319fe\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">When it comes to your skin, there is no substitute for genuine medical expertise delivered with care, precision, and honesty. Cryotherapy may appear straightforward, but achieving safe, effective results relies on careful assessment, technical precision, and the clinical judgement to know when treatment is appropriate and when it is not.</span></p><p> </p>\",\"bae8aad6-de36-441f-bb76-34f1e3a478b2\":\"Book Your Consultation\",\"3ca08555-77e8-454e-8700-705a90cc539c\":\"/contacts\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','611868f9-981c-45d5-876e-8c0161517fba'),
(2889,2889,1,'Who Should Consider Cryotherapy?','who-should-consider-this-treatment',NULL,'{\"b813f809-47c0-4f2e-9d84-af3f38d219d8\":\"WHO SHOULD CONSIDER THIS TREATMENT?\",\"ec84beab-fa56-42e3-aba5-c6f50d7ff782\":\"Who Should Consider Cryotherapy?\",\"e7f2072c-cd79-4083-a671-932331be040a\":\"<p><span style=\\\"background-color:transparent;color:#000000;\\\">Cryotherapy is ideal for anyone with a skin lesion that is bothering them, and is looking for a quick and effective treatment.</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>You have benign skin lesions causing concern</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">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><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You want medical-grade treatment, not salon procedures</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are looking for medical-grade treatment rather than a salon procedure, and value having a GMC-registered doctor with clinical expertise who can assess whether cryotherapy is appropriate and advise when further medical review is needed.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have tried other methods without success</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">Over-the-counter treatments and other home remedies have failed to work, or have even caused irritation. You want a definitive medical solution.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You prefer non-surgical removal</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You want to avoid surgical excision and prefer a quick freezing procedure with no stitches required.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You are in good general health</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You are in good general health and do not have any medical conditions that would make cryotherapy unsafe or unsuitable, all of which will be discussed during your consultation.</span></p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>You have realistic expectations</strong></span><br /><span style=\\\"background-color:transparent;color:#000000;\\\">You understand that healing takes up to 4 weeks, that there may be temporary redness or lightening of the treated area, and that deeper lesions may require 2 or more treatment sessions.</span></p><p> </p><h4><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>Conditions I Commonly Treat:</strong></span></h4><p> </p><p><span style=\\\"background-color:transparent;color:#000000;\\\"><strong>✓ Skin tags</strong> - Small, flesh-coloured growths often found on the neck, underarms, eyelids or groin</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Warts &amp; verrucae</strong> - Common viral growths that appear on the hands, fingers or feet</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Milia</strong> - Tiny white bumps around eyes and cheeks</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Cherry angiomas</strong> - Small, bright red spots made up of tiny blood vessels</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Age spots (solar lentigines)</strong> - Flat brown patches of sun damage</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Seborrhoeic keratosis</strong> - Raised, “stuck-on” looking growths that become more common with age</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Actinic keratosis</strong> - Pre-cancerous rough scaly patches caused by sun damage</span><br /><span style=\\\"background-color:transparent;color:#000000;\\\"> <strong>✓ Sebaceous hyperplasia</strong> - Small yellowish bumps caused by enlarged oil glands, usually on the face</span></p>\",\"118194fa-ddcc-47a9-a830-ee1ba1c92a86\":[2342]}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','b358834a-0d7e-4c58-bdb7-5d7415f6fab2'),
(2890,2890,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-03 07:55:09','2026-03-03 07:55:09','db9393a7-5ac4-4ba1-be4e-2325a5a1c187'),
(2891,2891,1,'Q: How long does the treatment take?','q-how-long-does-the-treatment-take',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long does the treatment take?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','19700af3-8f74-4a87-aee6-42f5addc7a3f'),
(2892,2892,1,'Q: Does cryotherapy hurt?','q-does-cryotherapy-hurt',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Does cryotherapy hurt?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','1925bf7e-56b5-4763-b038-111ff5e0debc'),
(2893,2893,1,'Q: What happens immediately after treatment?','q-what-happens-immediately-after-treatment',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What happens immediately after treatment?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','d7c45558-8919-4e87-b620-13d7b2353c77'),
(2894,2894,1,'Q: How long does it take to heal?','q-how-long-does-it-take-to-heal',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: How long does it take to heal?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: The healing timeline varies by lesion depth:\\n- Days 1-3: Redness and possible blister formation\\n- Days 3-7: Scab forms as blister dries\\n- Days 7-14: Scab lifts away naturally, revealing fresh pink skin\\n- Weeks 2-8: Treated area gradually blends with surrounding skin\\nMost lesions heal completely within 2-4 weeks. Deeper lesions may take longer.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','25b13990-8a60-4ed4-81bb-b9a0fbfd2fbb'),
(2895,2895,1,'Q: Will I have a scar?','q-will-i-have-a-scar',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will I have a scar?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','982abf7b-56e3-42db-81fe-71d94eb9ac34'),
(2896,2896,1,'Q: Will the treated area look lighter than my skin?','q-will-the-treated-area-look-lighter-than-my-skin',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will the treated area look lighter than my skin?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','83836f96-4c48-4c53-a24e-55a0b9b01878'),
(2897,2897,1,'Q: Is there any downtime?','q-is-there-any-downtime',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is there any downtime?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','71b6de6f-6840-44f8-a905-7ed862214095'),
(2898,2898,1,'Q: Will the lesion come back?','q-will-the-lesion-come-back',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Will the lesion come back?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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 your consultation.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','2e6f37d9-b993-426d-af14-c0aaf77b4af0'),
(2899,2899,1,'Q: Can I have multiple lesions treated at once?','q-can-i-have-multiple-lesions-treated-at-once',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can I have multiple lesions treated at once?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','c9baa1cb-f3d2-47db-a32c-d3f648903f53'),
(2900,2900,1,'Q: What is the difference between the CryoIQ pen and liquid nitrogen?','q-what-is-the-difference-between-the-cryoiq-pen-and-liquid-nitrogen',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What is the difference between the CryoIQ pen and liquid nitrogen?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','79c389cc-63d3-4107-9d7a-cb2d9e48cfa0'),
(2901,2901,1,'Q: Can you treat moles with cryotherapy?','q-can-you-treat-moles-with-cryotherapy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Can you treat moles with cryotherapy?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Only benign moles are suitable for cryotherapy in clinic. All moles must be confirmed as benign using dermatoscopy before cryotherapy can be considered. This can be done either through your NHS GP or via the Map My Mole service available in clinic, which provides a report from a consultant dermatologist within 48 hours.\\nIf a mole has not been confirmed as benign, or if there is any uncertainty, cryotherapy will not be carried out and appropriate referral will be recommended. Your safety will always take priority over treatment.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','b1f57aaa-9aea-4907-907c-56f394470c62'),
(2902,2902,1,'Q: Is cryotherapy safe for children?','q-is-cryotherapy-safe-for-children',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Is cryotherapy safe for children?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: 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-03 07:55:09','2026-03-03 07:55:09','e4a44fbd-6dc0-40d8-b6d9-4310b5125373'),
(2903,2903,1,'Q: What should I do if the area becomes infected?','q-what-should-i-do-if-the-area-becomes-infected',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: What should I do if the area becomes infected?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Signs of infection include increasing redness spreading beyond the treated area, pus, significant swelling, or severe pain. If you notice any of these symptoms, contact me immediately. Infection is rare but can occur if the area is not kept clean or if the scab is picked prematurely. I provide detailed written aftercare instructions to minimise this risk.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','f6371e65-c168-4389-a144-85992e9c9729'),
(2904,2904,1,'Q: Why should I choose a doctor over a beauty salon for cryotherapy?','q-why-should-i-choose-a-doctor-over-a-beauty-salon-for-cryotherapy',NULL,'{\"df226ae8-fb69-4583-a72e-59db675487cd\":\"Q: Why should I choose a doctor over a beauty salon for cryotherapy?\",\"c7f394f7-2697-451f-b233-0583f7d2fee4\":\"A: Cryotherapy is a medical treatment, and while the freezing itself may appear straightforward, knowing what is safe to treat and when not to proceed requires clinical training and experience.\\nMany high-street salons offer cryotherapy, but they are not medically trained to assess skin lesions in the context of your overall health, recognise when treatment is not appropriate, or advise when further medical assessment is the safest next step.\\nAs a GMC-registered GP, I bring medical judgement, careful assessment, and professional oversight to every consultation. My focus is on ensuring cryotherapy is appropriate for you, recommending referral or further review when needed, and delivering treatment within clear clinical boundaries and medical accountability.\\nWhen it comes to your skin, choosing doctor-led care means safety, reassurance, and confidence that your best interests always come first.\"}',1,'2026-03-03 07:55:09','2026-03-03 07:55:09','ec21548c-6aed-4999-b752-1d19ab58cafe'),
(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,'Anti-Wrinkle Injections','1',NULL,'{\"741b290b-1284-44cf-803c-46a7844d69e4\":\"normal\"}',1,'2026-03-03 07:58:02','2026-03-03 07:58:57','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'),
(2918,2918,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-03 08:12:59','2026-03-03 08:13:29','d2408946-e670-4d52-a3cf-87ba7cb71905'),
(2919,2919,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\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":true,\"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-03-03 08:13:00','2026-03-03 08:13:00','fee67956-e7e2-4948-b141-81bb09539941'),
(2920,2920,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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','70a365c4-8325-476c-9ab0-71987ba32812'),
(2921,2921,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.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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]}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','7492b30a-93d8-4895-b809-baabf0c905eb'),
(2922,2922,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:13:00','2026-03-03 08:13:00','342248cc-1d26-4815-b25c-267764017760'),
(2923,2923,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-03-03 08:13:00','2026-03-03 08:13:00','f2f220d8-cc7a-4988-abda-274b3038a1f4'),
(2924,2924,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','c5b83632-e5dc-4c2a-b793-662e8beac2dc'),
(2925,2925,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','94a0592b-3ed5-4704-878c-b0ad3b2e269c'),
(2926,2926,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','0d305dec-db76-47bc-a2ac-50aeebc73caf'),
(2927,2927,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','af26c070-97d5-46dd-8079-8662df17bf6f'),
(2928,2928,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','c767b59a-c6f7-4ae8-a644-3a95f396cd3a'),
(2929,2929,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','e56c4397-7a7c-4d2d-b8da-62851b38fec1'),
(2930,2930,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','3934f90f-8321-4625-a13e-9bd4ca5a0ba5'),
(2931,2931,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','c44d638f-eaa5-4072-b098-a7984426ff57'),
(2932,2932,1,'Condition 2 123','condition-2-2','conditions/condition-2-2','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','5cb7ffd1-9efc-47d5-bf62-eb18b44beb3a'),
(2933,2933,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\",\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":true,\"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-03-03 08:13:00','2026-03-03 08:13:00','07f04565-2f0a-4abb-b983-14ecdc121e52'),
(2934,2934,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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','eff5a2cc-687d-4f80-b904-1c5c9a947faa'),
(2935,2935,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.\",\"9551510c-7e7c-4050-86b6-7d7743d053b7\":\"ebd5cb\",\"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],\"fb812f21-7614-47e0-b55a-8ed5607b5f4b\":false,\"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]}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','b2c7cd5c-df4c-427f-922b-8b4f420563eb'),
(2936,2936,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:13:00','2026-03-03 08:13:00','9476fea9-3ae5-4654-a5c4-f7ddfd2e2e35'),
(2937,2937,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-03-03 08:13:00','2026-03-03 08:13:00','b7b56943-ef70-46fc-b4ac-354fe41f16f4'),
(2938,2938,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','feee3bdd-daa6-411d-8b74-2b86f8cbc008'),
(2939,2939,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','d0926b1e-4cac-4258-85f5-0f602e253b62'),
(2940,2940,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','03e22666-777d-451e-b771-8614517ec8aa'),
(2941,2941,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','b027f75d-08f0-41ca-96dc-bb3140f472fa'),
(2942,2942,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','446e6d93-87e4-4771-8992-bc38d3ba75a3'),
(2943,2943,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','7bba7425-5b03-452c-b630-3f339c2a420f'),
(2944,2944,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','f9c44f80-ddbe-4a96-ac47-928ccb2e32d9'),
(2945,2945,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?\"}',1,'2026-03-03 08:13:00','2026-03-03 08:13:00','aaa2abeb-94c5-4683-856c-d0bbe9756050'),
(2947,2947,1,'Rosacea','rosacea','conditions/rosacea','{\"532dac3c-d10a-4183-93e4-92dc9b29362b\":[81]}',1,'2026-03-03 08:13:29','2026-03-03 08:13:29','ee088527-c55c-425c-92ad-c3a3bdbd9b06');
/*!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'),
(93,2,NULL,NULL,NULL,1,'2025-12-02 15:41:00',NULL,'live',0,0,'2025-12-02 15:40:51','2025-12-02 15:41:06'),
(94,2,NULL,NULL,NULL,1,'2025-12-02 15:41:00',NULL,'live',NULL,NULL,'2025-12-02 15:41:06','2025-12-02 15:41:06'),
(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'),
(97,2,NULL,NULL,NULL,1,'2025-12-02 15:42:00',NULL,'live',0,0,'2025-12-02 15:42:01','2025-12-02 15:42:14'),
(98,2,NULL,NULL,NULL,1,'2025-12-02 15:42:00',NULL,'live',NULL,NULL,'2025-12-02 15:42:14','2025-12-02 15:42:14'),
(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'),
(105,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',0,0,'2025-12-02 16:15:38','2025-12-02 16:15:48'),
(106,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 16:15:48','2025-12-02 16:15:48'),
(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'),
(117,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',0,0,'2025-12-02 16:47:00','2025-12-02 16:47:00'),
(118,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2025-12-02 16:47:05','2025-12-02 16:47:05'),
(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'),
(122,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 16:48:06','2025-12-02 16:48:06'),
(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'),
(132,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2025-12-02 17:18:14','2025-12-02 17:18:14'),
(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'),
(149,NULL,NULL,318,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-02 17:25:51','2025-12-07 09:16:48'),
(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'),
(181,NULL,NULL,105,7,2,'2025-12-02 19:06:00',NULL,'live',0,0,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(182,NULL,NULL,181,6,1,'2025-12-02 19:05:00',NULL,'live',0,0,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(183,NULL,NULL,181,6,1,'2025-12-02 19:06:00',NULL,'live',0,0,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(184,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(185,NULL,NULL,184,7,2,'2025-12-02 19:06:00',NULL,'live',NULL,NULL,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(186,NULL,NULL,185,6,1,'2025-12-02 19:05:00',NULL,'live',NULL,NULL,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(187,NULL,NULL,185,6,1,'2025-12-02 19:06:00',NULL,'live',NULL,NULL,'2025-12-02 19:06:16','2025-12-02 19:06:16'),
(190,NULL,NULL,105,7,6,'2025-12-02 19:32:00',NULL,'live',0,0,'2025-12-02 19:32:49','2025-12-02 19:32:49'),
(191,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 19:32:49','2025-12-02 19:32:49'),
(192,NULL,NULL,191,7,6,'2025-12-02 19:32:00',NULL,'live',NULL,NULL,'2025-12-02 19:32:49','2025-12-02 19:32:49'),
(193,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 19:34:09','2025-12-02 19:34:09'),
(195,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 19:52:54','2025-12-02 19:52:54'),
(196,NULL,NULL,195,7,6,'2025-12-02 19:32:00',NULL,'live',NULL,NULL,'2025-12-02 19:52:54','2025-12-02 19:52:54'),
(198,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 20:01:58','2025-12-02 20:01:58'),
(199,NULL,NULL,198,7,6,'2025-12-02 19:32:00',NULL,'live',NULL,NULL,'2025-12-02 20:01:58','2025-12-02 20:01:58'),
(204,NULL,NULL,105,7,7,'2025-12-02 20:31:00',NULL,'live',0,0,'2025-12-02 20:31:56','2025-12-02 20:31:56'),
(205,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 20:31:56','2025-12-02 20:31:56'),
(206,NULL,NULL,205,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 20:31:56','2025-12-02 20:31:56'),
(208,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:01:57','2025-12-02 21:01:57'),
(210,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2025-12-02 21:02:05','2025-12-02 21:02:05'),
(212,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:05:04','2025-12-02 21:05:04'),
(213,NULL,NULL,212,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 21:05:04','2025-12-02 21:05:04'),
(215,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:05:38','2025-12-02 21:05:38'),
(216,NULL,NULL,215,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 21:05:38','2025-12-02 21:05:38'),
(218,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:06:16','2025-12-02 21:06:16'),
(219,NULL,NULL,218,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 21:06:16','2025-12-02 21:06:16'),
(221,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:08:02','2025-12-02 21:08:02'),
(222,NULL,NULL,221,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 21:08:02','2025-12-02 21:08:02'),
(224,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:08:18','2025-12-02 21:08:18'),
(225,NULL,NULL,224,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 21:08:18','2025-12-02 21:08:18'),
(227,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:08:37','2025-12-02 21:08:37'),
(228,NULL,NULL,227,7,7,'2025-12-02 20:31:00',NULL,'live',NULL,NULL,'2025-12-02 21:08:37','2025-12-02 21:08:37'),
(230,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:09:02','2025-12-02 21:09:02'),
(232,2,NULL,NULL,NULL,4,'2025-12-02 16:15:00',NULL,'live',NULL,NULL,'2025-12-02 21:09:19','2025-12-02 21:09:19'),
(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,'2025-12-03 07:52:00',NULL,'live',NULL,NULL,'2025-12-03 07:52:32','2025-12-03 07:52:56'),
(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-12-03 07:54:00',NULL,'live',NULL,NULL,'2025-12-03 07:54:02','2025-12-03 07:54:20'),
(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'),
(258,NULL,NULL,318,6,1,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-03 08:56:07','2025-12-07 09:16:48'),
(259,NULL,NULL,481,7,10,'2025-12-03 08:56:00',NULL,'live',NULL,NULL,'2025-12-03 08:56:07','2026-02-21 23:28:36'),
(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'),
(276,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 17:13:37','2025-12-03 17:13:37'),
(277,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 17:13:37','2025-12-03 17:13:37'),
(281,NULL,NULL,310,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 17:13:37','2025-12-07 09:14:31'),
(282,NULL,NULL,310,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 17:13:37','2025-12-07 09:14:31'),
(287,NULL,NULL,274,22,12,'2025-12-03 18:17:00',NULL,'live',NULL,NULL,'2025-12-03 18:18:09','2025-12-03 18:18:09'),
(298,NULL,NULL,310,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 19:05:20','2025-12-07 09:14:31'),
(299,NULL,NULL,310,22,12,'2025-12-03 18:17:00',NULL,'live',NULL,NULL,'2025-12-03 19:05:20','2025-12-07 09:14:31'),
(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'),
(305,NULL,NULL,310,6,1,'2025-12-03 19:14:00',NULL,'live',NULL,NULL,'2025-12-03 19:14:30','2025-12-07 09:14:31'),
(308,NULL,NULL,274,22,12,'2025-12-03 19:16:00',NULL,'live',NULL,NULL,'2025-12-03 19:16:27','2025-12-03 19:16:27'),
(310,NULL,NULL,481,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2025-12-03 19:16:28','2026-02-21 23:28:36'),
(311,NULL,NULL,310,22,12,'2025-12-03 19:16:00',NULL,'live',NULL,NULL,'2025-12-03 19:16:28','2025-12-03 19:16:28'),
(318,NULL,NULL,481,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-04 08:58:21','2026-02-21 23:28:36'),
(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',NULL,NULL,'2025-12-04 17:59:30','2025-12-04 17:59:30'),
(335,NULL,NULL,481,7,14,'2025-12-04 17:59:00',NULL,'live',NULL,NULL,'2025-12-04 18:16:25','2026-02-21 23:28:36'),
(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'),
(481,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:23:09','2025-12-06 20:23:09'),
(482,NULL,NULL,481,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:23:09','2025-12-06 20:23:09'),
(483,NULL,NULL,482,51,25,'2025-12-06 19:23:00',NULL,'live',NULL,NULL,'2025-12-06 20:23:09','2025-12-06 20:23:09'),
(484,NULL,NULL,483,50,18,'2025-12-06 19:23:00',NULL,'live',NULL,NULL,'2025-12-06 20:23:09','2025-12-06 20:23:09'),
(486,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:24:18','2025-12-06 20:24:18'),
(487,NULL,NULL,486,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:24:18','2025-12-06 20:24:18'),
(489,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:24:44','2025-12-06 20:24:44'),
(490,NULL,NULL,489,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:24:44','2025-12-06 20:24:44'),
(492,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:24:58','2025-12-06 20:24:58'),
(493,NULL,NULL,492,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:24:58','2025-12-06 20:24:58'),
(495,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:25:12','2025-12-06 20:25:12'),
(496,NULL,NULL,495,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:25:12','2025-12-06 20:25:12'),
(498,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:25:32','2025-12-06 20:25:32'),
(499,NULL,NULL,498,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:25:32','2025-12-06 20:25:32'),
(501,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:25:58','2025-12-06 20:25:58'),
(502,NULL,NULL,501,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:25:58','2025-12-06 20:25:58'),
(504,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:26:27','2025-12-06 20:26:27'),
(505,NULL,NULL,504,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:26:27','2025-12-06 20:26:27'),
(507,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:27:37','2025-12-06 20:27:37'),
(508,NULL,NULL,507,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:27:37','2025-12-06 20:27:37'),
(510,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:27:47','2025-12-06 20:27:47'),
(511,NULL,NULL,510,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:27:47','2025-12-06 20:27:47'),
(513,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:28:39','2025-12-06 20:28:39'),
(514,NULL,NULL,513,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:28:39','2025-12-06 20:28:39'),
(516,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:28:57','2025-12-06 20:28:57'),
(517,NULL,NULL,516,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:28:57','2025-12-06 20:28:57'),
(519,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:29:08','2025-12-06 20:29:08'),
(520,NULL,NULL,519,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:29:08','2025-12-06 20:29:08'),
(522,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:29:36','2025-12-06 20:29:36'),
(523,NULL,NULL,522,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:29:36','2025-12-06 20:29:36'),
(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'),
(531,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:31:22','2025-12-06 20:31:22'),
(532,NULL,NULL,531,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:31:22','2025-12-06 20:31:22'),
(533,NULL,NULL,532,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-06 20:31:22','2025-12-06 20:31:22'),
(534,NULL,NULL,533,50,20,'2025-12-06 20:30:00',NULL,'live',NULL,NULL,'2025-12-06 20:31:22','2025-12-06 20:31:22'),
(535,NULL,NULL,533,50,16,'2025-12-06 18:43:00',NULL,'live',NULL,NULL,'2025-12-06 20:31:22','2025-12-06 20:31:22'),
(536,NULL,NULL,533,50,20,'2025-12-06 20:30:00',NULL,'live',NULL,NULL,'2025-12-06 20:31:22','2025-12-06 20:31:22'),
(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'),
(543,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-06 20:33:05','2025-12-06 20:33:05'),
(544,NULL,NULL,543,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-06 20:33:05','2025-12-06 20:33:05'),
(545,NULL,NULL,544,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-06 20:33:05','2025-12-06 20:33:05'),
(546,NULL,NULL,545,50,16,'2025-12-06 18:43:00',NULL,'live',NULL,NULL,'2025-12-06 20:33:05','2025-12-06 20:33:05'),
(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'),
(583,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(584,NULL,NULL,583,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(585,NULL,NULL,584,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(586,NULL,NULL,585,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(587,NULL,NULL,585,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(588,NULL,NULL,585,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 08:38:43','2025-12-07 08:38:43'),
(589,NULL,NULL,585,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'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'),
(610,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(611,NULL,NULL,610,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(612,NULL,NULL,611,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(613,NULL,NULL,612,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(614,NULL,NULL,612,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(615,NULL,NULL,612,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(616,NULL,NULL,612,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:45:19','2025-12-07 08:45:19'),
(619,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:46:56','2025-12-07 08:46:56'),
(620,NULL,NULL,619,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 08:46:56','2025-12-07 08:46:56'),
(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'),
(637,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(638,NULL,NULL,637,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(639,NULL,NULL,638,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(641,NULL,NULL,639,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(642,NULL,NULL,639,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 08:49:11','2025-12-07 08:49:11'),
(643,NULL,NULL,639,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'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'),
(659,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(660,NULL,NULL,659,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(661,NULL,NULL,660,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(662,NULL,NULL,661,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(663,NULL,NULL,661,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(664,NULL,NULL,661,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(665,NULL,NULL,661,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 08:52:28','2025-12-07 08:52:28'),
(670,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:14:30','2025-12-07 09:14:30'),
(671,NULL,NULL,670,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:14:30','2025-12-07 09:14:30'),
(672,NULL,NULL,671,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:14:30','2025-12-07 09:14:30'),
(673,NULL,NULL,672,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:14:30','2025-12-07 09:14:30'),
(678,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:15:44','2025-12-07 09:15:44'),
(679,NULL,NULL,678,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:15:44','2025-12-07 09:15:44'),
(680,NULL,NULL,679,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:15:44','2025-12-07 09:15:44'),
(681,NULL,NULL,680,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:15:44','2025-12-07 09:15:44'),
(686,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:16:47','2025-12-07 09:16:47'),
(687,NULL,NULL,686,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:16:47','2025-12-07 09:16:47'),
(688,NULL,NULL,687,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:16:47','2025-12-07 09:16:47'),
(689,NULL,NULL,688,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 09:16:47','2025-12-07 09:16:47'),
(695,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2025-12-07 09:17:46'),
(696,NULL,NULL,695,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2025-12-07 09:17:46'),
(697,NULL,NULL,696,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2025-12-07 09:17:46'),
(698,NULL,NULL,697,50,26,'2025-12-07 08:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2025-12-07 09:17:46'),
(699,NULL,NULL,697,50,17,'2025-12-07 08:28:00',NULL,'live',NULL,NULL,'2025-12-07 09:17:46','2025-12-07 09:17:46'),
(704,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:05','2025-12-07 09:19:05'),
(705,NULL,NULL,704,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:05','2025-12-07 09:19:05'),
(706,NULL,NULL,705,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:05','2025-12-07 09:19:05'),
(707,NULL,NULL,706,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:05','2025-12-07 09:19:05'),
(712,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:34','2025-12-07 09:19:34'),
(713,NULL,NULL,712,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:34','2025-12-07 09:19:34'),
(714,NULL,NULL,713,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:34','2025-12-07 09:19:34'),
(715,NULL,NULL,714,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:19:34','2025-12-07 09:19:34'),
(720,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:21:46','2025-12-07 09:21:46'),
(721,NULL,NULL,720,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:21:46','2025-12-07 09:21:46'),
(722,NULL,NULL,721,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:21:46','2025-12-07 09:21:46'),
(723,NULL,NULL,722,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:21:46','2025-12-07 09:21:46'),
(728,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:08','2025-12-07 09:22:08'),
(729,NULL,NULL,728,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:08','2025-12-07 09:22:08'),
(730,NULL,NULL,729,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:08','2025-12-07 09:22:08'),
(731,NULL,NULL,730,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:08','2025-12-07 09:22:08'),
(736,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:31','2025-12-07 09:22:31'),
(737,NULL,NULL,736,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:31','2025-12-07 09:22:31'),
(738,NULL,NULL,737,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:31','2025-12-07 09:22:31'),
(739,NULL,NULL,738,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:22:31','2025-12-07 09:22:31'),
(744,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:23:03','2025-12-07 09:23:03'),
(745,NULL,NULL,744,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 09:23:03','2025-12-07 09:23:03'),
(746,NULL,NULL,745,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 09:23:03','2025-12-07 09:23:03'),
(747,NULL,NULL,746,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 09:23:03','2025-12-07 09:23:03'),
(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'),
(751,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 09:27:22','2025-12-07 09:27:22'),
(752,NULL,NULL,751,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',NULL,NULL,'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',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(765,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(766,NULL,NULL,765,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(767,NULL,NULL,766,6,1,'2025-12-07 14:21:00',NULL,'live',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(768,NULL,NULL,766,6,1,'2025-12-07 14:21:00',NULL,'live',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(769,NULL,NULL,766,6,1,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2025-12-07 14:22:11','2025-12-07 14:22:11'),
(771,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:26:23','2025-12-07 14:26:23'),
(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'),
(775,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:35:29','2025-12-07 14:35:29'),
(776,NULL,NULL,775,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'),
(791,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(792,NULL,NULL,791,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(793,NULL,NULL,791,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 14:39:53','2025-12-07 14:39:53'),
(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',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(807,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(808,NULL,NULL,807,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(809,NULL,NULL,808,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(810,NULL,NULL,809,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(811,NULL,NULL,807,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(812,NULL,NULL,811,6,1,'2025-12-07 14:21:00',NULL,'live',NULL,NULL,'2025-12-07 14:46:22','2025-12-07 14:46:22'),
(815,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-08 10:02:18','2025-12-08 10:02:18'),
(816,NULL,NULL,815,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-08 10:02:18','2025-12-08 10:02:18'),
(819,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-08 10:03:28','2025-12-08 10:03:28'),
(820,NULL,NULL,819,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-08 10:03:28','2025-12-08 10:03:28'),
(824,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-08 10:05:39','2025-12-08 10:05:39'),
(825,NULL,NULL,824,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-08 10:05:39','2025-12-08 10:05:39'),
(828,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-08 10:15:20','2025-12-08 10:15:20'),
(829,NULL,NULL,828,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-08 10:15:20','2025-12-08 10:15:20'),
(832,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2025-12-08 10:15:37','2025-12-08 10:15:37'),
(833,NULL,NULL,832,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2025-12-08 10:15:37','2025-12-08 10:15:37'),
(834,NULL,NULL,38,7,15,'2025-12-06 18:45:00',NULL,'live',NULL,NULL,'2025-12-08 10:17:13','2025-12-08 10:17:13'),
(835,NULL,NULL,604,51,25,'2025-12-06 18:44:00',NULL,'live',NULL,NULL,'2025-12-08 10:20:59','2025-12-08 10:20:59'),
(836,NULL,NULL,835,50,1,'2025-12-08 10:21:00',NULL,'live',NULL,NULL,'2025-12-08 10:21:00','2025-12-08 10:21:06'),
(837,NULL,NULL,654,50,16,'2025-12-07 08:32:00',NULL,'live',NULL,NULL,'2025-12-08 10:22:58','2025-12-08 10:22:58'),
(838,NULL,NULL,837,32,1,'2025-12-08 10:23:00',NULL,'live',NULL,NULL,'2025-12-08 10:23:22','2025-12-08 10:23:30'),
(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'),
(844,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-02 19:00:14','2026-02-02 19:00:14'),
(845,NULL,NULL,844,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'),
(851,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-03 08:44:56','2026-02-03 08:44:56'),
(852,NULL,NULL,851,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-02-03 08:44:56','2026-02-03 08:44:56'),
(853,NULL,NULL,852,6,1,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-02-03 08:44:56','2026-02-03 08:44:56'),
(857,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-03 08:48:06','2026-02-03 08:48:06'),
(858,NULL,NULL,857,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-02-03 08:48:06','2026-02-03 08:48:06'),
(859,NULL,NULL,858,6,1,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-02-03 08:48:06','2026-02-03 08:48:06'),
(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',NULL,NULL,'2026-02-03 08:58:31','2026-02-03 08:58:31'),
(869,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-03 08:58:31','2026-02-03 08:58:31'),
(870,NULL,NULL,869,7,29,'2026-02-03 08:44:00',NULL,'live',NULL,NULL,'2026-02-03 08:58:31','2026-02-03 08:58:31'),
(871,NULL,NULL,870,6,1,'2026-02-03 08:58:00',NULL,'live',NULL,NULL,'2026-02-03 08:58:31','2026-02-03 08:58:31'),
(878,NULL,NULL,274,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-02-05 07:59:45','2026-02-05 07:59:45'),
(879,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-05 07:59:45','2026-02-05 07:59:45'),
(880,NULL,NULL,879,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-02-05 07:59:45','2026-02-05 07:59:45'),
(881,NULL,NULL,880,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-02-05 07:59:45','2026-02-05 07:59:45'),
(884,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-05 08:00:00','2026-02-05 08:00:00'),
(885,NULL,NULL,884,7,11,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-02-05 08:00:00','2026-02-05 08:00:00'),
(886,NULL,NULL,885,22,12,'2025-12-03 17:13:00',NULL,'live',NULL,NULL,'2026-02-05 08:00:00','2026-02-05 08:00:00'),
(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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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'),
(915,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-08 10:19:31','2026-02-08 10:19:31'),
(920,NULL,NULL,117,7,34,'2026-02-21 15:07:00',NULL,'live',0,0,'2026-02-21 15:07:05','2026-02-21 15:07:05'),
(921,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:07:05','2026-02-21 15:07:05'),
(922,NULL,NULL,921,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 15:07:05','2026-02-21 15:07:05'),
(926,NULL,NULL,117,7,34,'2026-02-21 15:07:00',NULL,'live',0,0,'2026-02-21 15:13:00','2026-02-21 15:13:00'),
(927,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:13:00','2026-02-21 15:13:00'),
(928,NULL,NULL,927,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 15:13:00','2026-02-21 15:13:00'),
(931,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:15:35','2026-02-21 15:15:35'),
(932,NULL,NULL,931,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 15:15:35','2026-02-21 15:15:35'),
(935,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:17:06','2026-02-21 15:17:06'),
(936,NULL,NULL,935,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 15:17:06','2026-02-21 15:17:06'),
(939,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:18:34','2026-02-21 15:18:34'),
(940,NULL,NULL,939,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 15:18:34','2026-02-21 15:18:34'),
(945,NULL,NULL,117,7,31,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(946,NULL,NULL,945,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(947,NULL,NULL,946,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(948,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(949,NULL,NULL,948,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(950,NULL,NULL,949,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(951,NULL,NULL,950,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:32:54','2026-02-21 15:32:54'),
(960,NULL,NULL,945,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(961,NULL,NULL,960,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(962,NULL,NULL,945,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(963,NULL,NULL,962,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(964,NULL,NULL,945,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(965,NULL,NULL,964,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(966,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(967,NULL,NULL,966,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(968,NULL,NULL,967,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(969,NULL,NULL,968,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(970,NULL,NULL,967,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(971,NULL,NULL,970,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(972,NULL,NULL,967,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(973,NULL,NULL,972,64,33,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:33:15','2026-02-21 15:33:15'),
(976,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:39:55','2026-02-21 15:39:55'),
(977,NULL,NULL,976,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:39:55','2026-02-21 15:39:55'),
(984,NULL,NULL,945,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(985,NULL,NULL,945,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(986,NULL,NULL,945,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(987,NULL,NULL,945,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(988,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(989,NULL,NULL,988,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(990,NULL,NULL,989,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(991,NULL,NULL,989,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(992,NULL,NULL,989,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(993,NULL,NULL,989,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-21 15:44:00','2026-02-21 15:44:00'),
(997,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:46:44','2026-02-21 15:46:44'),
(998,NULL,NULL,997,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-21 15:46:44','2026-02-21 15:46:44'),
(999,NULL,NULL,998,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-21 15:46:44','2026-02-21 15:46:44'),
(1002,NULL,NULL,117,7,36,'2026-02-21 15:48:00',NULL,'live',0,0,'2026-02-21 15:48:30','2026-02-21 15:48:30'),
(1003,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:48:30','2026-02-21 15:48:30'),
(1004,NULL,NULL,1003,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-02-21 15:48:30','2026-02-21 15:48:30'),
(1011,NULL,NULL,1002,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-21 15:50:56','2026-02-21 15:50:56'),
(1012,NULL,NULL,1002,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-21 15:50:56','2026-02-21 15:50:56'),
(1013,NULL,NULL,1002,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-21 15:50:56','2026-02-21 15:50:56'),
(1014,NULL,NULL,1002,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-21 15:50:56','2026-02-21 15:50:56'),
(1015,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:50:56','2026-02-21 15:50:56'),
(1016,NULL,NULL,1015,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-02-21 15:50:57','2026-02-21 15:50:57'),
(1017,NULL,NULL,1016,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-21 15:50:57','2026-02-21 15:50:57'),
(1018,NULL,NULL,1016,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-21 15:50:57','2026-02-21 15:50:57'),
(1019,NULL,NULL,1016,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-21 15:50:57','2026-02-21 15:50:57'),
(1020,NULL,NULL,1016,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-21 15:50:57','2026-02-21 15:50:57'),
(1024,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:51:33','2026-02-21 15:51:33'),
(1025,NULL,NULL,1024,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-02-21 15:51:33','2026-02-21 15:51:33'),
(1026,NULL,NULL,1025,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-21 15:51:33','2026-02-21 15:51:33'),
(1029,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:52:04','2026-02-21 15:52:04'),
(1030,NULL,NULL,1029,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-02-21 15:52:04','2026-02-21 15:52:04'),
(1033,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:52:58','2026-02-21 15:52:58'),
(1034,NULL,NULL,1033,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-02-21 15:52:58','2026-02-21 15:52:58'),
(1038,NULL,NULL,117,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-02-21 15:57:52','2026-02-21 15:57:52'),
(1039,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 15:57:52','2026-02-21 15:57:52'),
(1040,NULL,NULL,1039,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-21 15:57:52','2026-02-21 15:57:52'),
(1043,NULL,NULL,117,7,38,'2026-02-21 16:00:00',NULL,'live',0,0,'2026-02-21 16:00:47','2026-02-21 16:00:47'),
(1044,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:00:47','2026-02-21 16:00:47'),
(1045,NULL,NULL,1044,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-02-21 16:00:47','2026-02-21 16:00:47'),
(1048,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:01:13','2026-02-21 16:01:13'),
(1049,NULL,NULL,1048,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-02-21 16:01:13','2026-02-21 16:01:13'),
(1052,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:07:21','2026-02-21 16:07:21'),
(1053,NULL,NULL,1052,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-02-21 16:07:21','2026-02-21 16:07:21'),
(1057,NULL,NULL,117,7,6,'2026-02-21 16:08:00',NULL,'live',0,0,'2026-02-21 16:08:29','2026-02-21 16:08:29'),
(1058,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:08:29','2026-02-21 16:08:29'),
(1059,NULL,NULL,1058,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-02-21 16:08:29','2026-02-21 16:08:29'),
(1062,NULL,NULL,117,7,30,'2026-02-21 16:12:00',NULL,'live',0,0,'2026-02-21 16:12:14','2026-02-21 16:12:14'),
(1063,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:12:14','2026-02-21 16:12:14'),
(1064,NULL,NULL,1063,7,30,'2026-02-21 16:12:00',NULL,'live',NULL,NULL,'2026-02-21 16:12:14','2026-02-21 16:12:14'),
(1075,NULL,NULL,117,7,39,'2026-02-21 16:18:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1076,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1077,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1078,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1079,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1080,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1081,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1082,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1083,NULL,NULL,1075,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1084,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1085,NULL,NULL,1084,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1086,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1087,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1088,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1089,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1090,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1091,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1092,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1093,NULL,NULL,1085,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-21 16:18:04','2026-02-21 16:18:04'),
(1096,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 16:21:12','2026-02-21 16:21:12'),
(1097,NULL,NULL,1096,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-02-21 16:21:12','2026-02-21 16:21:12'),
(1098,10,NULL,NULL,NULL,40,'2026-02-21 22:49:00',NULL,'live',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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'),
(1143,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-21 23:28:16','2026-02-21 23:28:16'),
(1144,NULL,NULL,1143,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-02-21 23:28:16','2026-02-21 23:28:16'),
(1147,5,NULL,NULL,NULL,5,'2025-11-30 19:27:00',NULL,'live',NULL,NULL,'2026-02-21 23:28:36','2026-02-21 23:28:36'),
(1148,NULL,NULL,1147,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-02-21 23:28:36','2026-02-21 23:28:36'),
(1151,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 23:31:43','2026-02-21 23:31:43'),
(1152,NULL,NULL,1151,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 23:31:43','2026-02-21 23:31:43'),
(1155,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-21 23:32:10','2026-02-21 23:32:10'),
(1156,NULL,NULL,1155,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-21 23:32:10','2026-02-21 23:32:10'),
(1157,3,NULL,NULL,NULL,5,'2026-02-21 23:51:00',NULL,'live',0,0,'2026-02-21 23:50:58','2026-02-21 23:51:06'),
(1158,3,NULL,NULL,NULL,5,'2026-02-21 23:51:00',NULL,'live',NULL,NULL,'2026-02-21 23:51:06','2026-02-21 23:51:06'),
(1161,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:05:57','2026-02-22 00:07:00'),
(1162,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:00','2026-02-22 00:07:00'),
(1165,NULL,NULL,1161,7,34,'2026-02-21 15:07:00',NULL,'live',0,0,'2026-02-22 00:07:17','2026-02-22 00:07:17'),
(1166,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:17','2026-02-22 00:07:17'),
(1167,NULL,NULL,1166,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:17','2026-02-22 00:07:17'),
(1178,NULL,NULL,1161,7,31,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1179,NULL,NULL,1178,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1180,NULL,NULL,1178,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1181,NULL,NULL,1178,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1182,NULL,NULL,1178,65,32,'2026-02-21 15:32:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1183,NULL,NULL,1178,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1184,NULL,NULL,1178,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1185,NULL,NULL,1178,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1186,NULL,NULL,1178,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1187,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1188,NULL,NULL,1187,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1189,NULL,NULL,1188,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1190,NULL,NULL,1188,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1191,NULL,NULL,1188,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1192,NULL,NULL,1188,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1193,NULL,NULL,1188,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1194,NULL,NULL,1188,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1195,NULL,NULL,1188,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1196,NULL,NULL,1188,64,33,'2026-02-21 15:43:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:23','2026-02-22 00:07:23'),
(1203,NULL,NULL,1161,7,36,'2026-02-21 15:48:00',NULL,'live',0,0,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1204,NULL,NULL,1203,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1205,NULL,NULL,1203,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1206,NULL,NULL,1203,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1207,NULL,NULL,1203,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1208,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1209,NULL,NULL,1208,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1210,NULL,NULL,1209,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1211,NULL,NULL,1209,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1212,NULL,NULL,1209,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1213,NULL,NULL,1209,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-02-22 00:07:37','2026-02-22 00:07:37'),
(1216,NULL,NULL,1161,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:02','2026-02-22 00:08:02'),
(1217,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:02','2026-02-22 00:08:02'),
(1218,NULL,NULL,1217,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:02','2026-02-22 00:08:02'),
(1221,NULL,NULL,1161,7,38,'2026-02-21 16:00:00',NULL,'live',0,0,'2026-02-22 00:08:09','2026-02-22 00:08:09'),
(1222,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:09','2026-02-22 00:08:09'),
(1223,NULL,NULL,1222,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:09','2026-02-22 00:08:09'),
(1226,NULL,NULL,1161,7,6,'2026-02-21 16:08:00',NULL,'live',0,0,'2026-02-22 00:08:22','2026-02-22 00:08:22'),
(1227,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:22','2026-02-22 00:08:22'),
(1228,NULL,NULL,1227,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:22','2026-02-22 00:08:22'),
(1239,NULL,NULL,1161,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1240,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1241,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1242,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1243,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1244,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1245,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1246,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1247,NULL,NULL,1239,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1248,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1249,NULL,NULL,1248,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1250,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1251,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1252,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1253,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1254,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1255,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1256,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1257,NULL,NULL,1249,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-02-22 00:08:32','2026-02-22 00:08:32'),
(1259,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:10:17','2026-02-22 00:10:17'),
(1261,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:10:31','2026-02-22 00:10:31'),
(1264,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:18:14','2026-02-22 00:18:14'),
(1265,NULL,NULL,1264,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 00:18:14','2026-02-22 00:18:14'),
(1268,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:22:36','2026-02-22 00:22:36'),
(1269,NULL,NULL,1268,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 00:22:36','2026-02-22 00:22:36'),
(1272,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:28:19','2026-02-22 00:28:19'),
(1273,NULL,NULL,1272,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 00:28:19','2026-02-22 00:28:19'),
(1276,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:29:01','2026-02-22 00:29:01'),
(1277,NULL,NULL,1276,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 00:29:01','2026-02-22 00:29:01'),
(1279,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:33:44','2026-02-22 00:33:44'),
(1282,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-22 00:34:17','2026-02-22 00:34:17'),
(1283,NULL,NULL,1282,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-22 00:34:17','2026-02-22 00:34:17'),
(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',NULL,NULL,'2026-02-22 00:42:05','2026-02-22 00:42:18'),
(1287,NULL,NULL,1286,7,2,NULL,NULL,'pending',NULL,NULL,'2026-02-22 00:42:12','2026-02-22 00:42:12'),
(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'),
(1292,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 18:53:48','2026-02-22 18:53:48'),
(1293,NULL,NULL,1292,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 18:53:48','2026-02-22 18:53:48'),
(1296,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 20:58:05','2026-02-22 20:58:05'),
(1297,NULL,NULL,1296,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 20:58:05','2026-02-22 20:58:05'),
(1300,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 20:59:10','2026-02-22 20:59:10'),
(1301,NULL,NULL,1300,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 20:59:10','2026-02-22 20:59:10'),
(1304,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:13:23','2026-02-22 21:13:23'),
(1305,NULL,NULL,1304,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 21:13:23','2026-02-22 21:13:23'),
(1308,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:15:15','2026-02-22 21:15:15'),
(1309,NULL,NULL,1308,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 21:15:15','2026-02-22 21:15:15'),
(1312,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:15:32','2026-02-22 21:15:32'),
(1313,NULL,NULL,1312,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 21:15:32','2026-02-22 21:15:32'),
(1316,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:16:12','2026-02-22 21:16:12'),
(1317,NULL,NULL,1316,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 21:16:12','2026-02-22 21:16:12'),
(1319,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:18:20','2026-02-22 21:18:20'),
(1322,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:20:06','2026-02-22 21:20:06'),
(1325,NULL,NULL,1161,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-02-22 21:21:00','2026-02-22 21:21:00'),
(1326,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:21:00','2026-02-22 21:21:00'),
(1327,NULL,NULL,1326,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-02-22 21:21:00','2026-02-22 21:21:00'),
(1330,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:21:52','2026-02-22 21:21:52'),
(1331,NULL,NULL,1330,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-02-22 21:21:52','2026-02-22 21:21:52'),
(1334,NULL,NULL,1161,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 21:22:41','2026-02-22 21:22:41'),
(1335,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:22:41','2026-02-22 21:22:41'),
(1336,NULL,NULL,1335,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 21:22:41','2026-02-22 21:22:41'),
(1338,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:23:02','2026-02-22 21:23:02'),
(1340,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:23:16','2026-02-22 21:23:16'),
(1344,NULL,NULL,1161,7,39,'2026-02-22 21:27:00',NULL,'live',0,0,'2026-02-22 21:27:46','2026-02-22 21:27:46'),
(1345,NULL,NULL,1344,63,30,'2026-02-22 21:27:00',NULL,'live',0,0,'2026-02-22 21:27:46','2026-02-22 21:27:46'),
(1346,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:27:46','2026-02-22 21:27:46'),
(1347,NULL,NULL,1346,7,39,'2026-02-22 21:27:00',NULL,'live',NULL,NULL,'2026-02-22 21:27:46','2026-02-22 21:27:46'),
(1348,NULL,NULL,1347,63,30,'2026-02-22 21:27:00',NULL,'live',NULL,NULL,'2026-02-22 21:27:46','2026-02-22 21:27:46'),
(1349,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:35:40','2026-02-22 21:35:40'),
(1351,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 21:43:39','2026-02-22 21:43:39'),
(1354,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 22:00:26','2026-02-22 22:00:26'),
(1355,NULL,NULL,1354,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:00:26','2026-02-22 22:00:26'),
(1358,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 22:08:59','2026-02-22 22:08:59'),
(1362,NULL,NULL,1161,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:10:10','2026-02-22 22:10:10'),
(1363,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 22:10:10','2026-02-22 22:10:10'),
(1364,NULL,NULL,1363,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:10:10','2026-02-22 22:10:10'),
(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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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',NULL,NULL,'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'),
(1413,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-02-22 22:28:10','2026-02-22 22:28:10'),
(1414,NULL,NULL,1413,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-22 22:28:10','2026-02-22 22:28:10'),
(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'),
(1422,NULL,NULL,38,7,27,'2025-12-07 14:22:00',NULL,'live',NULL,NULL,'2026-02-24 14:17:13','2026-02-24 14:17:13'),
(1423,NULL,NULL,38,7,7,'2025-12-07 14:35:00',NULL,'live',NULL,NULL,'2026-02-24 14:31:44','2026-02-24 14:31:44'),
(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'),
(1428,NULL,NULL,38,7,2,'2025-12-02 17:25:00',NULL,'live',NULL,NULL,'2026-02-24 14:43:36','2026-02-24 14:43:36'),
(1429,NULL,NULL,1428,6,1,NULL,NULL,'pending',NULL,NULL,'2026-02-24 14:43:36','2026-02-24 14:43:36'),
(1432,NULL,NULL,117,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-02-24 14:47:57','2026-02-24 14:47:57'),
(1433,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-24 14:47:57','2026-02-24 14:47:57'),
(1434,NULL,NULL,1433,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-24 14:47:57','2026-02-24 14:47:57'),
(1435,NULL,NULL,1433,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-02-24 14:47:57','2026-02-24 14:47:57'),
(1438,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-02-24 14:48:15','2026-02-24 14:48:15'),
(1439,NULL,NULL,1438,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-02-24 14:48:15','2026-02-24 14:48:15'),
(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'),
(1441,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1442,NULL,NULL,1441,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1443,NULL,NULL,1441,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1444,NULL,NULL,1443,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1445,NULL,NULL,1443,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1446,NULL,NULL,1443,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1447,NULL,NULL,1443,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1448,NULL,NULL,1443,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1449,NULL,NULL,1443,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1450,NULL,NULL,1443,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1451,NULL,NULL,1443,64,33,'2026-02-21 15:43:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1452,NULL,NULL,1441,7,36,'2026-02-21 15:48:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1453,NULL,NULL,1452,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1454,NULL,NULL,1452,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1455,NULL,NULL,1452,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1456,NULL,NULL,1452,66,35,'2026-02-21 15:50:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1457,NULL,NULL,1441,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1458,NULL,NULL,1441,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1459,NULL,NULL,1441,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1460,NULL,NULL,1441,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1461,NULL,NULL,1441,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1462,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1463,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1464,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1465,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1466,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1467,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1468,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1469,NULL,NULL,1461,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1486,NULL,NULL,1558,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 20:06:41'),
(1488,NULL,NULL,1558,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 20:06:41'),
(1489,NULL,NULL,1558,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 20:06:41'),
(1490,NULL,NULL,1558,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 20:06:41'),
(1491,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1492,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1493,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1494,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1495,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1496,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1497,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1498,NULL,NULL,1490,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 17:03:26','2026-03-02 17:03:26'),
(1509,NULL,NULL,1558,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 17:13:22','2026-03-02 20:06:41'),
(1519,NULL,NULL,1554,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:21:23','2026-03-02 20:06:25'),
(1534,NULL,NULL,1554,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:34:03','2026-03-02 20:06:25'),
(1549,NULL,NULL,1554,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:35:59','2026-03-02 20:06:25'),
(1554,NULL,NULL,1558,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:36:24','2026-03-02 20:06:41'),
(1555,NULL,NULL,1554,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 17:36:24','2026-03-02 17:36:24'),
(1558,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:38:23','2026-03-02 17:38:23'),
(1559,NULL,NULL,1558,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:38:23','2026-03-02 17:38:23'),
(1562,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:38:50','2026-03-02 17:38:50'),
(1563,NULL,NULL,1562,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:38:50','2026-03-02 17:38:50'),
(1571,NULL,NULL,1441,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1572,NULL,NULL,1571,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1573,NULL,NULL,1571,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1574,NULL,NULL,1571,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1575,NULL,NULL,1571,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1576,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1577,NULL,NULL,1576,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1578,NULL,NULL,1577,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1579,NULL,NULL,1577,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1580,NULL,NULL,1577,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1581,NULL,NULL,1577,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:04','2026-03-02 17:40:04'),
(1584,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:46','2026-03-02 17:40:46'),
(1585,NULL,NULL,1584,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:40:46','2026-03-02 17:40:46'),
(1592,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:42:37','2026-03-02 17:42:37'),
(1593,NULL,NULL,1592,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:42:37','2026-03-02 17:42:37'),
(1594,NULL,NULL,1593,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:42:37','2026-03-02 17:42:37'),
(1595,NULL,NULL,1593,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:42:37','2026-03-02 17:42:37'),
(1596,NULL,NULL,1593,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:42:37','2026-03-02 17:42:37'),
(1597,NULL,NULL,1593,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:42:38','2026-03-02 17:42:38'),
(1601,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:44:37','2026-03-02 17:44:37'),
(1602,NULL,NULL,1601,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:44:37','2026-03-02 17:44:37'),
(1603,NULL,NULL,1602,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:44:37','2026-03-02 17:44:37'),
(1607,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:47:21','2026-03-02 17:47:21'),
(1608,NULL,NULL,1607,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 17:47:21','2026-03-02 17:47:21'),
(1609,NULL,NULL,1608,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 17:47:21','2026-03-02 17:47:21'),
(1612,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:48:48','2026-03-02 17:48:48'),
(1613,NULL,NULL,1612,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 17:48:48','2026-03-02 17:48:48'),
(1616,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:51:31','2026-03-02 17:51:31'),
(1617,NULL,NULL,1616,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 17:51:31','2026-03-02 17:51:31'),
(1620,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:56:03','2026-03-02 17:56:03'),
(1621,NULL,NULL,1620,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 17:56:03','2026-03-02 17:56:03'),
(1624,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 17:56:13','2026-03-02 17:56:13'),
(1625,NULL,NULL,1624,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 17:56:13','2026-03-02 17:56:13'),
(1628,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:15:17','2026-03-02 18:15:17'),
(1629,NULL,NULL,1628,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:15:17','2026-03-02 18:15:17'),
(1632,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:15:51','2026-03-02 18:15:51'),
(1633,NULL,NULL,1632,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:15:51','2026-03-02 18:15:51'),
(1636,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:16:18','2026-03-02 18:16:18'),
(1637,NULL,NULL,1636,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:16:18','2026-03-02 18:16:18'),
(1643,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:22:44','2026-03-02 18:22:44'),
(1644,NULL,NULL,1643,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:22:44','2026-03-02 18:22:44'),
(1645,NULL,NULL,1643,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:22:44','2026-03-02 18:22:44'),
(1648,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:25:32','2026-03-02 18:25:32'),
(1649,NULL,NULL,1648,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:25:32','2026-03-02 18:25:32'),
(1652,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:27:42','2026-03-02 18:27:42'),
(1653,NULL,NULL,1652,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:27:42','2026-03-02 18:27:42'),
(1656,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:28:41','2026-03-02 18:28:41'),
(1657,NULL,NULL,1656,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:28:41','2026-03-02 18:28:41'),
(1660,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:29:27','2026-03-02 18:29:27'),
(1661,NULL,NULL,1660,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:29:28','2026-03-02 18:29:28'),
(1664,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:29:57','2026-03-02 18:29:57'),
(1665,NULL,NULL,1664,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:29:57','2026-03-02 18:29:57'),
(1668,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:31:09','2026-03-02 18:31:09'),
(1669,NULL,NULL,1668,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:31:09','2026-03-02 18:31:09'),
(1672,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:36:15','2026-03-02 18:36:15'),
(1673,NULL,NULL,1672,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:36:15','2026-03-02 18:36:15'),
(1676,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:37:35','2026-03-02 18:37:35'),
(1677,NULL,NULL,1676,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:37:35','2026-03-02 18:37:35'),
(1680,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:39:40','2026-03-02 18:39:40'),
(1681,NULL,NULL,1680,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:39:40','2026-03-02 18:39:40'),
(1684,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:40:58','2026-03-02 18:40:58'),
(1685,NULL,NULL,1684,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:40:58','2026-03-02 18:40:58'),
(1688,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:41:15','2026-03-02 18:41:15'),
(1689,NULL,NULL,1688,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:41:15','2026-03-02 18:41:15'),
(1693,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:43:10','2026-03-02 18:43:10'),
(1694,NULL,NULL,1693,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:43:10','2026-03-02 18:43:10'),
(1697,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:43:45','2026-03-02 18:43:45'),
(1698,NULL,NULL,1697,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:43:45','2026-03-02 18:43:45'),
(1702,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:44:26','2026-03-02 18:44:26'),
(1703,NULL,NULL,1702,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:44:26','2026-03-02 18:44:26'),
(1704,NULL,NULL,1702,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 18:44:27','2026-03-02 18:44:27'),
(1705,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:47:24','2026-03-02 18:47:24'),
(1707,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 18:48:46','2026-03-02 18:48:46'),
(1710,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:04:26','2026-03-02 19:04:26'),
(1711,NULL,NULL,1710,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 19:04:26','2026-03-02 19:04:26'),
(1715,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:07:29','2026-03-02 19:07:29'),
(1716,NULL,NULL,1715,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 19:07:29','2026-03-02 19:07:29'),
(1717,NULL,NULL,1716,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:07:29','2026-03-02 19:07:29'),
(1721,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:21:42','2026-03-02 19:21:42'),
(1722,NULL,NULL,1721,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 19:21:42','2026-03-02 19:21:42'),
(1723,NULL,NULL,1722,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:21:42','2026-03-02 19:21:42'),
(1734,NULL,NULL,1461,63,30,'2026-03-02 19:26:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1735,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1736,NULL,NULL,1735,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1737,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1738,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1739,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1740,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1741,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1742,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1743,NULL,NULL,1736,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1744,NULL,NULL,1736,63,30,'2026-03-02 19:26:00',NULL,'live',NULL,NULL,'2026-03-02 19:26:19','2026-03-02 19:26:19'),
(1747,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:34:56','2026-03-02 19:34:56'),
(1751,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:44:37','2026-03-02 19:44:37'),
(1752,NULL,NULL,1751,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 19:44:37','2026-03-02 19:44:37'),
(1755,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:47:09','2026-03-02 19:47:09'),
(1756,NULL,NULL,1755,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 19:47:09','2026-03-02 19:47:09'),
(1759,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:47:34','2026-03-02 19:47:34'),
(1760,NULL,NULL,1759,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 19:47:34','2026-03-02 19:47:34'),
(1762,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:48:05','2026-03-02 19:48:05'),
(1764,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:48:24','2026-03-02 19:48:24'),
(1767,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:48:38','2026-03-02 19:48:38'),
(1768,NULL,NULL,1767,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 19:48:38','2026-03-02 19:48:38'),
(1771,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:49:05','2026-03-02 19:49:05'),
(1772,NULL,NULL,1771,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 19:49:05','2026-03-02 19:49:05'),
(1775,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:49:25','2026-03-02 19:49:25'),
(1776,NULL,NULL,1775,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 19:49:25','2026-03-02 19:49:25'),
(1779,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:49:43','2026-03-02 19:49:43'),
(1780,NULL,NULL,1779,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 19:49:43','2026-03-02 19:49:43'),
(1783,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 19:50:16','2026-03-02 19:50:16'),
(1784,NULL,NULL,1783,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 19:50:16','2026-03-02 19:50:16'),
(1787,NULL,NULL,1441,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 20:03:22','2026-03-02 20:03:22'),
(1788,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 20:03:22','2026-03-02 20:03:22'),
(1789,NULL,NULL,1788,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 20:03:22','2026-03-02 20:03:22'),
(1792,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 20:04:28','2026-03-02 20:04:28'),
(1793,NULL,NULL,1792,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 20:04:28','2026-03-02 20:04:28'),
(1796,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 20:06:25','2026-03-02 20:06:25'),
(1797,NULL,NULL,1796,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 20:06:25','2026-03-02 20:06:25'),
(1800,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 20:06:40','2026-03-02 20:06:40'),
(1801,NULL,NULL,1800,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 20:06:40','2026-03-02 20:06:40'),
(1802,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1803,NULL,NULL,1802,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1804,NULL,NULL,1802,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1805,NULL,NULL,1804,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1806,NULL,NULL,1804,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1807,NULL,NULL,1804,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1808,NULL,NULL,1804,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1809,NULL,NULL,1802,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1810,NULL,NULL,1809,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1811,NULL,NULL,1809,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1812,NULL,NULL,1809,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1813,NULL,NULL,1809,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1814,NULL,NULL,1802,7,37,'2026-02-21 15:57:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1815,NULL,NULL,1802,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1816,NULL,NULL,1802,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1817,NULL,NULL,1802,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1818,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1819,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1820,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1821,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1822,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1823,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1824,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1825,NULL,NULL,1817,63,30,'2026-02-21 16:17:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1826,NULL,NULL,1817,63,30,'2026-03-02 19:26:00',NULL,'live',0,0,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1827,NULL,NULL,1802,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1828,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1829,NULL,NULL,1828,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1830,NULL,NULL,1828,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1831,NULL,NULL,1830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1832,NULL,NULL,1830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1833,NULL,NULL,1830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1834,NULL,NULL,1830,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1835,NULL,NULL,1828,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1836,NULL,NULL,1835,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1837,NULL,NULL,1835,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1838,NULL,NULL,1835,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1839,NULL,NULL,1835,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1840,NULL,NULL,1828,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1841,NULL,NULL,1828,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1842,NULL,NULL,1828,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1843,NULL,NULL,1828,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1844,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1845,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1846,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1847,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1848,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1849,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1850,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1851,NULL,NULL,1843,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1852,NULL,NULL,1843,63,30,'2026-03-02 19:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1853,NULL,NULL,1828,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 21:08:38','2026-03-02 21:08:38'),
(1862,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1863,NULL,NULL,1862,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1864,NULL,NULL,1862,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1865,NULL,NULL,1864,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1866,NULL,NULL,1864,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1867,NULL,NULL,1864,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1868,NULL,NULL,1864,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1869,NULL,NULL,1862,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 21:11:55','2026-03-02 21:11:55'),
(1872,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:12:20','2026-03-02 21:12:20'),
(1873,NULL,NULL,1872,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:12:20','2026-03-02 21:12:20'),
(1874,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:12:34','2026-03-02 21:12:34'),
(1877,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:12:52','2026-03-02 21:12:52'),
(1878,NULL,NULL,1877,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:12:52','2026-03-02 21:12:52'),
(1885,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:16:57','2026-03-02 21:16:57'),
(1886,NULL,NULL,1885,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 21:16:58','2026-03-02 21:16:58'),
(1887,NULL,NULL,1886,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:16:58','2026-03-02 21:16:58'),
(1888,NULL,NULL,1886,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:16:58','2026-03-02 21:16:58'),
(1889,NULL,NULL,1886,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:16:58','2026-03-02 21:16:58'),
(1890,NULL,NULL,1886,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:16:58','2026-03-02 21:16:58'),
(1905,NULL,NULL,1817,63,30,'2026-03-02 21:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:26','2026-03-02 21:29:26'),
(1906,NULL,NULL,1817,63,30,'2026-03-02 21:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:26','2026-03-02 21:29:26'),
(1907,NULL,NULL,1817,63,30,'2026-03-02 21:27:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1908,NULL,NULL,1817,63,30,'2026-03-02 21:27:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1909,NULL,NULL,1817,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1910,NULL,NULL,1817,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1911,NULL,NULL,1817,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1912,NULL,NULL,1817,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1913,NULL,NULL,1817,63,30,'2026-03-02 21:29:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1914,NULL,NULL,1817,63,30,'2026-03-02 21:29:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1915,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1916,NULL,NULL,1915,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1917,NULL,NULL,1915,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1918,NULL,NULL,1915,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1919,NULL,NULL,1918,63,30,'2026-03-02 21:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1920,NULL,NULL,1918,63,30,'2026-03-02 21:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1921,NULL,NULL,1918,63,30,'2026-03-02 21:27:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1922,NULL,NULL,1918,63,30,'2026-03-02 21:27:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1923,NULL,NULL,1918,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1924,NULL,NULL,1918,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1925,NULL,NULL,1918,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1926,NULL,NULL,1918,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1927,NULL,NULL,1918,63,30,'2026-03-02 21:29:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1928,NULL,NULL,1918,63,30,'2026-03-02 21:29:00',NULL,'live',NULL,NULL,'2026-03-02 21:29:27','2026-03-02 21:29:27'),
(1931,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:30:03','2026-03-02 21:30:03'),
(1932,NULL,NULL,1931,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:30:03','2026-03-02 21:30:03'),
(1935,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:31:38','2026-03-02 21:31:38'),
(1936,NULL,NULL,1935,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:31:38','2026-03-02 21:31:38'),
(1943,NULL,NULL,1802,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:42:37','2026-03-02 21:42:37'),
(1944,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:42:37','2026-03-02 21:42:37'),
(1945,NULL,NULL,1944,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:42:37','2026-03-02 21:42:37'),
(1949,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:44:06','2026-03-02 21:44:06'),
(1950,NULL,NULL,1949,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:44:06','2026-03-02 21:44:06'),
(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'),
(1954,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'),
(1955,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'),
(1956,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'),
(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'),
(1959,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1960,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1961,NULL,NULL,1958,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1962,NULL,NULL,1958,66,35,'2026-02-21 15:50: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'),
(1978,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'),
(1979,NULL,NULL,1978,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1980,NULL,NULL,1978,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1981,NULL,NULL,1980,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1982,NULL,NULL,1980,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1983,NULL,NULL,1980,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1984,NULL,NULL,1980,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1985,NULL,NULL,1978,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1986,NULL,NULL,1985,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1987,NULL,NULL,1985,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1988,NULL,NULL,1985,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1989,NULL,NULL,1985,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1990,NULL,NULL,1978,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1991,NULL,NULL,1978,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1992,NULL,NULL,1978,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1993,NULL,NULL,1978,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1994,NULL,NULL,1993,63,30,'2026-03-02 21:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1995,NULL,NULL,1993,63,30,'2026-03-02 21:26:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1996,NULL,NULL,1993,63,30,'2026-03-02 21:27:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1997,NULL,NULL,1993,63,30,'2026-03-02 21:27:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1998,NULL,NULL,1993,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(1999,NULL,NULL,1993,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(2000,NULL,NULL,1993,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(2001,NULL,NULL,1993,63,30,'2026-03-02 21:28:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(2002,NULL,NULL,1993,63,30,'2026-03-02 21:29:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(2003,NULL,NULL,1993,63,30,'2026-03-02 21:29:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(2004,NULL,NULL,1978,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 21:45:13','2026-03-02 21:45:13'),
(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'),
(2021,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2022,NULL,NULL,2021,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2023,NULL,NULL,2021,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2024,NULL,NULL,2023,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2025,NULL,NULL,2023,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2026,NULL,NULL,2023,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2027,NULL,NULL,2023,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2028,NULL,NULL,2021,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:33','2026-03-02 21:54:33'),
(2029,NULL,NULL,2028,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:34','2026-03-02 21:54:34'),
(2030,NULL,NULL,2028,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:34','2026-03-02 21:54:34'),
(2031,NULL,NULL,2028,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:34','2026-03-02 21:54:34'),
(2032,NULL,NULL,2028,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:34','2026-03-02 21:54:34'),
(2033,NULL,NULL,2021,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 21:54:34','2026-03-02 21:54:34'),
(2051,NULL,NULL,1966,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2052,NULL,NULL,1966,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2053,NULL,NULL,1966,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2054,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2055,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2056,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2057,NULL,NULL,1966,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2058,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2059,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2060,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2061,NULL,NULL,1966,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2062,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2063,NULL,NULL,2062,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2064,NULL,NULL,2062,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2065,NULL,NULL,2062,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:47','2026-03-02 22:03:47'),
(2066,NULL,NULL,2065,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2067,NULL,NULL,2065,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2068,NULL,NULL,2065,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2069,NULL,NULL,2065,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2070,NULL,NULL,2065,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2071,NULL,NULL,2065,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2072,NULL,NULL,2065,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:03:48','2026-03-02 22:03:48'),
(2073,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'),
(2074,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'),
(2075,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'),
(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'),
(2079,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:05:29','2026-03-02 22:05:29'),
(2080,NULL,NULL,2079,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:05:29','2026-03-02 22:05:29'),
(2081,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2082,NULL,NULL,2081,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2083,NULL,NULL,2081,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2084,NULL,NULL,2083,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2085,NULL,NULL,2083,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2086,NULL,NULL,2083,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2087,NULL,NULL,2083,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2088,NULL,NULL,2081,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2089,NULL,NULL,2088,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2090,NULL,NULL,2088,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2091,NULL,NULL,2088,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2092,NULL,NULL,2088,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2093,NULL,NULL,2081,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2094,NULL,NULL,2081,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2095,NULL,NULL,2081,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2096,NULL,NULL,2081,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2097,NULL,NULL,2096,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2098,NULL,NULL,2096,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2099,NULL,NULL,2096,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2100,NULL,NULL,2096,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2101,NULL,NULL,2096,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2102,NULL,NULL,2096,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2103,NULL,NULL,2096,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2104,NULL,NULL,2096,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2105,NULL,NULL,2096,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2106,NULL,NULL,2096,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2107,NULL,NULL,2096,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2108,NULL,NULL,2081,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2109,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2110,NULL,NULL,2109,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2111,NULL,NULL,2109,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2112,NULL,NULL,2111,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2113,NULL,NULL,2111,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2114,NULL,NULL,2111,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2115,NULL,NULL,2111,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2116,NULL,NULL,2109,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2117,NULL,NULL,2116,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2118,NULL,NULL,2116,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2119,NULL,NULL,2116,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2120,NULL,NULL,2116,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2121,NULL,NULL,2109,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2122,NULL,NULL,2109,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2123,NULL,NULL,2109,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2124,NULL,NULL,2109,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2125,NULL,NULL,2124,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2126,NULL,NULL,2124,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2127,NULL,NULL,2124,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2128,NULL,NULL,2124,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2129,NULL,NULL,2124,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2130,NULL,NULL,2124,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2131,NULL,NULL,2124,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2132,NULL,NULL,2124,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2133,NULL,NULL,2124,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2134,NULL,NULL,2124,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2135,NULL,NULL,2124,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2136,NULL,NULL,2109,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:18','2026-03-02 22:08:18'),
(2137,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:08:30','2026-03-02 22:08:30'),
(2150,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2151,NULL,NULL,2150,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2152,NULL,NULL,2150,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2153,NULL,NULL,2152,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2154,NULL,NULL,2152,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2155,NULL,NULL,2152,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2156,NULL,NULL,2152,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2157,NULL,NULL,2150,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2158,NULL,NULL,2157,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2159,NULL,NULL,2157,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2160,NULL,NULL,2157,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2161,NULL,NULL,2157,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:25:33','2026-03-02 22:25:33'),
(2162,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2163,NULL,NULL,2162,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2164,NULL,NULL,2162,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2165,NULL,NULL,2164,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2166,NULL,NULL,2164,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2167,NULL,NULL,2164,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2168,NULL,NULL,2164,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2169,NULL,NULL,2162,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2170,NULL,NULL,2169,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2171,NULL,NULL,2169,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2172,NULL,NULL,2169,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2173,NULL,NULL,2169,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2174,NULL,NULL,2162,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2175,NULL,NULL,2162,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2176,NULL,NULL,2162,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2177,NULL,NULL,2162,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2178,NULL,NULL,2177,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2179,NULL,NULL,2177,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2180,NULL,NULL,2177,63,30,'2026-03-02 22:01:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2181,NULL,NULL,2177,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2182,NULL,NULL,2177,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2183,NULL,NULL,2177,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2184,NULL,NULL,2177,63,30,'2026-03-02 22:02:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2185,NULL,NULL,2177,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2186,NULL,NULL,2177,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2187,NULL,NULL,2177,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2188,NULL,NULL,2177,63,30,'2026-03-02 22:03:00',NULL,'live',0,0,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2189,NULL,NULL,2162,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2190,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2191,NULL,NULL,2190,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2192,NULL,NULL,2190,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2193,NULL,NULL,2192,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2194,NULL,NULL,2192,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2195,NULL,NULL,2192,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2196,NULL,NULL,2192,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2197,NULL,NULL,2190,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2198,NULL,NULL,2197,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2199,NULL,NULL,2197,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2200,NULL,NULL,2197,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2201,NULL,NULL,2197,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2202,NULL,NULL,2190,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2203,NULL,NULL,2190,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2204,NULL,NULL,2190,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2205,NULL,NULL,2190,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2206,NULL,NULL,2205,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2207,NULL,NULL,2205,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2208,NULL,NULL,2205,63,30,'2026-03-02 22:01:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2209,NULL,NULL,2205,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2210,NULL,NULL,2205,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2211,NULL,NULL,2205,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2212,NULL,NULL,2205,63,30,'2026-03-02 22:02:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2213,NULL,NULL,2205,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2214,NULL,NULL,2205,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2215,NULL,NULL,2205,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2216,NULL,NULL,2205,63,30,'2026-03-02 22:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2217,NULL,NULL,2190,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:26:42','2026-03-02 22:26:42'),
(2243,NULL,NULL,2177,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2244,NULL,NULL,2177,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2245,NULL,NULL,2177,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2246,NULL,NULL,2177,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2247,NULL,NULL,2177,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2248,NULL,NULL,2177,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2249,NULL,NULL,2177,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2250,NULL,NULL,2177,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2251,NULL,NULL,2177,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2252,NULL,NULL,2177,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:38','2026-03-02 22:42:38'),
(2253,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2254,NULL,NULL,2253,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2255,NULL,NULL,2253,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2256,NULL,NULL,2255,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2257,NULL,NULL,2255,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2258,NULL,NULL,2255,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2259,NULL,NULL,2255,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2260,NULL,NULL,2253,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2261,NULL,NULL,2260,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2262,NULL,NULL,2260,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2263,NULL,NULL,2260,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2264,NULL,NULL,2260,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2265,NULL,NULL,2253,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2266,NULL,NULL,2253,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2267,NULL,NULL,2253,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2268,NULL,NULL,2267,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2269,NULL,NULL,2267,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2270,NULL,NULL,2267,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2271,NULL,NULL,2267,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2272,NULL,NULL,2267,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2273,NULL,NULL,2267,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2274,NULL,NULL,2267,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2275,NULL,NULL,2267,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2276,NULL,NULL,2267,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2277,NULL,NULL,2267,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:39','2026-03-02 22:42:39'),
(2280,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:57','2026-03-02 22:42:57'),
(2281,NULL,NULL,2280,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:42:57','2026-03-02 22:42:57'),
(2284,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:44:08','2026-03-02 22:44:08'),
(2285,NULL,NULL,2284,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:44:08','2026-03-02 22:44:08'),
(2286,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2287,NULL,NULL,2286,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2288,NULL,NULL,2286,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2289,NULL,NULL,2288,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2290,NULL,NULL,2288,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2291,NULL,NULL,2288,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2292,NULL,NULL,2288,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2293,NULL,NULL,2286,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2294,NULL,NULL,2293,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2295,NULL,NULL,2293,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2296,NULL,NULL,2293,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2297,NULL,NULL,2293,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2298,NULL,NULL,2286,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2299,NULL,NULL,2286,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2300,NULL,NULL,2286,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2301,NULL,NULL,2286,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2302,NULL,NULL,2301,63,30,'2026-03-02 22:40:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2303,NULL,NULL,2301,63,30,'2026-03-02 22:40:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2304,NULL,NULL,2301,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2305,NULL,NULL,2301,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2306,NULL,NULL,2301,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2307,NULL,NULL,2301,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2308,NULL,NULL,2301,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2309,NULL,NULL,2301,63,30,'2026-03-02 22:42:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2310,NULL,NULL,2301,63,30,'2026-03-02 22:42:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2311,NULL,NULL,2301,63,30,'2026-03-02 22:42:00',NULL,'live',0,0,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2312,NULL,NULL,2286,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2313,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2314,NULL,NULL,2313,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2315,NULL,NULL,2313,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2316,NULL,NULL,2315,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2317,NULL,NULL,2315,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2318,NULL,NULL,2315,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2319,NULL,NULL,2315,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2320,NULL,NULL,2313,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2321,NULL,NULL,2320,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2322,NULL,NULL,2320,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2323,NULL,NULL,2320,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2324,NULL,NULL,2320,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2325,NULL,NULL,2313,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2326,NULL,NULL,2313,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2327,NULL,NULL,2313,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2328,NULL,NULL,2313,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2329,NULL,NULL,2328,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2330,NULL,NULL,2328,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2331,NULL,NULL,2328,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2332,NULL,NULL,2328,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2333,NULL,NULL,2328,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2334,NULL,NULL,2328,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2335,NULL,NULL,2328,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2336,NULL,NULL,2328,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2337,NULL,NULL,2328,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2338,NULL,NULL,2328,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2339,NULL,NULL,2313,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 22:50:42','2026-03-02 22:50:42'),
(2368,NULL,NULL,2301,63,30,'2026-03-02 23:12:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2369,NULL,NULL,2301,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2370,NULL,NULL,2301,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2371,NULL,NULL,2301,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2372,NULL,NULL,2301,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2373,NULL,NULL,2301,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2374,NULL,NULL,2301,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2375,NULL,NULL,2301,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2376,NULL,NULL,2301,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2377,NULL,NULL,2301,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2378,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2379,NULL,NULL,2378,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2380,NULL,NULL,2378,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2381,NULL,NULL,2380,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2382,NULL,NULL,2380,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2383,NULL,NULL,2380,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2384,NULL,NULL,2380,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2385,NULL,NULL,2378,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2386,NULL,NULL,2385,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2387,NULL,NULL,2385,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2388,NULL,NULL,2385,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2389,NULL,NULL,2385,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2390,NULL,NULL,2378,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2391,NULL,NULL,2378,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2392,NULL,NULL,2378,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2393,NULL,NULL,2392,63,30,'2026-03-02 23:12:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2394,NULL,NULL,2392,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2395,NULL,NULL,2392,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2396,NULL,NULL,2392,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2397,NULL,NULL,2392,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2398,NULL,NULL,2392,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2399,NULL,NULL,2392,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2400,NULL,NULL,2392,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2401,NULL,NULL,2392,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2402,NULL,NULL,2392,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:36','2026-03-02 23:14:36'),
(2404,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:14:59','2026-03-02 23:14:59'),
(2407,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:15:24','2026-03-02 23:15:24'),
(2408,NULL,NULL,2407,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:15:24','2026-03-02 23:15:24'),
(2409,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2410,NULL,NULL,2409,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2411,NULL,NULL,2409,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2412,NULL,NULL,2411,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2413,NULL,NULL,2411,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2414,NULL,NULL,2411,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2415,NULL,NULL,2411,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2416,NULL,NULL,2409,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2417,NULL,NULL,2416,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2418,NULL,NULL,2416,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2419,NULL,NULL,2416,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2420,NULL,NULL,2416,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2421,NULL,NULL,2409,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2422,NULL,NULL,2409,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2423,NULL,NULL,2409,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2424,NULL,NULL,2409,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2425,NULL,NULL,2424,63,30,'2026-03-02 22:40:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2426,NULL,NULL,2424,63,30,'2026-03-02 22:40:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2427,NULL,NULL,2424,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2428,NULL,NULL,2424,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2429,NULL,NULL,2424,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2430,NULL,NULL,2424,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2431,NULL,NULL,2424,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2432,NULL,NULL,2424,63,30,'2026-03-02 22:42:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2433,NULL,NULL,2424,63,30,'2026-03-02 22:42:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2434,NULL,NULL,2424,63,30,'2026-03-02 22:42:00',NULL,'live',0,0,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2435,NULL,NULL,2409,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2436,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2437,NULL,NULL,2436,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2438,NULL,NULL,2436,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2439,NULL,NULL,2438,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2440,NULL,NULL,2438,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2441,NULL,NULL,2438,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2442,NULL,NULL,2438,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2443,NULL,NULL,2436,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2444,NULL,NULL,2443,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2445,NULL,NULL,2443,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2446,NULL,NULL,2443,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2447,NULL,NULL,2443,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2448,NULL,NULL,2436,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2449,NULL,NULL,2436,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2450,NULL,NULL,2436,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2451,NULL,NULL,2436,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2452,NULL,NULL,2451,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2453,NULL,NULL,2451,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2454,NULL,NULL,2451,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2455,NULL,NULL,2451,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2456,NULL,NULL,2451,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2457,NULL,NULL,2451,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2458,NULL,NULL,2451,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:00','2026-03-02 23:19:00'),
(2459,NULL,NULL,2451,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:01','2026-03-02 23:19:01'),
(2460,NULL,NULL,2451,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:01','2026-03-02 23:19:01'),
(2461,NULL,NULL,2451,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:01','2026-03-02 23:19:01'),
(2462,NULL,NULL,2436,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 23:19:01','2026-03-02 23:19:01'),
(2488,NULL,NULL,2424,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2489,NULL,NULL,2424,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2490,NULL,NULL,2424,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2491,NULL,NULL,2424,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2492,NULL,NULL,2424,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2493,NULL,NULL,2424,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2494,NULL,NULL,2424,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2495,NULL,NULL,2424,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2496,NULL,NULL,2424,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2497,NULL,NULL,2424,63,30,'2026-03-02 23:27:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2498,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2499,NULL,NULL,2498,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2500,NULL,NULL,2498,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2501,NULL,NULL,2500,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2502,NULL,NULL,2500,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2503,NULL,NULL,2500,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2504,NULL,NULL,2500,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2505,NULL,NULL,2498,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2506,NULL,NULL,2505,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2507,NULL,NULL,2505,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2508,NULL,NULL,2505,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2509,NULL,NULL,2505,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2510,NULL,NULL,2498,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2511,NULL,NULL,2498,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2512,NULL,NULL,2498,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2513,NULL,NULL,2512,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2514,NULL,NULL,2512,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2515,NULL,NULL,2512,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2516,NULL,NULL,2512,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2517,NULL,NULL,2512,63,30,'2026-03-02 23:25:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2518,NULL,NULL,2512,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2519,NULL,NULL,2512,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2520,NULL,NULL,2512,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2521,NULL,NULL,2512,63,30,'2026-03-02 23:26:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2522,NULL,NULL,2512,63,30,'2026-03-02 23:27:00',NULL,'live',NULL,NULL,'2026-03-02 23:27:03','2026-03-02 23:27:03'),
(2523,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2524,NULL,NULL,2523,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2525,NULL,NULL,2523,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2526,NULL,NULL,2525,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2527,NULL,NULL,2525,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2528,NULL,NULL,2525,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2529,NULL,NULL,2525,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2530,NULL,NULL,2523,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2531,NULL,NULL,2530,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2532,NULL,NULL,2530,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2533,NULL,NULL,2530,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2534,NULL,NULL,2530,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2535,NULL,NULL,2523,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2536,NULL,NULL,2523,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2537,NULL,NULL,2523,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2538,NULL,NULL,2523,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2539,NULL,NULL,2538,63,30,'2026-03-02 23:12:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2540,NULL,NULL,2538,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2541,NULL,NULL,2538,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2542,NULL,NULL,2538,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2543,NULL,NULL,2538,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2544,NULL,NULL,2538,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2545,NULL,NULL,2538,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2546,NULL,NULL,2538,63,30,'2026-03-02 23:14:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2547,NULL,NULL,2538,63,30,'2026-03-02 23:14:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2548,NULL,NULL,2538,63,30,'2026-03-02 23:14:00',NULL,'live',0,0,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2549,NULL,NULL,2523,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2550,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2551,NULL,NULL,2550,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2552,NULL,NULL,2550,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2553,NULL,NULL,2552,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2554,NULL,NULL,2552,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2555,NULL,NULL,2552,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2556,NULL,NULL,2552,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2557,NULL,NULL,2550,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2558,NULL,NULL,2557,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2559,NULL,NULL,2557,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2560,NULL,NULL,2557,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2561,NULL,NULL,2557,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2562,NULL,NULL,2550,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2563,NULL,NULL,2550,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2564,NULL,NULL,2550,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2565,NULL,NULL,2550,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:31','2026-03-02 23:42:31'),
(2566,NULL,NULL,2565,63,30,'2026-03-02 23:12:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2567,NULL,NULL,2565,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2568,NULL,NULL,2565,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2569,NULL,NULL,2565,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2570,NULL,NULL,2565,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2571,NULL,NULL,2565,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2572,NULL,NULL,2565,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2573,NULL,NULL,2565,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2574,NULL,NULL,2565,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2575,NULL,NULL,2565,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2576,NULL,NULL,2550,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-02 23:42:32','2026-03-02 23:42:32'),
(2608,NULL,NULL,2538,63,30,'2026-03-02 23:55:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2609,NULL,NULL,2538,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2610,NULL,NULL,2538,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2611,NULL,NULL,2538,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2612,NULL,NULL,2538,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2613,NULL,NULL,2538,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2614,NULL,NULL,2538,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2615,NULL,NULL,2538,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2616,NULL,NULL,2538,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2617,NULL,NULL,2538,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2618,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2619,NULL,NULL,2618,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2620,NULL,NULL,2618,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2621,NULL,NULL,2620,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2622,NULL,NULL,2620,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2623,NULL,NULL,2620,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2624,NULL,NULL,2620,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2625,NULL,NULL,2618,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2626,NULL,NULL,2625,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2627,NULL,NULL,2625,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2628,NULL,NULL,2625,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2629,NULL,NULL,2625,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2630,NULL,NULL,2618,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2631,NULL,NULL,2618,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2632,NULL,NULL,2618,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2633,NULL,NULL,2632,63,30,'2026-03-02 23:55:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2634,NULL,NULL,2632,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2635,NULL,NULL,2632,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2636,NULL,NULL,2632,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2637,NULL,NULL,2632,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2638,NULL,NULL,2632,63,30,'2026-03-02 23:56:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2639,NULL,NULL,2632,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2640,NULL,NULL,2632,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2641,NULL,NULL,2632,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2642,NULL,NULL,2632,63,30,'2026-03-02 23:57:00',NULL,'live',NULL,NULL,'2026-03-02 23:57:48','2026-03-02 23:57:48'),
(2643,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2644,NULL,NULL,2643,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2645,NULL,NULL,2643,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2646,NULL,NULL,2645,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2647,NULL,NULL,2645,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2648,NULL,NULL,2645,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2649,NULL,NULL,2645,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2650,NULL,NULL,2643,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2651,NULL,NULL,2650,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2652,NULL,NULL,2650,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2653,NULL,NULL,2650,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2654,NULL,NULL,2650,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2655,NULL,NULL,2643,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2656,NULL,NULL,2643,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2657,NULL,NULL,2643,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2658,NULL,NULL,2643,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2659,NULL,NULL,2658,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2660,NULL,NULL,2658,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2661,NULL,NULL,2658,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2662,NULL,NULL,2658,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2663,NULL,NULL,2658,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2664,NULL,NULL,2658,63,30,'2026-03-02 22:41:00',NULL,'live',0,0,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2665,NULL,NULL,2658,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2666,NULL,NULL,2658,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2667,NULL,NULL,2658,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2668,NULL,NULL,2658,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2669,NULL,NULL,2643,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2670,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2671,NULL,NULL,2670,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2672,NULL,NULL,2670,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2673,NULL,NULL,2672,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2674,NULL,NULL,2672,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2675,NULL,NULL,2672,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2676,NULL,NULL,2672,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2677,NULL,NULL,2670,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2678,NULL,NULL,2677,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2679,NULL,NULL,2677,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2680,NULL,NULL,2677,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2681,NULL,NULL,2677,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2682,NULL,NULL,2670,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2683,NULL,NULL,2670,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2684,NULL,NULL,2670,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2685,NULL,NULL,2670,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2686,NULL,NULL,2685,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2687,NULL,NULL,2685,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2688,NULL,NULL,2685,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2689,NULL,NULL,2685,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2690,NULL,NULL,2685,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2691,NULL,NULL,2685,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2692,NULL,NULL,2685,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2693,NULL,NULL,2685,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2694,NULL,NULL,2685,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2695,NULL,NULL,2685,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2696,NULL,NULL,2670,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 00:06:26','2026-03-03 00:06:26'),
(2714,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2715,NULL,NULL,2714,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2716,NULL,NULL,2714,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2717,NULL,NULL,2716,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2718,NULL,NULL,2716,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2719,NULL,NULL,2716,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2720,NULL,NULL,2716,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2721,NULL,NULL,2714,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2722,NULL,NULL,2721,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2723,NULL,NULL,2721,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2724,NULL,NULL,2721,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2725,NULL,NULL,2721,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2726,NULL,NULL,2714,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2727,NULL,NULL,2714,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 00:14:33','2026-03-03 00:14:33'),
(2730,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:15:16','2026-03-03 00:15:16'),
(2731,NULL,NULL,2730,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:15:16','2026-03-03 00:15:16'),
(2734,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:15:48','2026-03-03 00:15:48'),
(2735,NULL,NULL,2734,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:15:48','2026-03-03 00:15:48'),
(2740,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:20:08','2026-03-03 00:20:08'),
(2741,NULL,NULL,2740,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 00:20:08','2026-03-03 00:20:08'),
(2744,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:21:05','2026-03-03 00:21:05'),
(2745,NULL,NULL,2744,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 00:21:05','2026-03-03 00:21:05'),
(2761,NULL,NULL,2658,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2762,NULL,NULL,2658,63,30,'2026-03-03 00:25:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2763,NULL,NULL,2658,63,30,'2026-03-03 00:25:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2764,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2765,NULL,NULL,2764,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2766,NULL,NULL,2765,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2767,NULL,NULL,2765,63,30,'2026-03-02 22:40:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2768,NULL,NULL,2765,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2769,NULL,NULL,2765,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2770,NULL,NULL,2765,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2771,NULL,NULL,2765,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2772,NULL,NULL,2765,63,30,'2026-03-02 22:41:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2773,NULL,NULL,2765,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2774,NULL,NULL,2765,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2775,NULL,NULL,2765,63,30,'2026-03-02 22:42:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2776,NULL,NULL,2765,63,30,'2026-03-03 00:25:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2777,NULL,NULL,2765,63,30,'2026-03-03 00:25:00',NULL,'live',NULL,NULL,'2026-03-03 00:25:48','2026-03-03 00:25:48'),
(2778,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2779,NULL,NULL,2778,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2780,NULL,NULL,2778,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2781,NULL,NULL,2780,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2782,NULL,NULL,2780,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2783,NULL,NULL,2780,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2784,NULL,NULL,2780,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2785,NULL,NULL,2778,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2786,NULL,NULL,2785,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2787,NULL,NULL,2785,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2788,NULL,NULL,2785,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2789,NULL,NULL,2785,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2790,NULL,NULL,2778,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2791,NULL,NULL,2778,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2792,NULL,NULL,2778,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2793,NULL,NULL,2778,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2794,NULL,NULL,2793,63,30,'2026-03-02 23:12:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2795,NULL,NULL,2793,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2796,NULL,NULL,2793,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2797,NULL,NULL,2793,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2798,NULL,NULL,2793,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2799,NULL,NULL,2793,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2800,NULL,NULL,2793,63,30,'2026-03-02 23:13:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2801,NULL,NULL,2793,63,30,'2026-03-02 23:14:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2802,NULL,NULL,2793,63,30,'2026-03-02 23:14:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2803,NULL,NULL,2793,63,30,'2026-03-02 23:14:00',NULL,'live',0,0,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2804,NULL,NULL,2778,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2805,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2806,NULL,NULL,2805,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2807,NULL,NULL,2805,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2808,NULL,NULL,2807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2809,NULL,NULL,2807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2810,NULL,NULL,2807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2811,NULL,NULL,2807,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2812,NULL,NULL,2805,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2813,NULL,NULL,2812,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2814,NULL,NULL,2812,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2815,NULL,NULL,2812,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2816,NULL,NULL,2812,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2817,NULL,NULL,2805,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2818,NULL,NULL,2805,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2819,NULL,NULL,2805,7,6,'2026-02-21 16:08:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2820,NULL,NULL,2805,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2821,NULL,NULL,2820,63,30,'2026-03-02 23:12:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:21','2026-03-03 00:28:21'),
(2822,NULL,NULL,2820,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2823,NULL,NULL,2820,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2824,NULL,NULL,2820,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2825,NULL,NULL,2820,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2826,NULL,NULL,2820,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2827,NULL,NULL,2820,63,30,'2026-03-02 23:13:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2828,NULL,NULL,2820,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2829,NULL,NULL,2820,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2830,NULL,NULL,2820,63,30,'2026-03-02 23:14:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2831,NULL,NULL,2805,7,44,'2026-03-02 20:03:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:22','2026-03-03 00:28:22'),
(2832,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 00:28:32','2026-03-03 00:28:32'),
(2862,NULL,NULL,2793,63,30,'2026-03-03 07:51:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2863,NULL,NULL,2793,63,30,'2026-03-03 07:51:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2864,NULL,NULL,2793,63,30,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2865,NULL,NULL,2793,63,30,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2866,NULL,NULL,2793,63,30,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2867,NULL,NULL,2793,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2868,NULL,NULL,2793,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2869,NULL,NULL,2793,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2870,NULL,NULL,2793,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2871,NULL,NULL,2793,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2872,NULL,NULL,2793,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2873,NULL,NULL,2793,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2874,NULL,NULL,2793,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2875,NULL,NULL,2793,63,30,'2026-03-03 07:55:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2876,2,NULL,NULL,NULL,4,'2025-12-02 16:47:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2877,NULL,NULL,2876,7,34,'2026-02-21 15:07:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2878,NULL,NULL,2876,7,31,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2879,NULL,NULL,2878,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2880,NULL,NULL,2878,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2881,NULL,NULL,2878,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2882,NULL,NULL,2878,65,32,'2026-02-21 15:32:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2883,NULL,NULL,2876,7,36,'2026-02-21 15:48:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2884,NULL,NULL,2883,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2885,NULL,NULL,2883,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2886,NULL,NULL,2883,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2887,NULL,NULL,2883,66,35,'2026-02-21 15:50:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2888,NULL,NULL,2876,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2889,NULL,NULL,2876,7,38,'2026-02-21 16:00:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2890,NULL,NULL,2876,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2891,NULL,NULL,2890,63,30,'2026-03-03 07:51:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2892,NULL,NULL,2890,63,30,'2026-03-03 07:51:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2893,NULL,NULL,2890,63,30,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2894,NULL,NULL,2890,63,30,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2895,NULL,NULL,2890,63,30,'2026-03-03 07:52:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2896,NULL,NULL,2890,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2897,NULL,NULL,2890,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2898,NULL,NULL,2890,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2899,NULL,NULL,2890,63,30,'2026-03-03 07:53:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2900,NULL,NULL,2890,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2901,NULL,NULL,2890,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2902,NULL,NULL,2890,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2903,NULL,NULL,2890,63,30,'2026-03-03 07:54:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2904,NULL,NULL,2890,63,30,'2026-03-03 07:55:00',NULL,'live',NULL,NULL,'2026-03-03 07:55:09','2026-03-03 07:55:09'),
(2918,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 08:12:59','2026-03-03 08:12:59'),
(2919,NULL,NULL,2918,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2920,NULL,NULL,2918,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2921,NULL,NULL,2918,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2922,NULL,NULL,2918,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2923,NULL,NULL,2918,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2924,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2925,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2926,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2927,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2928,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2929,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2930,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2931,NULL,NULL,2923,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2932,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2933,NULL,NULL,2932,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2934,NULL,NULL,2932,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2935,NULL,NULL,2932,7,37,'2026-02-21 15:57:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2936,NULL,NULL,2932,7,6,'2026-02-22 21:20:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2937,NULL,NULL,2932,7,39,'2026-02-21 16:18:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2938,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2939,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2940,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2941,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2942,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2943,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2944,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2945,NULL,NULL,2937,63,30,'2026-02-21 16:17:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:00','2026-03-03 08:13:00'),
(2947,3,NULL,NULL,NULL,42,'2026-02-22 00:07:00',NULL,'live',NULL,NULL,'2026-03-03 08:13:29','2026-03-03 08:13:29');
/*!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),
(93,1,1),
(94,1,1),
(96,1,1),
(97,1,1),
(98,1,1),
(99,1,1),
(100,1,1),
(102,1,1),
(103,1,1),
(104,1,1),
(105,1,1),
(106,1,1),
(108,1,1),
(110,1,1),
(111,1,1),
(112,1,1),
(113,1,1),
(115,1,1),
(116,1,1),
(117,1,1),
(118,1,1),
(120,1,1),
(122,1,1),
(124,1,1),
(125,1,1),
(127,1,1),
(129,1,1),
(132,1,1),
(134,1,1),
(136,1,1),
(161,1,1),
(163,1,1),
(184,1,1),
(191,1,1),
(193,1,1),
(195,1,1),
(198,1,1),
(205,1,1),
(208,1,1),
(210,1,1),
(212,1,1),
(215,1,1),
(218,1,1),
(221,1,1),
(224,1,1),
(227,1,1),
(230,1,1),
(232,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),
(915,1,1),
(921,1,1),
(927,1,1),
(931,1,1),
(935,1,1),
(939,1,1),
(948,1,1),
(966,1,1),
(976,1,1),
(988,1,1),
(997,1,1),
(1003,1,1),
(1015,1,1),
(1024,1,1),
(1029,1,1),
(1033,1,1),
(1039,1,1),
(1044,1,1),
(1048,1,1),
(1052,1,1),
(1058,1,1),
(1063,1,1),
(1084,1,1),
(1096,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),
(1151,1,1),
(1155,1,1),
(1157,1,1),
(1158,1,1),
(1161,1,1),
(1162,1,1),
(1166,1,1),
(1187,1,1),
(1208,1,1),
(1217,1,1),
(1222,1,1),
(1227,1,1),
(1248,1,1),
(1259,1,1),
(1261,1,1),
(1264,1,1),
(1268,1,1),
(1272,1,1),
(1276,1,1),
(1279,1,1),
(1282,1,1),
(1285,1,1),
(1286,1,1),
(1288,1,1),
(1289,1,1),
(1292,1,1),
(1296,1,1),
(1300,1,1),
(1304,1,1),
(1308,1,1),
(1312,1,1),
(1316,1,1),
(1319,1,1),
(1322,1,1),
(1326,1,1),
(1330,1,1),
(1335,1,1),
(1338,1,1),
(1340,1,1),
(1346,1,1),
(1349,1,1),
(1351,1,1),
(1354,1,1),
(1358,1,1),
(1363,1,1),
(1413,1,1),
(1415,1,1),
(1419,1,1),
(1426,1,1),
(1427,1,1),
(1433,1,1),
(1438,1,1),
(1440,1,1),
(1441,1,1),
(1558,1,1),
(1562,1,1),
(1576,1,1),
(1584,1,1),
(1592,1,1),
(1601,1,1),
(1607,1,1),
(1612,1,1),
(1616,1,1),
(1620,1,1),
(1624,1,1),
(1628,1,1),
(1632,1,1),
(1636,1,1),
(1643,1,1),
(1648,1,1),
(1652,1,1),
(1656,1,1),
(1660,1,1),
(1664,1,1),
(1668,1,1),
(1672,1,1),
(1676,1,1),
(1680,1,1),
(1684,1,1),
(1688,1,1),
(1693,1,1),
(1697,1,1),
(1702,1,1),
(1705,1,1),
(1707,1,1),
(1710,1,1),
(1715,1,1),
(1721,1,1),
(1735,1,1),
(1747,1,1),
(1751,1,1),
(1755,1,1),
(1759,1,1),
(1762,1,1),
(1764,1,1),
(1767,1,1),
(1771,1,1),
(1775,1,1),
(1779,1,1),
(1783,1,1),
(1788,1,1),
(1792,1,1),
(1796,1,1),
(1800,1,1),
(1802,1,1),
(1828,1,1),
(1862,1,1),
(1872,1,1),
(1874,1,1),
(1877,1,1),
(1885,1,1),
(1915,1,1),
(1931,1,1),
(1935,1,1),
(1944,1,1),
(1949,1,1),
(1951,1,1),
(1978,1,1),
(2021,1,1),
(2062,1,1),
(2079,1,1),
(2081,1,1),
(2109,1,1),
(2137,1,1),
(2150,1,1),
(2162,1,1),
(2190,1,1),
(2253,1,1),
(2280,1,1),
(2284,1,1),
(2286,1,1),
(2313,1,1),
(2378,1,1),
(2404,1,1),
(2407,1,1),
(2409,1,1),
(2436,1,1),
(2498,1,1),
(2523,1,1),
(2550,1,1),
(2618,1,1),
(2643,1,1),
(2670,1,1),
(2714,1,1),
(2730,1,1),
(2734,1,1),
(2740,1,1),
(2744,1,1),
(2764,1,1),
(2778,1,1),
(2805,1,1),
(2832,1,1),
(2876,1,1),
(2918,1,1),
(2932,1,1),
(2947,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',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'),
(2,4,'Hero Section','heroSection','Hero Section','sword',NULL,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'),
(3,5,'Transformations','transformations',NULL,'face-grin',NULL,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'),
(4,6,'Treatment','treatment',NULL,NULL,NULL,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'),
(5,7,'Page Builder','pageBuilder',NULL,'screwdriver-wrench',NULL,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'),
(6,8,'Featured transformations','featuredTransformations',NULL,NULL,NULL,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'),
(7,9,'Treatments Grid','treatmentsGrid',NULL,'grid-2-plus',NULL,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'),
(8,12,'Footer Socials','footerSocials',NULL,NULL,NULL,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'),
(9,14,'Blog','blog',NULL,'feather-pointed',NULL,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'),
(10,15,'Blog Grid','blogGrid',NULL,'grid-2-plus',NULL,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'),
(11,16,'How It Works','howItWorks',NULL,'timeline',NULL,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'),
(12,17,'Step Type','step',NULL,NULL,NULL,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'),
(13,18,'Testimonials','testimonials',NULL,NULL,NULL,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'),
(14,19,'Testimonials Grid','testimonialsGrid',NULL,'grid-2-plus',NULL,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'),
(15,20,'Flexible Section Type','flexibleSectionType',NULL,'objects-column',NULL,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'),
(16,21,'Rich Text','richText',NULL,NULL,NULL,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'),
(17,22,'Heading','heading',NULL,NULL,NULL,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'),
(18,23,'image','image',NULL,NULL,NULL,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'),
(19,24,'Icon + Text','iconText',NULL,NULL,NULL,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'),
(20,25,'Spacer','spacer',NULL,NULL,NULL,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'),
(21,26,'Quote','quote',NULL,NULL,NULL,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'),
(22,27,'CTA Banner','ctaBanner',NULL,NULL,NULL,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'),
(23,28,'Video','video',NULL,NULL,NULL,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'),
(24,29,'Statistics','statistics',NULL,NULL,NULL,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'),
(25,30,'Column','column',NULL,NULL,NULL,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'),
(26,31,'Divider','divider',NULL,'horizontal-rule',NULL,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'),
(27,32,'About Doctor','aboutDoctor',NULL,'address-card',NULL,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'),
(28,33,'Instagram','instagramCta',NULL,'instagram',NULL,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'),
(29,34,'Location Contact','locationContact',NULL,'map-pin','cyan',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'),
(30,35,'FAQ Item','faqItem',NULL,NULL,NULL,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'),
(31,36,'Treatment Overview','treatmentOverview',NULL,NULL,NULL,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'),
(32,37,'Overview Card','overviewCard',NULL,NULL,NULL,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'),
(33,38,'Disclaimer Item','disclaimerItem',NULL,NULL,NULL,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'),
(34,39,'Treatment Hero','treatmentHero',NULL,NULL,NULL,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'),
(35,40,'Benefit Card','benefitCard',NULL,NULL,NULL,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'),
(36,41,'Why Choose Treatment','whyChooseTreatment',NULL,NULL,NULL,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'),
(37,42,'What Is Treatment','whatIsTreatment',NULL,NULL,NULL,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'),
(38,43,'Who Should Consider','whoShouldConsiderSection',NULL,NULL,NULL,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'),
(39,44,'FAQ List','faqList',NULL,NULL,NULL,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'),
(40,45,'Price Section','priceSection',NULL,NULL,NULL,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'),
(41,46,'Price row','priceRow',NULL,NULL,NULL,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'),
(42,47,'Conditions','conditions',NULL,NULL,NULL,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'),
(43,48,'Case Studies','caseStudies',NULL,NULL,NULL,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'),
(44,49,'Call To Action Section','callToActionSection',NULL,NULL,NULL,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');
/*!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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-11-30 11:53:06',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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','2025-11-30 11:07:44',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-11-30 11:46:58',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Heading Second Line\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Subtitle\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"textArea2\",\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Background Image\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2025-11-30T19:15:27+00:00\",\"uid\":\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\",\"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,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-11-30 19:15:27','2025-11-30 19:57:12',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-02 15:40:33',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,\"providesThumbs\":false,\"includeInCards\":false,\"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\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 16:15:08','2026-02-21 14:54: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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-02 17:23:03',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-02 20:00:02',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Heading\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Description\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 20:29:53','2025-12-02 20:29:53',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-02 21:41:44',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2025-12-02T21:40:47+00:00\",\"uid\":\"9443ac0b-45cb-417d-b1dc-448f1c4bab2e\",\"userCondition\":null,\"elementCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 21:41:54','2025-12-02 21:41:54',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-02 22:01:53',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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Footer Text\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]},{\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"plainText2\",\"label\":\"Email\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"textArea2\",\"label\":\"Address\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":\"Google Maps Link\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]},{\"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,\"providesThumbs\":false,\"includeInCards\":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}]},{\"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,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2025-12-02 22:04:25','2025-12-02 22:08:59',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-03 07:31:50',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-03 08:53:47',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-03 19:14:00',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-03 19:06:31',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-04 17:10:56',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-04 18:15:52',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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-07 08:41:06',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:04:25',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:08:42',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:14:31',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:20:18',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:24:19',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:27:57',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:30:27',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:34:17',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:36:28',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-06 10:36:46',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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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','2025-12-07 08:18:38',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 23:22:07',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,\"providesThumbs\":false,\"includeInCards\":false,\"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\":\"message\",\"label\":\"Message\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-02-02T18:58:34+00:00\",\"uid\":\"ff6ca0f0-1b79-4605-9d9c-11a46fa5deca\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"instahandle\",\"label\":\"Instagram Handle\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-02-02T18:58:34+00:00\",\"uid\":\"f47824a7-2fa1-4c08-9a8d-2150675d7074\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"instagramUrl\",\"label\":\"Instagram URL\\t\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-02-02T18:58:34+00:00\",\"uid\":\"bf926b64-bfec-4317-b58e-d7a143dd5ff0\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"452dafb1-1a42-4c98-a977-363c723ec58c\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-02 18:58:34','2026-02-02 18:58:34',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-03 08:41:43',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"answer\",\"label\":\"Answer\",\"instructions\":\"Enter the FAQs asnwer\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-03-02T19:21:24+00:00\",\"uid\":\"c7f394f7-2697-451f-b233-0583f7d2fee4\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\",\"editCondition\":null}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-20 13:36:59','2026-03-02 19:21:24',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 15:42:50',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 15:42:40',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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-02-20 14:17:58',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"location\",\"label\":\"Location\",\"instructions\":\"Location subtitle (e.g. \'Harley Street\')\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"description\",\"label\":\"Description\",\"instructions\":\"Hero description text\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"backgroundImage\",\"label\":\"Background Image\",\"instructions\":\"Optional background image (shown with low opacity)\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":null,\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonText\",\"label\":\"Primary Button Text\",\"instructions\":\"Text for primary CTA Button\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonUrl\",\"label\":\"Primary Button URL\",\"instructions\":\"URL for primary button\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"secondaryButtonUrl\",\"label\":\"Secondary button url\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-02-21T15:15:15+00:00\",\"uid\":\"417ec013-10ea-4c74-9ebb-451de4da5f3f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showSecondaryButton\",\"label\":\"Show Secondary Button\",\"instructions\":\"Toggle to show/hide secondary button\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-20 14:42:18','2026-02-21 23:31:04',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 13:14:21',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 15:49:21',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02 18:35:54',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 14:52:38',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 16:16:49',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-21 22:37:00',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"itemPrice\",\"label\":\"Price\",\"instructions\":\"Treatment price\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-02-21 22:01:44','2026-02-21 22:01:44',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-22 00:01:31',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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,\"providesThumbs\":false,\"includeInCards\":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-02-22 00:36:31',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,\"providesThumbs\":false,\"includeInCards\":false,\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonText\",\"label\":\"Primary Button Text\",\"instructions\":\"Example: “Book Consultation”\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"primaryButtonUrl\",\"label\":\"Primary button URL\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"secondaryButtonText\",\"label\":\"Secondary Button Text\",\"instructions\":\"Example: “tel:020 1234 5678”\",\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"da0f7ef2-9f36-432c-b279-50a04db13c9f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"9fc3a933-4142-4602-8609-0c4f426e043b\",\"editCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"secondaryButtonUrl\",\"label\":\"Secondary button Url\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":false,\"width\":100,\"dateAdded\":\"2026-03-02T20:02:06+00:00\",\"uid\":\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\",\"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,\"providesThumbs\":false,\"includeInCards\":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},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"handle\":\"showSecondaryButton\",\"label\":\"Show Secondary Button\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"providesThumbs\":false,\"includeInCards\":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}]}],\"generatedFields\":[],\"cardView\":[],\"cardThumbAlignment\":\"end\"}','2026-03-02 20:02:06','2026-03-02 20:02:06',NULL,'3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad');
/*!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\":255,\"showLabelField\":false,\"typeSettings\":{\"entry\":{\"sources\":\"*\",\"showUnpermittedSections\":\"\",\"showUnpermittedEntries\":\"\"},\"url\":{\"allowRootRelativeUrls\":\"1\",\"allowAnchors\":\"1\",\"allowCustomSchemes\":\"\"}},\"types\":[\"entry\",\"url\"]}','2025-11-30 11:44:19','2025-11-30 11:44:19',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\":\"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\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":true,\"viewMode\":\"cards\"}','2025-11-30 19:06:01','2026-03-02 20:02:27',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','{\"createButtonLabel\":null,\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"b8e64025-f821-4cb6-aa16-7b5951f8f01e\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":false,\"viewMode\":\"cards\"}','2026-02-20 13:37:03','2026-02-20 13:37:03',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','{\"createButtonLabel\":null,\"defaultIndexViewMode\":\"cards\",\"enableVersioning\":false,\"entryTypes\":[{\"uid\":\"c1319250-2c2b-4d15-a2da-30fa401e02da\",\"group\":\"General\"}],\"includeTableView\":false,\"maxEntries\":null,\"minEntries\":null,\"pageSize\":50,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\",\"showCardsInGrid\":false,\"viewMode\":\"cards\"}','2026-02-21 22:30:11','2026-02-21 22:30:11',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','{\"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\":\"\"}],\"customOptions\":false}','2026-02-21 23:30:58','2026-03-02 20:00:56',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');
/*!40000 ALTER TABLE `fields` 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.8.21','5.8.0.3',1,'qsiqxinfdaxn','3@pagfuyjbsp','2025-11-29 11:54:53','2026-03-03 08:13:49','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');
/*!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','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','2025-12-02 21:41:44','2025-12-02 21:43:17',NULL,'e880a09a-c044-4e83-899c-8f6177330867'),
(3,3,'Popular 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','2025-12-02 21:41:54','2025-12-02 21:43:33',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','2025-11-29 12:58:28','a5f7aff1-1164-4cfd-ba31-03cb9680e6ea'),
(3,NULL,1,NULL,'/rachel/web/about','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:35','2026-02-08 10:05:52','a3e4050e-031c-48d5-b2ee-415449a3fcad'),
(4,NULL,1,NULL,'/rachel/web/contacts','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:41','2026-02-08 09:06:41','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,'/rachel/web/prices','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-29 12:58:53','2026-02-21 23:03:38','9f96e3b5-93ef-4a21-bda6-24ce82fb7cf1'),
(8,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 11:23:32','2025-11-30 11:23: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,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:14','2025-11-30 12:08:14','ee7eb7e5-dc43-45af-a9ea-b219adde8b65'),
(13,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:18','2025-11-30 12:08:18','0cd3f635-01c8-45a7-857d-f69abd6f8700'),
(14,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:27','2025-11-30 12:08:27','de3a2c56-2037-42c9-b80e-0279dae9cc89'),
(15,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:33','2025-11-30 12:08:33','a17f896c-5bf3-4a2f-bc56-53e07e1fa6e0'),
(16,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:41','2025-11-30 12:08:41','9f40fbd5-20e8-4414-93e8-a0081059495f'),
(17,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:51','2025-11-30 12:08:51','6ea20ea3-52c4-4e86-92f8-54730fc7e9cd'),
(18,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:54','2025-11-30 12:08:54','1818ef81-f9d4-4dad-b585-5eee8e80d551'),
(19,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:08:58','2025-11-30 12:08:58','c92a6e41-f6e1-4b26-9d0c-52bded230779'),
(20,NULL,1,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'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,'/rachel/web/blog','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-11-30 12:27:29','2026-02-21 23:06:22','2e0821be-7c67-4790-ac54-ebdd6d1cc048'),
(235,NULL,2,NULL,'#','verbb\\navigation\\nodetypes\\CustomType',NULL,NULL,'[]','[]',0,NULL,'2025-12-02 21:42:11','2025-12-02 21:42:11','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,NULL,'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,NULL,'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,NULL,'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,NULL,'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,2778,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','e180061e-1b8b-4781-8bbb-c93e23526dff'),
(2907,1441,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','d1ea41fa-3212-4b2f-b82b-1dad2f7ff6fa'),
(2908,1802,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'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,2081,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','f443b2b1-da90-4114-bc45-1f008b7a161e'),
(2911,2162,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','a4780a91-c7eb-4750-93dd-e391a0a19f07'),
(2912,2286,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','925c11c0-acf6-4e70-afa1-a07d2710b1ab'),
(2913,2409,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','f4792ed7-6f5c-4c51-89f7-8caa44d2065e'),
(2914,2523,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','c19620b4-10f4-4df2-aaed-4f8373a6d50a'),
(2915,2643,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2026-03-03 07:58:02','2026-03-03 07:58:02','984f4f09-fd36-4e8b-a32f-48bd4a7333a1');
/*!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.15','2.1.1','2025-11-29 12:16:12','2025-11-29 12:16:12','2025-11-29 12:16:12','edb42786-c242-451f-9f5c-cee488aa5fdd'),
(2,'ckeditor','4.11.0','3.0.0.0','2025-11-29 12:18:03','2025-11-29 12:18:03','2025-11-29 12:18:03','91e6d327-c0c9-458d-8ccc-f932e39dbb80'),
(3,'blocksmith','1.7.1','1.1.4','2025-11-29 12:18:45','2025-11-29 12:18:45','2025-12-03 09:08:30','ebfc096d-0b6d-4aee-bf3d-dc35594dac53');
/*!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.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','1772481747'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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-02-02T18:58:34+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.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.handle','\"message\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.includeInCards','false'),
('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','\"Message\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.1.providesThumbs','false'),
('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','\"ff6ca0f0-1b79-4605-9d9c-11a46fa5deca\"'),
('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-02-02T18:58:34+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.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.handle','\"instahandle\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.includeInCards','false'),
('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','\"Instagram Handle\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.2.providesThumbs','false'),
('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','\"f47824a7-2fa1-4c08-9a8d-2150675d7074\"'),
('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-02-02T18:58:34+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.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.handle','\"instagramUrl\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.includeInCards','false'),
('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','\"Instagram URL\\t\"'),
('entryTypes.3c3901be-445f-43a2-aac3-836a5a5cdfba.fieldLayouts.9bbf523a-1591-475f-8961-a5890414b2d9.tabs.0.elements.3.providesThumbs','false'),
('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','\"bf926b64-bfec-4317-b58e-d7a143dd5ff0\"'),
('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.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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.handle','\"secondaryButtonText\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.includeInCards','false'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.instructions','\"Example: “tel:020 1234 5678”\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.label','\"Secondary Button Text\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.5.providesThumbs','false'),
('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','\"da0f7ef2-9f36-432c-b279-50a04db13c9f\"'),
('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-03-02T20:02:06+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.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.handle','\"secondaryButtonUrl\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.includeInCards','false'),
('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','\"Secondary button Url\"'),
('entryTypes.3c3edcaf-67eb-492e-8460-c077662649ee.fieldLayouts.3f78ad77-a0b4-40db-bcd6-5b0b3b4ab4ad.tabs.0.elements.6.providesThumbs','false'),
('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','\"6340ecc1-eebe-4e50-a4a5-4fe538c00786\"'),
('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-03-02T20:02:06+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.fieldUid','\"eb509daa-6f9f-4a37-99b9-4564ce8baceb\"'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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','\"37c1e4a7-843a-47db-a135-c26b80d0a6f7\"'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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','\"2025-12-02T21:01:47+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.fieldUid','\"7a129363-bf45-498a-9747-02d8a372898c\"'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.handle','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.includeInCards','false'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.instructions','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.label','null'),
('entryTypes.3eca23a8-0dc8-4705-bc99-88ed8c52c67d.fieldLayouts.1a560c6d-5c39-48a9-aaa4-313521a961d4.tabs.0.elements.1.providesThumbs','false'),
('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','\"15c485a1-c1dd-465e-93b2-21f693927c55\"'),
('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','\"2026-02-21T14:54:22+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.fieldUid','\"509a8ddb-54bf-42d0-b022-428404fd505b\"'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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','\"29d63d2b-11ad-46b5-a496-080579503dd7\"'),
('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.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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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','\"2025-11-30T19:15:27+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.fieldUid','\"ae553c7f-84c3-474d-8d0b-cfb7d073ab5f\"'),
('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.includeInCards','false'),
('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','\"Background Image\"'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.6.providesThumbs','false'),
('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','\"cec5ecd1-20c2-44f9-b9ce-018d169101d7\"'),
('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','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.fieldUid','\"e3025ceb-44cc-4ae0-b8bb-f05c4be26b27\"'),
('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.includeInCards','false'),
('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','null'),
('entryTypes.4d901f07-e203-40c2-81e4-09b9ca404552.fieldLayouts.11582838-4ce5-4a66-a634-992cd6e68189.tabs.0.elements.7.providesThumbs','false'),
('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','\"238ce99e-fad8-4e55-b39c-58e5e5704123\"'),
('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.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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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-02T19:21:24+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.fieldUid','\"d03c1783-dc97-44b5-a9b6-41eb20ef7386\"'),
('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.includeInCards','false'),
('entryTypes.b8e64025-f821-4cb6-aa16-7b5951f8f01e.fieldLayouts.3634baa3-14f5-4142-baee-ed3658c6a48a.tabs.0.elements.2.instructions','\"Enter the FAQs asnwer\"'),
('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.providesThumbs','false'),
('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','\"c7f394f7-2697-451f-b233-0583f7d2fee4\"'),
('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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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-02-20T14:42:18+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.fieldUid','\"3c1a81fc-6fae-4278-8d85-367a118abfbb\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.handle','\"showSecondaryButton\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.includeInCards','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.instructions','\"Toggle to show/hide secondary button\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.label','\"Show Secondary Button\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.10.providesThumbs','false'),
('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','\"a5274579-8206-47e3-8cdd-64cbb42cfa04\"'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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-21T15:15:15+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.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.handle','\"secondaryButtonUrl\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.includeInCards','false'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.instructions','null'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.label','\"Secondary button url\"'),
('entryTypes.cd83f1fe-45e5-4082-9590-93ec1fb4a261.fieldLayouts.0fec84a5-1cf5-4f6e-b1e7-467438dd1089.tabs.0.elements.9.providesThumbs','false'),
('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','\"417ec013-10ea-4c74-9ebb-451de4da5f3f\"'),
('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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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','255'),
('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.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','\"318e492e-01cc-4b53-86ef-7186a7f4cee4\"'),
('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','\"cd83f1fe-45e5-4082-9590-93ec1fb4a261\"'),
('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','\"45e1951f-373a-4e27-8d30-3cfa1bb82857\"'),
('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','\"73bbd50d-5a76-4478-ab66-7b936845b6d8\"'),
('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','\"fb561bc6-1aeb-445e-b520-0e208a6c38b8\"'),
('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','\"edb418c0-89d3-419b-897b-dcb54ef07062\"'),
('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','\"28c66742-a424-4cbd-ad18-079d8881f9ae\"'),
('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','\"3c3edcaf-67eb-492e-8460-c077662649ee\"'),
('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.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.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','\"b6a30616-2a75-4a5e-997a-a06c3596ad23\"'),
('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','\"ab324fbc-2f80-4c93-99e4-cf7bda8d98d8\"'),
('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','\"33f0b780-c7d3-4e20-94e5-83bbd5f30e48\"'),
('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','\"3c3901be-445f-43a2-aac3-836a5a5cdfba\"'),
('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\"'),
('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.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.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\"'),
('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.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\"');
INSERT INTO `projectconfig` VALUES
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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','\"2025-12-02T22:04:25+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.fieldUid','\"9fc3a933-4142-4602-8609-0c4f426e043b\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.handle','\"plainText2\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.includeInCards','false'),
('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','\"Email\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.1.providesThumbs','false'),
('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','\"2ee1436c-9bfd-4b8b-85d5-08ac782d324c\"'),
('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.fieldUid','\"11ca9eb3-65b9-4075-8327-16d3eaf68026\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.handle','\"textArea2\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.includeInCards','false'),
('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','\"Address\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.2.providesThumbs','false'),
('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','\"15ee367f-1e67-4016-853e-efc16011c1ec\"'),
('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.fieldUid','\"452dafb1-1a42-4c98-a977-363c723ec58c\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.handle','null'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.includeInCards','false'),
('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','\"Google Maps Link\"'),
('globalSets.dabc2ee6-7b53-4c21-8253-0c9718bdd331.fieldLayouts.b9338d7d-f13a-4d94-9291-f6c2486e6879.tabs.1.elements.3.providesThumbs','false'),
('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','\"12fa2947-f2ff-44bd-b309-abed952bde15\"'),
('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.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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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__.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__.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__.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__.53906bea-a5c6-4385-82e5-c89e27ac267b','\"Featured transformations\"'),
('meta.__names__.54df986c-6d9a-49a7-8f54-33871ccfd5c6','\"Blog Grid\"'),
('meta.__names__.592ab577-259f-4a99-a41b-952ec300da4b','\"Vertical Alignment\"'),
('meta.__names__.59b98af3-0c7d-4ef0-bd5e-cb771b4b4915','\"Before Image\"'),
('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__.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__.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','\"Popular 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__.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.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','\"Popular 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.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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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.navigation.edition','\"standard\"'),
('plugins.navigation.enabled','true'),
('plugins.navigation.licenseKey','\"4TB1EN2PUI6CTZV0R38KHCQ4\"'),
('plugins.navigation.schemaVersion','\"2.1.1\"'),
('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.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.type','\"channel\"'),
('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.8.0.3\"'),
('system.timeZone','\"Europe/London\"'),
('users.allowPublicRegistration','false'),
('users.defaultGroup','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.includeInCards','false'),
('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.providesThumbs','false'),
('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.includeInCards','false'),
('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.providesThumbs','false'),
('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
(26,10,89,NULL,90,1,'2025-12-02 15:40:07','2025-12-02 15:40:07','5337fcb6-c5b9-45be-a6f5-bcd6ce77af99'),
(27,11,89,NULL,91,1,'2025-12-02 15:40:17','2025-12-02 15:40:17','cd77f407-1365-4ba7-bea5-abbe1c8818af'),
(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'),
(37,10,99,NULL,90,1,'2025-12-02 15:42:28','2025-12-02 15:42:28','25223d6b-f006-4f48-9c00-ce2962cc59f0'),
(38,11,99,NULL,91,1,'2025-12-02 15:42:32','2025-12-02 15:42:32','211bfdd7-c9bb-4014-9707-9df156fead42'),
(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'),
(66,9,99,NULL,105,1,'2025-12-02 16:16:03','2025-12-02 17:18:36','ab11d92d-4808-4958-b636-dcefef4ba5e5'),
(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'),
(85,9,89,NULL,117,1,'2025-12-02 16:47:19','2025-12-02 16:47:19','4a80ad46-1513-47ca-b6ef-24f9e6adcb61'),
(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'),
(93,13,122,NULL,112,1,'2025-12-02 16:48:06','2025-12-02 16:48:06','362d26fa-3f91-42d0-9ae0-cf3ea287d232'),
(94,13,122,NULL,99,2,'2025-12-02 16:48:06','2025-12-02 16:48:06','2ac42dc1-2aec-47aa-a4aa-51acec4c8cd3'),
(99,11,112,NULL,91,1,'2025-12-02 16:48:40','2025-12-02 16:48:40','3f0058c9-cfb5-4881-8e3d-856c670a4342'),
(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'),
(123,13,132,NULL,89,1,'2025-12-02 17:18:14','2025-12-02 17:18:14','c98e8b0a-5236-4a3a-a04c-ab140e16bd3d'),
(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'),
(165,2,181,NULL,48,1,'2025-12-02 19:06:16','2025-12-02 19:06:16','28374dc3-b474-4051-87bb-c3514bafd307'),
(166,13,184,NULL,112,1,'2025-12-02 19:06:16','2025-12-02 19:06:16','55f9eb06-d3cd-4727-a0dc-1ea1fcae1a30'),
(167,13,184,NULL,99,2,'2025-12-02 19:06:16','2025-12-02 19:06:16','e025717f-fb94-4726-90de-d6474412ed75'),
(168,2,185,NULL,48,1,'2025-12-02 19:06:16','2025-12-02 19:06:16','ee2f81fa-1995-48f5-817e-14658fbe62c4'),
(174,13,190,NULL,112,2,'2025-12-02 19:32:49','2025-12-02 19:52:52','58047c03-634c-4248-879d-f53f78f4b44d'),
(175,13,190,NULL,99,3,'2025-12-02 19:32:49','2025-12-02 19:52:52','43a639fb-3a09-4c4c-82f2-0af3dc2d352b'),
(176,13,190,NULL,89,1,'2025-12-02 19:32:49','2025-12-02 19:52:52','71519302-2fd5-4938-87cc-4172dffabae4'),
(177,13,191,NULL,112,1,'2025-12-02 19:32:49','2025-12-02 19:32:49','fdb847a9-ed5c-48f2-8881-4bfa1d638fb6'),
(178,13,191,NULL,99,2,'2025-12-02 19:32:49','2025-12-02 19:32:49','da434ede-9beb-4e5b-9c11-0b03f9b0b787'),
(179,13,192,NULL,112,1,'2025-12-02 19:32:49','2025-12-02 19:32:49','52f58638-6fec-42de-a59b-cdffbbf0ecf5'),
(180,13,192,NULL,99,2,'2025-12-02 19:32:49','2025-12-02 19:32:49','c3909b47-eddc-4704-8be7-d6463c0ecab6'),
(181,13,192,NULL,89,3,'2025-12-02 19:32:49','2025-12-02 19:32:49','0f6738b6-df65-4d9c-8ed6-fb5ba6046357'),
(185,13,196,NULL,89,1,'2025-12-02 19:52:54','2025-12-02 19:52:54','50630245-65ee-4a4a-b5aa-241797c1b990'),
(186,13,196,NULL,112,2,'2025-12-02 19:52:54','2025-12-02 19:52:54','112072ee-0a87-419d-a390-b5dc1f930683'),
(187,13,196,NULL,99,3,'2025-12-02 19:52:54','2025-12-02 19:52:54','abd433dc-9afd-41e3-b1ad-3bc4a682610f'),
(191,13,199,NULL,89,1,'2025-12-02 20:01:58','2025-12-02 20:01:58','1602459c-01ec-40cf-b03d-5e13fc72aaa5'),
(192,13,199,NULL,112,2,'2025-12-02 20:01:58','2025-12-02 20:01:58','564f556f-6709-47ca-bf39-2a0112dd2b61'),
(193,13,199,NULL,99,3,'2025-12-02 20:01:58','2025-12-02 20:01:58','6afcc53d-8abf-454a-ad6c-1a85a63ceab8'),
(195,17,105,NULL,48,1,'2025-12-02 21:01:57','2025-12-02 21:01:57','953c96d6-1185-4400-849e-647250353bfb'),
(196,17,208,NULL,48,1,'2025-12-02 21:01:57','2025-12-02 21:01:57','1864eba3-488f-4fdd-acf1-116b60c26556'),
(198,17,117,NULL,81,1,'2025-12-02 21:02:05','2025-12-02 21:02:05','ad521d44-d2df-404c-a113-d2c5c1149ce8'),
(199,17,210,NULL,81,1,'2025-12-02 21:02:05','2025-12-02 21:02:05','fe5e77c9-3522-4c3e-b009-398a6e467c8a'),
(200,17,212,NULL,48,1,'2025-12-02 21:05:04','2025-12-02 21:05:04','5f4d894a-6f17-450c-aa40-82267ab6e71f'),
(201,17,215,NULL,48,1,'2025-12-02 21:05:38','2025-12-02 21:05:38','54d73fea-65ba-492f-a21b-508dc1ff45bb'),
(202,17,218,NULL,48,1,'2025-12-02 21:06:16','2025-12-02 21:06:16','33ee4e83-451c-4181-8e9d-a69098d16365'),
(203,17,221,NULL,48,1,'2025-12-02 21:08:02','2025-12-02 21:08:02','bda783dc-4d68-4a14-9f6c-09fb99117401'),
(205,16,204,NULL,117,1,'2025-12-02 21:08:16','2025-12-02 21:08:16','e92619f0-f57e-4056-86b0-4ee1785aa312'),
(206,17,224,NULL,48,1,'2025-12-02 21:08:18','2025-12-02 21:08:18','4689531b-d72d-49dc-83ad-ea445a27e35f'),
(207,16,225,NULL,117,1,'2025-12-02 21:08:18','2025-12-02 21:08:18','f5bbc0f6-a00a-4b68-9419-c9d6f4054823'),
(209,17,227,NULL,48,1,'2025-12-02 21:08:37','2025-12-02 21:08:37','83558861-18b1-431b-ab2e-05f2da2057fd'),
(210,16,228,NULL,117,1,'2025-12-02 21:08:37','2025-12-02 21:08:37','fdae1cb8-78fc-4af9-b139-636bfdf934e6'),
(212,17,230,NULL,48,1,'2025-12-02 21:09:02','2025-12-02 21:09:02','e2488073-9cb5-4bcc-b5db-511c53e0b707'),
(214,17,232,NULL,48,1,'2025-12-02 21:09:19','2025-12-02 21:09:19','286873a0-4807-4ff0-9537-e38b8b7de0b0'),
(216,2,243,NULL,36,1,'2025-12-02 22:11:02','2025-12-02 22:11:02','0f473f96-a6ea-4ac5-87eb-c7567774afa9'),
(217,17,250,NULL,48,1,'2025-12-03 07:52:41','2025-12-03 07:52:41','1da4a1fc-9ac6-43a2-8339-d85b188865fc'),
(218,17,251,NULL,48,1,'2025-12-03 07:52:56','2025-12-03 07:52:56','41b17709-c959-42a2-89b7-b1accbe22ccc'),
(219,17,252,NULL,81,1,'2025-12-03 07:54:10','2025-12-03 07:54:10','af527864-6aae-4227-adca-f02e046bc017'),
(220,17,253,NULL,81,1,'2025-12-03 07:54:20','2025-12-03 07:54:20','d58963fc-af0b-4766-99ad-08f9c2e079ee'),
(229,2,318,NULL,48,1,'2025-12-04 08:58:21','2025-12-04 08:58:21','72b9fa67-3cf1-45ec-a35e-71335f73bb8e'),
(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'),
(236,2,326,NULL,320,1,'2025-12-04 17:58:28','2025-12-04 17:58:28','39c70fa1-f171-4db5-a9a7-3b64943ce367'),
(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'),
(254,23,335,NULL,326,1,'2025-12-04 18:16:25','2025-12-04 18:16:25','29d83a3f-2cfe-4194-887c-1c76d46e643e'),
(255,23,335,NULL,322,2,'2025-12-04 18:16:25','2025-12-04 18:16:25','634aab52-e9dd-4d51-9f5d-571a4900c6aa'),
(256,23,335,NULL,324,3,'2025-12-04 18:16:25','2025-12-04 18:16:25','cdb3c313-56d2-4f54-85d4-33465bc61fea'),
(257,23,335,NULL,319,4,'2025-12-04 18:16:25','2025-12-04 18:16:25','6e4a1f90-4506-4985-896f-22cfce75f152'),
(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'),
(287,39,484,NULL,90,1,'2025-12-06 20:23:09','2025-12-06 20:23:09','d5314f83-6576-4ba0-bd2b-e67a41dde62a'),
(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'),
(295,13,752,NULL,112,1,'2025-12-07 09:27:22','2025-12-07 09:27:22','cea0845e-cab3-4ef5-b9fb-573358254458'),
(296,13,752,NULL,99,2,'2025-12-07 09:27:22','2025-12-07 09:27:22','1f8f88a5-5ada-4f96-a625-5f6e4814a29a'),
(297,13,752,NULL,89,3,'2025-12-07 09:27:22','2025-12-07 09:27:22','057092bd-674a-4364-8fcf-bf41c845dfdf'),
(299,2,761,NULL,757,1,'2025-12-07 14:22:11','2025-12-07 14:22:11','fa4bc60b-0393-4a4c-9d35-5ffba6b154fd'),
(300,2,766,NULL,757,1,'2025-12-07 14:22:11','2025-12-07 14:22:11','3312d3e8-f269-4ce3-9136-841f1957fd0f'),
(302,2,792,NULL,48,1,'2025-12-07 14:39:53','2025-12-07 14:39:53','40a5a00c-9b6c-4931-b194-2d04515ad97e'),
(304,2,811,NULL,757,1,'2025-12-07 14:46:22','2025-12-07 14:46:22','55c996f8-0b85-407d-8e33-648edba2fe82'),
(308,2,816,NULL,757,1,'2025-12-08 10:02:18','2025-12-08 10:02:18','600c5913-1e63-4af9-85b7-cac5a229d071'),
(311,2,143,NULL,312,1,'2025-12-08 10:03:28','2025-12-08 10:03:28','ec7bcfd3-20f8-4f4f-b002-0b4d23c68ed4'),
(312,2,820,NULL,312,1,'2025-12-08 10:03:28','2025-12-08 10:03:28','684b21d9-c130-4d25-993e-654ed5fe32af'),
(315,2,143,NULL,821,2,'2025-12-08 10:05:39','2025-12-08 10:05:39','211a4721-b979-4e41-90e8-cc0f538a539b'),
(316,2,825,NULL,312,1,'2025-12-08 10:05:39','2025-12-08 10:05:39','51b7e33c-b995-4378-92c7-5f4498b2d31f'),
(317,2,825,NULL,821,2,'2025-12-08 10:05:39','2025-12-08 10:05:39','92f0ee43-fbaf-4f55-a8e8-dffb2a4f46dd'),
(320,2,829,NULL,312,1,'2025-12-08 10:15:20','2025-12-08 10:15:20','1cddc277-67d8-4f80-8681-99dc6c5fbe09'),
(321,2,829,NULL,821,2,'2025-12-08 10:15:20','2025-12-08 10:15:20','eb2e7c9c-c1ad-44ce-ad95-734338ec83b8'),
(324,2,833,NULL,312,1,'2025-12-08 10:15:37','2025-12-08 10:15:37','2f6ff9a9-9409-40d1-b83b-12e421cbb1e1'),
(325,2,833,NULL,821,2,'2025-12-08 10:15:37','2025-12-08 10:15:37','cde3d90b-981c-4a69-b9f2-6c1afd09e523'),
(326,17,834,NULL,320,1,'2025-12-08 10:18:33','2025-12-08 10:18:33','9312ac18-4fcf-4842-837a-86cef006c46a'),
(330,10,112,NULL,757,1,'2025-12-15 09:01:44','2025-12-15 09:01:44','83affea0-0255-4bfc-8c7e-1df2499219dc'),
(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'),
(333,17,915,NULL,81,1,'2026-02-08 10:19:31','2026-02-08 10:19:31','2590489a-fb46-40ff-934f-0c08fd741b08'),
(335,17,921,NULL,81,1,'2026-02-21 15:07:05','2026-02-21 15:07:05','579e0ccd-ab9d-4b34-9b47-4e850e3502dc'),
(337,17,927,NULL,81,1,'2026-02-21 15:13:00','2026-02-21 15:13:00','354a5f42-d7ee-4ea6-aa16-386ced131f91'),
(339,17,931,NULL,81,1,'2026-02-21 15:15:35','2026-02-21 15:15:35','391bf2dd-ecc2-4482-a2c2-406dbde2b67a'),
(341,17,935,NULL,81,1,'2026-02-21 15:17:06','2026-02-21 15:17:06','39d9e91d-4c4a-45fe-ae1b-d2f4d8279538'),
(343,17,939,NULL,81,1,'2026-02-21 15:18:34','2026-02-21 15:18:34','0581f182-30c7-43fb-9a1f-3619a021f352'),
(345,17,948,NULL,81,1,'2026-02-21 15:32:54','2026-02-21 15:32:54','a558da63-590b-4d17-89c9-f0570eb0aba6'),
(347,17,966,NULL,81,1,'2026-02-21 15:33:15','2026-02-21 15:33:15','b1348bf8-8b8b-4a7d-8dca-167b09e4ca5d'),
(349,17,976,NULL,81,1,'2026-02-21 15:39:55','2026-02-21 15:39:55','a211c2c1-dc13-4033-a5ce-ce69234a0759'),
(351,17,988,NULL,81,1,'2026-02-21 15:44:00','2026-02-21 15:44:00','9acdf5fe-c806-4d83-a591-d178de1a332f'),
(353,17,997,NULL,81,1,'2026-02-21 15:46:44','2026-02-21 15:46:44','a6c7633f-f9aa-43b1-8d9d-2733f637ea36'),
(355,17,1003,NULL,81,1,'2026-02-21 15:48:30','2026-02-21 15:48:30','78a2962e-92f0-4048-97e5-8600bb6868dd'),
(357,17,1015,NULL,81,1,'2026-02-21 15:50:56','2026-02-21 15:50:56','0e7191cf-ed81-4f1d-81ed-1b1db316a18f'),
(359,17,1024,NULL,81,1,'2026-02-21 15:51:33','2026-02-21 15:51:33','683f8bbb-530a-48e9-bb78-fe94956a88d1'),
(361,17,1029,NULL,81,1,'2026-02-21 15:52:04','2026-02-21 15:52:04','50e55c95-ee96-471a-80b6-94001563836b'),
(363,17,1033,NULL,81,1,'2026-02-21 15:52:58','2026-02-21 15:52:58','69a43d18-21e8-470d-ac43-f3dbafa06a59'),
(367,10,1038,NULL,81,1,'2026-02-21 15:57:52','2026-02-21 15:57:52','b3d4e817-1501-4a71-946b-ad0b43779cb4'),
(368,17,1038,NULL,81,1,'2026-02-21 15:57:52','2026-02-21 15:57:52','4336e6ca-05e2-4818-8737-5da2531c37d4'),
(369,17,1039,NULL,81,1,'2026-02-21 15:57:52','2026-02-21 15:57:52','51cc3ad1-8307-4589-b798-ba943d2388a9'),
(370,10,1040,NULL,81,1,'2026-02-21 15:57:52','2026-02-21 15:57:52','dab8c15c-afbd-4f58-aef7-5b3cbfeb2893'),
(371,17,1040,NULL,81,1,'2026-02-21 15:57:52','2026-02-21 15:57:52','d282892d-583d-4770-8fbb-c72307a6f931'),
(373,17,1044,NULL,81,1,'2026-02-21 16:00:47','2026-02-21 16:00:47','77b7410d-1caf-42cb-b33d-d5ee61b239ef'),
(375,17,1048,NULL,81,1,'2026-02-21 16:01:13','2026-02-21 16:01:13','86da1e9c-8b40-4a2f-9e39-43af6d3fe797'),
(377,17,1052,NULL,81,1,'2026-02-21 16:07:21','2026-02-21 16:07:21','181302d8-2859-421f-9ef4-35cc33cf3d26'),
(385,13,1057,NULL,112,1,'2026-02-21 16:08:29','2026-02-21 16:08:29','062f6c05-20f2-4ce3-8ad7-047ae32cc8a5'),
(386,13,1057,NULL,99,2,'2026-02-21 16:08:29','2026-02-21 16:08:29','5dc13ec8-45eb-4c1a-965b-681d0ac52e1c'),
(387,13,1057,NULL,89,3,'2026-02-21 16:08:29','2026-02-21 16:08:29','1be588df-74ad-403c-9c27-491b0c8c564c'),
(388,17,1058,NULL,81,1,'2026-02-21 16:08:29','2026-02-21 16:08:29','2ec7b0f4-43be-46b5-9bc3-f9ec162f4b1a'),
(389,13,1059,NULL,112,1,'2026-02-21 16:08:29','2026-02-21 16:08:29','0a77d818-567f-4454-a348-f12b2a2003b3'),
(390,13,1059,NULL,99,2,'2026-02-21 16:08:29','2026-02-21 16:08:29','439dac7d-0421-4790-85d6-2927ceaf2359'),
(391,13,1059,NULL,89,3,'2026-02-21 16:08:29','2026-02-21 16:08:29','57bea40b-7a8a-4ac5-b3b7-1bb0eec57191'),
(393,17,1063,NULL,81,1,'2026-02-21 16:12:14','2026-02-21 16:12:14','47a364f7-63c2-41bd-b7b3-a061235912e0'),
(395,17,1084,NULL,81,1,'2026-02-21 16:18:04','2026-02-21 16:18:04','27d2557e-53dc-4f51-8e8a-4fe363ae1d59'),
(397,17,1096,NULL,81,1,'2026-02-21 16:21:12','2026-02-21 16:21:12','19415030-d032-405f-a9af-be474e0f7109'),
(398,68,1098,NULL,117,1,'2026-02-21 22:44:04','2026-02-21 22:44:04','af2c4252-48d6-4e38-a090-6893b9bee5be'),
(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'),
(404,68,1118,NULL,117,1,'2026-02-21 22:57:34','2026-02-21 22:57:34','861ba2bb-3738-42d1-bf5e-f6ae8e1bab97'),
(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'),
(408,68,1132,NULL,117,1,'2026-02-21 23:00:03','2026-02-21 23:00:03','0241efd5-62d3-45d1-b91a-312efba7556e'),
(409,68,1134,NULL,117,1,'2026-02-21 23:00:22','2026-02-21 23:00:22','53c0f9a0-7e66-4ab9-a8d5-c08c3aa4fcea'),
(411,2,1144,NULL,757,1,'2026-02-21 23:28:16','2026-02-21 23:28:16','67101b0c-c302-4733-a52d-aaa60a410fa0'),
(413,2,1148,NULL,757,1,'2026-02-21 23:28:36','2026-02-21 23:28:36','9d62a612-dfe7-4219-baa3-aab7b1fea4c6'),
(415,17,1151,NULL,81,1,'2026-02-21 23:31:43','2026-02-21 23:31:43','90e85780-18f3-488e-83f4-b859c3b5cb11'),
(417,17,1155,NULL,81,1,'2026-02-21 23:32:10','2026-02-21 23:32:10','2021d54d-96a0-47a4-a113-5829007acb22'),
(419,17,1161,NULL,81,1,'2026-02-22 00:06:42','2026-02-22 00:06:42','96ccec92-0c8a-4987-8caf-72f606c6207d'),
(420,17,1162,NULL,81,1,'2026-02-22 00:07:00','2026-02-22 00:07:00','13d068e2-bc3f-449e-99fd-4cac828822c7'),
(422,17,1166,NULL,81,1,'2026-02-22 00:07:17','2026-02-22 00:07:17','44ebc4c2-6141-4c94-bd84-294f5c48fe29'),
(424,17,1187,NULL,81,1,'2026-02-22 00:07:23','2026-02-22 00:07:23','b0211748-c7d0-4caa-b456-e20d9d2c6c71'),
(426,17,1208,NULL,81,1,'2026-02-22 00:07:37','2026-02-22 00:07:37','8d024955-4a51-40a0-b9a4-035a0f2f48de'),
(431,17,1216,NULL,81,1,'2026-02-22 00:08:02','2026-02-22 00:08:02','dd486379-215f-4f51-adce-794c4779bb2b'),
(432,17,1217,NULL,81,1,'2026-02-22 00:08:02','2026-02-22 00:08:02','6be4d74a-bdfc-4231-84e9-baf82bd98696'),
(433,10,1218,NULL,81,1,'2026-02-22 00:08:02','2026-02-22 00:08:02','69bbef81-25cf-46c1-86af-acba192f5a16'),
(434,17,1218,NULL,81,1,'2026-02-22 00:08:02','2026-02-22 00:08:02','6e57bf95-f38e-46e6-b1de-574c94e0d13a'),
(436,17,1222,NULL,81,1,'2026-02-22 00:08:09','2026-02-22 00:08:09','70e02456-9754-4b62-93a8-07217e8a7590'),
(441,13,1226,NULL,112,1,'2026-02-22 00:08:22','2026-02-22 00:08:22','d71fbb9a-58c5-4651-8487-a8415bce0a9a'),
(442,13,1226,NULL,99,2,'2026-02-22 00:08:22','2026-02-22 00:08:22','f1660f6e-eff1-4ac6-9dd0-77dcc904d515'),
(443,13,1226,NULL,89,3,'2026-02-22 00:08:22','2026-02-22 00:08:22','63535557-75af-4f26-aba9-fe269cfde633'),
(444,17,1227,NULL,81,1,'2026-02-22 00:08:22','2026-02-22 00:08:22','289a3fd8-5c3b-4ff9-98f4-8a913695f734'),
(445,13,1228,NULL,112,1,'2026-02-22 00:08:22','2026-02-22 00:08:22','c41bad24-64d0-419f-b0a9-182be8f272da'),
(446,13,1228,NULL,99,2,'2026-02-22 00:08:22','2026-02-22 00:08:22','009b200e-4d39-48f1-ad00-5a5028150b29'),
(447,13,1228,NULL,89,3,'2026-02-22 00:08:22','2026-02-22 00:08:22','e5df81af-642a-42ad-86da-edb412b83402'),
(449,17,1248,NULL,81,1,'2026-02-22 00:08:32','2026-02-22 00:08:32','4d564692-3899-4cf0-a3e5-fff3e2609e90'),
(451,17,1259,NULL,81,1,'2026-02-22 00:10:17','2026-02-22 00:10:17','955a47ee-cc14-4b61-8346-ab5fe358f55a'),
(453,17,1261,NULL,81,1,'2026-02-22 00:10:31','2026-02-22 00:10:31','262d32aa-5316-48fd-8183-05089c8a2d24'),
(457,17,1264,NULL,81,1,'2026-02-22 00:18:14','2026-02-22 00:18:14','27482b88-06ed-42b5-bccf-9bdd4f1df6be'),
(458,10,1265,NULL,81,1,'2026-02-22 00:18:14','2026-02-22 00:18:14','44bc2314-ee1b-4274-a6ce-1bb9e0d35241'),
(459,17,1265,NULL,81,1,'2026-02-22 00:18:14','2026-02-22 00:18:14','1982ec10-dcd4-4f91-901b-8bd12b68779d'),
(463,17,1268,NULL,81,1,'2026-02-22 00:22:36','2026-02-22 00:22:36','9a839ffb-8866-4e8f-82d4-ffff3c8a5ef1'),
(464,10,1269,NULL,81,1,'2026-02-22 00:22:36','2026-02-22 00:22:36','c3063ef4-64a3-48c2-aae4-6b6fc4351967'),
(465,17,1269,NULL,81,1,'2026-02-22 00:22:36','2026-02-22 00:22:36','2669ad51-b0c1-46a3-9d06-ff87dab25bc6'),
(469,17,1272,NULL,81,1,'2026-02-22 00:28:19','2026-02-22 00:28:19','3f6a23a9-feef-46e3-b230-c87fcdebf146'),
(470,10,1273,NULL,81,1,'2026-02-22 00:28:19','2026-02-22 00:28:19','6957e3b3-2d78-4bcd-b38a-8e8a3e7242a1'),
(471,17,1273,NULL,81,1,'2026-02-22 00:28:19','2026-02-22 00:28:19','29ce44f2-975b-4be8-81d0-fde18032d8df'),
(475,17,1276,NULL,81,1,'2026-02-22 00:29:01','2026-02-22 00:29:01','4641fc38-d194-4d05-b8ad-0a73bd82a444'),
(476,10,1277,NULL,81,1,'2026-02-22 00:29:01','2026-02-22 00:29:01','fe5bf2ad-1d4b-419e-9685-5dfd357d04d0'),
(477,17,1277,NULL,81,1,'2026-02-22 00:29:01','2026-02-22 00:29:01','da8c5db5-f837-468e-a9d6-4990a0fa6821'),
(479,17,1279,NULL,81,1,'2026-02-22 00:33:44','2026-02-22 00:33:44','78c65f5d-6200-4588-a072-e4ba3b31c30a'),
(481,17,1282,NULL,81,1,'2026-02-22 00:34:17','2026-02-22 00:34:17','239e5431-038e-4f38-bd93-511effac900b'),
(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'),
(487,17,1292,NULL,81,1,'2026-02-22 18:53:48','2026-02-22 18:53:48','ecae0a33-7090-4814-93b2-fba50902f44c'),
(488,17,1293,NULL,81,1,'2026-02-22 18:53:48','2026-02-22 18:53:48','a0cf1bf3-e7d7-45c5-92cb-0ebd26a14b92'),
(491,17,1296,NULL,81,1,'2026-02-22 20:58:05','2026-02-22 20:58:05','e28d98ed-eab2-4ebc-b556-af6a55102787'),
(492,17,1297,NULL,81,1,'2026-02-22 20:58:05','2026-02-22 20:58:05','c699f0a0-e5e4-4010-9c36-a84b97ba9bd2'),
(495,17,1300,NULL,81,1,'2026-02-22 20:59:10','2026-02-22 20:59:10','872ac3ee-b437-431e-94d6-93bd09f964c0'),
(496,17,1301,NULL,81,1,'2026-02-22 20:59:10','2026-02-22 20:59:10','0a48894a-f17f-4f9d-897d-890af86d71d2'),
(499,17,1304,NULL,81,1,'2026-02-22 21:13:23','2026-02-22 21:13:23','1d9ec82b-f08f-4897-8ef2-c7294f328516'),
(500,17,1305,NULL,81,1,'2026-02-22 21:13:23','2026-02-22 21:13:23','e57afbec-db72-4ac5-8bbc-fe05a54ae723'),
(503,17,1308,NULL,81,1,'2026-02-22 21:15:15','2026-02-22 21:15:15','ba74ea68-2ba5-4f56-b5e7-444397e78746'),
(504,17,1309,NULL,81,1,'2026-02-22 21:15:15','2026-02-22 21:15:15','38b9c0ca-fc6d-41e4-9d88-9e9628175ef3'),
(507,17,1312,NULL,81,1,'2026-02-22 21:15:32','2026-02-22 21:15:32','a64c88ac-6c35-42c6-a7ee-28e815416fb7'),
(508,17,1313,NULL,81,1,'2026-02-22 21:15:32','2026-02-22 21:15:32','9777f852-bb65-4c33-b4d9-1764bcd072c7'),
(511,17,1316,NULL,81,1,'2026-02-22 21:16:12','2026-02-22 21:16:12','b01c7e33-8080-42d4-bd93-31c1bc75ca55'),
(512,17,1317,NULL,81,1,'2026-02-22 21:16:12','2026-02-22 21:16:12','1fd260a8-b223-4169-82ea-0e2de72241f0'),
(514,17,1319,NULL,81,1,'2026-02-22 21:18:20','2026-02-22 21:18:20','4a2a4dff-8d8f-4de1-a47f-4ef3d2322c98'),
(519,17,1322,NULL,81,1,'2026-02-22 21:20:06','2026-02-22 21:20:06','bddb7da7-8d3f-4691-93fa-83b7d248ad0d'),
(524,13,1325,NULL,112,1,'2026-02-22 21:21:00','2026-02-22 21:21:00','2da5fa57-7d13-47ec-a386-e7118b3543f6'),
(525,13,1325,NULL,99,2,'2026-02-22 21:21:00','2026-02-22 21:21:00','22116d37-e2c9-48fa-9878-b0ad779abe54'),
(526,13,1325,NULL,89,3,'2026-02-22 21:21:00','2026-02-22 21:21:00','b2abe533-8401-4cd0-896e-a75be28e7445'),
(527,17,1326,NULL,81,1,'2026-02-22 21:21:00','2026-02-22 21:21:00','6ce08c48-0894-4d76-bfb9-44875c003e3c'),
(528,13,1327,NULL,112,1,'2026-02-22 21:21:00','2026-02-22 21:21:00','fc6b5dc3-d927-48e2-85af-16e5f3d9b953'),
(529,13,1327,NULL,99,2,'2026-02-22 21:21:00','2026-02-22 21:21:00','77943446-faca-44f6-b8c9-b7a42474f625'),
(530,13,1327,NULL,89,3,'2026-02-22 21:21:00','2026-02-22 21:21:00','41d6edfa-6541-42b0-8a98-777bd502a568'),
(532,17,1330,NULL,81,1,'2026-02-22 21:21:52','2026-02-22 21:21:52','c20397b0-2f7f-4adb-942b-6d762bb839dc'),
(536,10,1334,NULL,81,1,'2026-02-22 21:22:41','2026-02-22 21:22:41','6e4cf790-67b9-459b-aa13-dd6ee93363b5'),
(538,17,1335,NULL,81,1,'2026-02-22 21:22:41','2026-02-22 21:22:41','c526f27d-c8e2-40ca-b28b-920da42e252b'),
(539,10,1336,NULL,81,1,'2026-02-22 21:22:41','2026-02-22 21:22:41','cf844c2a-983b-4ee7-b60c-58a1bfc3a850'),
(540,17,1336,NULL,81,1,'2026-02-22 21:22:41','2026-02-22 21:22:41','19584e29-168d-4182-9237-92bcbc6c4ea7'),
(542,17,1338,NULL,81,1,'2026-02-22 21:23:02','2026-02-22 21:23:02','5ce82a9c-bbfb-45f3-993c-5141427a7ec2'),
(544,17,1340,NULL,81,1,'2026-02-22 21:23:16','2026-02-22 21:23:16','809e1c01-e500-4226-8845-35f2be1a8f72'),
(546,17,1346,NULL,81,1,'2026-02-22 21:27:46','2026-02-22 21:27:46','04fbd6a5-53e8-4353-b60c-d41199b22b30'),
(547,17,1349,NULL,81,1,'2026-02-22 21:35:40','2026-02-22 21:35:40','22804121-4c82-45b6-91e1-25f830693fcd'),
(549,17,1351,NULL,81,1,'2026-02-22 21:43:39','2026-02-22 21:43:39','be82097f-e0f9-4b69-b9a1-e8504ae08948'),
(553,17,1354,NULL,81,1,'2026-02-22 22:00:26','2026-02-22 22:00:26','4c180cf3-6d49-4f42-8ef8-8f73b19ab54a'),
(554,10,1355,NULL,81,1,'2026-02-22 22:00:26','2026-02-22 22:00:26','e275c7a6-36eb-4af3-a0c8-ce7e9d3239f5'),
(558,17,1358,NULL,81,1,'2026-02-22 22:08:59','2026-02-22 22:08:59','6d0cb920-0e5b-4b94-8468-1483d49e7e44'),
(564,10,1362,NULL,81,1,'2026-02-22 22:10:10','2026-02-22 22:10:10','211a7c38-d33d-4f24-8331-e9a91efe0ea6'),
(565,17,1362,NULL,81,1,'2026-02-22 22:10:10','2026-02-22 22:10:10','a6029dbb-94d3-4fa7-9380-345ef56555c8'),
(566,17,1363,NULL,81,1,'2026-02-22 22:10:10','2026-02-22 22:10:10','35f6b934-0471-4158-af66-2d432e969358'),
(567,10,1364,NULL,81,1,'2026-02-22 22:10:10','2026-02-22 22:10:10','d80c2148-c223-4a55-a2f7-8d5a42fb5d1f'),
(568,17,1364,NULL,81,1,'2026-02-22 22:10:10','2026-02-22 22:10:10','af6c625a-cc8a-4893-b282-c39179b45d99'),
(570,17,1367,NULL,81,1,'2026-02-22 22:16:09','2026-02-22 22:16:09','2bc2351a-bd68-46da-bcd9-b6a4f1af9355'),
(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'),
(582,17,1413,NULL,81,1,'2026-02-22 22:28:10','2026-02-22 22:28:10','e7b4bc6a-9a23-4203-ac87-fd9d92bfff58'),
(583,17,1414,NULL,81,1,'2026-02-22 22:28:10','2026-02-22 22:28:10','5b475646-368b-4541-ae03-8c53ec0021b1'),
(584,2,1422,NULL,757,1,'2026-02-24 14:17:13','2026-02-24 14:17:13','a80a71a5-7c8a-493c-a3c1-3db116d18601'),
(585,2,1428,NULL,312,1,'2026-02-24 14:43:36','2026-02-24 14:43:36','9c4b468e-8d8a-4cf3-b3f6-60a2e0c6e098'),
(586,2,1428,NULL,821,2,'2026-02-24 14:43:36','2026-02-24 14:43:36','5b7cef04-667e-4c74-903b-66177ee1f785'),
(587,10,1432,NULL,81,1,'2026-02-24 14:47:57','2026-02-24 14:47:57','82689352-bfb8-42ba-aad5-91b99696c2fd'),
(588,17,1432,NULL,81,1,'2026-02-24 14:47:57','2026-02-24 14:47:57','a37c0bad-9a2f-4f3a-ad78-b3e7bd66eed9'),
(589,17,1433,NULL,81,1,'2026-02-24 14:47:57','2026-02-24 14:47:57','998a3945-decc-40c8-b5de-5d0e0a1e8b4f'),
(590,10,1435,NULL,81,1,'2026-02-24 14:47:57','2026-02-24 14:47:57','e4f60883-d02f-4f78-aa45-f5bbf64ff99d'),
(591,17,1435,NULL,81,1,'2026-02-24 14:47:57','2026-02-24 14:47:57','f9fdcab9-817d-4c11-99fb-9bdfa1723a1d'),
(593,17,1438,NULL,81,1,'2026-02-24 14:48:15','2026-02-24 14:48:15','46cb7766-8adc-491d-b483-5854d4fcd995'),
(599,13,1460,NULL,112,1,'2026-03-02 17:03:26','2026-03-02 17:03:26','873e3e92-8f47-4206-b697-c89602499598'),
(600,13,1460,NULL,99,2,'2026-03-02 17:03:26','2026-03-02 17:03:26','bb39f5bb-735d-4222-a73a-f85685e4cd86'),
(601,13,1460,NULL,89,3,'2026-03-02 17:03:26','2026-03-02 17:03:26','709f74e7-6145-4f84-a1b4-3a22ea6727c2'),
(603,10,1486,NULL,81,1,'2026-03-02 17:03:26','2026-03-02 17:03:26','9e7d72f6-68a2-48a4-ade8-263967252ad1'),
(604,17,1486,NULL,81,1,'2026-03-02 17:03:26','2026-03-02 17:03:26','a2455439-e84e-4091-b71f-1dfa513e8219'),
(607,13,1489,NULL,112,1,'2026-03-02 17:03:26','2026-03-02 17:03:26','9513a562-aeaf-40f8-9d3e-44f2b77b45c8'),
(608,13,1489,NULL,99,2,'2026-03-02 17:03:26','2026-03-02 17:03:26','27be4604-a112-4c9e-a7de-330e5c0e0fa5'),
(609,13,1489,NULL,89,3,'2026-03-02 17:03:26','2026-03-02 17:03:26','9b88db35-814c-482a-bbe8-65a67a6b5158'),
(614,17,1441,NULL,1503,1,'2026-03-02 17:11:13','2026-03-02 17:11:13','ead4d74e-3a7a-4573-92cc-b33c9f21dbc1'),
(632,17,1558,NULL,1503,1,'2026-03-02 17:38:23','2026-03-02 17:38:23','c3974d45-68b4-4af2-b072-f10f50c30759'),
(634,17,1562,NULL,1503,1,'2026-03-02 17:38:50','2026-03-02 17:38:50','2ab1335e-cea3-4457-b09c-592be12af477'),
(636,17,1576,NULL,1503,1,'2026-03-02 17:40:04','2026-03-02 17:40:04','92063467-dfde-4eaf-aca2-1682ab4d4049'),
(638,17,1584,NULL,1503,1,'2026-03-02 17:40:46','2026-03-02 17:40:46','06840a62-2838-4f6d-9381-824887208caa'),
(640,17,1592,NULL,1503,1,'2026-03-02 17:42:37','2026-03-02 17:42:37','5804ea95-90a8-4f20-b9b5-bfa1e5e3c902'),
(642,17,1601,NULL,1503,1,'2026-03-02 17:44:37','2026-03-02 17:44:37','01e59b43-e8a7-4d00-b54f-7be901f91542'),
(644,17,1607,NULL,1503,1,'2026-03-02 17:47:21','2026-03-02 17:47:21','b78e6cfd-a716-4e72-beec-e1d561037d1f'),
(648,17,1612,NULL,1503,1,'2026-03-02 17:48:48','2026-03-02 17:48:48','d77423fb-9413-4380-b614-9c0bf3cad7f3'),
(649,10,1613,NULL,81,1,'2026-03-02 17:48:48','2026-03-02 17:48:48','7ecc7077-ad39-47ab-b636-54f56c0ea0ee'),
(650,17,1613,NULL,81,1,'2026-03-02 17:48:48','2026-03-02 17:48:48','a56bd142-bdc1-4bf8-abba-2cd6ae7159bb'),
(654,17,1616,NULL,1503,1,'2026-03-02 17:51:31','2026-03-02 17:51:31','ce2f3456-44dd-42d2-847f-eb467ea74c09'),
(655,10,1617,NULL,81,1,'2026-03-02 17:51:31','2026-03-02 17:51:31','14867392-33d0-4c16-b034-d8c4fb27c9d6'),
(656,17,1617,NULL,81,1,'2026-03-02 17:51:31','2026-03-02 17:51:31','a490ccae-cf83-4e50-8bd2-a46c9a085a97'),
(660,17,1620,NULL,1503,1,'2026-03-02 17:56:03','2026-03-02 17:56:03','24fdc7a2-28ca-4e27-bbaa-25e6c2a98031'),
(661,10,1621,NULL,81,1,'2026-03-02 17:56:03','2026-03-02 17:56:03','c0781c51-8f8e-4fd0-b44c-f011afe43c46'),
(662,17,1621,NULL,81,1,'2026-03-02 17:56:03','2026-03-02 17:56:03','2343cbbc-e7ad-4244-923b-88b3ebb501c2'),
(666,17,1624,NULL,1503,1,'2026-03-02 17:56:13','2026-03-02 17:56:13','ed231027-3d49-4986-8e9f-31c52d7d9aba'),
(667,10,1625,NULL,81,1,'2026-03-02 17:56:13','2026-03-02 17:56:13','7e59e4d7-ec30-4071-8130-5b4f1bc69056'),
(668,17,1625,NULL,81,1,'2026-03-02 17:56:13','2026-03-02 17:56:13','3ee15398-1c01-4b8d-a704-7a5a57a0cf62'),
(672,17,1628,NULL,1503,1,'2026-03-02 18:15:17','2026-03-02 18:15:17','3460a7f2-456c-467f-8c03-99a9d6df1017'),
(673,10,1629,NULL,81,1,'2026-03-02 18:15:17','2026-03-02 18:15:17','994af240-f43f-4df3-bd67-2eb9c9eea785'),
(674,17,1629,NULL,81,1,'2026-03-02 18:15:17','2026-03-02 18:15:17','b94bab83-91e7-4839-97a5-997470a0dbcc'),
(678,17,1632,NULL,1503,1,'2026-03-02 18:15:51','2026-03-02 18:15:51','12feac0b-6740-47d8-92d9-55e29f313124'),
(679,10,1633,NULL,81,1,'2026-03-02 18:15:51','2026-03-02 18:15:51','f98109cd-6c4b-4eca-beba-4d2eb1aaadb0'),
(680,17,1633,NULL,81,1,'2026-03-02 18:15:51','2026-03-02 18:15:51','85ffb839-fb24-4d75-b04b-dc5896c5b4f5'),
(684,17,1636,NULL,1503,1,'2026-03-02 18:16:18','2026-03-02 18:16:18','76bfe1be-3f02-4a63-a2ed-9db2caa812b5'),
(685,10,1637,NULL,81,1,'2026-03-02 18:16:18','2026-03-02 18:16:18','f7c27af2-f5de-441e-a95c-cec904804b35'),
(686,17,1637,NULL,81,1,'2026-03-02 18:16:18','2026-03-02 18:16:18','e3a544c5-51e6-4f76-85d6-2baeae56bfee'),
(694,10,1457,NULL,1638,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','33af24a3-7c59-47dd-90a2-fdfcb6e8bae5'),
(695,17,1457,NULL,1640,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','c6f20e32-265d-4db2-9b08-c0f719118fd9'),
(696,17,1643,NULL,1503,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','7e2330c6-306f-4a47-b1b9-ab50aaf40b76'),
(697,10,1644,NULL,1638,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','feacb43b-2016-451a-96ed-837c63974e80'),
(698,17,1644,NULL,1640,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','078baca9-69bf-4579-bed8-ec406c643c03'),
(699,10,1645,NULL,81,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','510d3ca1-7fb6-422e-a72c-77a74baf8359'),
(700,17,1645,NULL,81,1,'2026-03-02 18:22:44','2026-03-02 18:22:44','d7418a43-2007-475b-86be-585aeed82eb9'),
(704,17,1648,NULL,1503,1,'2026-03-02 18:25:32','2026-03-02 18:25:32','22564647-28ad-4d20-a639-9d3cb7604a85'),
(705,10,1649,NULL,1638,1,'2026-03-02 18:25:32','2026-03-02 18:25:32','f91f265b-55ed-4aa7-8f87-9f2e1e01b983'),
(706,17,1649,NULL,1640,1,'2026-03-02 18:25:32','2026-03-02 18:25:32','7913d68b-3547-4434-8cc3-57f3e59ae9c9'),
(710,17,1652,NULL,1503,1,'2026-03-02 18:27:42','2026-03-02 18:27:42','2d4827bd-2d25-41ae-9e0f-a82201e63c58'),
(711,10,1653,NULL,1638,1,'2026-03-02 18:27:42','2026-03-02 18:27:42','c0a0ff09-dfa5-4e1a-aadb-d489aafcfb57'),
(712,17,1653,NULL,1640,1,'2026-03-02 18:27:42','2026-03-02 18:27:42','6cd01b0d-e27c-47b3-9ee7-d876b7c855ca'),
(716,17,1656,NULL,1503,1,'2026-03-02 18:28:41','2026-03-02 18:28:41','359d6191-9909-4075-b7b6-c87642e14768'),
(717,10,1657,NULL,1638,1,'2026-03-02 18:28:41','2026-03-02 18:28:41','fa0a87a1-0dbb-473c-8d90-b72ca4706a2e'),
(718,17,1657,NULL,1640,1,'2026-03-02 18:28:41','2026-03-02 18:28:41','9f3190a6-0dc1-4e72-9982-afb4f00094f9'),
(722,17,1660,NULL,1503,1,'2026-03-02 18:29:27','2026-03-02 18:29:27','6618c3ce-1ae5-40e5-a692-1a35e5c17eee'),
(723,10,1661,NULL,1638,1,'2026-03-02 18:29:28','2026-03-02 18:29:28','c25ed941-0960-44c5-9097-ad01b8a0d7b8'),
(724,17,1661,NULL,1640,1,'2026-03-02 18:29:28','2026-03-02 18:29:28','3c676ffa-48f2-49a7-a1a1-36b41fa90cc7'),
(728,17,1664,NULL,1503,1,'2026-03-02 18:29:57','2026-03-02 18:29:57','b1135207-5c3d-48ff-85be-31f1e339042e'),
(729,10,1665,NULL,1638,1,'2026-03-02 18:29:57','2026-03-02 18:29:57','59ff4285-7b86-4524-b8f8-d36e7c313903'),
(730,17,1665,NULL,1640,1,'2026-03-02 18:29:57','2026-03-02 18:29:57','904a9a87-ef6f-4f25-96f6-79315e75a875'),
(734,17,1668,NULL,1503,1,'2026-03-02 18:31:09','2026-03-02 18:31:09','5f504d6c-0739-4949-8618-7116111c6f45'),
(735,10,1669,NULL,1638,1,'2026-03-02 18:31:09','2026-03-02 18:31:09','47f1df9d-23f3-42f1-8035-1bd863fac09c'),
(736,17,1669,NULL,1640,1,'2026-03-02 18:31:09','2026-03-02 18:31:09','6f2d2f8a-82bb-4e65-8f0b-52216881ac9e'),
(740,17,1672,NULL,1503,1,'2026-03-02 18:36:15','2026-03-02 18:36:15','78877563-dfd4-460b-af67-1d83297de700'),
(741,10,1673,NULL,1638,1,'2026-03-02 18:36:15','2026-03-02 18:36:15','30075353-94be-4380-a32d-2b0669206aac'),
(742,17,1673,NULL,1640,1,'2026-03-02 18:36:15','2026-03-02 18:36:15','624b4846-53de-4312-b5d2-f6842a533447'),
(746,17,1676,NULL,1503,1,'2026-03-02 18:37:35','2026-03-02 18:37:35','dea6a2bf-fb27-43d4-8806-f5f4cbabe73d'),
(747,10,1677,NULL,1638,1,'2026-03-02 18:37:35','2026-03-02 18:37:35','7a2e91d8-048a-4a8f-b6ca-8e8201364c14'),
(748,17,1677,NULL,1640,1,'2026-03-02 18:37:35','2026-03-02 18:37:35','096f8f99-215b-4267-b56a-c1e9f6c6cf42'),
(752,17,1680,NULL,1503,1,'2026-03-02 18:39:40','2026-03-02 18:39:40','a9b40794-cdef-459c-8b89-bb5be05c5859'),
(753,10,1681,NULL,81,1,'2026-03-02 18:39:40','2026-03-02 18:39:40','76b0eed2-3e7d-4b07-b910-3aeba4b35e2f'),
(756,17,1684,NULL,1503,1,'2026-03-02 18:40:58','2026-03-02 18:40:58','ecfd86b7-b5dc-49f1-af39-684ed146f63b'),
(757,10,1685,NULL,81,1,'2026-03-02 18:40:58','2026-03-02 18:40:58','1205c9c5-8b4d-4bfa-a483-9513441287d3'),
(760,17,1688,NULL,1503,1,'2026-03-02 18:41:15','2026-03-02 18:41:15','bbd98f04-cebb-418c-a908-507c48d26368'),
(761,10,1689,NULL,81,1,'2026-03-02 18:41:15','2026-03-02 18:41:15','bada38a9-cfd9-44cb-94e5-68107063e4bb'),
(765,10,1458,NULL,1691,1,'2026-03-02 18:43:10','2026-03-02 18:43:10','51e1fed8-1231-4d52-b30b-4b16fdcd3ed8'),
(766,17,1693,NULL,1503,1,'2026-03-02 18:43:10','2026-03-02 18:43:10','9247a22e-a482-44d6-bfe2-e976d89cb5ef'),
(767,10,1694,NULL,1691,1,'2026-03-02 18:43:10','2026-03-02 18:43:10','8d73e303-b6e3-45f0-b3d2-d9d8ad5f2eb7'),
(770,17,1697,NULL,1503,1,'2026-03-02 18:43:45','2026-03-02 18:43:45','16b81b43-1e19-483a-a7f9-7a84038188c9'),
(771,10,1698,NULL,1691,1,'2026-03-02 18:43:45','2026-03-02 18:43:45','2850bdcb-8768-4859-a9ad-ce43c81d94af'),
(776,17,1702,NULL,1503,1,'2026-03-02 18:44:26','2026-03-02 18:44:26','41467632-4997-4790-b9e6-a4e421bd3749'),
(777,10,1703,NULL,1638,1,'2026-03-02 18:44:26','2026-03-02 18:44:26','56b86491-724c-4066-9af5-7e8d7e938707'),
(778,17,1703,NULL,1640,1,'2026-03-02 18:44:26','2026-03-02 18:44:26','64522afe-e7d1-49ff-ac26-e27905c6eb93'),
(779,10,1704,NULL,1691,1,'2026-03-02 18:44:27','2026-03-02 18:44:27','e091defc-5728-4361-94e1-09acd4f5d229'),
(780,17,1705,NULL,1503,1,'2026-03-02 18:47:24','2026-03-02 18:47:24','57d36fb9-21d9-4fe0-bf70-f30b079dcf85'),
(782,17,1707,NULL,1503,1,'2026-03-02 18:48:46','2026-03-02 18:48:46','e4812aad-539e-4c04-9a81-290232f6d76a'),
(786,17,1710,NULL,1503,1,'2026-03-02 19:04:26','2026-03-02 19:04:26','cf3756b9-305b-4f5f-9d40-528fb58f5b51'),
(787,2,1711,NULL,1640,1,'2026-03-02 19:04:26','2026-03-02 19:04:26','36fcebf4-cea8-4199-956b-5ec54d992aa1'),
(789,17,1715,NULL,1503,1,'2026-03-02 19:07:29','2026-03-02 19:07:29','0b912029-0f90-446b-85e4-05c4ec5dcc5b'),
(791,17,1721,NULL,1503,1,'2026-03-02 19:21:42','2026-03-02 19:21:42','37dbb371-4987-4414-ada1-d8ab9fcbd8e8'),
(793,17,1735,NULL,1503,1,'2026-03-02 19:26:19','2026-03-02 19:26:19','842c82a1-0d95-4be3-965a-56f47389e2e5'),
(795,17,1747,NULL,1503,1,'2026-03-02 19:34:56','2026-03-02 19:34:56','f4d1931f-8e4b-424d-b5e6-8fa7cf8cbbf0'),
(799,2,1459,NULL,1749,1,'2026-03-02 19:44:37','2026-03-02 19:44:37','97f5373b-6d1c-4b26-b377-546d68a6deda'),
(800,17,1751,NULL,1503,1,'2026-03-02 19:44:37','2026-03-02 19:44:37','ae212374-4c83-4cc5-87f1-283a40a0ef7b'),
(801,2,1752,NULL,1749,1,'2026-03-02 19:44:37','2026-03-02 19:44:37','033a9f43-cba2-4f83-86c6-10b420ed2bb8'),
(805,17,1755,NULL,1503,1,'2026-03-02 19:47:09','2026-03-02 19:47:09','8e4b9238-81b1-4aaf-b0da-516cccc5cbbf'),
(806,10,1756,NULL,1638,1,'2026-03-02 19:47:09','2026-03-02 19:47:09','737ff628-ebdf-46bd-ab11-74dcf0c4f7a1'),
(807,17,1756,NULL,1640,1,'2026-03-02 19:47:09','2026-03-02 19:47:09','36809945-d311-4e5f-af6b-0224e850e5db'),
(811,17,1759,NULL,1503,1,'2026-03-02 19:47:34','2026-03-02 19:47:34','210944ae-0bb7-4c21-90bc-e977a10e070b'),
(812,10,1760,NULL,1638,1,'2026-03-02 19:47:34','2026-03-02 19:47:34','4c311042-dd09-4c01-979d-8ace9f7d113b'),
(813,17,1760,NULL,1640,1,'2026-03-02 19:47:34','2026-03-02 19:47:34','148a3f14-2065-4b11-9c24-61e638bbcbfc'),
(815,17,1762,NULL,1503,1,'2026-03-02 19:48:05','2026-03-02 19:48:05','013320ee-36fb-449b-b069-e1c145a78c8e'),
(817,17,1764,NULL,1503,1,'2026-03-02 19:48:24','2026-03-02 19:48:24','922f8981-0635-4a36-8e45-8174fb7feba5'),
(820,17,1767,NULL,1503,1,'2026-03-02 19:48:38','2026-03-02 19:48:38','4074c8a2-5b94-4ac1-bfb6-8652ff98fd1c'),
(821,2,1768,NULL,1749,1,'2026-03-02 19:48:38','2026-03-02 19:48:38','6a3b2816-f09b-4ba7-b2ac-b2561159de39'),
(824,17,1771,NULL,1503,1,'2026-03-02 19:49:05','2026-03-02 19:49:05','4673e972-6004-45db-af05-d325bc2ab3ed'),
(825,2,1772,NULL,1749,1,'2026-03-02 19:49:05','2026-03-02 19:49:05','09907dd5-2002-469d-84ce-4670eb8d6cb6'),
(828,17,1775,NULL,1503,1,'2026-03-02 19:49:25','2026-03-02 19:49:25','38a81de6-8cd8-4513-93d8-6c1c0ecf3ac0'),
(829,2,1776,NULL,1749,1,'2026-03-02 19:49:25','2026-03-02 19:49:25','07d0a052-de26-4665-b96c-eb95de02e1a9'),
(832,17,1779,NULL,1503,1,'2026-03-02 19:49:43','2026-03-02 19:49:43','c9ee084f-1ab9-48d0-a733-0220dfdf3f48'),
(833,2,1780,NULL,1749,1,'2026-03-02 19:49:43','2026-03-02 19:49:43','a4f47751-15a9-4e68-93de-030530b75d99'),
(838,17,1783,NULL,1503,1,'2026-03-02 19:50:16','2026-03-02 19:50:16','eebe8e45-b43a-4e04-b04b-20ef3ebdd7cd'),
(839,13,1784,NULL,112,1,'2026-03-02 19:50:16','2026-03-02 19:50:16','a4bbcbbc-2457-4690-8522-cd6a5f23518b'),
(840,13,1784,NULL,99,2,'2026-03-02 19:50:16','2026-03-02 19:50:16','abb32fa1-d38e-4191-9882-def3f09c4f39'),
(841,13,1784,NULL,89,3,'2026-03-02 19:50:16','2026-03-02 19:50:16','62a002d9-1bc0-4065-a994-72bcb666147f'),
(843,17,1788,NULL,1503,1,'2026-03-02 20:03:22','2026-03-02 20:03:22','3e136418-da2a-4302-97c8-839c696539b8'),
(845,17,1792,NULL,1503,1,'2026-03-02 20:04:28','2026-03-02 20:04:28','95891bb6-0ad5-4800-b90c-f5591db2ede8'),
(847,17,1796,NULL,1503,1,'2026-03-02 20:06:25','2026-03-02 20:06:25','b2518892-bff5-4deb-9d11-05bacb97471d'),
(849,17,1800,NULL,1503,1,'2026-03-02 20:06:40','2026-03-02 20:06:40','e7db8c2c-c5f5-4052-a1f5-42ebf9496b27'),
(851,10,1814,NULL,1638,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','a4e8451e-e1a3-427d-92b0-dcd286ae7717'),
(852,17,1814,NULL,1640,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','1ca473ee-f740-4e22-8421-cc482a2102d5'),
(854,13,1816,NULL,112,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','ecdc969e-e90d-481c-a50d-7867b3de6d06'),
(855,13,1816,NULL,99,2,'2026-03-02 21:08:38','2026-03-02 21:08:38','d2124fc7-9a79-42dc-9a27-81402836b855'),
(856,13,1816,NULL,89,3,'2026-03-02 21:08:38','2026-03-02 21:08:38','48703e85-502b-489f-8cde-8b180fe57719'),
(857,17,1828,NULL,1503,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','9c88aef7-5ce8-4817-86f9-b1ade722a310'),
(858,10,1840,NULL,1638,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','385af29c-8f94-498b-84da-67faed3eaa23'),
(859,17,1840,NULL,1640,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','5fd2d471-b0c7-4062-b9a9-9cffa09714e2'),
(860,2,1841,NULL,1749,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','f5df5298-a773-4e73-b78b-2c0d2ca616d9'),
(861,13,1842,NULL,112,1,'2026-03-02 21:08:38','2026-03-02 21:08:38','0b950415-f008-48dd-8296-71f0e14eb659'),
(862,13,1842,NULL,99,2,'2026-03-02 21:08:38','2026-03-02 21:08:38','10323884-52a6-47af-ba91-4f342902555c'),
(863,13,1842,NULL,89,3,'2026-03-02 21:08:38','2026-03-02 21:08:38','80ba964d-b826-461b-843f-d3bc5a6bb1d3'),
(865,17,1862,NULL,1503,1,'2026-03-02 21:11:55','2026-03-02 21:11:55','c5e6cfb3-1734-48be-a119-cb4d42a9ea00'),
(867,17,1872,NULL,1503,1,'2026-03-02 21:12:20','2026-03-02 21:12:20','73d45383-1308-43d5-b2bb-e501909fd8ec'),
(868,17,1874,NULL,1503,1,'2026-03-02 21:12:34','2026-03-02 21:12:34','17dd916b-7e4f-4318-9d30-61041ccfcf5c'),
(870,17,1877,NULL,1503,1,'2026-03-02 21:12:52','2026-03-02 21:12:52','50dd54ec-ad94-490e-af38-d44a93df313f'),
(872,17,1885,NULL,1503,1,'2026-03-02 21:16:57','2026-03-02 21:16:57','df5f0e77-88ba-4ab8-867b-af8167212698'),
(877,17,1915,NULL,1503,1,'2026-03-02 21:29:27','2026-03-02 21:29:27','e838e0fd-9215-4936-8b87-2f2b996f50b7'),
(878,10,1916,NULL,1638,1,'2026-03-02 21:29:27','2026-03-02 21:29:27','59d53449-a4b5-4c30-aced-e110c261cdd4'),
(879,17,1916,NULL,1640,1,'2026-03-02 21:29:27','2026-03-02 21:29:27','8068fd6c-d54c-4dfb-8213-086b57b4b4af'),
(880,2,1917,NULL,1749,1,'2026-03-02 21:29:27','2026-03-02 21:29:27','3969ecb9-6d7b-427f-95ce-2200a5711310'),
(884,17,1931,NULL,1503,1,'2026-03-02 21:30:03','2026-03-02 21:30:03','6b05580c-bb13-405e-be6e-ba178ab13b7a'),
(885,10,1932,NULL,1638,1,'2026-03-02 21:30:03','2026-03-02 21:30:03','3a187784-8ae3-464d-aa8d-e57797dd903e'),
(886,17,1932,NULL,1640,1,'2026-03-02 21:30:03','2026-03-02 21:30:03','280358d8-fd71-4885-955b-3e4c7e975940'),
(889,17,1935,NULL,1503,1,'2026-03-02 21:31:38','2026-03-02 21:31:38','e4827add-ad92-4970-a8f5-ac9fe333b7fc'),
(890,2,1936,NULL,1749,1,'2026-03-02 21:31:38','2026-03-02 21:31:38','fdb893bd-dfb2-4bf8-b7d4-fe85943b4d05'),
(900,17,1802,NULL,1937,1,'2026-03-02 21:42:37','2026-03-02 21:42:37','34429bb2-2e1c-4b3b-acd0-78c5bd918cc3'),
(901,10,1943,NULL,1939,1,'2026-03-02 21:42:37','2026-03-02 21:42:37','477d8caf-7b39-4083-9ea4-96e5d729cc65'),
(902,17,1943,NULL,1941,1,'2026-03-02 21:42:37','2026-03-02 21:42:37','689371fd-0246-4c7d-a195-3c21140eee42'),
(903,17,1944,NULL,1937,1,'2026-03-02 21:42:37','2026-03-02 21:42:37','222bcb3b-74ea-4244-9313-a7d3f9f5344b'),
(904,10,1945,NULL,1939,1,'2026-03-02 21:42:37','2026-03-02 21:42:37','8aed9208-d144-4871-bdd6-a85e30846941'),
(905,17,1945,NULL,1941,1,'2026-03-02 21:42:37','2026-03-02 21:42:37','4fb3e59a-3d03-434c-a269-8fa5493030ad'),
(909,2,1815,NULL,1946,1,'2026-03-02 21:44:06','2026-03-02 21:44:06','86150c63-b167-42aa-bd80-2e2152427dbf'),
(910,17,1949,NULL,1937,1,'2026-03-02 21:44:06','2026-03-02 21:44:06','d0de95e8-bf9a-4278-bce4-98bd9ca283b9'),
(911,2,1950,NULL,1946,1,'2026-03-02 21:44:06','2026-03-02 21:44:06','0a9bfdcf-32cd-4a88-a441-bd9620f8f131'),
(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'),
(915,2,1964,NULL,1946,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','372b1aa7-3d96-4c92-98ed-364a7e2a04c2'),
(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'),
(919,17,1978,NULL,1937,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','4db1f6c4-e0e8-40e1-ae43-10274f9d5b35'),
(920,10,1990,NULL,1939,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','444e97ad-641d-4a41-9e86-1176d2454e29'),
(921,17,1990,NULL,1941,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','61bf4f00-617c-4f06-ac0b-78cf9d14da4c'),
(922,2,1991,NULL,1946,1,'2026-03-02 21:45:13','2026-03-02 21:45:13','154d7f23-2559-4cdf-8613-7156d918f3a1'),
(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'),
(932,17,1951,NULL,2006,1,'2026-03-02 21:54:33','2026-03-02 21:54:33','7ea1dc97-83c2-4ff5-86ad-160e574dcb11'),
(935,17,2021,NULL,2006,1,'2026-03-02 21:54:33','2026-03-02 21:54:33','6587b406-4a98-4182-92f1-768122478327'),
(936,10,2033,NULL,1939,1,'2026-03-02 21:54:34','2026-03-02 21:54:34','eaf3c9f3-3f2f-474b-81a0-e2a15b8bf20d'),
(937,17,2033,NULL,1941,1,'2026-03-02 21:54:34','2026-03-02 21:54:34','c568853e-eb62-441b-a0e5-1d6ebe941753'),
(944,10,2020,NULL,2036,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','5c76331c-02b9-401c-bd94-9e22b465c32a'),
(945,17,2020,NULL,2034,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','57476aef-5a9e-4c92-966b-ce7dc501c80b'),
(946,17,2062,NULL,2006,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','f77e4d4f-2195-4338-a171-b5bd83a9d76b'),
(947,10,2063,NULL,2036,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','4a1a3940-b24d-402e-8a36-8211fd67bbc4'),
(948,17,2063,NULL,2034,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','22500740-63bc-4e34-9adb-f0e24334b272'),
(949,2,2064,NULL,1946,1,'2026-03-02 22:03:47','2026-03-02 22:03:47','d775523f-b9e2-44fa-9ab9-869b1837493f'),
(953,17,2079,NULL,2006,1,'2026-03-02 22:05:29','2026-03-02 22:05:29','76276115-e901-4b62-9744-231f5b101301'),
(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'),
(956,17,2081,NULL,2006,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','6724cfbc-9ba7-4288-83a9-2de481bf3f5a'),
(957,10,2093,NULL,2036,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','eb722ee1-772d-44ef-9eda-45d1dd3dff0c'),
(958,17,2093,NULL,2034,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','c4ff26be-496c-42ad-8b38-7ded0db62099'),
(959,2,2094,NULL,1946,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','cde4690a-a0d8-4d77-bf21-24176d921104'),
(960,13,2095,NULL,112,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','5974c3d3-3853-4508-a6f7-8b12da4de6f3'),
(961,13,2095,NULL,99,2,'2026-03-02 22:08:18','2026-03-02 22:08:18','499ffb96-1e85-4bbd-bec9-48f444c5df7f'),
(962,13,2095,NULL,89,3,'2026-03-02 22:08:18','2026-03-02 22:08:18','da759824-6867-449b-89f5-7de307a4b304'),
(963,17,2109,NULL,2006,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','ef8bc861-b15b-4c3a-b598-86b9f28030a1'),
(964,10,2121,NULL,2036,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','c189bcc2-6db1-47b3-bca9-672564d7a3c2'),
(965,17,2121,NULL,2034,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','ec4ab529-12f9-4016-b95d-63a5d5350e72'),
(966,2,2122,NULL,1946,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','bc41b42c-5c9f-4f54-90fc-5603ed1132ba'),
(967,13,2123,NULL,112,1,'2026-03-02 22:08:18','2026-03-02 22:08:18','f402688d-ab2f-4761-8d5e-8cfd0c342d1a'),
(968,13,2123,NULL,99,2,'2026-03-02 22:08:18','2026-03-02 22:08:18','80be5034-9d26-49f0-bb2e-dbf4c1882816'),
(969,13,2123,NULL,89,3,'2026-03-02 22:08:18','2026-03-02 22:08:18','9cdad0a0-64ad-4d1d-ac18-9a9f6a7499cf'),
(970,17,2137,NULL,2006,1,'2026-03-02 22:08:30','2026-03-02 22:08:30','c89e9d02-583c-4dd9-abc7-41136bac8b3a'),
(972,17,2150,NULL,2006,1,'2026-03-02 22:25:33','2026-03-02 22:25:33','b388a2ce-066a-4a6f-a497-043e7e83fe01'),
(973,17,2162,NULL,2006,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','4ba88406-9037-44c5-b461-080e4a5d0bdd'),
(974,10,2174,NULL,2036,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','1f517e07-db38-45cc-8032-c07efdf4e3ed'),
(975,17,2174,NULL,2034,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','bb8016fa-4611-4dda-bc1b-c51d50204cdd'),
(976,2,2175,NULL,1946,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','f229dce9-749d-4d8e-9173-aa41d7fb02ce'),
(977,13,2176,NULL,112,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','6984446c-ad5a-4872-940f-41d4018b62d8'),
(978,13,2176,NULL,99,2,'2026-03-02 22:26:42','2026-03-02 22:26:42','c8d97b97-6698-4cd0-aebc-dfab101cbc41'),
(979,13,2176,NULL,89,3,'2026-03-02 22:26:42','2026-03-02 22:26:42','798cdb6a-917f-4dd2-9706-8d9300d4a578'),
(980,17,2190,NULL,2006,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','8d5b7600-ac36-415a-886b-f1cdad9ac50b'),
(981,10,2202,NULL,2036,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','423fb7df-7113-4267-b1df-22198cb670df'),
(982,17,2202,NULL,2034,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','3111494f-f2e6-4a49-be9d-2051dd2fdf99'),
(983,2,2203,NULL,1946,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','98231c67-30ed-4112-ad49-a21199b37904'),
(984,13,2204,NULL,112,1,'2026-03-02 22:26:42','2026-03-02 22:26:42','941130c4-c1d1-452a-b082-589ec528980a'),
(985,13,2204,NULL,99,2,'2026-03-02 22:26:42','2026-03-02 22:26:42','65498d0d-a9d3-43ac-811a-bbe4ddd1303e'),
(986,13,2204,NULL,89,3,'2026-03-02 22:26:42','2026-03-02 22:26:42','da082e55-3b29-4939-aac6-1c21be1d5540'),
(991,17,2253,NULL,2006,1,'2026-03-02 22:42:39','2026-03-02 22:42:39','26012a22-ad36-46e8-8f48-fef68e8030b8'),
(992,10,2265,NULL,2036,1,'2026-03-02 22:42:39','2026-03-02 22:42:39','34971052-71bd-4b48-bb08-9c4e70bc4c90'),
(993,17,2265,NULL,2034,1,'2026-03-02 22:42:39','2026-03-02 22:42:39','126df7a5-0645-49be-9707-01b969c90c91'),
(994,2,2266,NULL,1946,1,'2026-03-02 22:42:39','2026-03-02 22:42:39','1cb9205d-0dc5-4f1c-80ee-28fe1930c137'),
(998,17,2280,NULL,2006,1,'2026-03-02 22:42:57','2026-03-02 22:42:57','7bdee0ff-4170-47a1-b24d-c41c429dd077'),
(999,10,2281,NULL,2036,1,'2026-03-02 22:42:57','2026-03-02 22:42:57','f56c0d35-2b81-464f-af88-66f1eb20b3e0'),
(1000,17,2281,NULL,2034,1,'2026-03-02 22:42:57','2026-03-02 22:42:57','6f1ef40b-b49f-452a-ac8d-85007fbd8342'),
(1004,17,2284,NULL,2006,1,'2026-03-02 22:44:08','2026-03-02 22:44:08','f949ac41-0921-4a86-a042-4f3dd25d6228'),
(1005,10,2285,NULL,2036,1,'2026-03-02 22:44:08','2026-03-02 22:44:08','ae579337-3e52-4022-8a3f-569f7683fd81'),
(1006,17,2285,NULL,2034,1,'2026-03-02 22:44:08','2026-03-02 22:44:08','372cbe57-c856-4727-bdc4-361144eb3f2f'),
(1011,13,2300,NULL,112,1,'2026-03-02 22:50:42','2026-03-02 22:50:42','c1c97ec7-d6a5-4a05-87ad-84a0f859a6ce'),
(1012,13,2300,NULL,99,2,'2026-03-02 22:50:42','2026-03-02 22:50:42','8a5b6b2b-a35a-4522-b2eb-275484f4837d'),
(1013,13,2300,NULL,89,3,'2026-03-02 22:50:42','2026-03-02 22:50:42','d1d24de6-bead-4896-af26-c4fad31c98b5'),
(1014,17,2313,NULL,2006,1,'2026-03-02 22:50:42','2026-03-02 22:50:42','4a95198e-8251-4a65-b8ee-b73cf7bdec3a'),
(1015,10,2325,NULL,2036,1,'2026-03-02 22:50:42','2026-03-02 22:50:42','03332786-7134-40ac-9f88-113f80ebf21a'),
(1016,17,2325,NULL,2034,1,'2026-03-02 22:50:42','2026-03-02 22:50:42','2a3566f9-784d-4f12-8329-33c7b545a4cb'),
(1017,2,2326,NULL,1946,1,'2026-03-02 22:50:42','2026-03-02 22:50:42','fae8e581-5ced-4a77-9a62-06278e41a445'),
(1018,13,2327,NULL,112,1,'2026-03-02 22:50:42','2026-03-02 22:50:42','f956d20a-eee3-418b-bb08-579127cc0ec4'),
(1019,13,2327,NULL,99,2,'2026-03-02 22:50:42','2026-03-02 22:50:42','f3514423-460d-4e3a-a068-eb9c82074e86'),
(1020,13,2327,NULL,89,3,'2026-03-02 22:50:42','2026-03-02 22:50:42','ce04e6c1-08aa-41ba-b2aa-dd58b6ed50c9'),
(1029,17,2286,NULL,2341,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','61e7bd40-b639-4dc2-81df-28b16f431e3a'),
(1030,10,2298,NULL,2343,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','92722704-23e2-40e9-9851-1fd5e86c8a75'),
(1031,17,2298,NULL,2341,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','4d103417-9f91-4773-b3e5-6dffb38cfd3f'),
(1032,2,2299,NULL,2342,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','fb834836-48c3-470e-82da-b92f07d07f34'),
(1033,17,2378,NULL,2341,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','5062cb68-078a-4df1-be25-0fa946d22793'),
(1034,10,2390,NULL,2343,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','2cca4a92-3497-41dd-86e8-7b93559a79a1'),
(1035,17,2390,NULL,2341,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','d5157d85-12f1-49f6-9387-c7546b55ef5f'),
(1036,2,2391,NULL,2342,1,'2026-03-02 23:14:36','2026-03-02 23:14:36','8379c9b5-c893-4233-8784-ba8d6afdc10e'),
(1038,17,2404,NULL,2341,1,'2026-03-02 23:14:59','2026-03-02 23:14:59','9fae6508-6151-426e-a44e-f0bd9a9379c4'),
(1042,17,2407,NULL,2341,1,'2026-03-02 23:15:24','2026-03-02 23:15:24','ff8983df-1566-4005-871b-d87e4afa32b8'),
(1043,10,2408,NULL,2343,1,'2026-03-02 23:15:24','2026-03-02 23:15:24','028df401-e34a-4b7b-9c2d-6c1621e1aa47'),
(1044,17,2408,NULL,2341,1,'2026-03-02 23:15:24','2026-03-02 23:15:24','1c96a87f-854f-408c-8c69-798f8954fb0b'),
(1045,17,2409,NULL,2006,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','41e7f42d-a2a0-4267-ba6a-1fad220fa111'),
(1046,10,2421,NULL,2036,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','dfd4f30c-bbea-4aa0-bc62-29517377cccc'),
(1047,17,2421,NULL,2034,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','6981f97d-0e26-4a5b-8242-a65102edb7dc'),
(1048,2,2422,NULL,1946,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','5bff3edc-00d0-4400-b5a7-9709237f317e'),
(1049,13,2423,NULL,112,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','539f1fda-ebf1-4cde-8cc1-3ed696ef501a'),
(1050,13,2423,NULL,99,2,'2026-03-02 23:19:00','2026-03-02 23:19:00','cd7d60b0-b818-4c09-b488-edb0dbcbfab6'),
(1051,13,2423,NULL,89,3,'2026-03-02 23:19:00','2026-03-02 23:19:00','3f68d437-72c0-48c8-804c-d310b84f662a'),
(1052,17,2436,NULL,2006,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','763c1ada-ff3c-4797-b8bb-353f00f1f7b8'),
(1053,10,2448,NULL,2036,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','2a4209fb-f479-4db7-8b42-9c6086acb609'),
(1054,17,2448,NULL,2034,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','0e34aa6e-5d8a-4c92-8879-2f0a99a450a7'),
(1055,2,2449,NULL,1946,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','52c9ed11-d5cd-47d6-b76b-8429d47ee320'),
(1056,13,2450,NULL,112,1,'2026-03-02 23:19:00','2026-03-02 23:19:00','aa8c3ef0-30b4-48c9-ab4c-47de06f4a27a'),
(1057,13,2450,NULL,99,2,'2026-03-02 23:19:00','2026-03-02 23:19:00','aa67f6d0-20d2-4345-8930-0e378df70ad7'),
(1058,13,2450,NULL,89,3,'2026-03-02 23:19:00','2026-03-02 23:19:00','1c8dd75e-9ab6-4ece-ab7f-25611d409494'),
(1063,17,2498,NULL,2006,1,'2026-03-02 23:27:03','2026-03-02 23:27:03','3c4fb6c7-3365-4f44-afe3-aef197e4fced'),
(1064,10,2510,NULL,2036,1,'2026-03-02 23:27:03','2026-03-02 23:27:03','a2495330-880b-42ab-ae43-cbf6c234e3f9'),
(1065,17,2510,NULL,2034,1,'2026-03-02 23:27:03','2026-03-02 23:27:03','03107db1-c432-4e9c-ad93-209e94e093a7'),
(1066,2,2511,NULL,1946,1,'2026-03-02 23:27:03','2026-03-02 23:27:03','c93b07d7-6012-47e3-815c-b6194ac9bc8b'),
(1071,13,2537,NULL,112,1,'2026-03-02 23:42:31','2026-03-02 23:42:31','dff96737-0cc7-4e8c-8cfd-418a67d48d07'),
(1072,13,2537,NULL,99,2,'2026-03-02 23:42:31','2026-03-02 23:42:31','c601e333-8749-46a8-924b-fc2eb6062f06'),
(1073,13,2537,NULL,89,3,'2026-03-02 23:42:31','2026-03-02 23:42:31','ba6b5331-b98d-4080-a4e9-95cbf8e844c7'),
(1074,17,2550,NULL,2341,1,'2026-03-02 23:42:31','2026-03-02 23:42:31','ddf85d3c-9fc8-4cfc-a066-b8c5bcb2e250'),
(1075,10,2562,NULL,2343,1,'2026-03-02 23:42:31','2026-03-02 23:42:31','4b06fcb7-28b2-4409-b959-e28eb582d275'),
(1076,17,2562,NULL,2341,1,'2026-03-02 23:42:31','2026-03-02 23:42:31','4a5bac16-b1ea-459d-9c34-2858ba830325'),
(1077,2,2563,NULL,2342,1,'2026-03-02 23:42:31','2026-03-02 23:42:31','28051029-8363-4072-b9a1-5440e9c5bafc'),
(1078,13,2564,NULL,112,1,'2026-03-02 23:42:31','2026-03-02 23:42:31','2ec9a397-36a5-4e8b-a740-072582a6bde9'),
(1079,13,2564,NULL,99,2,'2026-03-02 23:42:31','2026-03-02 23:42:31','adf8e065-b164-4235-9faf-6b1cf5781720'),
(1080,13,2564,NULL,89,3,'2026-03-02 23:42:31','2026-03-02 23:42:31','5951d26a-374e-465b-b868-9227879427f6'),
(1089,17,2523,NULL,2581,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','5b0cdbba-4cb7-4368-a9ac-3afb47271280'),
(1090,10,2535,NULL,2583,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','0d65fa9f-e053-41d1-a7f2-7a47df46e46d'),
(1091,17,2535,NULL,2582,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','de8331f9-c8be-4b3f-be5c-f38faaf9e32b'),
(1092,2,2536,NULL,2581,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','8d55e49f-e79c-45fb-98c9-be486f9bd45b'),
(1093,17,2618,NULL,2581,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','d596dc6d-dca5-48ee-b151-425262a397ee'),
(1094,10,2630,NULL,2583,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','9d3a2ffc-5d80-42e5-9d72-fde1631a0629'),
(1095,17,2630,NULL,2582,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','629e9385-1899-4287-9f5a-0e989701e9cd'),
(1096,2,2631,NULL,2581,1,'2026-03-02 23:57:48','2026-03-02 23:57:48','018aa6ba-0d0f-4b97-bf3c-27f8efdab530'),
(1101,13,2657,NULL,112,1,'2026-03-03 00:06:26','2026-03-03 00:06:26','3b867968-6ca6-4ecf-81b1-ce3d4001a6a0'),
(1102,13,2657,NULL,99,2,'2026-03-03 00:06:26','2026-03-03 00:06:26','79372fe5-025e-416e-9688-0d3a8ca634fd'),
(1103,13,2657,NULL,89,3,'2026-03-03 00:06:26','2026-03-03 00:06:26','665a8aec-3b4f-4884-a8c4-abb956f7ff89'),
(1104,17,2670,NULL,2006,1,'2026-03-03 00:06:26','2026-03-03 00:06:26','1d125577-54a1-4da7-9fef-441090e8e5a5'),
(1105,10,2682,NULL,2036,1,'2026-03-03 00:06:26','2026-03-03 00:06:26','c9398e74-9d4e-4544-81fa-a0cf213ed50d'),
(1106,17,2682,NULL,2034,1,'2026-03-03 00:06:26','2026-03-03 00:06:26','20bae430-1d20-48a9-b919-d1cb0ded7dfa'),
(1107,2,2683,NULL,1946,1,'2026-03-03 00:06:26','2026-03-03 00:06:26','98722063-89b4-45c7-9dff-5bad8c88253e'),
(1108,13,2684,NULL,112,1,'2026-03-03 00:06:26','2026-03-03 00:06:26','d22a4fc6-2292-4f7d-94cc-a17bd0f0dbac'),
(1109,13,2684,NULL,99,2,'2026-03-03 00:06:26','2026-03-03 00:06:26','8a5c48f0-a29a-4ac2-91fa-b758e9bc494a'),
(1110,13,2684,NULL,89,3,'2026-03-03 00:06:26','2026-03-03 00:06:26','47c55fed-5cd0-4c90-9070-d2864b19eb68'),
(1117,17,2643,NULL,2698,1,'2026-03-03 00:14:33','2026-03-03 00:14:33','bdff2265-295a-4a24-a793-b8ced952bc5e'),
(1118,10,2655,NULL,2711,1,'2026-03-03 00:14:33','2026-03-03 00:14:33','32f78632-9d03-4100-a42b-2b604925b950'),
(1119,17,2655,NULL,2712,1,'2026-03-03 00:14:33','2026-03-03 00:14:33','e135d13c-9299-4dd1-977a-46f086aa0df7'),
(1120,17,2714,NULL,2698,1,'2026-03-03 00:14:33','2026-03-03 00:14:33','f29a3734-9cfe-4f5e-8a5e-5798d3a98639'),
(1121,10,2726,NULL,2711,1,'2026-03-03 00:14:33','2026-03-03 00:14:33','d5aec165-1dd7-46aa-ad65-c1a564d6462e'),
(1122,17,2726,NULL,2712,1,'2026-03-03 00:14:33','2026-03-03 00:14:33','0bf03aef-d7e2-45bc-85b6-0d78bbfb21e4'),
(1124,17,2730,NULL,2698,1,'2026-03-03 00:15:16','2026-03-03 00:15:16','42495cec-8633-4ca3-ab22-23164c75b5e7'),
(1126,17,2734,NULL,2698,1,'2026-03-03 00:15:48','2026-03-03 00:15:48','6b08d6d1-d287-4a04-8b8f-8f1980848fdf'),
(1133,17,2740,NULL,2698,1,'2026-03-03 00:20:08','2026-03-03 00:20:08','28538464-b77c-42ce-9518-40ca3ec524c1'),
(1134,2,2741,NULL,2712,1,'2026-03-03 00:20:08','2026-03-03 00:20:08','6b954191-209e-44f3-af9b-44783d3fcaad'),
(1138,2,2656,NULL,2698,1,'2026-03-03 00:21:05','2026-03-03 00:21:05','82200e9a-f32a-4181-b42b-249216520aed'),
(1139,17,2744,NULL,2698,1,'2026-03-03 00:21:05','2026-03-03 00:21:05','6ef1bb02-c49d-442f-83ab-61f7a57d22db'),
(1140,2,2745,NULL,2698,1,'2026-03-03 00:21:05','2026-03-03 00:21:05','fe707eb5-03f4-4080-a460-6069b9b7a303'),
(1142,17,2764,NULL,2698,1,'2026-03-03 00:25:48','2026-03-03 00:25:48','7977162a-05cc-456b-9bea-1376378791de'),
(1143,17,2778,NULL,2341,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','cf60c5c9-db5f-4673-b5a4-5c510a33e9d7'),
(1144,10,2790,NULL,2343,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','24d9e9a5-ec5a-4b8f-a62c-f601090d2110'),
(1145,17,2790,NULL,2341,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','8c43bab3-dbf4-4c7d-ba1e-7dbd89722361'),
(1146,2,2791,NULL,2342,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','3e067e55-b6ed-43fd-8e67-45736d3af05b'),
(1147,13,2792,NULL,112,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','cc408579-093f-4af8-8788-bdf08dd8168f'),
(1148,13,2792,NULL,99,2,'2026-03-03 00:28:21','2026-03-03 00:28:21','5c24ff31-cc3a-411d-bd58-80775311d51a'),
(1149,13,2792,NULL,89,3,'2026-03-03 00:28:21','2026-03-03 00:28:21','0e3fddcf-a23a-41a5-bed6-cbc1fdb399ea'),
(1150,17,2805,NULL,2341,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','0617a537-1b4b-401a-828c-89afc2a153ff'),
(1151,10,2817,NULL,2343,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','0cc08df3-3217-4251-8018-c02a9f98c1fd'),
(1152,17,2817,NULL,2341,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','5717d9c2-d2d5-4113-b5b6-47424f5a4c5d'),
(1153,2,2818,NULL,2342,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','32f87eb2-193c-4221-bc83-86d03acf6215'),
(1154,13,2819,NULL,112,1,'2026-03-03 00:28:21','2026-03-03 00:28:21','068f3bdc-c1ee-489c-a9af-df090f450d8e'),
(1155,13,2819,NULL,99,2,'2026-03-03 00:28:21','2026-03-03 00:28:21','ceb0134d-2355-431c-bea6-4941e2e2c5a2'),
(1156,13,2819,NULL,89,3,'2026-03-03 00:28:21','2026-03-03 00:28:21','52df56df-f26b-4d63-8cce-087b53ca4c66'),
(1157,17,2832,NULL,2341,1,'2026-03-03 00:28:32','2026-03-03 00:28:32','a657b6b9-2fcd-466f-bb11-30c3f56a956f'),
(1162,17,2876,NULL,2341,1,'2026-03-03 07:55:09','2026-03-03 07:55:09','fe8c7a6b-ef8f-40da-83b0-d64c07c71a63'),
(1163,10,2888,NULL,2343,1,'2026-03-03 07:55:09','2026-03-03 07:55:09','e5e4bb32-fbaf-4581-9cd6-93386d4e8424'),
(1164,17,2888,NULL,2341,1,'2026-03-03 07:55:09','2026-03-03 07:55:09','cde11c0f-646f-4078-b106-dea865684492'),
(1165,2,2889,NULL,2342,1,'2026-03-03 07:55:09','2026-03-03 07:55:09','b98cfd45-8c6b-428f-be17-338157756d74'),
(1166,17,2918,NULL,81,1,'2026-03-03 08:12:59','2026-03-03 08:12:59','03173cc1-4e5b-4e99-bf8f-8fcc3069288a'),
(1167,17,2919,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','62c504d8-667b-46d4-9d9d-b35cb8719641'),
(1168,10,2920,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','676c4127-96d4-4266-b94e-9c6e10dcb208'),
(1169,10,2921,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','58998219-bf0f-4b3d-a34b-1e5391154140'),
(1170,17,2921,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','62de1ece-66c0-408f-901c-fa190449967e'),
(1171,13,2922,NULL,112,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','5fbd8522-5ba4-4405-bec6-234d68fef25c'),
(1172,13,2922,NULL,99,2,'2026-03-03 08:13:00','2026-03-03 08:13:00','7b46c7fa-3848-4053-a487-165047e88d9c'),
(1173,13,2922,NULL,89,3,'2026-03-03 08:13:00','2026-03-03 08:13:00','2e957497-5735-4dce-a09e-e7c31343b8c0'),
(1174,17,2932,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','d9f35f2f-8cdb-4446-b396-43a0d5929eb7'),
(1175,17,2933,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','eff733d4-3145-4773-a6d4-6511b748a41e'),
(1176,10,2934,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','321dcfbe-3152-4eee-b768-a043ec6c5858'),
(1177,10,2935,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','c7dba499-b4f3-4e73-841a-d05c2c75c9a6'),
(1178,17,2935,NULL,81,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','d233e29f-be3e-4b9b-ad14-7acb79b29818'),
(1179,13,2936,NULL,112,1,'2026-03-03 08:13:00','2026-03-03 08:13:00','86ef75cc-8223-49bd-a78c-98b6d53cfaef'),
(1180,13,2936,NULL,99,2,'2026-03-03 08:13:00','2026-03-03 08:13:00','3d8ca7b6-5fd1-4eeb-a158-83c40d6eeff7'),
(1181,13,2936,NULL,89,3,'2026-03-03 08:13:00','2026-03-03 08:13:00','d68a1c82-d78e-4cfe-8742-b51be2fe9bc3'),
(1183,17,2947,NULL,81,1,'2026-03-03 08:13:29','2026-03-03 08:13:29','cddf84d3-0765-4c24-9f8e-25a6a0fa7be5');
/*!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,''),
(22,93,1,1,''),
(23,89,1,2,'Applied “Draft 1”'),
(24,97,1,1,''),
(25,99,1,1,''),
(26,99,1,2,'Applied “Draft 1”'),
(27,105,1,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,''),
(33,117,1,1,''),
(34,89,1,4,'Applied “Draft 1”'),
(35,105,1,2,'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”'),
(41,117,1,2,'Applied “Draft 1”'),
(42,99,1,6,'Applied “Draft 1”'),
(43,99,1,7,'Applied “Draft 1”'),
(48,145,1,1,NULL),
(53,99,1,8,'Applied “Draft 1”'),
(54,99,1,9,'Applied “Draft 1”'),
(61,105,1,3,'Applied “Draft 1”'),
(62,181,1,1,NULL),
(63,182,1,1,NULL),
(64,183,1,1,NULL),
(65,105,1,4,'Applied “Draft 1”'),
(66,190,1,1,NULL),
(67,105,1,5,''),
(68,105,1,6,''),
(69,190,1,2,NULL),
(70,105,1,7,''),
(71,190,1,3,NULL),
(72,105,1,8,'Applied “Draft 1”'),
(73,204,1,1,NULL),
(74,105,1,9,'Applied “Draft 1”'),
(75,117,1,3,'Applied “Draft 1”'),
(76,105,1,10,''),
(77,204,1,2,NULL),
(78,105,1,11,''),
(79,204,1,3,NULL),
(80,105,1,12,''),
(81,204,1,4,NULL),
(82,105,1,13,''),
(83,204,1,5,NULL),
(84,105,1,14,''),
(85,204,1,6,NULL),
(86,105,1,15,''),
(87,204,1,7,NULL),
(88,105,1,16,'Applied “Draft 1”'),
(89,105,1,17,'Applied “Draft 1”'),
(90,250,1,1,''),
(91,252,1,1,''),
(94,144,1,3,NULL),
(95,255,1,1,NULL),
(100,276,1,1,NULL),
(101,277,1,1,NULL),
(108,275,1,3,NULL),
(109,287,1,2,NULL),
(112,302,1,1,NULL),
(114,274,1,5,NULL),
(115,308,1,1,NULL),
(119,143,1,8,NULL),
(120,319,1,1,''),
(121,322,1,1,''),
(122,324,1,1,''),
(123,326,1,1,''),
(127,330,1,2,NULL),
(128,326,1,2,'Applied “Draft 1”'),
(129,322,1,2,'Applied “Draft 1”'),
(130,322,1,3,'Applied “Draft 1”'),
(196,38,1,55,''),
(197,358,1,23,NULL),
(198,411,1,5,NULL),
(199,412,1,5,NULL),
(200,38,1,56,''),
(201,358,1,24,NULL),
(202,38,1,57,''),
(203,358,1,25,NULL),
(204,38,1,58,''),
(205,358,1,26,NULL),
(206,38,1,59,''),
(207,358,1,27,NULL),
(208,38,1,60,''),
(209,358,1,28,NULL),
(210,38,1,61,''),
(211,358,1,29,NULL),
(212,38,1,62,''),
(213,358,1,30,NULL),
(214,38,1,63,''),
(215,358,1,31,NULL),
(216,38,1,64,''),
(217,358,1,32,NULL),
(218,38,1,65,''),
(219,358,1,33,NULL),
(220,38,1,66,''),
(221,358,1,34,NULL),
(222,38,1,67,''),
(223,358,1,35,NULL),
(224,38,1,68,''),
(225,358,1,36,NULL),
(226,38,1,69,''),
(227,358,1,37,NULL),
(228,359,1,5,NULL),
(229,529,1,1,NULL),
(230,395,1,2,NULL),
(231,530,1,1,NULL),
(232,38,1,70,''),
(233,358,1,38,NULL),
(234,359,1,6,NULL),
(235,542,1,1,NULL),
(236,38,1,71,'Applied “Draft 1”'),
(237,358,1,39,NULL),
(238,578,1,1,NULL),
(239,579,1,1,NULL),
(240,580,1,1,NULL),
(241,581,1,1,NULL),
(242,582,1,1,NULL),
(243,38,1,72,'Applied “Draft 1”'),
(244,604,1,1,NULL),
(245,605,1,1,NULL),
(246,606,1,1,NULL),
(247,607,1,1,NULL),
(248,608,1,1,NULL),
(249,609,1,1,NULL),
(250,38,1,73,'Applied “Draft 1”'),
(251,604,1,2,NULL),
(252,38,1,74,'Applied “Draft 1”'),
(253,604,1,3,NULL),
(254,632,1,1,NULL),
(256,634,1,1,NULL),
(257,635,1,1,NULL),
(258,636,1,1,NULL),
(259,38,1,75,'Applied “Draft 1”'),
(260,604,1,4,NULL),
(261,654,1,1,NULL),
(262,655,1,1,NULL),
(263,656,1,1,NULL),
(264,657,1,1,NULL),
(265,658,1,1,NULL),
(266,38,1,76,'Applied “Draft 1”'),
(267,604,1,5,NULL),
(268,654,1,2,NULL),
(269,657,1,2,NULL),
(270,38,1,77,'Applied “Draft 1”'),
(271,604,1,6,NULL),
(272,654,1,3,NULL),
(273,657,1,3,NULL),
(274,38,1,78,'Applied “Draft 1”'),
(275,604,1,7,NULL),
(276,654,1,4,NULL),
(277,656,1,2,NULL),
(278,38,1,79,'Applied “Draft 1”'),
(279,604,1,8,NULL),
(280,654,1,5,NULL),
(281,655,1,2,NULL),
(282,656,1,3,NULL),
(283,38,1,80,'Applied “Draft 1”'),
(284,604,1,9,NULL),
(285,654,1,6,NULL),
(286,657,1,4,NULL),
(287,38,1,81,'Applied “Draft 1”'),
(288,604,1,10,NULL),
(289,654,1,7,NULL),
(290,657,1,5,NULL),
(291,38,1,82,'Applied “Draft 1”'),
(292,604,1,11,NULL),
(293,654,1,8,NULL),
(294,657,1,6,NULL),
(295,38,1,83,'Applied “Draft 1”'),
(296,604,1,12,NULL),
(297,654,1,9,NULL),
(298,657,1,7,NULL),
(299,38,1,84,'Applied “Draft 1”'),
(300,604,1,13,NULL),
(301,654,1,10,NULL),
(302,657,1,8,NULL),
(303,38,1,85,'Applied “Draft 1”'),
(304,604,1,14,NULL),
(305,654,1,11,NULL),
(306,657,1,9,NULL),
(307,38,1,86,'Applied “Draft 1”'),
(308,750,1,1,NULL),
(309,38,1,87,'Applied “Draft 1”'),
(310,761,1,1,NULL),
(311,762,1,1,NULL),
(312,763,1,1,NULL),
(313,764,1,1,NULL),
(314,38,1,88,'Applied “Draft 1”'),
(315,38,1,89,'Applied “Draft 1”'),
(316,774,1,1,NULL),
(317,38,1,90,'Applied “Draft 1”'),
(318,143,1,9,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),
(325,38,1,91,'Applied “Draft 1”'),
(326,604,1,15,NULL),
(327,654,1,12,NULL),
(328,657,1,10,NULL),
(329,761,1,2,NULL),
(330,806,1,1,NULL),
(331,38,1,92,'Applied “Draft 1”'),
(332,143,1,10,NULL),
(333,38,1,93,'Applied “Draft 1”'),
(334,143,1,11,NULL),
(335,38,1,94,'Applied “Draft 1”'),
(336,143,1,12,NULL),
(337,38,1,95,'Applied “Draft 1”'),
(338,143,1,13,NULL),
(339,38,1,96,'Applied “Draft 1”'),
(340,143,1,14,NULL),
(341,112,1,4,'Applied “Draft 1”'),
(342,38,1,97,'Applied “Draft 1”'),
(343,843,1,1,NULL),
(344,38,1,98,'Applied “Draft 1”'),
(345,849,1,1,NULL),
(346,850,1,1,NULL),
(347,38,1,99,'Applied “Draft 1”'),
(348,849,1,2,NULL),
(349,850,1,2,NULL),
(350,38,1,100,'Applied “Draft 1”'),
(351,867,1,1,NULL),
(352,868,1,1,NULL),
(353,38,1,101,'Applied “Draft 1”'),
(354,274,1,6,NULL),
(355,878,1,1,NULL),
(356,38,1,102,'Applied “Draft 1”'),
(357,274,1,7,NULL),
(358,276,1,2,NULL),
(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),
(371,117,1,4,''),
(372,117,1,5,'Applied “Draft 1”'),
(373,920,1,1,NULL),
(374,117,1,6,'Applied “Draft 1”'),
(375,926,1,1,NULL),
(376,117,1,7,'Applied “Draft 1”'),
(377,926,1,2,NULL),
(378,117,1,8,'Applied “Draft 1”'),
(379,926,1,3,NULL),
(380,117,1,9,'Applied “Draft 1”'),
(381,926,1,4,NULL),
(382,117,1,10,'Applied “Draft 1”'),
(383,945,1,1,NULL),
(384,946,1,1,NULL),
(385,947,1,1,NULL),
(386,117,1,11,'Applied “Draft 1”'),
(387,945,1,2,NULL),
(388,960,1,1,NULL),
(389,961,1,1,NULL),
(390,962,1,1,NULL),
(391,963,1,1,NULL),
(392,964,1,1,NULL),
(393,965,1,1,NULL),
(394,117,1,12,'Applied “Draft 1”'),
(395,945,1,3,NULL),
(396,117,1,13,'Applied “Draft 1”'),
(397,945,1,4,NULL),
(398,984,1,1,NULL),
(399,985,1,1,NULL),
(400,986,1,1,NULL),
(401,987,1,1,NULL),
(402,117,1,14,'Applied “Draft 1”'),
(403,945,1,5,NULL),
(404,984,1,2,NULL),
(405,117,1,15,'Applied “Draft 1”'),
(406,1002,1,1,NULL),
(407,117,1,16,'Applied “Draft 1”'),
(408,1002,1,2,NULL),
(409,1011,1,1,NULL),
(410,1012,1,1,NULL),
(411,1013,1,1,NULL),
(412,1014,1,1,NULL),
(413,117,1,17,'Applied “Draft 1”'),
(414,1002,1,3,NULL),
(415,1011,1,2,NULL),
(416,117,1,18,'Applied “Draft 1”'),
(417,1002,1,4,NULL),
(418,117,1,19,'Applied “Draft 1”'),
(419,1002,1,5,NULL),
(420,117,1,20,'Applied “Draft 1”'),
(421,1038,1,1,NULL),
(422,117,1,21,'Applied “Draft 1”'),
(423,1043,1,1,NULL),
(424,117,1,22,'Applied “Draft 1”'),
(425,1043,1,2,NULL),
(426,117,1,23,'Applied “Draft 1”'),
(427,1043,1,3,NULL),
(428,117,1,24,'Applied “Draft 1”'),
(429,1057,1,1,NULL),
(430,117,1,25,'Applied “Draft 1”'),
(431,1062,1,1,NULL),
(432,117,1,26,'Applied “Draft 1”'),
(433,1075,1,1,NULL),
(434,1076,1,1,NULL),
(435,1077,1,1,NULL),
(436,1078,1,1,NULL),
(437,1079,1,1,NULL),
(438,1080,1,1,NULL),
(439,1081,1,1,NULL),
(440,1082,1,1,NULL),
(441,1083,1,1,NULL),
(442,117,1,27,'Applied “Draft 1”'),
(443,1075,1,2,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),
(463,38,1,103,'Applied “Draft 1”'),
(464,761,1,3,NULL),
(465,38,1,104,'Applied “Draft 1”'),
(466,761,1,4,NULL),
(467,117,1,28,'Applied “Draft 1”'),
(468,926,1,5,NULL),
(469,117,1,29,'Applied “Draft 1”'),
(470,926,1,6,NULL),
(471,1157,1,1,''),
(472,1161,1,1,''),
(473,1161,1,2,'Applied “Draft 1”'),
(474,1165,1,1,NULL),
(475,1161,1,3,'Applied “Draft 1”'),
(476,1178,1,1,NULL),
(477,1179,1,1,NULL),
(478,1180,1,1,NULL),
(479,1181,1,1,NULL),
(480,1182,1,1,NULL),
(481,1183,1,1,NULL),
(482,1184,1,1,NULL),
(483,1185,1,1,NULL),
(484,1186,1,1,NULL),
(485,1161,1,4,'Applied “Draft 1”'),
(486,1203,1,1,NULL),
(487,1204,1,1,NULL),
(488,1205,1,1,NULL),
(489,1206,1,1,NULL),
(490,1207,1,1,NULL),
(491,1161,1,5,'Applied “Draft 1”'),
(492,1216,1,1,NULL),
(493,1161,1,6,'Applied “Draft 1”'),
(494,1221,1,1,NULL),
(495,1161,1,7,'Applied “Draft 1”'),
(496,1226,1,1,NULL),
(497,1161,1,8,'Applied “Draft 1”'),
(498,1239,1,1,NULL),
(499,1240,1,1,NULL),
(500,1241,1,1,NULL),
(501,1242,1,1,NULL),
(502,1243,1,1,NULL),
(503,1244,1,1,NULL),
(504,1245,1,1,NULL),
(505,1246,1,1,NULL),
(506,1247,1,1,NULL),
(507,1161,1,9,'Applied “Draft 1”'),
(508,1161,1,10,'Applied “Draft 1”'),
(509,1161,1,11,'Applied “Draft 1”'),
(510,1216,1,2,NULL),
(511,1161,1,12,'Applied “Draft 1”'),
(512,1216,1,3,NULL),
(513,1161,1,13,'Applied “Draft 1”'),
(514,1216,1,4,NULL),
(515,1161,1,14,'Applied “Draft 1”'),
(516,1216,1,5,NULL),
(517,1161,1,15,'Applied “Draft 1”'),
(518,117,1,30,'Applied “Draft 1”'),
(519,926,1,7,NULL),
(520,1286,1,1,''),
(521,1161,1,16,'Applied “Draft 1”'),
(522,1216,1,6,NULL),
(523,1161,1,17,'Applied “Draft 1”'),
(524,1216,1,7,NULL),
(525,1161,1,18,'Applied “Draft 1”'),
(526,1216,1,8,NULL),
(527,1161,1,19,'Applied “Draft 1”'),
(528,1216,1,9,NULL),
(529,1161,1,20,'Applied “Draft 1”'),
(530,1216,1,10,NULL),
(531,1161,1,21,'Applied “Draft 1”'),
(532,1216,1,11,NULL),
(533,1161,1,22,'Applied “Draft 1”'),
(534,1216,1,12,NULL),
(535,1161,1,23,'Applied “Draft 1”'),
(536,1161,1,24,'Applied “Draft 1”'),
(537,1161,1,25,'Applied “Draft 1”'),
(538,1325,1,1,NULL),
(539,1161,1,26,'Applied “Draft 1”'),
(540,1239,1,2,NULL),
(541,1161,1,27,'Applied “Draft 1”'),
(542,1334,1,1,NULL),
(543,1161,1,28,'Applied “Draft 1”'),
(544,1161,1,29,'Applied “Draft 1”'),
(545,1161,1,30,'Applied “Draft 1”'),
(546,1344,1,1,NULL),
(547,1345,1,1,NULL),
(548,1161,1,31,''),
(549,1161,1,32,'Applied “Draft 1”'),
(550,1161,1,33,'Applied “Draft 1”'),
(551,1334,1,2,NULL),
(552,1161,1,34,''),
(553,1161,1,35,'Applied “Draft 1”'),
(554,1362,1,1,NULL),
(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),
(572,1161,1,36,'Applied “Draft 1”'),
(573,1216,1,13,NULL),
(574,912,1,6,NULL),
(575,1417,1,1,NULL),
(576,117,1,31,'Applied “Draft 1”'),
(577,926,1,8,NULL),
(578,1432,1,1,NULL),
(579,117,1,32,'Applied “Draft 1”'),
(580,926,1,9,NULL),
(597,1457,1,1,NULL),
(599,1459,1,1,NULL),
(600,1460,1,1,NULL),
(601,1461,1,1,NULL),
(602,1462,1,1,NULL),
(603,1463,1,1,NULL),
(604,1464,1,1,NULL),
(605,1465,1,1,NULL),
(606,1466,1,1,NULL),
(607,1467,1,1,NULL),
(608,1468,1,1,NULL),
(609,1469,1,1,NULL),
(614,1442,1,3,NULL),
(617,1444,1,2,NULL),
(626,1445,1,3,NULL),
(634,1446,1,4,NULL),
(636,1443,1,7,NULL),
(637,1447,1,5,NULL),
(638,1441,1,12,'Applied “Draft 1”'),
(639,1452,1,2,NULL),
(640,1441,1,13,'Applied “Draft 1”'),
(641,1452,1,3,NULL),
(642,1441,1,14,'Applied “Draft 1”'),
(643,1571,1,1,NULL),
(644,1572,1,1,NULL),
(645,1573,1,1,NULL),
(646,1574,1,1,NULL),
(647,1575,1,1,NULL),
(648,1441,1,15,'Applied “Draft 1”'),
(649,1571,1,2,NULL),
(650,1441,1,16,'Applied “Draft 1”'),
(651,1571,1,3,NULL),
(652,1572,1,2,NULL),
(653,1573,1,2,NULL),
(654,1574,1,2,NULL),
(655,1575,1,2,NULL),
(656,1441,1,17,'Applied “Draft 1”'),
(657,1571,1,4,NULL),
(658,1572,1,3,NULL),
(659,1441,1,18,'Applied “Draft 1”'),
(660,1571,1,5,NULL),
(661,1572,1,4,NULL),
(662,1441,1,19,'Applied “Draft 1”'),
(663,1457,1,2,NULL),
(664,1441,1,20,'Applied “Draft 1”'),
(665,1457,1,3,NULL),
(666,1441,1,21,'Applied “Draft 1”'),
(667,1457,1,4,NULL),
(668,1441,1,22,'Applied “Draft 1”'),
(669,1457,1,5,NULL),
(670,1441,1,23,'Applied “Draft 1”'),
(671,1457,1,6,NULL),
(672,1441,1,24,'Applied “Draft 1”'),
(673,1457,1,7,NULL),
(674,1441,1,25,'Applied “Draft 1”'),
(675,1457,1,8,NULL),
(676,1441,1,26,'Applied “Draft 1”'),
(677,1457,1,9,NULL),
(678,1458,1,2,NULL),
(679,1441,1,27,'Applied “Draft 1”'),
(680,1457,1,10,NULL),
(681,1441,1,28,'Applied “Draft 1”'),
(682,1457,1,11,NULL),
(683,1441,1,29,'Applied “Draft 1”'),
(684,1457,1,12,NULL),
(685,1441,1,30,'Applied “Draft 1”'),
(686,1457,1,13,NULL),
(687,1441,1,31,'Applied “Draft 1”'),
(688,1457,1,14,NULL),
(689,1441,1,32,'Applied “Draft 1”'),
(690,1457,1,15,NULL),
(691,1441,1,33,'Applied “Draft 1”'),
(692,1457,1,16,NULL),
(693,1441,1,34,'Applied “Draft 1”'),
(694,1457,1,17,NULL),
(695,1441,1,35,'Applied “Draft 1”'),
(696,1458,1,3,NULL),
(697,1441,1,36,'Applied “Draft 1”'),
(698,1458,1,4,NULL),
(699,1441,1,37,'Applied “Draft 1”'),
(700,1458,1,5,NULL),
(701,1441,1,38,'Applied “Draft 1”'),
(702,1458,1,6,NULL),
(703,1441,1,39,'Applied “Draft 1”'),
(704,1458,1,7,NULL),
(705,1441,1,40,'Applied “Draft 1”'),
(706,1457,1,18,NULL),
(707,1458,1,8,NULL),
(708,1441,1,41,''),
(709,1441,1,42,'Applied “Draft 1”'),
(710,1441,1,43,'Applied “Draft 1”'),
(711,1459,1,2,NULL),
(712,1441,1,44,'Applied “Draft 1”'),
(713,1461,1,2,NULL),
(714,1462,1,2,NULL),
(715,1441,1,45,'Applied “Draft 1”'),
(716,1461,1,3,NULL),
(717,1462,1,3,NULL),
(718,1441,1,46,'Applied “Draft 1”'),
(719,1461,1,4,NULL),
(720,1463,1,2,NULL),
(721,1464,1,2,NULL),
(722,1465,1,2,NULL),
(723,1466,1,2,NULL),
(724,1467,1,2,NULL),
(725,1468,1,2,NULL),
(726,1469,1,2,NULL),
(727,1734,1,1,NULL),
(728,1441,1,47,'Applied “Draft 1”'),
(729,1441,1,48,'Applied “Draft 1”'),
(730,1459,1,3,NULL),
(731,1441,1,49,'Applied “Draft 1”'),
(732,1457,1,19,NULL),
(733,1441,1,50,'Applied “Draft 1”'),
(734,1457,1,20,NULL),
(735,1441,1,51,'Applied “Draft 1”'),
(736,1441,1,52,'Applied “Draft 1”'),
(737,1441,1,53,'Applied “Draft 1”'),
(738,1459,1,4,NULL),
(739,1441,1,54,'Applied “Draft 1”'),
(740,1459,1,5,NULL),
(741,1441,1,55,'Applied “Draft 1”'),
(742,1459,1,6,NULL),
(743,1441,1,56,'Applied “Draft 1”'),
(744,1459,1,7,NULL),
(745,1441,1,57,'Applied “Draft 1”'),
(746,1460,1,2,NULL),
(747,1441,1,58,'Applied “Draft 1”'),
(748,1787,1,1,NULL),
(749,1441,1,59,'Applied “Draft 1”'),
(750,1787,1,2,NULL),
(751,1441,1,60,'Applied “Draft 1”'),
(752,1787,1,3,NULL),
(753,1441,1,61,'Applied “Draft 1”'),
(754,1787,1,4,NULL),
(755,1802,1,1,NULL),
(756,1803,1,1,NULL),
(757,1804,1,1,NULL),
(758,1805,1,1,NULL),
(759,1806,1,1,NULL),
(760,1807,1,1,NULL),
(761,1808,1,1,NULL),
(762,1809,1,1,NULL),
(763,1810,1,1,NULL),
(764,1811,1,1,NULL),
(765,1812,1,1,NULL),
(766,1813,1,1,NULL),
(767,1814,1,1,NULL),
(768,1815,1,1,NULL),
(769,1816,1,1,NULL),
(770,1817,1,1,NULL),
(771,1818,1,1,NULL),
(772,1819,1,1,NULL),
(773,1820,1,1,NULL),
(774,1821,1,1,NULL),
(775,1822,1,1,NULL),
(776,1823,1,1,NULL),
(777,1824,1,1,NULL),
(778,1825,1,1,NULL),
(779,1826,1,1,NULL),
(780,1827,1,1,NULL),
(781,1802,1,2,'Applied “Draft 1”'),
(782,1803,1,2,NULL),
(783,1804,1,2,NULL),
(784,1805,1,2,NULL),
(785,1806,1,2,NULL),
(786,1807,1,2,NULL),
(787,1808,1,2,NULL),
(788,1827,1,2,NULL),
(789,1802,1,3,'Applied “Draft 1”'),
(790,1803,1,3,NULL),
(791,1802,1,4,''),
(792,1802,1,5,'Applied “Draft 1”'),
(793,1803,1,4,NULL),
(794,1802,1,6,'Applied “Draft 1”'),
(795,1809,1,2,NULL),
(796,1810,1,2,NULL),
(797,1811,1,2,NULL),
(798,1812,1,2,NULL),
(799,1813,1,2,NULL),
(800,1802,1,7,'Applied “Draft 1”'),
(801,1814,1,2,NULL),
(802,1815,1,2,NULL),
(803,1817,1,2,NULL),
(804,1905,1,1,NULL),
(805,1906,1,1,NULL),
(806,1907,1,1,NULL),
(807,1908,1,1,NULL),
(808,1909,1,1,NULL),
(809,1910,1,1,NULL),
(810,1911,1,1,NULL),
(811,1912,1,1,NULL),
(812,1913,1,1,NULL),
(813,1914,1,1,NULL),
(814,1802,1,8,'Applied “Draft 1”'),
(815,1814,1,3,NULL),
(816,1802,1,9,'Applied “Draft 1”'),
(817,1815,1,3,NULL),
(818,1802,1,10,'Applied “Draft 1”'),
(819,1943,1,1,NULL),
(820,1802,1,11,'Applied “Draft 1”'),
(821,1815,1,4,NULL),
(822,1951,1,1,NULL),
(823,1952,1,1,NULL),
(824,1953,1,1,NULL),
(825,1954,1,1,NULL),
(826,1955,1,1,NULL),
(827,1956,1,1,NULL),
(828,1957,1,1,NULL),
(829,1958,1,1,NULL),
(830,1959,1,1,NULL),
(831,1960,1,1,NULL),
(832,1961,1,1,NULL),
(833,1962,1,1,NULL),
(834,1963,1,1,NULL),
(835,1964,1,1,NULL),
(836,1965,1,1,NULL),
(837,1966,1,1,NULL),
(838,1967,1,1,NULL),
(839,1968,1,1,NULL),
(840,1969,1,1,NULL),
(841,1970,1,1,NULL),
(842,1971,1,1,NULL),
(843,1972,1,1,NULL),
(844,1973,1,1,NULL),
(845,1974,1,1,NULL),
(846,1975,1,1,NULL),
(847,1976,1,1,NULL),
(848,1977,1,1,NULL),
(849,1951,1,2,'Applied “Draft 1”'),
(850,1952,1,2,NULL),
(851,1953,1,2,NULL),
(852,1954,1,2,NULL),
(853,1955,1,2,NULL),
(854,1956,1,2,NULL),
(855,1957,1,2,NULL),
(856,1958,1,2,NULL),
(857,1959,1,2,NULL),
(858,1960,1,2,NULL),
(859,1961,1,2,NULL),
(860,1962,1,2,NULL),
(861,2020,1,1,NULL),
(862,1951,1,3,'Applied “Draft 1”'),
(863,2020,1,2,NULL),
(864,1964,1,2,NULL),
(865,1966,1,2,NULL),
(866,2051,1,1,NULL),
(867,2052,1,1,NULL),
(868,2053,1,1,NULL),
(869,2054,1,1,NULL),
(870,2055,1,1,NULL),
(871,2056,1,1,NULL),
(872,2057,1,1,NULL),
(873,2058,1,1,NULL),
(874,2059,1,1,NULL),
(875,2060,1,1,NULL),
(876,2061,1,1,NULL),
(877,1951,1,4,'Applied “Draft 1”'),
(878,2020,1,3,NULL),
(879,2081,1,1,NULL),
(880,2082,1,1,NULL),
(881,2083,1,1,NULL),
(882,2084,1,1,NULL),
(883,2085,1,1,NULL),
(884,2086,1,1,NULL),
(885,2087,1,1,NULL),
(886,2088,1,1,NULL),
(887,2089,1,1,NULL),
(888,2090,1,1,NULL),
(889,2091,1,1,NULL),
(890,2092,1,1,NULL),
(891,2093,1,1,NULL),
(892,2094,1,1,NULL),
(893,2095,1,1,NULL),
(894,2096,1,1,NULL),
(895,2097,1,1,NULL),
(896,2098,1,1,NULL),
(897,2099,1,1,NULL),
(898,2100,1,1,NULL),
(899,2101,1,1,NULL),
(900,2102,1,1,NULL),
(901,2103,1,1,NULL),
(902,2104,1,1,NULL),
(903,2105,1,1,NULL),
(904,2106,1,1,NULL),
(905,2107,1,1,NULL),
(906,2108,1,1,NULL),
(907,2081,1,2,''),
(908,2081,1,3,'Applied “Draft 1”'),
(909,2082,1,2,NULL),
(910,2083,1,2,NULL),
(911,2084,1,2,NULL),
(912,2085,1,2,NULL),
(913,2086,1,2,NULL),
(914,2087,1,2,NULL),
(915,2088,1,2,NULL),
(916,2089,1,2,NULL),
(917,2090,1,2,NULL),
(918,2091,1,2,NULL),
(919,2092,1,2,NULL),
(920,2162,1,1,NULL),
(921,2163,1,1,NULL),
(922,2164,1,1,NULL),
(923,2165,1,1,NULL),
(924,2166,1,1,NULL),
(925,2167,1,1,NULL),
(926,2168,1,1,NULL),
(927,2169,1,1,NULL),
(928,2170,1,1,NULL),
(929,2171,1,1,NULL),
(930,2172,1,1,NULL),
(931,2173,1,1,NULL),
(932,2174,1,1,NULL),
(933,2175,1,1,NULL),
(934,2176,1,1,NULL),
(935,2177,1,1,NULL),
(936,2178,1,1,NULL),
(937,2179,1,1,NULL),
(938,2180,1,1,NULL),
(939,2181,1,1,NULL),
(940,2182,1,1,NULL),
(941,2183,1,1,NULL),
(942,2184,1,1,NULL),
(943,2185,1,1,NULL),
(944,2186,1,1,NULL),
(945,2187,1,1,NULL),
(946,2188,1,1,NULL),
(947,2189,1,1,NULL),
(948,2162,1,2,'Applied “Draft 1”'),
(949,2163,1,2,NULL),
(950,2164,1,2,NULL),
(951,2165,1,2,NULL),
(952,2166,1,2,NULL),
(953,2167,1,2,NULL),
(954,2168,1,2,NULL),
(955,2169,1,2,NULL),
(956,2170,1,2,NULL),
(957,2171,1,2,NULL),
(958,2172,1,2,NULL),
(959,2173,1,2,NULL),
(960,2174,1,2,NULL),
(961,2175,1,2,NULL),
(962,2177,1,2,NULL),
(963,2243,1,1,NULL),
(964,2244,1,1,NULL),
(965,2245,1,1,NULL),
(966,2246,1,1,NULL),
(967,2247,1,1,NULL),
(968,2248,1,1,NULL),
(969,2249,1,1,NULL),
(970,2250,1,1,NULL),
(971,2251,1,1,NULL),
(972,2252,1,1,NULL),
(973,2081,1,4,'Applied “Draft 1”'),
(974,2093,1,2,NULL),
(975,2162,1,3,'Applied “Draft 1”'),
(976,2174,1,3,NULL),
(977,2286,1,1,NULL),
(978,2287,1,1,NULL),
(979,2288,1,1,NULL),
(980,2289,1,1,NULL),
(981,2290,1,1,NULL),
(982,2291,1,1,NULL),
(983,2292,1,1,NULL),
(984,2293,1,1,NULL),
(985,2294,1,1,NULL),
(986,2295,1,1,NULL),
(987,2296,1,1,NULL),
(988,2297,1,1,NULL),
(989,2298,1,1,NULL),
(990,2299,1,1,NULL),
(991,2300,1,1,NULL),
(992,2301,1,1,NULL),
(993,2302,1,1,NULL),
(994,2303,1,1,NULL),
(995,2304,1,1,NULL),
(996,2305,1,1,NULL),
(997,2306,1,1,NULL),
(998,2307,1,1,NULL),
(999,2308,1,1,NULL),
(1000,2309,1,1,NULL),
(1001,2310,1,1,NULL),
(1002,2311,1,1,NULL),
(1003,2312,1,1,NULL),
(1004,2286,1,2,'Applied “Draft 1”'),
(1005,2287,1,2,NULL),
(1006,2288,1,2,NULL),
(1007,2289,1,2,NULL),
(1008,2290,1,2,NULL),
(1009,2291,1,2,NULL),
(1010,2292,1,2,NULL),
(1011,2293,1,2,NULL),
(1012,2294,1,2,NULL),
(1013,2295,1,2,NULL),
(1014,2296,1,2,NULL),
(1015,2297,1,2,NULL),
(1016,2298,1,2,NULL),
(1017,2299,1,2,NULL),
(1018,2301,1,2,NULL),
(1019,2368,1,1,NULL),
(1020,2369,1,1,NULL),
(1021,2370,1,1,NULL),
(1022,2371,1,1,NULL),
(1023,2372,1,1,NULL),
(1024,2373,1,1,NULL),
(1025,2374,1,1,NULL),
(1026,2375,1,1,NULL),
(1027,2376,1,1,NULL),
(1028,2377,1,1,NULL),
(1029,2286,1,3,'Applied “Draft 1”'),
(1030,2286,1,4,'Applied “Draft 1”'),
(1031,2298,1,3,NULL),
(1032,2409,1,1,NULL),
(1033,2410,1,1,NULL),
(1034,2411,1,1,NULL),
(1035,2412,1,1,NULL),
(1036,2413,1,1,NULL),
(1037,2414,1,1,NULL),
(1038,2415,1,1,NULL),
(1039,2416,1,1,NULL),
(1040,2417,1,1,NULL),
(1041,2418,1,1,NULL),
(1042,2419,1,1,NULL),
(1043,2420,1,1,NULL),
(1044,2421,1,1,NULL),
(1045,2422,1,1,NULL),
(1046,2423,1,1,NULL),
(1047,2424,1,1,NULL),
(1048,2425,1,1,NULL),
(1049,2426,1,1,NULL),
(1050,2427,1,1,NULL),
(1051,2428,1,1,NULL),
(1052,2429,1,1,NULL),
(1053,2430,1,1,NULL),
(1054,2431,1,1,NULL),
(1055,2432,1,1,NULL),
(1056,2433,1,1,NULL),
(1057,2434,1,1,NULL),
(1058,2435,1,1,NULL),
(1059,2409,1,2,'Applied “Draft 1”'),
(1060,2410,1,2,NULL),
(1061,2411,1,2,NULL),
(1062,2412,1,2,NULL),
(1063,2413,1,2,NULL),
(1064,2414,1,2,NULL),
(1065,2415,1,2,NULL),
(1066,2416,1,2,NULL),
(1067,2417,1,2,NULL),
(1068,2418,1,2,NULL),
(1069,2419,1,2,NULL),
(1070,2420,1,2,NULL),
(1071,2421,1,2,NULL),
(1072,2422,1,2,NULL),
(1073,2424,1,2,NULL),
(1074,2488,1,1,NULL),
(1075,2489,1,1,NULL),
(1076,2490,1,1,NULL),
(1077,2491,1,1,NULL),
(1078,2492,1,1,NULL),
(1079,2493,1,1,NULL),
(1080,2494,1,1,NULL),
(1081,2495,1,1,NULL),
(1082,2496,1,1,NULL),
(1083,2497,1,1,NULL),
(1084,2523,1,1,NULL),
(1085,2524,1,1,NULL),
(1086,2525,1,1,NULL),
(1087,2526,1,1,NULL),
(1088,2527,1,1,NULL),
(1089,2528,1,1,NULL),
(1090,2529,1,1,NULL),
(1091,2530,1,1,NULL),
(1092,2531,1,1,NULL),
(1093,2532,1,1,NULL),
(1094,2533,1,1,NULL),
(1095,2534,1,1,NULL),
(1096,2535,1,1,NULL),
(1097,2536,1,1,NULL),
(1098,2537,1,1,NULL),
(1099,2538,1,1,NULL),
(1100,2539,1,1,NULL),
(1101,2540,1,1,NULL),
(1102,2541,1,1,NULL),
(1103,2542,1,1,NULL),
(1104,2543,1,1,NULL),
(1105,2544,1,1,NULL),
(1106,2545,1,1,NULL),
(1107,2546,1,1,NULL),
(1108,2547,1,1,NULL),
(1109,2548,1,1,NULL),
(1110,2549,1,1,NULL),
(1111,2523,1,2,'Applied “Draft 1”'),
(1112,2524,1,2,NULL),
(1113,2525,1,2,NULL),
(1114,2526,1,2,NULL),
(1115,2527,1,2,NULL),
(1116,2528,1,2,NULL),
(1117,2529,1,2,NULL),
(1118,2530,1,2,NULL),
(1119,2531,1,2,NULL),
(1120,2532,1,2,NULL),
(1121,2533,1,2,NULL),
(1122,2534,1,2,NULL),
(1123,2535,1,2,NULL),
(1124,2536,1,2,NULL),
(1125,2538,1,2,NULL),
(1126,2608,1,1,NULL),
(1127,2609,1,1,NULL),
(1128,2610,1,1,NULL),
(1129,2611,1,1,NULL),
(1130,2612,1,1,NULL),
(1131,2613,1,1,NULL),
(1132,2614,1,1,NULL),
(1133,2615,1,1,NULL),
(1134,2616,1,1,NULL),
(1135,2617,1,1,NULL),
(1136,2643,1,1,NULL),
(1137,2644,1,1,NULL),
(1138,2645,1,1,NULL),
(1139,2646,1,1,NULL),
(1140,2647,1,1,NULL),
(1141,2648,1,1,NULL),
(1142,2649,1,1,NULL),
(1143,2650,1,1,NULL),
(1144,2651,1,1,NULL),
(1145,2652,1,1,NULL),
(1146,2653,1,1,NULL),
(1147,2654,1,1,NULL),
(1148,2655,1,1,NULL),
(1149,2656,1,1,NULL),
(1150,2657,1,1,NULL),
(1151,2658,1,1,NULL),
(1152,2659,1,1,NULL),
(1153,2660,1,1,NULL),
(1154,2661,1,1,NULL),
(1155,2662,1,1,NULL),
(1156,2663,1,1,NULL),
(1157,2664,1,1,NULL),
(1158,2665,1,1,NULL),
(1159,2666,1,1,NULL),
(1160,2667,1,1,NULL),
(1161,2668,1,1,NULL),
(1162,2669,1,1,NULL),
(1163,2643,1,2,'Applied “Draft 1”'),
(1164,2644,1,2,NULL),
(1165,2645,1,2,NULL),
(1166,2646,1,2,NULL),
(1167,2647,1,2,NULL),
(1168,2648,1,2,NULL),
(1169,2649,1,2,NULL),
(1170,2650,1,2,NULL),
(1171,2651,1,2,NULL),
(1172,2652,1,2,NULL),
(1173,2653,1,2,NULL),
(1174,2654,1,2,NULL),
(1175,2655,1,2,NULL),
(1176,2658,1,2,NULL),
(1177,2643,1,3,'Applied “Draft 1”'),
(1178,2650,1,3,NULL),
(1179,2643,1,4,'Applied “Draft 1”'),
(1180,2650,1,4,NULL),
(1181,2643,1,5,'Applied “Draft 1”'),
(1182,2656,1,2,NULL),
(1183,2643,1,6,'Applied “Draft 1”'),
(1184,2656,1,3,NULL),
(1185,2643,1,7,'Applied “Draft 1”'),
(1186,2658,1,3,NULL),
(1187,2659,1,2,NULL),
(1188,2660,1,2,NULL),
(1189,2661,1,2,NULL),
(1190,2662,1,2,NULL),
(1191,2663,1,2,NULL),
(1192,2761,1,1,NULL),
(1193,2665,1,2,NULL),
(1194,2666,1,2,NULL),
(1195,2667,1,2,NULL),
(1196,2668,1,2,NULL),
(1197,2762,1,1,NULL),
(1198,2763,1,1,NULL),
(1199,2778,1,1,NULL),
(1200,2779,1,1,NULL),
(1201,2780,1,1,NULL),
(1202,2781,1,1,NULL),
(1203,2782,1,1,NULL),
(1204,2783,1,1,NULL),
(1205,2784,1,1,NULL),
(1206,2785,1,1,NULL),
(1207,2786,1,1,NULL),
(1208,2787,1,1,NULL),
(1209,2788,1,1,NULL),
(1210,2789,1,1,NULL),
(1211,2790,1,1,NULL),
(1212,2791,1,1,NULL),
(1213,2792,1,1,NULL),
(1214,2793,1,1,NULL),
(1215,2794,1,1,NULL),
(1216,2795,1,1,NULL),
(1217,2796,1,1,NULL),
(1218,2797,1,1,NULL),
(1219,2798,1,1,NULL),
(1220,2799,1,1,NULL),
(1221,2800,1,1,NULL),
(1222,2801,1,1,NULL),
(1223,2802,1,1,NULL),
(1224,2803,1,1,NULL),
(1225,2804,1,1,NULL),
(1226,2778,1,2,''),
(1227,2778,1,3,'Applied “Draft 1”'),
(1228,2779,1,2,NULL),
(1229,2780,1,2,NULL),
(1230,2781,1,2,NULL),
(1231,2782,1,2,NULL),
(1232,2783,1,2,NULL),
(1233,2784,1,2,NULL),
(1234,2785,1,2,NULL),
(1235,2786,1,2,NULL),
(1236,2787,1,2,NULL),
(1237,2788,1,2,NULL),
(1238,2789,1,2,NULL),
(1239,2790,1,2,NULL),
(1240,2791,1,2,NULL),
(1241,2793,1,2,NULL),
(1242,2862,1,1,NULL),
(1243,2863,1,1,NULL),
(1244,2864,1,1,NULL),
(1245,2865,1,1,NULL),
(1246,2866,1,1,NULL),
(1247,2867,1,1,NULL),
(1248,2868,1,1,NULL),
(1249,2869,1,1,NULL),
(1250,2870,1,1,NULL),
(1251,2871,1,1,NULL),
(1252,2872,1,1,NULL),
(1253,2873,1,1,NULL),
(1254,2874,1,1,NULL),
(1255,2875,1,1,NULL),
(1256,2918,1,1,NULL),
(1257,2919,1,1,NULL),
(1258,2920,1,1,NULL),
(1259,2921,1,1,NULL),
(1260,2922,1,1,NULL),
(1261,2923,1,1,NULL),
(1262,2924,1,1,NULL),
(1263,2925,1,1,NULL),
(1264,2926,1,1,NULL),
(1265,2927,1,1,NULL),
(1266,2928,1,1,NULL),
(1267,2929,1,1,NULL),
(1268,2930,1,1,NULL),
(1269,2931,1,1,NULL),
(1270,2918,1,2,'Applied “Draft 1”');
/*!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,''),
(1,'lastname',0,1,''),
(1,'slug',0,1,''),
(1,'username',0,1,' finedigital '),
(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,' logob '),
(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,' prophilo '),
(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 '),
(93,'slug',0,1,' prophilo '),
(93,'title',0,1,' prophilo '),
(97,'slug',0,1,' micro needling '),
(97,'title',0,1,' micro needling '),
(99,'slug',0,1,' micro needling '),
(99,'title',0,1,' micro needling '),
(103,'slug',0,1,' temp eczucndpelmcbofcgkaqlkysjduvmhzsrxbz '),
(103,'title',0,1,''),
(104,'slug',0,1,' temp whrcowofhfpshwbvvypmifonhqhbyqujjlxp '),
(104,'title',0,1,''),
(105,'slug',0,1,' test treatment '),
(105,'title',0,1,' test treatment '),
(111,'slug',0,1,' temp sxwwgvyssycqewavwtgzcosmxdczanztinac '),
(111,'title',0,1,''),
(112,'slug',0,1,' test1 '),
(112,'title',0,1,' test1 '),
(117,'slug',0,1,' treatment 2 '),
(117,'title',0,1,' treatment 2 '),
(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 '),
(181,'slug',0,1,' test '),
(181,'title',0,1,' test '),
(182,'slug',0,1,' testtt1 '),
(182,'title',0,1,' testtt1 '),
(183,'slug',0,1,' test123123 '),
(183,'title',0,1,' test123123 '),
(190,'slug',0,1,' featured transformation '),
(190,'title',0,1,' featured transformation '),
(204,'slug',0,1,' what can a treatment do today '),
(204,'title',0,1,' what can a treatment do today '),
(235,'slug',0,1,''),
(235,'title',0,1,' about us 2 '),
(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 2 '),
(245,'slug',0,1,' terms of service '),
(245,'title',0,1,' terms of service 2 '),
(246,'slug',0,1,' facebook '),
(246,'title',0,1,' facebook '),
(247,'slug',0,1,' instagram '),
(247,'title',0,1,' instagram '),
(250,'slug',0,1,' first blog post '),
(250,'title',0,1,' first blog post '),
(252,'slug',0,1,' second blog post '),
(252,'title',0,1,' second blog post '),
(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,' how it works '),
(275,'slug',0,1,' initial consultation '),
(275,'title',0,1,' initial consultation '),
(276,'slug',0,1,' personalised treatment plan '),
(276,'title',0,1,' personalised treatment plan 2 '),
(277,'slug',0,1,' treatment aftercare '),
(277,'title',0,1,' treatment aftercare '),
(287,'slug',0,1,' section four '),
(287,'title',0,1,' section four '),
(302,'slug',0,1,' book consultation works '),
(302,'title',0,1,' book consultation works '),
(308,'slug',0,1,' section five '),
(308,'title',0,1,' section five '),
(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,' emily johnson '),
(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,' jessica williams '),
(324,'slug',0,1,' amanda brown '),
(324,'title',0,1,' amanda brown '),
(326,'slug',0,1,' sarah mitchell '),
(326,'title',0,1,' sarah mitchell '),
(330,'slug',0,1,' what our patients say '),
(330,'title',0,1,' what our 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,' specialised in the subtle magic of clinically advanced treatments '),
(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,' 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 our 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,' specialised in the subtle magic of clinically advanced treatments '),
(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 '),
(834,'slug',0,1,' one column test '),
(834,'title',0,1,' elegant text section '),
(835,'slug',0,1,' testtt '),
(835,'title',0,1,' elegant text section '),
(836,'slug',0,1,' saddsdas '),
(836,'title',0,1,' saddsdas '),
(837,'slug',0,1,' for exquisitely natural results '),
(837,'title',0,1,' for exquisitely natural results '),
(838,'slug',0,1,' dsasdadsdas '),
(838,'title',0,1,' dsasdadsdas '),
(843,'slug',0,1,' follow us for inspiration exclusive offers 2 '),
(843,'title',0,1,' follow us for inspiration exclusive offers 2 '),
(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 '),
(878,'slug',0,1,' initial consultation '),
(878,'title',0,1,' initial consultation 2 '),
(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,' hero contact '),
(904,'slug',0,1,' sfsaasfafs '),
(904,'title',0,1,' sfsaasfafs '),
(912,'slug',0,1,' about '),
(912,'title',0,1,' about '),
(920,'slug',0,1,' treatment 2 '),
(920,'title',0,1,' treatment 2 '),
(926,'slug',0,1,' treatment 2 '),
(926,'title',0,1,' treatment 2 '),
(945,'slug',0,1,' treatment overview '),
(945,'title',0,1,' treatment overview '),
(946,'slug',0,1,' price '),
(946,'title',0,1,' price '),
(947,'slug',0,1,' disclaimer1 '),
(947,'title',0,1,' disclaimer1 '),
(960,'slug',0,1,' price '),
(960,'title',0,1,' price '),
(961,'slug',0,1,' disclaimer1 '),
(961,'title',0,1,' disclaimer1 '),
(962,'slug',0,1,' price '),
(962,'title',0,1,' price '),
(963,'slug',0,1,' disclaimer1 '),
(963,'title',0,1,' disclaimer1 '),
(964,'slug',0,1,' price '),
(964,'title',0,1,' price '),
(965,'slug',0,1,' disclaimer1 '),
(965,'title',0,1,' disclaimer1 '),
(984,'slug',0,1,' one session '),
(984,'title',0,1,' one session 2 '),
(985,'slug',0,1,' anaesthetic not normally required '),
(985,'title',0,1,' anaesthetic not normally required '),
(986,'slug',0,1,' results visible in 2 weeks '),
(986,'title',0,1,' results visible in 2 weeks '),
(987,'slug',0,1,' very low discomfort '),
(987,'title',0,1,' very low discomfort '),
(1002,'slug',0,1,' why choose this treatment '),
(1002,'title',0,1,' why choose this treatment 2 '),
(1011,'slug',0,1,' targeted results '),
(1011,'title',0,1,' targeted results 2 '),
(1012,'slug',0,1,' safety first '),
(1012,'title',0,1,' safety first '),
(1013,'slug',0,1,' expert care '),
(1013,'title',0,1,' expert care '),
(1014,'slug',0,1,' proven excellence '),
(1014,'title',0,1,' proven excellence '),
(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 '),
(1038,'slug',0,1,' what is treatment 3 '),
(1038,'title',0,1,' what is treatment 3 '),
(1043,'slug',0,1,' who should consider this treatment '),
(1043,'title',0,1,' who should consider this treatment 2 '),
(1057,'slug',0,1,' transformations '),
(1057,'title',0,1,' transformations '),
(1062,'slug',0,1,' frequently asked questions '),
(1062,'title',0,1,' frequently asked questions '),
(1075,'slug',0,1,' frequently asked questions '),
(1075,'title',0,1,' frequently asked questions 2 '),
(1076,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1076,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1077,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1077,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1078,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1078,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1079,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1079,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1080,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1080,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1081,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1081,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1082,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1082,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1083,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1083,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1098,'slug',0,1,' aptos thread lifts '),
(1098,'title',0,1,' aptos thread lifts '),
(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,' dermalux led phototherapy '),
(1133,'slug',0,1,' dermalux single treatment '),
(1133,'title',0,1,' dermalux single treatment '),
(1157,'slug',0,1,' asdasdasd '),
(1157,'title',0,1,' asdasdasd '),
(1161,'slug',0,1,' condition 2 '),
(1161,'title',0,1,' condition 2 123 '),
(1165,'slug',0,1,' treatment 2 '),
(1165,'title',0,1,' treatment 2 '),
(1178,'slug',0,1,' treatment overview '),
(1178,'title',0,1,' treatment overview '),
(1179,'slug',0,1,' price '),
(1179,'title',0,1,' price '),
(1180,'slug',0,1,' price '),
(1180,'title',0,1,' price '),
(1181,'slug',0,1,' price '),
(1181,'title',0,1,' price '),
(1182,'slug',0,1,' price '),
(1182,'title',0,1,' price '),
(1183,'slug',0,1,' one session '),
(1183,'title',0,1,' one session 2 '),
(1184,'slug',0,1,' anaesthetic not normally required '),
(1184,'title',0,1,' anaesthetic not normally required '),
(1185,'slug',0,1,' results visible in 2 weeks '),
(1185,'title',0,1,' results visible in 2 weeks '),
(1186,'slug',0,1,' very low discomfort '),
(1186,'title',0,1,' very low discomfort '),
(1203,'slug',0,1,' why choose this treatment '),
(1203,'title',0,1,' why choose this treatment 2 '),
(1204,'slug',0,1,' targeted results '),
(1204,'title',0,1,' targeted results 2 '),
(1205,'slug',0,1,' safety first '),
(1205,'title',0,1,' safety first '),
(1206,'slug',0,1,' expert care '),
(1206,'title',0,1,' expert care '),
(1207,'slug',0,1,' proven excellence '),
(1207,'title',0,1,' proven excellence '),
(1216,'slug',0,1,' what is treatment 3 '),
(1216,'title',0,1,' what is treatment 3 '),
(1221,'slug',0,1,' who should consider this treatment '),
(1221,'title',0,1,' who should consider this treatment 2 '),
(1226,'slug',0,1,' transformations '),
(1226,'title',0,1,' transformations '),
(1239,'slug',0,1,' frequently asked questions '),
(1239,'title',0,1,' frequently asked questions 2 '),
(1240,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1240,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1241,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1241,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1242,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1242,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1243,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1243,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1244,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1244,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1245,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1245,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1246,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1246,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1247,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1247,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1285,'slug',0,1,' temp pelegzorxtwdhhbmygugjhjkbpbbhgkbmpoi '),
(1285,'title',0,1,''),
(1286,'slug',0,1,' test1 '),
(1286,'title',0,1,' test1 '),
(1287,'slug',0,1,' temp hunrbgccrcirtdkwiwmgbbglejmhnmvjievm '),
(1287,'title',0,1,''),
(1289,'slug',0,1,' temp yqifyqnxhwjhqhaxqeyuwmmggawmbikhuggl '),
(1289,'title',0,1,''),
(1325,'slug',0,1,' transformations '),
(1325,'title',0,1,' transformations '),
(1334,'slug',0,1,' what is treatment 3 '),
(1334,'title',0,1,' what is treatment 3 '),
(1344,'slug',0,1,' fddfd '),
(1344,'title',0,1,' fddfd '),
(1345,'slug',0,1,' vfdsfds '),
(1345,'title',0,1,' vfdsfds '),
(1362,'slug',0,1,' what is treatment 3 '),
(1362,'title',0,1,' what is treatment 3 '),
(1367,'slug',0,1,' what is treatment 3 '),
(1367,'title',0,1,' what is treatment 3 '),
(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 2 '),
(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 exclusive offers 2 '),
(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,''),
(1422,'slug',0,1,' about dr rachel '),
(1422,'title',0,1,' about dr rachel '),
(1423,'slug',0,1,' explore our services '),
(1423,'title',0,1,' explore our services '),
(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,''),
(1428,'slug',0,1,' homepage '),
(1428,'title',0,1,' reveal your natural beauty '),
(1429,'slug',0,1,' temp jhmtytvjjmwtfmvdzdonqnlfokbgcgxbcibk '),
(1429,'title',0,1,''),
(1432,'slug',0,1,' what is treatment 3 '),
(1432,'title',0,1,' what is treatment 3 '),
(1440,'slug',0,1,' temp kqjbywkwlgdmefvqxabhcqrlhjuxmrfuhaho '),
(1440,'title',0,1,''),
(1441,'slug',0,1,' treatment 2 2 '),
(1441,'title',0,1,' jalupro young eye '),
(1442,'slug',0,1,' treatment 2 '),
(1442,'title',0,1,' jalupro young eye wirral targeted under eye rejuvenation by dr rachel '),
(1443,'slug',0,1,' treatment overview '),
(1443,'title',0,1,' treatment overview '),
(1444,'slug',0,1,' price '),
(1444,'title',0,1,' price '),
(1445,'slug',0,1,' price '),
(1445,'title',0,1,' procedure time '),
(1446,'slug',0,1,' price '),
(1446,'title',0,1,' recovery time '),
(1447,'slug',0,1,' price '),
(1447,'title',0,1,' duration '),
(1448,'slug',0,1,' one session '),
(1448,'title',0,1,' one session 2 '),
(1449,'slug',0,1,' anaesthetic not normally required '),
(1449,'title',0,1,' anaesthetic not normally required '),
(1450,'slug',0,1,' results visible in 2 weeks '),
(1450,'title',0,1,' results visible in 2 weeks '),
(1451,'slug',0,1,' very low discomfort '),
(1451,'title',0,1,' very low discomfort '),
(1452,'slug',0,1,' why choose this treatment '),
(1452,'title',0,1,' why choose jalupro young eye '),
(1453,'slug',0,1,' targeted results '),
(1453,'title',0,1,' targeted results 2 '),
(1454,'slug',0,1,' safety first '),
(1454,'title',0,1,' safety first '),
(1455,'slug',0,1,' expert care '),
(1455,'title',0,1,' expert care '),
(1456,'slug',0,1,' proven excellence '),
(1456,'title',0,1,' proven excellence '),
(1457,'slug',0,1,' what is treatment 3 '),
(1457,'title',0,1,' what is jalupro young eye '),
(1458,'slug',0,1,' what is treatment 3 '),
(1458,'title',0,1,' why choose aesthetics by dr rachel '),
(1459,'slug',0,1,' who should consider this treatment '),
(1459,'title',0,1,' who should consider jalupro young eye '),
(1460,'slug',0,1,' transformations '),
(1460,'title',0,1,' transformations '),
(1461,'slug',0,1,' frequently asked questions '),
(1461,'title',0,1,' frequently asked questions '),
(1462,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1462,'title',0,1,' q how many jalupro young eye sessions will i need '),
(1463,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1463,'title',0,1,' q is jalupro young eye painful '),
(1464,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1464,'title',0,1,' q when will i see results from jalupro young eye '),
(1465,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1465,'title',0,1,' q how long do jalupro young eye results last '),
(1466,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1466,'title',0,1,' q what is the difference between jalupro young eye and tear trough filler '),
(1467,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1467,'title',0,1,' q can jalupro young eye treat dark circles '),
(1468,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1468,'title',0,1,' q is jalupro young eye safe '),
(1469,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1469,'title',0,1,' q can i combine jalupro young eye with other treatments '),
(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 '),
(1571,'slug',0,1,' why choose this treatment '),
(1571,'title',0,1,' why choose jalupro young eye '),
(1572,'slug',0,1,' targeted results '),
(1572,'title',0,1,' non volumising formula '),
(1573,'slug',0,1,' safety first '),
(1573,'title',0,1,' targets root causes '),
(1574,'slug',0,1,' expert care '),
(1574,'title',0,1,' gentle yet effective '),
(1575,'slug',0,1,' proven excellence '),
(1575,'title',0,1,' natural subtle results '),
(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 '),
(1734,'slug',0,1,' q what skincare should i use after jalupro young eye '),
(1734,'title',0,1,' q what skincare should i use after jalupro young eye '),
(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 '),
(1787,'slug',0,1,' still have questions '),
(1787,'title',0,1,' still have questions '),
(1802,'slug',0,1,' skin consultation '),
(1802,'title',0,1,' skin consultation wirral '),
(1803,'slug',0,1,' treatment 2 '),
(1803,'title',0,1,' skin consultation wirral by dr rachel '),
(1804,'slug',0,1,' treatment overview '),
(1804,'title',0,1,' treatment overview '),
(1805,'slug',0,1,' price '),
(1805,'title',0,1,' price '),
(1806,'slug',0,1,' price '),
(1806,'title',0,1,' procedure time '),
(1807,'slug',0,1,' price '),
(1807,'title',0,1,' recovery time '),
(1808,'slug',0,1,' price '),
(1808,'title',0,1,' duration '),
(1809,'slug',0,1,' why choose this treatment '),
(1809,'title',0,1,' why book a skin consultation '),
(1810,'slug',0,1,' targeted results '),
(1810,'title',0,1,' understand what bothers you '),
(1811,'slug',0,1,' safety first '),
(1811,'title',0,1,' test your skins tolerance '),
(1812,'slug',0,1,' expert care '),
(1812,'title',0,1,' get your personalised plan '),
(1813,'slug',0,1,' proven excellence '),
(1813,'title',0,1,' ongoing support '),
(1814,'slug',0,1,' what is treatment 3 '),
(1814,'title',0,1,' your comprehensive skin consultation '),
(1815,'slug',0,1,' who should consider this treatment '),
(1815,'title',0,1,' who will benefit from a skin consultation '),
(1816,'slug',0,1,' transformations '),
(1816,'title',0,1,' transformations '),
(1817,'slug',0,1,' frequently asked questions '),
(1817,'title',0,1,' frequently asked questions '),
(1818,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1818,'title',0,1,' q how many jalupro young eye sessions will i need '),
(1819,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1819,'title',0,1,' q is jalupro young eye painful '),
(1820,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1820,'title',0,1,' q when will i see results from jalupro young eye '),
(1821,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1821,'title',0,1,' q how long do jalupro young eye results last '),
(1822,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1822,'title',0,1,' q what is the difference between jalupro young eye and tear trough filler '),
(1823,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1823,'title',0,1,' q can jalupro young eye treat dark circles '),
(1824,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1824,'title',0,1,' q is jalupro young eye safe '),
(1825,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(1825,'title',0,1,' q can i combine jalupro young eye with other treatments '),
(1826,'slug',0,1,' q what skincare should i use after jalupro young eye '),
(1826,'title',0,1,' q what skincare should i use after jalupro young eye '),
(1827,'slug',0,1,' still have questions '),
(1827,'title',0,1,' still have questions '),
(1905,'slug',0,1,' q what happens during a consultation '),
(1905,'title',0,1,' q what happens during a consultation '),
(1906,'slug',0,1,' q how does a doctor led skin consultation differ from retail skincare advice '),
(1906,'title',0,1,' q how does a doctor led skin consultation differ from retail skincare advice '),
(1907,'slug',0,1,' q what are my treatment options '),
(1907,'title',0,1,' q what are my treatment options '),
(1908,'slug',0,1,' q how long until i see results '),
(1908,'title',0,1,' q how long until i see results '),
(1909,'slug',0,1,' q is it safe for darker skin '),
(1909,'title',0,1,' q is it safe for darker skin '),
(1910,'slug',0,1,' q what is the sp complex sensitivity test '),
(1910,'title',0,1,' q what is the sp complex sensitivity test '),
(1911,'slug',0,1,' q how much does consultation cost '),
(1911,'title',0,1,' q how much does consultation cost '),
(1912,'slug',0,1,' q can i combine with other treatments '),
(1912,'title',0,1,' q can i combine with other treatments '),
(1913,'slug',0,1,' q what is the radiance collection '),
(1913,'title',0,1,' q what is the radiance collection '),
(1914,'slug',0,1,' q what is the skin coach club '),
(1914,'title',0,1,' q what is the skin coach club '),
(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 '),
(1943,'slug',0,1,' what is treatment 3 '),
(1943,'title',0,1,' your comprehensive skin consultation '),
(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,' anti wrinkle injections '),
(1951,'title',0,1,' anti wrinkle injections on the wirral '),
(1952,'slug',0,1,' treatment 2 '),
(1952,'title',0,1,' anti wrinkle injections on the wirral '),
(1953,'slug',0,1,' treatment overview '),
(1953,'title',0,1,' treatment overview '),
(1954,'slug',0,1,' price '),
(1954,'title',0,1,' price '),
(1955,'slug',0,1,' price '),
(1955,'title',0,1,' procedure time '),
(1956,'slug',0,1,' price '),
(1956,'title',0,1,' recovery time '),
(1957,'slug',0,1,' price '),
(1957,'title',0,1,' duration '),
(1958,'slug',0,1,' why choose this treatment '),
(1958,'title',0,1,' why choose anti wrinkle injections '),
(1959,'slug',0,1,' targeted results '),
(1959,'title',0,1,' understand what bothers you '),
(1960,'slug',0,1,' safety first '),
(1960,'title',0,1,' subtle safe '),
(1961,'slug',0,1,' expert care '),
(1961,'title',0,1,' expert care '),
(1962,'slug',0,1,' proven excellence '),
(1962,'title',0,1,' proven excellence '),
(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 anti wrinkle injections '),
(1965,'slug',0,1,' transformations '),
(1965,'title',0,1,' transformations '),
(1966,'slug',0,1,' frequently asked questions '),
(1966,'title',0,1,' frequently asked questions '),
(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 are anti wrinkle injections '),
(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 '),
(2051,'slug',0,1,' q how long do anti wrinkle injection results last '),
(2051,'title',0,1,' q how long do anti wrinkle injection results last '),
(2052,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(2052,'title',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(2053,'slug',0,1,' q how permanent are the results '),
(2053,'title',0,1,' q how permanent are the results '),
(2054,'slug',0,1,' q is the treatment safe '),
(2054,'title',0,1,' q is the treatment safe '),
(2055,'slug',0,1,' q does it hurt how is the procedure done '),
(2055,'title',0,1,' q does it hurt how is the procedure done '),
(2056,'slug',0,1,' q will i look frozen or expressionless '),
(2056,'title',0,1,' q will i look frozen or expressionless '),
(2057,'slug',0,1,' q is there any downtime after treatment '),
(2057,'title',0,1,' q is there any downtime after treatment '),
(2058,'slug',0,1,' q when will i see results '),
(2058,'title',0,1,' q when will i see results '),
(2059,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(2059,'title',0,1,' q can i combine anti wrinkle injections with other treatments '),
(2060,'slug',0,1,' q are there any side effects or risks '),
(2060,'title',0,1,' q are there any side effects or risks '),
(2061,'slug',0,1,' q will people know that i have had treatment '),
(2061,'title',0,1,' q will people know that i have had treatment '),
(2081,'slug',0,1,' bio stimulators '),
(2081,'title',0,1,' julaine bio stimulator '),
(2082,'slug',0,1,' treatment 2 '),
(2082,'title',0,1,' julaine bio stimulator wirral doctor led regenerative aesthetics '),
(2083,'slug',0,1,' treatment overview '),
(2083,'title',0,1,' treatment overview '),
(2084,'slug',0,1,' price '),
(2084,'title',0,1,' price '),
(2085,'slug',0,1,' price '),
(2085,'title',0,1,' procedure time '),
(2086,'slug',0,1,' price '),
(2086,'title',0,1,' recovery time '),
(2087,'slug',0,1,' price '),
(2087,'title',0,1,' duration '),
(2088,'slug',0,1,' why choose this treatment '),
(2088,'title',0,1,' why choose julaine bio stimulator '),
(2089,'slug',0,1,' targeted results '),
(2089,'title',0,1,' next generation swedish technology '),
(2090,'slug',0,1,' safety first '),
(2090,'title',0,1,' the invisible transformation '),
(2091,'slug',0,1,' expert care '),
(2091,'title',0,1,' true tissue regeneration '),
(2092,'slug',0,1,' proven excellence '),
(2092,'title',0,1,' exceptional longevity '),
(2093,'slug',0,1,' what is treatment 3 '),
(2093,'title',0,1,' what are anti wrinkle injections '),
(2094,'slug',0,1,' who should consider this treatment '),
(2094,'title',0,1,' who should consider anti wrinkle injections '),
(2095,'slug',0,1,' transformations '),
(2095,'title',0,1,' transformations '),
(2096,'slug',0,1,' frequently asked questions '),
(2096,'title',0,1,' frequently asked questions '),
(2097,'slug',0,1,' q how long do anti wrinkle injection results last '),
(2097,'title',0,1,' q how long do anti wrinkle injection results last '),
(2098,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(2098,'title',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(2099,'slug',0,1,' q how permanent are the results '),
(2099,'title',0,1,' q how permanent are the results '),
(2100,'slug',0,1,' q is the treatment safe '),
(2100,'title',0,1,' q is the treatment safe '),
(2101,'slug',0,1,' q does it hurt how is the procedure done '),
(2101,'title',0,1,' q does it hurt how is the procedure done '),
(2102,'slug',0,1,' q will i look frozen or expressionless '),
(2102,'title',0,1,' q will i look frozen or expressionless '),
(2103,'slug',0,1,' q is there any downtime after treatment '),
(2103,'title',0,1,' q is there any downtime after treatment '),
(2104,'slug',0,1,' q when will i see results '),
(2104,'title',0,1,' q when will i see results '),
(2105,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(2105,'title',0,1,' q can i combine anti wrinkle injections with other treatments '),
(2106,'slug',0,1,' q are there any side effects or risks '),
(2106,'title',0,1,' q are there any side effects or risks '),
(2107,'slug',0,1,' q will people know that i have had treatment '),
(2107,'title',0,1,' q will people know that i have had treatment '),
(2108,'slug',0,1,' still have questions '),
(2108,'title',0,1,' still have questions '),
(2162,'slug',0,1,' chemical peels '),
(2162,'title',0,1,' chemical peels '),
(2163,'slug',0,1,' treatment 2 '),
(2163,'title',0,1,' chemical peels wirral clinical grade skin resurfacing '),
(2164,'slug',0,1,' treatment overview '),
(2164,'title',0,1,' treatment overview '),
(2165,'slug',0,1,' price '),
(2165,'title',0,1,' price '),
(2166,'slug',0,1,' price '),
(2166,'title',0,1,' procedure time '),
(2167,'slug',0,1,' price '),
(2167,'title',0,1,' recovery time '),
(2168,'slug',0,1,' price '),
(2168,'title',0,1,' duration '),
(2169,'slug',0,1,' why choose this treatment '),
(2169,'title',0,1,' why choose chemical peels '),
(2170,'slug',0,1,' targeted results '),
(2170,'title',0,1,' accelerated cellular renewal '),
(2171,'slug',0,1,' safety first '),
(2171,'title',0,1,' bespoke intelligent formulations '),
(2172,'slug',0,1,' expert care '),
(2172,'title',0,1,' treats what high street skincare cannot '),
(2173,'slug',0,1,' proven excellence '),
(2173,'title',0,1,' medical grade safety '),
(2174,'slug',0,1,' what is treatment 3 '),
(2174,'title',0,1,' dr rachel the science of advanced chemical resurfacing '),
(2175,'slug',0,1,' who should consider this treatment '),
(2175,'title',0,1,' who should consider chemical resurfacing '),
(2176,'slug',0,1,' transformations '),
(2176,'title',0,1,' transformations '),
(2177,'slug',0,1,' frequently asked questions '),
(2177,'title',0,1,' frequently asked questions '),
(2178,'slug',0,1,' q how long do anti wrinkle injection results last '),
(2178,'title',0,1,' q how long do anti wrinkle injection results last '),
(2179,'slug',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(2179,'title',0,1,' q how many treatments will i need is it a one off treatment or ongoing '),
(2180,'slug',0,1,' q how permanent are the results '),
(2180,'title',0,1,' q how permanent are the results '),
(2181,'slug',0,1,' q is the treatment safe '),
(2181,'title',0,1,' q is the treatment safe '),
(2182,'slug',0,1,' q does it hurt how is the procedure done '),
(2182,'title',0,1,' q does it hurt how is the procedure done '),
(2183,'slug',0,1,' q will i look frozen or expressionless '),
(2183,'title',0,1,' q will i look frozen or expressionless '),
(2184,'slug',0,1,' q is there any downtime after treatment '),
(2184,'title',0,1,' q is there any downtime after treatment '),
(2185,'slug',0,1,' q when will i see results '),
(2185,'title',0,1,' q when will i see results '),
(2186,'slug',0,1,' q can i combine anti wrinkle injections with other treatments '),
(2186,'title',0,1,' q can i combine anti wrinkle injections with other treatments '),
(2187,'slug',0,1,' q are there any side effects or risks '),
(2187,'title',0,1,' q are there any side effects or risks '),
(2188,'slug',0,1,' q will people know that i have had treatment '),
(2188,'title',0,1,' q will people know that i have had treatment '),
(2189,'slug',0,1,' still have questions '),
(2189,'title',0,1,' still have questions '),
(2243,'slug',0,1,' q how much downtime do chemical peels require '),
(2243,'title',0,1,' q how much downtime do chemical peels require '),
(2244,'slug',0,1,' q do chemical peels hurt '),
(2244,'title',0,1,' q do chemical peels hurt '),
(2245,'slug',0,1,' q how many chemical peel sessions will i need '),
(2245,'title',0,1,' q how many chemical peel sessions will i need '),
(2246,'slug',0,1,' q when will i see results from chemical peels '),
(2246,'title',0,1,' q when will i see results from chemical peels '),
(2247,'slug',0,1,' q are chemical peels safe for dark skin '),
(2247,'title',0,1,' q are chemical peels safe for dark skin '),
(2248,'slug',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2248,'title',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2249,'slug',0,1,' q can i combine chemical peels with other treatments '),
(2249,'title',0,1,' q can i combine chemical peels with other treatments '),
(2250,'slug',0,1,' q what skincare should i use after a chemical peel '),
(2250,'title',0,1,' q what skincare should i use after a chemical peel '),
(2251,'slug',0,1,' q how do i prevent pigmentation after a peel '),
(2251,'title',0,1,' q how do i prevent pigmentation after a peel '),
(2252,'slug',0,1,' q can chemical peels treat acne '),
(2252,'title',0,1,' q can chemical peels treat acne '),
(2286,'slug',0,1,' microneedling '),
(2286,'title',0,1,' microneedling '),
(2287,'slug',0,1,' treatment 2 '),
(2287,'title',0,1,' medical microneedling wirral advanced skin regeneration '),
(2288,'slug',0,1,' treatment overview '),
(2288,'title',0,1,' treatment overview '),
(2289,'slug',0,1,' price '),
(2289,'title',0,1,' price '),
(2290,'slug',0,1,' price '),
(2290,'title',0,1,' procedure time '),
(2291,'slug',0,1,' price '),
(2291,'title',0,1,' recovery time '),
(2292,'slug',0,1,' price '),
(2292,'title',0,1,' duration '),
(2293,'slug',0,1,' why choose this treatment '),
(2293,'title',0,1,' why choose medical microneedling '),
(2294,'slug',0,1,' targeted results '),
(2294,'title',0,1,' true collagen induction '),
(2295,'slug',0,1,' safety first '),
(2295,'title',0,1,' advanced serum technology '),
(2296,'slug',0,1,' expert care '),
(2296,'title',0,1,' treats what lasers cannot '),
(2297,'slug',0,1,' proven excellence '),
(2297,'title',0,1,' medical grade precision '),
(2298,'slug',0,1,' what is treatment 3 '),
(2298,'title',0,1,' what is medical microneedling '),
(2299,'slug',0,1,' who should consider this treatment '),
(2299,'title',0,1,' who should consider medical microneedling '),
(2300,'slug',0,1,' transformations '),
(2300,'title',0,1,' transformations '),
(2301,'slug',0,1,' frequently asked questions '),
(2301,'title',0,1,' frequently asked questions '),
(2302,'slug',0,1,' q how much downtime do chemical peels require '),
(2302,'title',0,1,' q how much downtime do chemical peels require '),
(2303,'slug',0,1,' q do chemical peels hurt '),
(2303,'title',0,1,' q do chemical peels hurt '),
(2304,'slug',0,1,' q how many chemical peel sessions will i need '),
(2304,'title',0,1,' q how many chemical peel sessions will i need '),
(2305,'slug',0,1,' q when will i see results from chemical peels '),
(2305,'title',0,1,' q when will i see results from chemical peels '),
(2306,'slug',0,1,' q are chemical peels safe for dark skin '),
(2306,'title',0,1,' q are chemical peels safe for dark skin '),
(2307,'slug',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2307,'title',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2308,'slug',0,1,' q can i combine chemical peels with other treatments '),
(2308,'title',0,1,' q can i combine chemical peels with other treatments '),
(2309,'slug',0,1,' q what skincare should i use after a chemical peel '),
(2309,'title',0,1,' q what skincare should i use after a chemical peel '),
(2310,'slug',0,1,' q how do i prevent pigmentation after a peel '),
(2310,'title',0,1,' q how do i prevent pigmentation after a peel '),
(2311,'slug',0,1,' q can chemical peels treat acne '),
(2311,'title',0,1,' q can chemical peels treat acne '),
(2312,'slug',0,1,' still have questions '),
(2312,'title',0,1,' still have questions '),
(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 '),
(2368,'slug',0,1,' q how many microneedling sessions will i need '),
(2368,'title',0,1,' q how many microneedling sessions will i need '),
(2369,'slug',0,1,' q does microneedling hurt '),
(2369,'title',0,1,' q does microneedling hurt '),
(2370,'slug',0,1,' q when will i see results from microneedling '),
(2370,'title',0,1,' q when will i see results from microneedling '),
(2371,'slug',0,1,' q what is the downtime after microneedling '),
(2371,'title',0,1,' q what is the downtime after microneedling '),
(2372,'slug',0,1,' q is microneedling safe for dark skin '),
(2372,'title',0,1,' q is microneedling safe for dark skin '),
(2373,'slug',0,1,' q what is the difference between nctf pdrns and exosomes '),
(2373,'title',0,1,' q what is the difference between nctf pdrns and exosomes '),
(2374,'slug',0,1,' q can microneedling treat acne scars '),
(2374,'title',0,1,' q can microneedling treat acne scars '),
(2375,'slug',0,1,' q how does microneedling compare to laser resurfacing '),
(2375,'title',0,1,' q how does microneedling compare to laser resurfacing '),
(2376,'slug',0,1,' q can microneedling help with hair loss '),
(2376,'title',0,1,' q can microneedling help with hair loss '),
(2377,'slug',0,1,' q what skincare should i use after microneedling '),
(2377,'title',0,1,' q what skincare should i use after microneedling '),
(2409,'slug',0,1,' skin boosters '),
(2409,'title',0,1,' skin boosters '),
(2410,'slug',0,1,' treatment 2 '),
(2410,'title',0,1,' skin boosters wirral doctor led injectable hydration '),
(2411,'slug',0,1,' treatment overview '),
(2411,'title',0,1,' treatment overview '),
(2412,'slug',0,1,' price '),
(2412,'title',0,1,' price '),
(2413,'slug',0,1,' price '),
(2413,'title',0,1,' procedure time '),
(2414,'slug',0,1,' price '),
(2414,'title',0,1,' recovery time '),
(2415,'slug',0,1,' price '),
(2415,'title',0,1,' duration '),
(2416,'slug',0,1,' why choose this treatment '),
(2416,'title',0,1,' why choose skin boosters '),
(2417,'slug',0,1,' targeted results '),
(2417,'title',0,1,' intelligent skin hydration '),
(2418,'slug',0,1,' safety first '),
(2418,'title',0,1,' quality not volume '),
(2419,'slug',0,1,' expert care '),
(2419,'title',0,1,' treats what skincare cannot '),
(2420,'slug',0,1,' proven excellence '),
(2420,'title',0,1,' medical grade science '),
(2421,'slug',0,1,' what is treatment 3 '),
(2421,'title',0,1,' what are skin boosters '),
(2422,'slug',0,1,' who should consider this treatment '),
(2422,'title',0,1,' who should consider skin boosters '),
(2423,'slug',0,1,' transformations '),
(2423,'title',0,1,' transformations '),
(2424,'slug',0,1,' frequently asked questions '),
(2424,'title',0,1,' frequently asked questions '),
(2425,'slug',0,1,' q how much downtime do chemical peels require '),
(2425,'title',0,1,' q how much downtime do chemical peels require '),
(2426,'slug',0,1,' q do chemical peels hurt '),
(2426,'title',0,1,' q do chemical peels hurt '),
(2427,'slug',0,1,' q how many chemical peel sessions will i need '),
(2427,'title',0,1,' q how many chemical peel sessions will i need '),
(2428,'slug',0,1,' q when will i see results from chemical peels '),
(2428,'title',0,1,' q when will i see results from chemical peels '),
(2429,'slug',0,1,' q are chemical peels safe for dark skin '),
(2429,'title',0,1,' q are chemical peels safe for dark skin '),
(2430,'slug',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2430,'title',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2431,'slug',0,1,' q can i combine chemical peels with other treatments '),
(2431,'title',0,1,' q can i combine chemical peels with other treatments '),
(2432,'slug',0,1,' q what skincare should i use after a chemical peel '),
(2432,'title',0,1,' q what skincare should i use after a chemical peel '),
(2433,'slug',0,1,' q how do i prevent pigmentation after a peel '),
(2433,'title',0,1,' q how do i prevent pigmentation after a peel '),
(2434,'slug',0,1,' q can chemical peels treat acne '),
(2434,'title',0,1,' q can chemical peels treat acne '),
(2435,'slug',0,1,' still have questions '),
(2435,'title',0,1,' still have questions '),
(2488,'slug',0,1,' q do skin boosters hurt '),
(2488,'title',0,1,' q do skin boosters hurt '),
(2489,'slug',0,1,' q when will i see results from skin boosters '),
(2489,'title',0,1,' q when will i see results from skin boosters '),
(2490,'slug',0,1,' q are skin boosters safe '),
(2490,'title',0,1,' q are skin boosters safe '),
(2491,'slug',0,1,' q what is the downtime after skin boosters '),
(2491,'title',0,1,' q what is the downtime after skin boosters '),
(2492,'slug',0,1,' q how long do skin booster results last '),
(2492,'title',0,1,' q how long do skin booster results last '),
(2493,'slug',0,1,' q how many treatments will i need '),
(2493,'title',0,1,' q how many treatments will i need '),
(2494,'slug',0,1,' q what is the difference between skin boosters and profhilo '),
(2494,'title',0,1,' q what is the difference between skin boosters and profhilo '),
(2495,'slug',0,1,' q can i combine skin boosters with other treatments '),
(2495,'title',0,1,' q can i combine skin boosters with other treatments '),
(2496,'slug',0,1,' q how can i extend my skin booster results '),
(2496,'title',0,1,' q how can i extend my skin booster results '),
(2497,'slug',0,1,' q will skin boosters help my acne scars '),
(2497,'title',0,1,' q will skin boosters help my acne scars '),
(2523,'slug',0,1,' polynucleotides '),
(2523,'title',0,1,' polynucleotides '),
(2524,'slug',0,1,' treatment 2 '),
(2524,'title',0,1,' polynucleotides on the wirral doctor led regenerative skin treatment '),
(2525,'slug',0,1,' treatment overview '),
(2525,'title',0,1,' treatment overview '),
(2526,'slug',0,1,' price '),
(2526,'title',0,1,' price '),
(2527,'slug',0,1,' price '),
(2527,'title',0,1,' procedure time '),
(2528,'slug',0,1,' price '),
(2528,'title',0,1,' recovery time '),
(2529,'slug',0,1,' price '),
(2529,'title',0,1,' duration '),
(2530,'slug',0,1,' why choose this treatment '),
(2530,'title',0,1,' why choose polynucleotide treatment '),
(2531,'slug',0,1,' targeted results '),
(2531,'title',0,1,' true regenerative medicine '),
(2532,'slug',0,1,' safety first '),
(2532,'title',0,1,' treats what others cannot '),
(2533,'slug',0,1,' expert care '),
(2533,'title',0,1,' natural lasting results '),
(2534,'slug',0,1,' proven excellence '),
(2534,'title',0,1,' medical grade safety '),
(2535,'slug',0,1,' what is treatment 3 '),
(2535,'title',0,1,' what are polynucleotides '),
(2536,'slug',0,1,' who should consider this treatment '),
(2536,'title',0,1,' who should consider polynucleotides '),
(2537,'slug',0,1,' transformations '),
(2537,'title',0,1,' transformations '),
(2538,'slug',0,1,' frequently asked questions '),
(2538,'title',0,1,' frequently asked questions '),
(2539,'slug',0,1,' q how many microneedling sessions will i need '),
(2539,'title',0,1,' q how many microneedling sessions will i need '),
(2540,'slug',0,1,' q does microneedling hurt '),
(2540,'title',0,1,' q does microneedling hurt '),
(2541,'slug',0,1,' q when will i see results from microneedling '),
(2541,'title',0,1,' q when will i see results from microneedling '),
(2542,'slug',0,1,' q what is the downtime after microneedling '),
(2542,'title',0,1,' q what is the downtime after microneedling '),
(2543,'slug',0,1,' q is microneedling safe for dark skin '),
(2543,'title',0,1,' q is microneedling safe for dark skin '),
(2544,'slug',0,1,' q what is the difference between nctf pdrns and exosomes '),
(2544,'title',0,1,' q what is the difference between nctf pdrns and exosomes '),
(2545,'slug',0,1,' q can microneedling treat acne scars '),
(2545,'title',0,1,' q can microneedling treat acne scars '),
(2546,'slug',0,1,' q how does microneedling compare to laser resurfacing '),
(2546,'title',0,1,' q how does microneedling compare to laser resurfacing '),
(2547,'slug',0,1,' q can microneedling help with hair loss '),
(2547,'title',0,1,' q can microneedling help with hair loss '),
(2548,'slug',0,1,' q what skincare should i use after microneedling '),
(2548,'title',0,1,' q what skincare should i use after microneedling '),
(2549,'slug',0,1,' still have questions '),
(2549,'title',0,1,' still have questions '),
(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 '),
(2608,'slug',0,1,' q are polynucleotides safe '),
(2608,'title',0,1,' q are polynucleotides safe '),
(2609,'slug',0,1,' q how long before i see results '),
(2609,'title',0,1,' q how long before i see results '),
(2610,'slug',0,1,' q is there any downtime '),
(2610,'title',0,1,' q is there any downtime '),
(2611,'slug',0,1,' q does it hurt '),
(2611,'title',0,1,' q does it hurt '),
(2612,'slug',0,1,' q how many treatments will i need '),
(2612,'title',0,1,' q how many treatments will i need '),
(2613,'slug',0,1,' q whats the difference between polynucleotides and profhilo '),
(2613,'title',0,1,' q whats the difference between polynucleotides and profhilo '),
(2614,'slug',0,1,' q can polynucleotides treat my dark circles '),
(2614,'title',0,1,' q can polynucleotides treat my dark circles '),
(2615,'slug',0,1,' q can i combine with other treatments '),
(2615,'title',0,1,' q can i combine with other treatments '),
(2616,'slug',0,1,' q are they suitable for menopausal skin '),
(2616,'title',0,1,' q are they suitable for menopausal skin '),
(2617,'slug',0,1,' q how much do polynucleotides cost '),
(2617,'title',0,1,' q how much do polynucleotides cost '),
(2643,'slug',0,1,' dermal fillers '),
(2643,'title',0,1,' dermal fillers '),
(2644,'slug',0,1,' treatment 2 '),
(2644,'title',0,1,' dermal fillers wirral natural facial rejuvenation '),
(2645,'slug',0,1,' treatment overview '),
(2645,'title',0,1,' treatment overview '),
(2646,'slug',0,1,' price '),
(2646,'title',0,1,' price '),
(2647,'slug',0,1,' price '),
(2647,'title',0,1,' procedure time '),
(2648,'slug',0,1,' price '),
(2648,'title',0,1,' recovery time '),
(2649,'slug',0,1,' price '),
(2649,'title',0,1,' duration '),
(2650,'slug',0,1,' why choose this treatment '),
(2650,'title',0,1,' why choose dermal fillers '),
(2651,'slug',0,1,' targeted results '),
(2651,'title',0,1,' natural volume restoration '),
(2652,'slug',0,1,' safety first '),
(2652,'title',0,1,' immediate beautiful results '),
(2653,'slug',0,1,' expert care '),
(2653,'title',0,1,' non surgical facial rejuvenation '),
(2654,'slug',0,1,' proven excellence '),
(2654,'title',0,1,' doctor led safety expertise '),
(2655,'slug',0,1,' what is treatment 3 '),
(2655,'title',0,1,' what are dermal fillers '),
(2656,'slug',0,1,' who should consider this treatment '),
(2656,'title',0,1,' what areas can dermal fillers treat '),
(2657,'slug',0,1,' transformations '),
(2657,'title',0,1,' transformations '),
(2658,'slug',0,1,' frequently asked questions '),
(2658,'title',0,1,' frequently asked questions '),
(2659,'slug',0,1,' q how much downtime do chemical peels require '),
(2659,'title',0,1,' q do dermal fillers hurt '),
(2660,'slug',0,1,' q do chemical peels hurt '),
(2660,'title',0,1,' q how long do dermal fillers last '),
(2661,'slug',0,1,' q how many chemical peel sessions will i need '),
(2661,'title',0,1,' q what is the aftercare for dermal fillers '),
(2662,'slug',0,1,' q when will i see results from chemical peels '),
(2662,'title',0,1,' q will i look swollen or bruised after treatment '),
(2663,'slug',0,1,' q are chemical peels safe for dark skin '),
(2663,'title',0,1,' q can dermal fillers look natural '),
(2664,'slug',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2664,'title',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2665,'slug',0,1,' q can i combine chemical peels with other treatments '),
(2665,'title',0,1,' q are dermal fillers safe '),
(2666,'slug',0,1,' q what skincare should i use after a chemical peel '),
(2666,'title',0,1,' q can dermal fillers be reversed '),
(2667,'slug',0,1,' q how do i prevent pigmentation after a peel '),
(2667,'title',0,1,' q how much do dermal fillers cost '),
(2668,'slug',0,1,' q can chemical peels treat acne '),
(2668,'title',0,1,' q will dermal fillers make me look younger '),
(2669,'slug',0,1,' still have questions '),
(2669,'title',0,1,' still have questions '),
(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 '),
(2761,'slug',0,1,' q what is the difference between glycolic salicylic and tca peels '),
(2761,'title',0,1,' q what is the difference between dermal fillers and anti wrinkle injections '),
(2762,'slug',0,1,' q can men have dermal fillers '),
(2762,'title',0,1,' q can men have dermal fillers '),
(2763,'slug',0,1,' q when will i see results '),
(2763,'title',0,1,' q when will i see results '),
(2778,'slug',0,1,' cryotherapy '),
(2778,'title',0,1,' cryotherapy '),
(2779,'slug',0,1,' treatment 2 '),
(2779,'title',0,1,' expert cryotherapy treatment by dr rachel on the wirral '),
(2780,'slug',0,1,' treatment overview '),
(2780,'title',0,1,' treatment overview '),
(2781,'slug',0,1,' price '),
(2781,'title',0,1,' price '),
(2782,'slug',0,1,' price '),
(2782,'title',0,1,' procedure time '),
(2783,'slug',0,1,' price '),
(2783,'title',0,1,' recovery time '),
(2784,'slug',0,1,' price '),
(2784,'title',0,1,' duration '),
(2785,'slug',0,1,' why choose this treatment '),
(2785,'title',0,1,' why choose cryotherapy for skin lesions '),
(2786,'slug',0,1,' targeted results '),
(2786,'title',0,1,' precision technology '),
(2787,'slug',0,1,' safety first '),
(2787,'title',0,1,' doctor led expertise '),
(2788,'slug',0,1,' expert care '),
(2788,'title',0,1,' quick effective '),
(2789,'slug',0,1,' proven excellence '),
(2789,'title',0,1,' proven results '),
(2790,'slug',0,1,' what is treatment 3 '),
(2790,'title',0,1,' what is cryotherapy treatment '),
(2791,'slug',0,1,' who should consider this treatment '),
(2791,'title',0,1,' who should consider cryotherapy '),
(2792,'slug',0,1,' transformations '),
(2792,'title',0,1,' transformations '),
(2793,'slug',0,1,' frequently asked questions '),
(2793,'title',0,1,' frequently asked questions '),
(2794,'slug',0,1,' q how many microneedling sessions will i need '),
(2794,'title',0,1,' q how many microneedling sessions will i need '),
(2795,'slug',0,1,' q does microneedling hurt '),
(2795,'title',0,1,' q does microneedling hurt '),
(2796,'slug',0,1,' q when will i see results from microneedling '),
(2796,'title',0,1,' q when will i see results from microneedling '),
(2797,'slug',0,1,' q what is the downtime after microneedling '),
(2797,'title',0,1,' q what is the downtime after microneedling '),
(2798,'slug',0,1,' q is microneedling safe for dark skin '),
(2798,'title',0,1,' q is microneedling safe for dark skin '),
(2799,'slug',0,1,' q what is the difference between nctf pdrns and exosomes '),
(2799,'title',0,1,' q what is the difference between nctf pdrns and exosomes '),
(2800,'slug',0,1,' q can microneedling treat acne scars '),
(2800,'title',0,1,' q can microneedling treat acne scars '),
(2801,'slug',0,1,' q how does microneedling compare to laser resurfacing '),
(2801,'title',0,1,' q how does microneedling compare to laser resurfacing '),
(2802,'slug',0,1,' q can microneedling help with hair loss '),
(2802,'title',0,1,' q can microneedling help with hair loss '),
(2803,'slug',0,1,' q what skincare should i use after microneedling '),
(2803,'title',0,1,' q what skincare should i use after microneedling '),
(2804,'slug',0,1,' still have questions '),
(2804,'title',0,1,' still have questions '),
(2862,'slug',0,1,' q how long does the treatment take '),
(2862,'title',0,1,' q how long does the treatment take '),
(2863,'slug',0,1,' q does cryotherapy hurt '),
(2863,'title',0,1,' q does cryotherapy hurt '),
(2864,'slug',0,1,' q what happens immediately after treatment '),
(2864,'title',0,1,' q what happens immediately after treatment '),
(2865,'slug',0,1,' q how long does it take to heal '),
(2865,'title',0,1,' q how long does it take to heal '),
(2866,'slug',0,1,' q will i have a scar '),
(2866,'title',0,1,' q will i have a scar '),
(2867,'slug',0,1,' q will the treated area look lighter than my skin '),
(2867,'title',0,1,' q will the treated area look lighter than my skin '),
(2868,'slug',0,1,' q is there any downtime '),
(2868,'title',0,1,' q is there any downtime '),
(2869,'slug',0,1,' q will the lesion come back '),
(2869,'title',0,1,' q will the lesion come back '),
(2870,'slug',0,1,' q can i have multiple lesions treated at once '),
(2870,'title',0,1,' q can i have multiple lesions treated at once '),
(2871,'slug',0,1,' q what is the difference between the cryoiq pen and liquid nitrogen '),
(2871,'title',0,1,' q what is the difference between the cryoiq pen and liquid nitrogen '),
(2872,'slug',0,1,' q can you treat moles with cryotherapy '),
(2872,'title',0,1,' q can you treat moles with cryotherapy '),
(2873,'slug',0,1,' q is cryotherapy safe for children '),
(2873,'title',0,1,' q is cryotherapy safe for children '),
(2874,'slug',0,1,' q what should i do if the area becomes infected '),
(2874,'title',0,1,' q what should i do if the area becomes infected '),
(2875,'slug',0,1,' q why should i choose a doctor over a beauty salon for cryotherapy '),
(2875,'title',0,1,' q why should i choose a doctor over a beauty salon for cryotherapy '),
(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,' anti wrinkle injections '),
(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 '),
(2918,'slug',0,1,' rosacea '),
(2918,'title',0,1,' rosacea '),
(2919,'slug',0,1,' what is treatment 3 '),
(2919,'title',0,1,' what is treatment 3 '),
(2920,'slug',0,1,' what is treatment 3 '),
(2920,'title',0,1,' what is treatment 3 '),
(2921,'slug',0,1,' what is treatment 3 '),
(2921,'title',0,1,' what is treatment 3 '),
(2922,'slug',0,1,' transformations '),
(2922,'title',0,1,' transformations '),
(2923,'slug',0,1,' frequently asked questions '),
(2923,'title',0,1,' frequently asked questions 2 '),
(2924,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2924,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2925,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2925,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2926,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2926,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2927,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2927,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2928,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2928,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2929,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2929,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2930,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2930,'title',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2931,'slug',0,1,' is advanced skin rejuvenation suitable for all skin types '),
(2931,'title',0,1,' is advanced skin rejuvenation suitable for all skin types ');
/*!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,NULL,'Prices','prices','channel',1,1,'all','end','[{\"label\":\"Primary entry page\",\"refresh\":\"1\",\"urlFormat\":\"{url}\"}]','2026-02-21 21:50:15','2026-02-21 21:50:15',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),
(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 `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,56,0,'2025-11-29 12:58:28','2026-03-03 07:59:39','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,4,5,1,'2025-11-29 12:58:35','2025-11-29 12:58:35','04d44cc1-2324-4624-a103-0bf99a9294dd'),
(4,1,4,1,52,53,1,'2025-11-29 12:58:41','2026-03-03 07:59:39','0233e5d4-8376-448a-ae84-30e58e9838e1'),
(5,1,5,1,6,25,1,'2025-11-29 12:58:47','2025-11-30 12:10:12','170cb8c1-ff10-4106-a38a-1adc53012cac'),
(6,1,6,1,48,49,1,'2025-11-29 12:58:53','2026-03-03 07:59:39','74d27bc9-00e2-44d6-a7b5-95eb104a19ca'),
(7,1,8,1,54,55,1,'2025-11-30 11:23:32','2026-03-03 07:59:39','ea3b8b33-1f29-4eee-ae9f-6ff50871edfc'),
(8,1,11,1,26,47,1,'2025-11-30 12:04:32','2026-03-03 07:59:39','6f4dc006-1aa2-4d6f-87f7-76ecfb2bb0b8'),
(9,1,12,1,7,8,2,'2025-11-30 12:08:14','2025-11-30 12:10:12','7997999d-f4d0-487a-964a-48db7d5019da'),
(10,1,13,1,9,10,2,'2025-11-30 12:08:18','2025-11-30 12:10:12','89b766c7-def0-499c-a0b6-205dcad76cba'),
(11,1,14,1,11,12,2,'2025-11-30 12:08:27','2025-11-30 12:10:12','4688fa6b-3361-4616-ad60-c48cc3930420'),
(12,1,15,1,13,14,2,'2025-11-30 12:08:33','2025-11-30 12:10:12','0cf32365-1b17-4c0e-9ddd-5c5292c7128d'),
(13,1,16,1,15,16,2,'2025-11-30 12:08:41','2025-11-30 12:10:12','83fb9c50-aa4b-414a-b8a0-e90edfc608f1'),
(14,1,17,1,17,18,2,'2025-11-30 12:08:51','2025-11-30 12:10:12','ea04ccf3-a09d-4eab-ba3a-7027efb9148a'),
(15,1,18,1,19,20,2,'2025-11-30 12:08:54','2025-11-30 12:10:12','70177589-1383-49f1-ba13-a65cdb6f6e15'),
(16,1,19,1,21,22,2,'2025-11-30 12:08:58','2025-11-30 12:10:12','0e64bb6e-1150-4baa-99ba-de26bbbc99c7'),
(17,1,20,1,23,24,2,'2025-11-30 12:09:04','2025-11-30 12:10:12','846f8b43-bf23-4c0b-8e23-bef4507ca7eb'),
(28,1,35,1,50,51,1,'2025-11-30 12:27:29','2026-03-03 07:59:39','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','2025-12-02 21:44:23','85a453be-d282-464f-a465-3ae75f79e8a9'),
(35,3,239,34,2,3,1,'2025-12-02 21:43:52','2025-12-02 21:43:52','6a9d6458-4e0f-45dc-9c12-3ebe52f8635a'),
(36,3,240,34,4,5,1,'2025-12-02 21:44:07','2025-12-02 21:44:07','74b8a696-1887-469c-8e6b-65e61bc4bcd0'),
(37,3,241,34,6,7,1,'2025-12-02 21:44:15','2025-12-02 21:44:15','1e3193b7-218d-456a-a81d-4682dd921ac6'),
(38,3,242,34,8,9,1,'2025-12-02 21:44:23','2025-12-02 21:44:23','2fe752fe-e101-4ee2-ac90-7267e60461cb'),
(40,1,2906,1,31,32,2,'2026-03-03 07:58:02','2026-03-03 07:59:04','7c65c101-ff79-49be-ba28-e540f31de0af'),
(41,1,2907,1,35,36,2,'2026-03-03 07:58:02','2026-03-03 07:59:24','530852e2-b38a-4748-918a-16f349c6d63b'),
(42,1,2908,1,45,46,2,'2026-03-03 07:58:02','2026-03-03 07:59:39','dc404056-ee6e-4f95-9dcc-bb7e96d676eb'),
(43,1,2909,1,27,28,2,'2026-03-03 07:58:02','2026-03-03 07:58:57','760c240f-58d0-4920-bcce-2fd52ecab39b'),
(44,1,2910,1,37,38,2,'2026-03-03 07:58:02','2026-03-03 07:59:26','8d1172de-b19b-46b1-bba9-ffff0677704f'),
(45,1,2911,1,29,30,2,'2026-03-03 07:58:02','2026-03-03 07:59:04','de549485-ae0f-420f-905d-dfa1598953cb'),
(46,1,2912,1,39,40,2,'2026-03-03 07:58:02','2026-03-03 07:59:33','1c5a2cc9-48cc-41c8-9447-cb0d8ae5bff9'),
(47,1,2913,1,43,44,2,'2026-03-03 07:58:02','2026-03-03 07:59:39','297c2bc6-1e7c-4861-a095-9ba3f0fab37d'),
(48,1,2914,1,41,42,2,'2026-03-03 07:58:02','2026-03-03 07:59:33','067dcf02-fdc2-479b-9730-9e1bf22fdff1'),
(49,1,2915,1,33,34,2,'2026-03-03 07:58:02','2026-03-03 07:59:11','d8415818-f067-48ef-9eec-2cd22d995d89');
/*!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');
/*!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 */;
/*!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,'finedigital',NULL,NULL,NULL,'office@finedigital.co.uk','$2y$13$LmftKZjIZiCmGITEIT0hUOudOhP7zcUKRQ6rgJqoaX7N0dLzF9yra','2026-03-03 07:43:35',NULL,NULL,NULL,'2026-02-21 12:45:41',NULL,1,NULL,NULL,NULL,0,'2025-11-29 11:54:53','2025-11-29 11:54:53','2026-03-03 07:43:35');
/*!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}',1,'2025-11-29 12:15:36','2025-11-29 12:15:36','865289e6-4b8d-4a49-9975-33ffab9dafb3'),
(2,1,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2025-11-29 12:15:36','2025-11-29 12:15:36','798b3338-6c1c-41eb-8af6-4b994408e53a'),
(3,1,'craft\\widgets\\Updates',3,NULL,'[]',1,'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}',1,'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 'hermeswp_rachel'
--
/*!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-03-03  8:13:59
